TODO 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. -*- mode:org -*-
  2. Ideas for time estimates:
  3. {22} 22 minutes
  4. {2:} 2 hours
  5. {2:30} 2 hours, 30 minutes
  6. Maybe make a new keyword APPT for appointment, meaning that this is
  7. something I need to attend, as opposed to something which is on that
  8. day and not necessarily something where we need to be present. Not
  9. sure about this.
  10. Should we add this hierarchically? Should parents value be the summed
  11. values of children? I guess not. No. Estimated times should be
  12. atomic, belonging to the detailed entry. If people give estimated
  13. times to parents, their fault.
  14. | | | | | |
  15. |---+---+---+---+---|
  16. | | | | | |
  17. make special completion for refile path, similar to file completion.
  18. Make variables for case-fold-search, there is a request in the survey
  19. ">" does not work well in column view, when currently there is no
  20. width defined.
  21. Make cycling put text properties over current state.
  22. Use thee when moving subtrees, to restore them all to the right
  23. state.
  24. C-RET, add empty line just like before the current entry.
  25. Make sure the remember stuff insertion works correctly, find a way to
  26. specify empty leading lines.
  27. Last synch with FSF changes: <2008-01-03 Thu>
  28. Fix special character replacement: not in protected regions, and
  29. require them not to be part of a long chain of strings and dots.
  30. Write CLOCK like this: CLOCK [2007-11-12 Mon 12:30-13:44]
  31. This needs a lot of changing, of course. Clock table and lots more.
  32. Make org-entry-put handle all special properties. Use interactive
  33. interfaces only for interactive calls.
  34. Split into files:
  35. - org.el
  36. - org-tables.el
  37. entry points: align. Hmm, mybe we should just leave it like it is.
  38. - org-agenda.el
  39. - org-export.el
  40. - org-cdlatex.el
  41. Also, all the link types could be in separate files:
  42. Still, org would automatically require these.
  43. I guess it would make some sense to take these out.
  44. - org-bbdb.el
  45. - org-mh.el
  46. etc etc
  47. How to set tags in remember buffer?
  48. integrate org-iswitchb.el
  49. Free up C-c C-v, and use this for other stuff?
  50. document org-agenda-start-day and maybe other dynamical scope variables.
  51. Should I move the remember template stuff to remember.el itself?
  52. Would be good, but is unlikely to happen.
  53. Make org-set-property set the property for all entries in the region.
  54. What other commands?
  55. Map region with commands, general mechanism????
  56. M-q in a line starting with a *bold* string fails. Fuck this wrapping
  57. and paragraph code, it is a desaster
  58. - Agenda view of tags search make the levels of the headline visible
  59. through leading dots. The TODO view doesn't. Maybe the to views
  60. should behave the same on this?
  61. - Modifying the TODO state of an entry while in the agenda tags-todo
  62. view will make the leading dots disappear.
  63. Make ASCII export remove some of the emph markers. Maybe replace
  64. verbatim with single quotes or so.
  65. ASCII export: move links into footnotes
  66. Implement cycling by having a text property on headlines, instead
  67. of doing all this work to figure things out dynamically????????????
  68. Write some command that does:
  69. - gets all the external stuff from David an Bastien
  70. - Changes the version number so that they are consistent
  71. - Have a contrib directory?????
  72. Implement Johns auto-archive.
  73. Have C-c C-e 0 l and C-c C-e 0 h do the region (Bastien)
  74. Remove time grid lines that have an apointment on that time.
  75. Don't show "-----" if something is going on during that time,
  76. this is an indication of being occupied.
  77. Implement block viewing in the agenda, to show how long enties take on
  78. a true time grid.
  79. End date for a repeating thing?
  80. Should we have thinks like <example> ... </example>
  81. like muse does? This is much easier than what we have......
  82. #+BEGIN_example
  83. #+END_example
  84. Completely remove cpltxt from store link and use desc instead.
  85. Implement most internal links as add-ons. Either in external files,
  86. or internally. Anyway, make sure most of them are active.
  87. Bug with columns when there is an invisible link early in the
  88. headline. See properties.org.
  89. hooks in the properties stuff.
  90. org-after-insert-property-drawer-hook.
  91. Function to convert outline to plain and back (Scott Jaderholm)
  92. MEW support??? (this is yet another emacs mailer)
  93. Make org-fill-paragraph respect \\.
  94. How can I update a calculating property without relying on the column
  95. view format? That would require specifying the format in an
  96. additional place, possibly in a data field? This is what I had
  97. first. Maybe it was only partially a good idea????
  98. The problem is that in order to have a column computing, we need to
  99. have a view! So this is not good!
  100. Options:
  101. - use the format!
  102. - have an extra property, like XYZ_OPERATOR.
  103. Then do the operation in the sub tree of the entry that has the
  104. operator property. Quite nice, this one, but may contradict
  105. the format. It is not goot to have this multiple times. So maybe
  106. strictly limit this to those that are in a format.
  107. + when updating, find the format and then apply to subtree.
  108. + When updating absolutely everything, find all the formats, get
  109. all the operators, apply to the corresponding subtrees.
  110. + allow very general operations:
  111. {to-number,to-string,add}
  112. Or simply {add}
  113. Take old value, new value, and add or do whatever is necessary.
  114. This is another exploit.
  115. Three functions.
  116. - Allow the operator in a value after all
  117. search-subtree command/function
  118. Should the default for org-archive-mark-done be nil?
  119. hook after agenda-show, but careful with all the other functions
  120. that use that function. Maybe take the functionality tp a separate
  121. function.
  122. Make something search [-].
  123. The fast interfaces
  124. - org-goto, jumps to an entry in the current buffer
  125. - org-refile, uses the completion interface to file something away
  126. - org-refile with prefix arg allows to jump to a refile location
  127. - remember can use refile, goto, and automatic location search
  128. This is very much confuing:
  129. refile standard can go to any refile location, in different files
  130. we can also us the refile interface to find a headline in the
  131. current buffer.
  132. This needs to be made more consistent.
  133. #+TYP_TODO: TODO BUG INCONSISTENCY IDEA WISH QUESTION DONE
  134. #+OPTIONS: H:1 num:nil toc:t \n:nil @:t ::t |:t ^:t *:t TeX:t
  135. #+EMAIL: carsten.dominik@gmail.com