35
votes

Org-mode is amazing. I like its power and simplicity. However, sometimes I need access to my tasks in places where I don't have the necessary setup. Is there a way to synchronize my org agenda with one of the better web based todo services like RTM, Toodledo or similar?

It would be the best solution, because I'd run the sync process regularly and automatically on my computer and I would have access (read access is enough) to my org data through the web interface of the synchronized service.

13

13 Answers

17
votes

I have been using Org-mode with Remember the Milk quite nicely. here is my setup:

(require org-feed)
(setq org-feed-alist
      '(("Remember The Milk"
         "https://www.rememberthemilk.com/rss/jonnay/"
         "~/org/GTD.org"
         "Remember The Milk"
         :template "* TODO %title\n  %a\n "
         )))

;;* rtm feed timer
(run-at-time 3600 3600 'org-feed-update-all)

The only problem is that I get asked for authentication the first time I start up emacs. With a bit of elisp this could be fixed, I just haven't had time yet.

Just as an update, there is a new package shaping up that might handle syncing a little better: http://orgmode.org/worg/org-contrib/gsoc2012/student-projects/org-sync/index.html

14
votes

I realize this is quite old, however a pertinent update is that a Google Summer of Code project is currently in progress to create just this. See (and follow updates to) the page on the Org-mode Wiki for Org-sync.

About

Org-sync is a tool to synchronize your Org-mode documents with bugtracking tools such as Bugzilla, Github or Google Code and other TODO-list services such as Toodledo or Google Task.

Project Goals

  • Integrate and complete org-element.el
  • Write a library for bugtracker backends
  • Write several backends

There is also a link to the list of backends currently in progress to be integrated with Org-sync.

13
votes

I just save my org-mode files in a Dropbox folder and then they are automatically synced and can be viewed/edited from anywhere.

9
votes

This is probably way late but Sacha Chua wrote an org to toodledo synchronization tool for emacs.

http://github.com/sachac/org-toodledo

7
votes

you could also set up org with some kind of revision control software-- I use git, and then use git to clone/pull where ever i need it.

4
votes

MobileOrg is, however, limited to the iPhone at present. I am eagerly following development on a similar application for android.

2
votes

There is a possibility to publish org mode to HTML. If you need only readonly access it should work.

1
votes

And if memory serves, org-mode has a mobile hook ... here's a snippet from the Info page:

MobileOrg is an application for the iPhone/iPod Touch series of devices, developed by Richard Moreland. MobileOrg offers offline viewing and capture support for an Org-mode system rooted on a "real" computer. It does also allow you to record changes to existing entries. For information about MobileOrg, see `http://mobileorg.ncogni.to/').

This appendix describes the support Org has for creating agenda views in a format that can be displayed by MobileOrg, and for integrating notes captured and changes made by MobileOrg into the main system.

For changing tags and TODO states in MobileOrg, you should have set up the customization variables org-todo-keywords' and org-tags-alist' to cover all important tags and todo keywords, even if individual files use only part of these. MobileOrg will also offer you states and tags set up with in-buffer settings, but it will understand the logistics of todo state sets (*note Per-file keywords::) and mutually exclusive tags (*note Setting tags::) only for those set in these variables.

1
votes

I've put together a simple python script based on some already-existing code, which allows one to push an org file to a google-tasks list, to pull the contents of a google-tasks list into an org file, or to perform a bidirectional synchronization between the two.

1
votes

There is an app for Android, orgzly, that gives you views of your org-mode files synced by dropbox.

0
votes

Not totally related but org-mode doesn't work that well as an 'on-the-go' thing. The mobile-org and other services try to do this but I don't know..

I version control my org files and push them (using git) onto my personal webspace and then sync it on the various computers I use. That way, I can keep myself on top of things.

0
votes

org-trello is a nice package that lets you sync an org-mode file with Trello.

Since Trello's and org-mode's feature sets don't overlap 100 %, I prefer to name the files .trello to make sure I don't confuse them with full-blown org-files.

Here's how I init it, with use-package:

(use-package org-trello
  :defer t
  :mode (("\\.trello$" . org-mode))
  :init
  (when (locate-library "org-trello")
    (add-hook 'org-mode-hook
              (defun org-trello-turn-on-if-extension-matches ()
                (let ((filename (buffer-file-name (current-buffer))))
                  (when (and filename (string= "trello" (file-name-extension filename)))
                    (org-trello-mode))))))
  :config
  (set-variable 'org-trello-current-prefix-keybinding "C-c t"))
0
votes

I've not used it, but this seems to be an org-mode integration for todoist.com: https://github.com/ttakamura/org-todoist