Re: [O] Org Mode TOOD two way sync tool

2012-10-07 Thread Jonathan BISSON
Sriram Karra karra.etc at gmail.com writes: I am the author of ASynK (http://karra-asynk.appspot.com), a PIM sync tool and framework written in python that works across a variety of PIM providers such as Outlook, Google and BBDB. I am considering extending ASynK to do a bi-directional sync

Re: [O] Org Mode TOOD two way sync tool

2012-06-25 Thread Aurélien Aptel
On Sun, Jun 24, 2012 at 7:07 PM, Christopher Allan Webber cweb...@dustycloud.org wrote: http://labs.creativecommons.org/2010/11/10/bridging-public-bugtrackers-and-local-tasklists/ Yes I've already read your post while researching for my project :) I'd be interested to see if you come up with a

Re: [O] Org Mode TOOD two way sync tool

2012-06-25 Thread Sriram Karra
On Sun, Jun 24, 2012 at 10:37 PM, Christopher Allan Webber cweb...@dustycloud.org wrote: Hey Aurélien, This is great. I formerly worked on something similar: http://labs.creativecommons.org/2010/11/10/bridging-public-bugtrackers-and-local-tasklists/ Nice color-theme, there. If you use

Re: [O] Org Mode TOOD two way sync tool

2012-06-25 Thread Christopher Allan Webber
Sriram Karra karra@gmail.com writes: On Sun, Jun 24, 2012 at 10:37 PM, Christopher Allan Webber cweb...@dustycloud.org wrote: Hey Aurélien, This is great.  I formerly worked on something similar:

Re: [O] Org Mode TOOD two way sync tool

2012-06-25 Thread Christopher Allan Webber
Christopher Allan Webber cweb...@dustycloud.org writes: Ah, I've stopped using that theme! But it was a small extension to color-theme-snow. Here it is. :) FYI, the theme I use now is naquadah-theme, which I *highly* recommend. http://git.naquadah.org/?p=naquadah-theme.git;a=summary

Re: [O] Org Mode TOOD two way sync tool

2012-06-24 Thread Aurélien Aptel
Hi, I'm working on a bugtracker sync tool for org-mode [1]. I'm using org-element to parse org files, it does everything I need. It turns this * TODO blah 2012-06-25 :PROPERTIES: :foo: bar :END: Foo bar into this: (org-data nil (headline (:raw-value blah 2012-06-25

Re: [O] Org Mode TOOD two way sync tool

2012-06-24 Thread Aurélien Aptel
On Sun, Jun 24, 2012 at 3:15 PM, Aurélien Aptel aurelien.ap...@gmail.com wrote: Just call org-element-parse-buffer. See also org-element-interpret-data, which lets you write back the structure.

Re: [O] Org Mode TOOD two way sync tool

2012-06-24 Thread Christopher Allan Webber
Hey Aurélien, This is great. I formerly worked on something similar: http://labs.creativecommons.org/2010/11/10/bridging-public-bugtrackers-and-local-tasklists/ However... my solution was pretty hacky. I'd be interested to see if you come up with a generic solution that could have mapppings

[O] Org Mode TOOD two way sync tool

2012-06-22 Thread Sriram Karra
I am the author of ASynK (http://karra-asynk.appspot.com), a PIM sync tool and framework written in python that works across a variety of PIM providers such as Outlook, Google and BBDB. I am considering extending ASynK to do a bi-directional sync of Outlook tasks to Org Mode tasks. To be able to

Re: [O] Org Mode TOOD two way sync tool

2012-06-22 Thread Christopher J. White
Hi Karra, I've been working on org-toodledo.el to perform bi-directional sync of TODO items with the Toodledo server, and faced many of the same issues you raise about figuring out the exact format and grammar of a TODO item. You may find looking at my source useful, either as inspiration,

Re: [O] Org Mode TOOD two way sync tool

2012-06-22 Thread Sriram Karra
Chris, thanks for the pointer to org-toodledo. Does org-toodledo's handle all the options and formats of possible TODOs supported by org mode? Are you yet to implement support for anything that is parsed by the Emacs org-mode? On Fri, Jun 22, 2012 at 5:33 PM, Christopher J. White

Re: [O] Org Mode TOOD two way sync tool

2012-06-22 Thread Christopher J. White
Hi Karra, On 6/22/12 8:33 AM, Sriram Karra wrote: Chris, thanks for the pointer to org-toodledo. Does org-toodledo's handle all the options and formats of possible TODOs supported by org mode? That's a loaded question ;-) I'd have to say probably not, but it so far supports all of my TODOs.