christopherjwhite / org-toodledo

Emacs enhancement for syncing org-mode tasks with Toodledlo
83 stars 16 forks source link

Can't get subtasks to work #20

Closed mitnworb closed 10 years ago

mitnworb commented 11 years ago

They just show up flat. I have a pro toodledo account. I am able to nest tasks in toodledo webapp. Any Ideas?

I have my setup like this:

christopherjwhite commented 11 years ago

The markup got a little messed up, but I think I see the problem. org-toodledo only recognizes items with a TODO status as status. This matches the way Toodledo handles it as well, the parent task can have a separate status from child tasks. SO, you need to add one of the TODO keywords to what you'd like the parent to be. Since only one level of hierarchy is supported by Toodledo, that would be something like:

* TODO Tasks
** TODO Task
** TODO Task
* Projects
** TODO Project 1
*** TODO Task
*** TODO Task
** TODO Project 2
*** TODO Task
*** TODO Task

In the above, the only line that will not show up in Toodledo is the "Projects" line, as it has no TODO keyword.

Let me know if that takes care of it for you.

christopherjwhite commented 10 years ago

Closing this issue for now, as I don't think there is a bug here, just a misunderstanding of how sub-tasks work. Please re-open if you find you still cannot get this to work.