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.

link|improve this question
feedback

8 Answers

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.

link|improve this answer
6  
This is very cool, but what about syncing your org files back up to RTM? – Josh Ourisman Feb 9 '10 at 15:10
@Jonathan is that added to your .emacs? – David Jan 18 '11 at 19:19
I stopped using RTM awhile ago, so ... no. – Jonathan Arkell Jan 18 '11 at 23:35
@Jonathan: so is this a method to export RTM to use in the GTD.org org-mode file? – David Jan 20 '11 at 6:14
Yes. That is correct. – Jonathan Arkell Jan 20 '11 at 22:36
show 2 more comments
feedback

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

link|improve this answer
how does this help sync with RTM? – David Jan 18 '11 at 19:17
feedback

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.

link|improve this answer
feedback

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

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

link|improve this answer
Now forked (and updated): github.com/christopherjwhite/org-toodledo – BeSlayed Nov 5 '11 at 17:35
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
Thanks, but I don't have a mobile phone which can run MobileOrg. I'd like to check my agenda from any random computer which has net access, that's why I'm looking for a solution which can synchronize with a web application. – Tom Jan 26 '10 at 12:54
feedback

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

link|improve this answer
Hm, that's true. I haven't thought of simple HTML export. That would solve the problem, though I'm still interested in syncing with some webapp in case someday I might want to add/modify tasks too while I'm away from org. – Tom Jan 26 '10 at 14:35
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.