ChangeLog 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. 2007-10-05 Carsten Dominik <dominik@science.uva.nl>
  2. * org.el (org-additional-option-like-keywords): New constant.
  3. (org-complete): Use `org-additional-option-like-keywords'.
  4. (org-parse-local-options): New function.
  5. 2007-10-04 Carsten Dominik <dominik@science.uva.nl>
  6. * org.el (org-in-clocktable-p): New function.
  7. (org-clock-report): Only update the table at point, or insert a
  8. new one.
  9. (org-clock-goto): New function.
  10. (org-open-file): Use `start-process-shell-command' instead of
  11. `shell-command' with an ampersand.
  12. (org-deadline, org-schedule): New argument REMOVE to remove the
  13. date from the entry.
  14. (org-agenda-schedule, org-agenda-deadline): Pass the prefix
  15. argument to `org-schedule' and `org-deadline'.
  16. (org-trim): Use the correct expressions for beginning and end of
  17. the string.
  18. (org-get-cleaned-entry): Trim the string before returning it.
  19. (org-clock-find-position): New function.
  20. (org-clock-into-drawer): New option.
  21. (org-agenda-tags-column): Renamed from
  22. `org-agenda-align-tags-to-column'.
  23. (org-agenda-align-tags): Allow negative values for
  24. `org-agenda-tags-column'.
  25. (org-insert-labeled-timestamps-before-properties-drawer): Variable
  26. removed.
  27. (org-agenda-to-appt): new optional argument FILTER.
  28. (org-completion-fallback-command): New variable.
  29. (org-complete): Use `org-completion-fallback-command'.
  30. (org-find-base-buffer-visiting): Catch the case that there is no
  31. buffer visiting the file.
  32. (org-property-or-variable-value): New function.
  33. (org-todo): Use `org-property-or-variable-value'
  34. (org-agenda-compact-blocks): New option.
  35. (org-prepare-agenda, org-agenda-list): Use
  36. `org-agenda-compact-blocks'.
  37. (org-agenda-schedule, org-agenda-deadline): Call
  38. `org-agenda-show-new-time'.
  39. (org-agenda-show-new-time): New argument PREFIX.
  40. (org-colgroup-info-to-vline-list): Fixed but that cause a
  41. shift in the vertical lines.
  42. (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
  43. (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
  44. (org-indent-item): No arg in call to `org-fix-bullet-type'.
  45. (org-fix-bullet-type): Removed argument.
  46. (org-read-date): Check for am/pm twice, to catch the end time.
  47. (org-goto-map): Use `suppress-keymap'.
  48. (org-remember-apply-template): Respect the dynamically scoped
  49. selection character.
  50. * org.texi (Appointment reminders): New section.
  51. 2007-10-05 Bastien Guerry <Bastien.Guerry@ens.fr>
  52. * org-export-latex.el (org-export-latex-protect-string):
  53. Renaming of `org-latex-protect'.
  54. (org-export-latex-emphasis-alist): By default, don't protect
  55. any emphasis formatter from further conversion.
  56. (org-export-latex-tables): honor column grouping for tables.
  57. (org-export-latex-title-command): New option.
  58. (org-export-latex-treat-backslash-char): Use \textbackslash{} to
  59. export backslash character.
  60. ------------------------------------------------------------
  61. Installed as 5.10
  62. 2007-09-26 Carsten Dominik <dominik@science.uva.nl>
  63. * org.el (turn-on-orgstruct++): New function.
  64. (org-table-convert-region): Prefix arg interpreted differently in
  65. terms of field separator.
  66. (org-icalendar-include-body-as-description): New option.
  67. (org-export-icalendar-clean-description): New function.
  68. (org-link-escape): New argument TABLE.
  69. (org-link-escape-chars-browser): New constant.
  70. (org-open-at-point): Call `org-link-escape' with new argument.
  71. (org-export-html-extension): New option.
  72. (org-read-date): New argument DEFAULT-TIME. No longer determine
  73. default time from buffer context.
  74. (org-time-stamp): Pass default time to `org-read-date'.
  75. (org-refresh-category-properties): New function.
  76. (org-dblock-write:clocktable): Interpret the :scope parameter.
  77. (org-archive-subtree): Use category properties.
  78. (org-prepare-agenda-buffers): Call
  79. `org-refresh-category-properties'.
  80. (org-category-table): Variable removed.
  81. (org-get-category-table): Function removed.
  82. (org-get-category): Just get the property now.
  83. (org-tags-view, org-agenda-get-day-entries)
  84. (org-print-icalendar-entries): No longer create the category table.
  85. (org-columns-check-computed): New function.
  86. (org-columns-compute): Mark computed values.
  87. (org-columns-update): Set also the `org-columns-value' property.
  88. (org-indent-item): Fix bullet type before thinking about
  89. renumbering.
  90. 2007-09-26 Bastien Guerry <Bastien.Guerry@ens.fr>
  91. * org-export-latex.el (org-export-latex-emphasis-alist):
  92. Each list of the alist now requires three elements.
  93. -----------------------------------------------------------------
  94. Installed as 5.09
  95. 2007-09-14 Bastien Guerry <bzg@altern.org>
  96. * org-export-latex.el (org-export-latex-tables-verbatim): New
  97. function.
  98. (org-export-latex-remove-from-headlines): Name changed because of
  99. typo.
  100. (org-export-latex-quotation-marks-convention): Option removed.
  101. (org-export-latex-make-preamble): Handle the DATE option.
  102. (org-export-latex-cleaned-string): Now the only cleaning function,
  103. synched up with org.el.
  104. (org-export-latex-lists, org-export-latex-parse-list)
  105. (org-export-list-to-latex): New functions.
  106. 2007-09-13 Carsten Dominik <dominik@science.uva.nl>
  107. * org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
  108. (org-outline-regexp): New constant.
  109. (org-remember-handler): Throw error when the target file is not in
  110. org-mode.
  111. (org-cleaned-string-for-export): No longer call
  112. `org-export-latex-cleaned-string' with an argument.
  113. (org-get-tags): Returns now a list, not a string.
  114. (org-get-tags-string): New function.
  115. (org-archive-subtree): No need to split return of `org-get-tags'.
  116. (org-set-tags, org-entry-properties): Call `org-get-tags-string'
  117. instead of `org-get-tags'.
  118. (org-agenda-format-date): Renamed from `org-agenda-date-format'.
  119. (org-time-from-absolute, org-agenda-format-date-aligned): New
  120. functions.
  121. (org-compatible-face): New argument INHERITS. Inherit from this
  122. face if possible.
  123. (org-level-1, org-level-2, org-level-3, org-level-4)
  124. (org-level-5, org-level-6, org-level-7, org-level-8)
  125. (org-special-keyword, org-drawer, org-column, org-warning)
  126. (org-archived, org-todo, org-done, org-headline-done, org-table)
  127. (org-formula, org-code, org-agenda-structure)
  128. (org-scheduled-today, org-scheduled-previously)
  129. (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
  130. in the new way.
  131. (org-get-heading): New argument NO-TAGS.
  132. (org-fast-tag-selection-include-todo): Made defvar instead of
  133. defcustom, feature is not deprecated.
  134. (org-remember-store-without-prompt): New default value t.
  135. (org-todo-log-states): New variable.
  136. (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
  137. Compute the log states.
  138. (org-goto-map): More commands copied from global map. Also bind
  139. `org-occur'.
  140. (org-goto): Made into a general lookup command.
  141. (org-get-location): Complete rewrite.
  142. (org-goto-exit-command): New variable.
  143. (org-goto-selected-point): New variable.
  144. (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit): Set
  145. the new variables.
  146. (org-paste-subtree): Whitespace insertion strategy revised.
  147. (org-remember-apply-template): Protect v-A from the possibility
  148. that v-a might be nil.
  149. (org-remember-handler): Insertion rules revised.
  150. (org-todo): Respect org-todo-log-states.
  151. (org-up-heading-safe): New function.
  152. (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
  153. * org.texi: Change links to webpage and maintained email.
  154. (Remember): Promoted to Chapter, significant changes.
  155. (Fast access to TODO states): New section.
  156. (Faces for TODO keywords): New section.
  157. (Export options): Example for #+DATE.
  158. (Progress logging): Section moved.
  159. ----------------------------------------------------------------------
  160. installed in Emacs as 5.08
  161. 2007-09-09 Carsten Dominik <dominik@science.uva.nl>
  162. * org.el (org-re): Also replace the :alpha: class.
  163. (org-todo-tag-alist): Variable removed.
  164. (org-todo-key-alist, org-todo-key-trigger) New variables.
  165. (org-use-fast-todo-selection): New option.
  166. (org-log-done): Docstring fixed.
  167. (org-deadline-warning-days): New default value 14.
  168. (org-edit-timestamp-down-means-later) New option.
  169. (org-tag-alist): Docstring fixed.
  170. (org-fast-tag-selection-include-todo): New option.
  171. (org-export-language-setup): New languages added.
  172. (org-set-regexps-and-options): Compute the new variables.
  173. (org-paste-subtree): Cleaning up.
  174. (org-remember-apply-template): New escape %A.
  175. (org-todo): Call fast TODO selection.
  176. (org-fast-todo-selection): New function.
  177. (org-add-log-note): Allow prefix for abort exit.
  178. (org-at-property-p, org-entry-properties)
  179. (org-columns-get-autowidth-alist): Use :alpha: class.
  180. (org-get-wdays): New function.
  181. (org-agenda-remove-date): New variable.
  182. (org-agenda-get-deadlines): Use `org-get-wdays'.
  183. (org-agenda-get-deadlines): Reverse ee before returning.
  184. (org-format-agenda-item): New argument REMOVE-RE.
  185. (org-agenda-convert-date): Baha'i calendar added.
  186. (org-infile-export-plist): Also find DATE line.
  187. (org-get-min-level): New function.
  188. (org-export-as-html, org-export-as-ascii): Use the date format.
  189. (org-shiftup, org-shiftdown): Use.
  190. `org-edit-timestamp-down-means-later'.
  191. (org-assign-fast-keys): New function.
  192. ----------------------------------------------------------------------
  193. 2007-08-30 Carsten Dominik <dominik@science.uva.nl>
  194. * org.el (org-export-visible): Fix drawers before export.
  195. (org-do-sort): Allow sorting by priority.
  196. (org-agenda-files): Ignore non-existing files.
  197. (org-agenda-skip-unavailable-files): New variable.
  198. (org-ellipsis): All a face as value.
  199. (org-mode): Interprete the face value of `org-ellipsis'.
  200. (org-archive-save-context-info): New option.
  201. (org-archive-subtree): Store context info in archived entry.
  202. (org-fast-tag-selection-can-set-todo-state): New variable.
  203. (org-fast-tag-selection): Allow setting TODO states through this
  204. interface.
  205. (org-cycle): Docstring updated.
  206. (org-todo-keyword-faces): New option.
  207. (org-get-todo-face): New function.
  208. (org-set-font-lock-defaults, org-agenda-highlight-todo): Use
  209. `org-get-todo-face'.
  210. (org-switch-to-buffer-other-window): New function.
  211. (org-table-edit-field, org-table-show-reference)
  212. (org-table-edit-formulas, org-add-log-note)
  213. (org-fast-tag-selection, org-agenda, org-prepare-agenda)
  214. (org-timeline): Use `org-switch-to-buffer-other-window' instead of
  215. `switch-to-buffer-other-window' to make sure that the temporary
  216. windows show up on the current frame.
  217. (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
  218. (org-get-entries-from-diary, org-replace-region-by-html): Don't
  219. allow pop-up frames.
  220. (org-agenda-get-deadlines, org-agenda-get-scheduled): Fixed
  221. problems with time-of-day.
  222. (org-export-get-title-from-subtree): New function.
  223. (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
  224. with listing items that are DONE.
  225. (org-change-tag-in-region): New command.
  226. (org-agenda-skip-scheduled-if-done)
  227. (org-agenda-skip-deadline-if-done): Docstring clarified.
  228. (org-mode): Hide drawers on startup.
  229. (org-get-todo-face): New function.
  230. (org-todo-keyword-faces): New option.
  231. -------------------------------------------------------------------------
  232. 2007-08-21 Carsten Dominik <dominik@science.uva.nl>
  233. * org.el (org-agenda-skip): Allow a form for
  234. `org-agenda-skip-function'.
  235. (org-agenda-redo): Re-use local settings.
  236. (org-agenda): Store local settings.
  237. (org-agenda-deadline-faces): New option.
  238. (org-agenda-deadline-face): New function.
  239. (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
  240. entries on their due date.
  241. (org-agenda-get-timestamps): No longer handle the due dates of
  242. schedules and deadline items.
  243. (org-insert-link-global, org-open-at-point-global): New commands.
  244. (org-export-as-ascii): Call
  245. `org-cleaned-string-for-export' with a :for-ascii parameter.
  246. (org-skip-comments): Function removed.
  247. (org-cleaned-string-for-export): Handle special table lines.
  248. (org-global-properties): New option.
  249. (org-entry-get-with-inheritance): Check global properties.
  250. (org-local-properties): New variable.
  251. (org-set-regexps-and-options): Find the #+PROPERTY line.
  252. (org-link-types): Change type into variable (was constant).
  253. (org-make-link-regexps): New function.
  254. (org-link-re-with-space, org-link-re-with-space2)
  255. (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
  256. (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
  257. these regular expressions happens now in the function
  258. `org-make-link-regexps'.
  259. (org-store-link): Call the functions in `org-store-link-functions'.
  260. (org-add-link-type): New function.
  261. (org-store-link-functions): New variable.
  262. (org-activate-tags): Force matches to be in headlines.
  263. (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
  264. (org-columns-display-here): Make sure this works in a narrowed
  265. buffer by checking for point-min.
  266. (org-columns-display-here): Make the rest of the line intangible,
  267. so that point never can be there.
  268. (org-cleaned-string-for-export): Use `with-current-buffer'.
  269. (org-replace-region-by-html): Use `with-current-buffer'.
  270. (org-unfontify-region, org-do-occur, org-columns-display-here)
  271. (org-columns-remove-overlays, org-columns-quit)
  272. (org-columns-edit-value, org-columns-next-allowed-value)
  273. (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
  274. (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
  275. (org-agenda-todo, org-agenda-change-all-lines)
  276. (org-agenda-align-tags, org-agenda-priority)
  277. (org-agenda-set-tags, org-agenda-toggle-archive-tag)
  278. (org-agenda-show-new-time, org-cleaned-string-for-export)
  279. (org-export-grab-title-from-buffer):
  280. (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
  281. instead of `buffer-read-only'.
  282. (org-export-as-html): Set `coding-system-for-write'.
  283. (org-remember-store-without-prompt): New option.
  284. (org-archive-subtree): Fixed bug with modifying TODO keyword.
  285. (org-beginning-of-line): Also treat C-a special in items.
  286. (org-table-convert-refs-to-rc): Fixed problem with column
  287. reference after "..".
  288. (org-columns-compute): Don't mark buffer modified because of text
  289. properties.
  290. (org-batch-store-agenda-views): Use the variable
  291. `default-directory', not the function.
  292. (org-clock-out-if-current): Respect
  293. `org-clock-out-when-done'.
  294. (org-clock-out-when-done): New option.
  295. (org-html-entities): Added HTML entities for smileys.
  296. * org.texi (Adding hyperlink types): New section.
  297. (Embedded LaTeX): Chapter updated because of LaTeX export.
  298. (LaTeX export): New section.
  299. (Using links out): New section.
  300. -----------------------------------------------------------------
  301. 2007-07-10 Carsten Dominik <dominik@science.uva.nl>
  302. * org.texi (Properties and columns): Chapter rewritten.
  303. 2007-07-03 Carsten Dominik <dominik@science.uva.nl>
  304. * org.el (org-agenda-day-view, org-agenda-week-view): Remember
  305. span as default.
  306. (org-columns-edit-value): Renamed from `org-column-edit'.
  307. (org-columns-display-here-title): Renamed from
  308. `org-overlay-columns-title'.
  309. (org-columns-remove-overlays): ` Renamed from
  310. org-remove-column-overlays'.
  311. (org-columns-get-autowidth-alist): ` Renamed from
  312. org-get-columns-autowidth-alist'.
  313. (org-columns-display-here): Renamed from `org-overlay-columns'.
  314. (org-columns-new-overlay): Renamed from `org-new-column-overlay'.
  315. (org-columns-quit): Renamed from `org-column-quit'.
  316. (org-columns-show-value): Renamed from `org-column-show-value'.
  317. (org-columns-content, org-columns-widen)
  318. (org-columns-next-allowed-value)
  319. (org-columns-edit-allowed, org-columns-store-format)
  320. (org-columns-uncompile-format, org-columns-redo)
  321. (org-columns-edit-attributes, org-delete-property)
  322. (org-set-property, org-columns-update)
  323. (org-columns-compute, org-columns-eval)
  324. (org-columns-not-in-agenda, org-columns-compute-all)
  325. (org-property-next-allowed-value)
  326. (org-columns-compile-format)
  327. (org-fill-paragraph-experimental)
  328. (org-string-to-number, org-property-action)
  329. (org-columns-move-left, org-columns-new )
  330. (org-column-number-to-string)
  331. (org-property-previous-allowed-value)
  332. (org-at-property-p, org-columns-delete)
  333. (org-columns-previous-allowed-value)
  334. (org-columns-move-right, org-columns-narrow)
  335. (org-property-get-allowed-values)
  336. (org-verify-version, org-column-string-to-number)
  337. (org-delete-property-globally): New functions.
  338. (org-columns-current-fmt): Renamed from `org-current-columns-fmt'.
  339. (org-columns-overlays): Renamed from `org-column-overlays'.
  340. (org-columns-map): Renamed from `org-column-map'.
  341. (org-columns-current-maxwidths): Renamed from
  342. `org-current-columns-maxwidths'.
  343. (org-columns-begin-marker, org-columns-current-fmt-compiled)
  344. (org-previous-header-line-format)
  345. (org-columns-inhibit-recalculation)
  346. (org-columns-top-level-marker): New variables.
  347. (org-columns-default-format): Renamed from
  348. `org-default-columns-format'.
  349. (org-property-re): New constant.
  350. =====================================================================
  351. Installed as 5.01b
  352. 2007-07-02 Carsten Dominik <dominik@science.uva.nl>
  353. * org.el (orgstruct-mode-map): New variable.
  354. (orgstruct-mode): New minor mode.
  355. (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
  356. (orgstruct-make-binding, org-context-p, org-get-local-variables)
  357. (org-run-like-in-org-mode): New functions.
  358. (org-cycle-list-bullet): New command.
  359. (org-special-properties, org-property-start-re)
  360. (org-property-end-re): New constants.
  361. (org-with-point-at): New macro.
  362. (org-get-property-block, org-entry-properties, org-entry-get)
  363. (org-entry-delete, org-entry-get-with-inheritance)
  364. (org-entry-put, org-buffer-property-keys): New functions.
  365. (org-insert-property-drawer): New command.
  366. (org-entry-property-inherited-from): New variable.
  367. (org-column): New face.
  368. (org-column-overlays, org-current-columns-fmt)
  369. (org-current-columns-maxwidths, org-column-map): New variables.
  370. (org-column-menu): New menu.
  371. (org-new-column-overlay, org-overlay-columns)
  372. (org-overlay-columns-title, org-remove-column-overlays)
  373. (org-column-show-value, org-column-quit, org-column-edit): New
  374. functions.
  375. (org-columns, org-agenda-columns): New commands.
  376. (org-get-columns-autowidth-alist): New functions.
  377. (org-properties): New customize group.
  378. (org-default-columns-format): New option.
  379. 2007-06-28 Carsten Dominik <dominik@science.uva.nl>
  380. * org.el (org-priority): Realign tags after changing priority.
  381. (org-preserve-lc): New macro.
  382. (org-update-checkbox-count): Catch case when there is no headline.
  383. (org-agenda-quit): Remove any column overlays.
  384. 2007-06-25 Carsten Dominik <dominik@science.uva.nl>
  385. * org.el (org-beginning-of-item-list): Fixed bug when non-item
  386. line is indented too deep.
  387. 2007-06-24 Carsten Dominik <dominik@science.uva.nl>
  388. * org.el (org-cached-props): New variable.
  389. (org-cached-entry-get): New function.
  390. (org-make-tags-matcher): Handle property matches.
  391. 2007-06-22 Carsten Dominik <dominik@science.uva.nl>
  392. * org.el (org-table-recalculate): Swap evaluation order: Field
  393. formula first, then column formulas, but don't allow them to
  394. overwrite the field formulas.
  395. (org-table-eval-formula): New argument untouchable.
  396. (org-table-put-field-property): New function.
  397. ========================================================================
  398. 2007-06-21 Carsten Dominik <dominik@science.uva.nl>
  399. * org.el (org-export-with-footnotes): New option.
  400. 2007-06-20 Carsten Dominik <dominik@science.uva.nl>
  401. * org.el (org-export-as-html): Fixed replacement bug for XEmacs.
  402. (org-agenda-default-appointment-duration): New option.
  403. 2007-06-19 Carsten Dominik <dominik@science.uva.nl>
  404. * org.texi (Tag): Section swapped with node Timestamps.
  405. (Formula syntax for Lisp): Document new `L' flag.
  406. * org.el (org-end-time-was-given): New variable.
  407. (org-read-date): Look for time range.
  408. (org-timestamp-change): Deal with time range issues.
  409. (org-modify-ts-extra): New function.
  410. (org-remember-apply-template, org-add-planning-info)
  411. (org-time-stamp, org-time-stamp-inactive): Make use of
  412. `org-end-time-was-given'.
  413. (org-set-regexps-and-options, org-activate-tags)
  414. (org-archive-subtree, org-toggle-tag)
  415. (org-make-org-heading-search-string, org-open-at-point)
  416. (org-link-search, org-remember-handler, org-complete)
  417. (org-scan-tags, org-make-tags-matcher, org-fast-tag-selection)
  418. (org-get-tags, org-get-buffer-tags, org-dblock-write:clocktable)
  419. (org-agenda-list-stuck-projects, org-format-agenda-item)
  420. (org-agenda-align-tags, org-get-tags-at, org-export-as-ascii)
  421. (org-ascii-level-start, org-export-as-html)
  422. (org-export-cleanup-toc-line, org-html-level-start): Use [:alnum:]
  423. to match tags, in order to allow lanufage-specific characters in
  424. tags.
  425. (org-beginning-of-item-list): New command.
  426. (org-target): New face.
  427. (org-activate-links): New link type target.
  428. ======================================================================
  429. 2007-06-06 Carsten Dominik <dominik@science.uva.nl>
  430. * textmodes/org.el:
  431. (org-export-region-as-html, org-replace-region-by-html)
  432. (org-number-to-letters, org-table-fedit-finish)
  433. (org-normalize-color, org-table-fedit-ref-right)
  434. (org-date-to-gregorian, org-table-fedit-move)
  435. (org-table-convert-refs-to-rc, org-calendar-holiday)
  436. (org-table-fedit-toggle-ref-type, org-write-agenda)
  437. (org-colgroup-info-to-vline-list, org-agenda-todo-previousset)
  438. (org-defkey, org-encode-for-stdout)
  439. (org-indent-line-function, org-export-as-html-to-buffer)
  440. (org-store-agenda-views, org-update-mode-line)
  441. (org-find-if, org-delete-all)
  442. (org-table-fedit-convert-buffer, org-emphasize)
  443. (org-uniquify, org-table-fedit-lisp-indent)
  444. (org-table-fedit-scroll, org-get-todo-sequence-head)
  445. (org-table-fedit-scroll-down, org-table-fedit-line-down)
  446. (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
  447. (org-table-fedit-toggle-coordinates, org-dvipng-color)
  448. (org-table-fedit-line-up, org-table-fedit-ref-down)
  449. (org-table-formula-from-user, org-mode-flyspell-verify)
  450. (org-cycle-show-empty-lines, org-ctrl-c-ret)
  451. (org-table-formula-to-user, org-diary-to-ical-string)
  452. (orgtbl-export, org-table-fedit-post-command)
  453. (org-closed-in-range, org-shiftcontrolright)
  454. (org-table-convert-refs-to-an, org-table-hline-and-move)
  455. (org-table-formula-less-p, org-format-table-ascii)
  456. (org-agenda-get-sexps, org-shift-refpart)
  457. (org-diary-sexp-entry, org-time-string-to-absolute)
  458. (org-table-show-reference, org-letters-to-number)
  459. (org-fix-agenda-info, org-table-fedit-ref-up)
  460. (org-table-fedit-shift-reference, org-table-fedit-abort)
  461. (org-closest-date, org-shiftcontrolleft)
  462. (org-at-heading-or-item-p, org-rematch-and-replace)
  463. (org-agenda-todo-nextset, org-export-grab-title-from-buffer): New
  464. function.
  465. (org-table-edit-scroll-down, org-finish-edit-formulas)
  466. (org-table-edit-next-field, org-abort-edit-formulas)
  467. (org-font-lock-level, org-export-find-first-heading-line)
  468. (org-table-edit-line-down, org-table-edit-backward-field)
  469. (org-edit-formula-lisp-indent, org-table-edit-move)
  470. (org-check-log-option, org-this-word)
  471. (org-table-edit-line-up, org-table-edit-formulas-post-command)
  472. (org-agenda-file-to-end, org-expand-file-name)
  473. (org-fake-empty-table-line, org-table-edit-scroll)
  474. (org-toggle-log-option, org-show-reference): Function removed.
  475. (org-inhibit-invisibility, org-table-formula-make-cmp-string): New
  476. defsubst.
  477. (org-unmodified, org-batch-store-agenda-views)
  478. (org-batch-agenda-csv): New macro.
  479. (org-agenda-export): New customization group.
  480. (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
  481. (org-highest-priority, org-agenda-exporter-settings)
  482. (org-log-done-with-time, org-replace-disputed-keys)
  483. (org-format-latex-header, org-export-table-header-tags)
  484. (org-cycle-separator-lines, org-export-table-data-tags)
  485. (org-icalendar-include-sexps)
  486. (org-empty-line-terminates-plain-lists)
  487. (org-log-repeat, org-special-ctrl-a)
  488. (org-table-use-standard-references, org-disputed-keys)
  489. (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
  490. (org-agenda-export-html-style): New option.
  491. (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
  492. (org-CUA-compatible): Option removed.
  493. (org-agenda-structure, org-sexp-date): New face.
  494. (org-todo-keywords-for-agenda, org-not-done-keywords)
  495. (org-planning-or-clock-line-re, org-agenda-name)
  496. (org-table-colgroup-info, org-todo-sets)
  497. (constants-unit-system, org-clock-mode-line-entry)
  498. (org-mode-line-timer, org-table-current-begin-pos)
  499. (org-todo-keywords-1, org-mode-line-string)
  500. (org-table-clean-did-remove-column, org-table-fedit-map)
  501. (org-clock-heading, org-table-buffer-is-an)
  502. (org-agenda-info, org-done-keywords)
  503. (org-done-keywords-for-agenda, org-todo-heads)
  504. (org-todo-kwd-alist, org-clock-start-time): New variable.
  505. (org-todo-kwd-priority-p, org-edit-formulas-map)
  506. (org-repeat-re, org-todo-kwd-max-priority)
  507. (org-version, org-done-string)
  508. (org-table-clean-did-remove-column-1, org-disputed-keys): Variable
  509. removed.
  510. (org-table-translate-regexp, org-repeat-re, org-version): New
  511. constant.
  512. (org-ts-lengths): Constant removed.
  513. (org-follow-gnus-link): Don't ask how many articles to read.
  514. (org-export-find-first-export-line): Renamed from
  515. `org-export-find-first-heading'. Use
  516. `org-export-skip-text-before-1st-heading'.
  517. (org-table-fedit-post-command): Renamed from
  518. `org-table-edit-formulas-post-command'.
  519. (org-table-fedit-finish): Renamed from `org-finish-edit-formulas'.
  520. (org-table-fedit-abort): Renamed from `org-abort-edit-formulas'.
  521. (org-table-fedit-lisp-indent): Renamed from
  522. `org-edit-formula-lisp-indent'.
  523. (org-table-show-reference): Renamed from `org-show-reference'.
  524. (org-table-store-formulas): Use `org-table-formula-less-p'.
  525. (org-table-edit-formulas): Position cursor to current field
  526. equation.
  527. (org-update-checkbox-count, org-hide-archived-subtrees)
  528. (org-timestamp-up-day, org-timestamp-down-day)
  529. (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
  530. (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
  531. (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
  532. (org-shiftleft, org-ctrl-c-ctrl-c, org-context): Let
  533. `org-on-heading-p' also check for invisible heading.
  534. (org-read-date): Match am/pm times.
  535. (org-eval-in-calendar): Fix default date in prompt.
  536. -------------------------------------------------------------------------
  537. installed as 4.67
  538. 2007-02-25 Carsten Dominik <dominik@science.uva.nl>
  539. * org.texi (The spreadsheet): Renamed from "Table calculations".
  540. Completely reorganized and rewritten.
  541. (CamelCase links): Section removed.
  542. (Repeating items): New section.
  543. (Tracking TODO state changes): New section.
  544. (Agenda views): Chapter reorganized and rewritten.
  545. (HTML export): Section rewritten.
  546. (Tables in arbitrary syntax): New section.
  547. (Summary): Better feature summary.
  548. (Activation): Document problem with cut-and-paste of Lisp code
  549. from PDF files.
  550. (Visibility cycling): Document indirect buffer use.
  551. (Structure editing): Document sorting.
  552. (Remember): Section rewritten.
  553. (Time stamps): Better description of time stamp types.
  554. (Tag searches): DOcument regular expression search for tags.
  555. (Stuck projects): New section.
  556. (In-buffer settings): New keywods.
  557. (History and Acknowledgments): Updated description.
  558. 2007-02-22 Carsten Dominik <dominik@science.uva.nl>
  559. * org.el (org-table-overlay-coordinates)
  560. (org-table-toggle-coordinate-overlays): New functions.
  561. (org-table-overlay-coordinates, org-table-coordinate-overlays):
  562. New variables.
  563. (org-startup-with-deadline-check): Option removed.
  564. (org-mode): Remove deadline check on startup.
  565. (org-table-limit-column-width): Option removed.
  566. (org-table-formula-numbers-only): Option removed.
  567. (org-link-style, org-link-format): Options removed.
  568. (org-select-agenda-window, org-fit-agenda-window): Options
  569. removed.
  570. (org-export-ascii-show-new-buffer)
  571. (org-export-html-show-new-buffer): Options removed.
  572. (org-activate-links): Camel option removed.
  573. (org-file-link-context-use-camel-case): Option removed.
  574. (org-camel-regexp): Veriable removed.
  575. (org-activate-camels): Function removed.
  576. (org-store-link): Removed Camel stuff.
  577. (org-make-org-heading-camel): Function removed.
  578. (org-open-at-point): Removed camel stuff.
  579. (org-link-search): Removed camel stuff.
  580. (org-camel-to-words): Function removed.
  581. (org-get-agenda-file-buffer): Make sure we prepare the
  582. base buffers, not any indirect buffers.
  583. (org-sort-entries): Sort top-level when not on a
  584. headline, and no active region.
  585. (org-in-regexp): New function.
  586. (org-search-not-self): Renamed from `org-search-not-link'.
  587. (org-open-link-marker): New variable.
  588. (org-open-at-point): Set `org-open-link-marker'.
  589. (org-print-icalendar-entries): Fixed bug with excluding DONE
  590. entries from the exported list.
  591. (org-edit-formula-lisp-indent): New command.
  592. (orgtbl-to-texinfo, orgtbl-to-html): New functions.
  593. (orgtbl-to-latex, orgtbl-insert-radio-table)
  594. (orgtbl-toggle-comment, orgtbl-send-table): New functions.
  595. (orgtbl-radio-table-templates): New option.
  596. (org-store-link-props):
  597. (org-remember-templates): More possibilities to insert
  598. info into templates.
  599. (org-remember-apply-template): Make use of the extended template
  600. capabilities.
  601. (org-remember-redo-template): New command.
  602. (org-upgrade-old-links)
  603. (org-table-modify-formulas, org-table-replace-in-formulas)
  604. (org-table-find-dataline)
  605. (org-table-get-vertical-vector): Functions removed.
  606. (org-table-remove-rectangle-highlight)
  607. (org-time-stamp-format, org-toggle-log-option)
  608. (org-table-highlight-rectangle)
  609. (org-table-iterate, org-table-make-reference):
  610. (org-translate-time, org-tree-to-indirect-buffer)
  611. (org-table-field-info, org-table-fix-formulas)
  612. (org-table-force-dataline, org-table-get-descriptor-line)
  613. (org-table-get-range)
  614. (org-skip-comments, org-sort)
  615. (org-sort-entries, org-sublist, org-table-add-rectangle-overlay)
  616. (org-table-current-dline, org-table-current-field-formula)
  617. (org-table-edit-backward-field)
  618. (org-table-edit-formulas-post-command)
  619. (org-table-edit-line-down, org-table-edit-line-up)
  620. (org-agenda-archive)
  621. (org-agenda-clock-cancel)
  622. (org-agenda-clock-out, org-agenda-list-stuck-projects)
  623. (org-agenda-open-link, org-agenda-show-new-time)
  624. (org-agenda-skip-subtree-when-regexp-matches)
  625. (org-agenda-tree-to-indirect-buffer, org-agenda-undo)
  626. (org-at-regexp-p, org-auto-repeat-maybe, org-check-log-option)
  627. (org-do-sort, org-file-image-p, org-find-overlays)
  628. (org-find-row-type, org-get-indirect-buffer, org-get-repeat)
  629. (org-highlight-until-next-command, org-isearch-end)
  630. (org-match-any-p, org-next-link, org-previous-link):
  631. (org-remove-subtree-entries-from-agenda, org-replace-escapes)
  632. (org-rewrite-old-row-references)
  633. (org-isearch-post-command)
  634. (org-table-edit-move, org-table-edit-next-field)
  635. (org-table-edit-scroll, org-table-edit-scroll-down)
  636. (org-set-frame-title, org-show-reference)
  637. (org-unhighlight-once, org-verify-change-for-undo): New
  638. functions.
  639. (org-show-variable): Command removed.
  640. (org-add-log-maybe): New arguments STATE, FINDPOS
  641. (org-table-sort-lines): Rewritten from scratch.
  642. (org-link-search): New argument AVOID-POS.
  643. (org-print-icalendar-entries): Argument CATEGORY removed.
  644. (org-run-agenda-series): Argument WONDOW removed.
  645. (org-next-link, org-previous-link): New commands.
  646. (org-agenda-date-format): New option.
  647. (org-table-iterate): New command.
  648. (org-table-modify-formulas)
  649. (org-table-replace-in-formulas): Functions removed.
  650. (org-table-fix-formulas): New function.
  651. (org-table-insert-column, org-table-delete-column)
  652. (org-table-move-column): Use `org-table-fix-formulas'.
  653. (org-follow-gnus-link): Patch from Bastien/Leo.
  654. (org-table-current-field-formula): New function.
  655. (org-file-image-p): New function.
  656. (org-agenda-show-new-time): New function.
  657. (org-agenda-date-later): Call `org-agenda-show-new-time'.
  658. (org-with-remote-undo): New macro.
  659. (org-agenda-undo): New command.
  660. (org-verify-change-for-undo): New function.
  661. (org-time-stamp-format): New function.
  662. (org-agenda-get-timestamps): Skip scheduled if DONE and requested
  663. by user.
  664. (org-match-any-p): New function.
  665. (org-make-tags-matcher): Handle regular expressions for tag and
  666. todo matches.
  667. (org-read-date): Accept "+N" as input for a date relative to the
  668. current date.
  669. (org-remove-subtree-entries-from-agenda): New function.
  670. (org-agenda-archive, org-agenda-kill): Use
  671. `org-remove-subtree-entries-from-agenda'.
  672. (org-do-sort, org-sort-entries): New functions.
  673. (org-sort): New command.
  674. (org-table-sort-lines): Use `org-do-sort'.
  675. (org-fix-decoded-time): New function.
  676. (org-table-number-regexp): Require 0x... to identify as number in
  677. tables.
  678. (org-startup-options): New keywords for note taking.
  679. (org-upgrade-old-links): Function removed.
  680. (org-get-repeat): New function.
  681. (org-show-context): Also show siblings on current level.
  682. (org-show-siblings): New function.
  683. (org-isearch-end, org-isearch-post-command): New functions.
  684. (org-show-siblings): New option.
  685. (org-show-context): Use `org-show-siblings'.
  686. (org-table-maybe-recalculate-line): No longer require `calc-eval'
  687. to be bound, because user may just use elisp.
  688. ----------------------------------------------------------------------
  689. installed as 4.56
  690. 2006-11-15 Carsten Dominik <dominik@science.uva.nl>
  691. * org.texi: Fix typos
  692. (Agenda commands): Document `C-k'.
  693. * orgcard.tex (section{Agenda Views}): Document `C-k'.
  694. * org.el (org-scan-tags): Re-align code fixed.
  695. (org-detach-overlay): Renamed from `org-detatch-overlay'.
  696. (org-table-convert-region): Insert space after column separator.
  697. (org-agenda-kill): New command.
  698. (org-metaleft): Call `org-outdent-item' on bullets.
  699. (org-metaright): Call `org-indent-item' on bullets.
  700. (org-timestamp-change): Set `org-last-changed-timestamp'.
  701. (org-current-line): Make sure (bolp) returns correct result.
  702. (org-agenda-change-all-lines): Make sure TODO are highlighted.
  703. ----------------------------------------------------------------------------
  704. Installed as 4.54
  705. 2006-11-10 Carsten Dominik <dominik@science.uva.nl>
  706. * org.el (org-scan-tags): Make the search case-sensitive.
  707. (org-tags-sparse-tree): Don't overrule
  708. `org-show-following-heading' and `org-show-hierarchy-above'.
  709. (org-reveal): New command.
  710. (org-show-context): Renamed from `org-show-hierarchy-above'.
  711. (org-fast-tag-selection-single-key): New option.
  712. (org-fast-tag-show-exit, org-set-current-tags-overlay): New
  713. functions.
  714. (org-tags-overlay): New variable.
  715. (org-agenda-todo-ignore-deadlines): New option.
  716. ("session"): Add circular data structure `org-mark-ring' to
  717. exceptions list in session.el.
  718. (org-agenda-window-setup, org-agenda-restore-windows-after-quit):
  719. New options.
  720. (org-agenda-quit): Use `org-agenda-restore-windows-after-quit'.
  721. (org-prepare-agenda, org-agenda-quit): Use
  722. `org-agenda-window-setup'.
  723. (org-pre-agenda-window-conf, org-blank-before-new-entry): New
  724. variables.
  725. (org-finalize-agenda): Activate bracket links in agenda.
  726. (org-at-timestamp-p, org-at-date-range-p): Additional argument
  727. INACTIVE-OK.
  728. (org-show-hierarchy-above, org-show-following-heading): List
  729. values allowed for fine-tuned configuration.
  730. (org-show-hierarchy-above): New argument CONTEXT, use the
  731. fine-tuned settings in `org-show-hierarchy-above' and
  732. `org-show-following-heading'.
  733. (org-display-custom-time): New function.
  734. (org-toggle-time-stamp-overlays, org-insert-time-stamp): New
  735. function.
  736. (org-display-custom-times, org-time-stamp-custom-formats):
  737. (org-maybe-intangible): New macro.
  738. (org-activate-bracket-links, org-hide-wide-columns): Use
  739. `org-maybe-intangible'.
  740. (org-open-file): Use `shell-quote-argument'.
  741. (org-display-internal-link-with-indirect-buffer): New option.
  742. (org-file-remote-p): Get regexp from list.
  743. (org-link-expand-abbrev): New function.
  744. (org-link-abbrev-alist): New option.
  745. (org-open-at-point, org-cleaned-string-for-export): Call
  746. `org-link-expand-abbrev'.
  747. (org-timeline, org-agenda-list, org-todo-list)
  748. (org-tags-view): Remove the KEEP-MODES argument.
  749. (org-finalize-agenda-hook): New hook.
  750. (org-get-alist-option): New function.
  751. (org-follow-timestamp-link): New function.
  752. (org-open-at-point): Call `org-follow-timestamp-link'.
  753. (org-log-note-marker, org-log-note-purpose)
  754. (org-log-note-window-configuration): New variables.
  755. (org-add-log-maybe, org-add-log-note, org-store-log-note): New
  756. functions.
  757. (org-log-note-headings): New option.
  758. (org-dblock-write:clocktable): Bug fix, removed infinite loop.
  759. (org-store-link): Support for dired-mode.
  760. (org-open-file): Substitute environment variables into filename.
  761. (org-last): New defsubst.
  762. (org-agenda-re-align-tags): New function.
  763. (org-agenda-align-tags-to-column): New option.
  764. (org-agenda-timeline): Group removed.
  765. (org-prepare-agenda, org-prepare-agenda-buffers)
  766. (org-run-agenda-series, org-timeline, org-agenda-list)
  767. (org-todo-list, org-tags-view): Call `org-agenda-prepare' and set
  768. the text property inticating the agenda type.
  769. (org-agenda-post-command-hook): Get agenda type from text property
  770. at point.
  771. (org-agenda): Handle command sets. Set
  772. `org-agenda-last-arguments' and obey
  773. `org-agenda-overriding-arguments'.
  774. (org-agenda-overriding-arguments, org-agenda-last-arguments): New
  775. variables.
  776. (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
  777. (org-agenda-week-view, org-agenda-day-view): Use
  778. `org-agenda-overriding-arguments' to make updating work with
  779. multi-block agendas.
  780. (org-agenda-prefix-format): Allow different formats for the
  781. different agenda entry types.
  782. (org-timeline-prefix-format): Option removed, use
  783. `org-agenda-prefix-format' instead.
  784. (org-prepare-agenda): New function.
  785. (org-select-timeline-window): Option removed, use
  786. `org-select-agenda-window' instead.
  787. (org-respect-restriction): Variable removed.
  788. (org-cmp-tag): New function.
  789. (org-agenda-sorting-strategy, org-entries-lessp): Implement
  790. sorting by last tag.
  791. (org-complete): Better completion in in-buffer option lines.
  792. (org-in-item-p): New function.
  793. (org-org-menu): Added entries for checkboxes.
  794. (org-cycle): Extra brouping in outline-regexp, because it is used
  795. in a search with "^" prepended.
  796. (org-provide-checkbox-statistics): New option.
  797. (org-set-font-lock-defaults): Highlight checkbox statistics.
  798. (org-update-checkbox-count-maybe)
  799. (org-get-checkbox-statistics-face): New functions.
  800. (org-update-checkbox-count): New command.
  801. (org-insert-item, org-toggle-checkbox): Call
  802. `org-update-checkbox-count-maybe'.
  803. (org-export-as-html): XEmacs compatibility for coding system.
  804. (org-force-cycle-archived): New command.
  805. (org-cycle-hide-archived-subtrees): Display message when ARCHIVE
  806. overrules cycling.
  807. (org-fix-position-after-promote): If the line contains only a todo
  808. keyword, add a final space.
  809. (org-promote-subtree, org-demote-subtree): Call
  810. `org-fix-position-after-promote'.
  811. * orgcard.tex (section{Archiving}): Document C-TAB.
  812. (section{TODO Items and Checkboxes}): Checkbox keys moved to this
  813. section, added documentation for the key `C-c #'.
  814. * org.texi (ARCHIVE tag): Document C-TAB for forcing cycling of
  815. archived trees.
  816. (Checkboxes): Section moved to chapter 5, and extended.
  817. (The date/time prompt): New section.
  818. (Link abbreviations): New section.
  819. (Presentation and sorting): New section.
  820. (Custom agenda views): Section completely rewritten.
  821. (Summary): Compare with Planner.
  822. (Feedback): More info about creating backtraces.
  823. (Plain lists): Modified example.
  824. (Breaking down tasks): New section.
  825. (Custom time format): New section.
  826. (Time stamps): Document inactive timestamps.
  827. (Setting tags): More details about fast tag selection.
  828. (Block agenda): New section.
  829. (Custom agenda views): Section rewritten.
  830. (Block agenda): New section.
  831. ----------------------------------------------------------------------
  832. installed as 4.44
  833. 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
  834. * org.el (org-clock-special-range, org-clock-update-time-maybe):
  835. New functions.
  836. (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
  837. not only a-z.
  838. (org-agenda-get-blocks): Allow multiple blocks per headline.
  839. (org-timestamp-change): Call `org-clock-update-time-maybe'.
  840. (org-export-html-title-format)
  841. (org-export-html-toplevel-hlevel): New options.
  842. (org-export-language-setup): Added support for Czech.
  843. (org-mode, org-insert-todo-heading, org-find-visible)
  844. (org-find-invisible, org-invisible-p, org-invisible-p2)
  845. (org-back-to-heading, org-on-heading-p, org-up-heading-all)
  846. (org-show-subtree, org-show-entry, org-make-options-regexp):
  847. Removed compatibility support for old outline-mode.
  848. (org-check-occur-regexp): Funtion removed.
  849. (org-on-heading-p, org-back-to-heading): Made defalias.
  850. (org-set-local): New defsubst.
  851. (org-set-regexps-and-options, org-mode)
  852. (org-set-font-lock-defaults, org-edit-agenda-file-list)
  853. (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
  854. (org-remember-apply-template, org-table-edit-field)
  855. (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
  856. (org-set-autofill-regexps): Use `org-set-local'.
  857. (org-table-eval-formula): Fixed bug with parsing of display flags.
  858. ----------------------------------------------------------------------
  859. installed as 4.43
  860. 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
  861. * org.texi (Exporting): Document `C-c C-e' as the prefix for
  862. exporting commands.
  863. (Global TODO list): Document the use of the variables
  864. `org-agenda-todo-ignore-scheduled' and
  865. `org-agenda-todo-list-sublevels'.
  866. * org.el (org-agenda-get-todos): Skip subtree also if entry is
  867. skipped because it has been scheduled.
  868. (org-prepare-agenda-buffers): Don't mark buffers as modified when
  869. changing `:org-archived' and `:org-comment' properties.
  870. ----------------------------------------------------------------------
  871. installed as 4.42
  872. 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
  873. * org.el (org-mode): Removed no invalid settings for calc embedded
  874. mode.
  875. (org-mode-p): New defsubst.
  876. (org-save-all-org-buffers): New function.
  877. (org-first-headline-recenter): Enclose outline-regexp in group
  878. delimiters.
  879. * org.texi (Agenda commands): Document `s' key to save all
  880. org-mode buffers.
  881. * orgcard.tex (section{Agenda Views}): Document `s' key to save
  882. all org-mode buffers.
  883. ----------------------------------------------------------------------
  884. installed as 4.41
  885. 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
  886. * org.texi (Checkboxes): New section.
  887. * orgcard.tex (section{Structure Editing}): Document checkbox
  888. toggling.
  889. * org.el (org-prepare-agenda-buffers): Use `invisible-OK' argument
  890. for `org-end-of-subtree'.
  891. (org-export-cleanup-toc-line): Renamed from
  892. `org-html-cleanup-toc-line'.
  893. (org-beginning-of-item): Fixed bug in regular expression for white
  894. line.
  895. (org-export-as-html): Enforce space after bullet in plain list
  896. items.
  897. 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
  898. * org.el (org-set-autofill-regexps): Require space after plain
  899. list bullet for paragraph-start.
  900. (org-ts-regexp3): New constant.
  901. (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
  902. (org-timestamp-up-day, org-timestamp-down-day)
  903. (org-timestamp-change): Work with inactive timestamps.
  904. (org-ts-regexp1): Don't allow brackets in time stamps.
  905. ----------------------------------------------------------------------
  906. installed as 4.40
  907. 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
  908. * org.el (org-context): New contexts :item-bullet, :latex-fragment,
  909. :latex-preview.
  910. (org-overlays-at, org-overlay-start, org-overlay-end): New
  911. compatibility functions.
  912. 2006-06-27 Carsten Dominik <dominik@science.uva.nl>
  913. * org.el (org-inside-LaTeX-fragment-p): More accurate matching,
  914. using the exact regexp that will be used during export.
  915. (org-latex-regexps): New variable.
  916. (org-cdlatex-mode): Improved advice for `texmathp'.
  917. (turn-on-org-cdlatex): New function.
  918. ----------------------------------------------------------------------
  919. installed as 4.39
  920. 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
  921. * org.el (org-cdlatex-mode-map)
  922. (org-cdlatex-texmathp-advice-is-done): New variables.
  923. (org-cdlatex-mode): New minor mode.
  924. (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New
  925. functions.
  926. (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New
  927. commands.
  928. (org-export-with-archived-trees): New option.
  929. (org-open-file): Removed the call to
  930. `convert-standard-filename'.
  931. (org-archive-tag, org-agenda-skip-archived-trees)
  932. (org-cycle-open-archived-trees)
  933. (org-sparse-tree-open-archived-trees): New options.
  934. (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
  935. (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip): New
  936. functions.
  937. (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New
  938. commands.
  939. (org-agenda-mode-map): Add binding of
  940. `org-agenda-toggle-archive-tag'.
  941. (org-mode-map): Add binding for `org-toggle-archive-tag'.
  942. (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
  943. Call `org-prepare-agenda-buffers'.
  944. (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
  945. (org-file-apps, org-file-apps-defaults-gnu)
  946. (org-file-apps-defaults-macosx)
  947. (org-file-apps-defaults-windowsnt): Handle remote files by forcing
  948. them to be opened in Emacs.
  949. * orgcard.tex (section{LaTeX and cdlatex-mode}): New section.
  950. * org.texi (Embedded LaTeX): New chapter.
  951. (Archiving): Section rewritten.
  952. (Enhancing text): Some parts moved to the new chapter about
  953. LaTeX.
  954. ----------------------------------------------------------------------
  955. installed as 4.38
  956. 2006-06-18 Carsten Dominik <dominik@science.uva.nl>
  957. * org.texi (Publishing links): Document the
  958. `:link-validation-function' property.
  959. (Extensions and Hacking): New chapter, includes some sections of
  960. the "Miscellaneous" chapter.
  961. * orgcard.tex (section{Clocking Time}): Add new clocking commands.
  962. (section{Structure Editing}): Add global archiving command.
  963. * org.el Require noutline, also on XEmacs.
  964. (org-end-of-subtree): Return point.
  965. (org-dblock-start-re, org-dblock-end-re): New constants.
  966. (org-create-dblock, org-prepare-dblock, org-map-dblocks)
  967. (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
  968. (org-update-all-dblocks, org-find-dblock): New functions.
  969. (org-collect-clock-time-entries): New function.
  970. (org-html-handle-time-stamps): Never export CLOCK timeranges.
  971. (org-fixup-indentation): Modified to deadl correctly with lines
  972. starting with TAB. Only one argument DIFF now.
  973. (org-demote, org-promote): Call `org-fixup-indentation' with just
  974. one argument, DIFF.
  975. (org-mode): Don't mark buffer as modified when aligning tables.
  976. (org-clock-sum): Don't makr buffer modified when adding time sum
  977. properties.
  978. (org-export-as-html): Added support for a link validation
  979. function.
  980. (org-archive-all-done): New function.
  981. (org-archive-subtree): New prefix argument. When set, archive all
  982. done subtrees in this buffer.
  983. (org-remove-clock-overlays)
  984. (org-remove-occur-highlights): Use
  985. `org-inhibit-highlight-removal'.
  986. (org-inhibit-highlight-removal): New variable, for dyn amic
  987. scoping.
  988. (org-put-clock-overlay): Don't swallow last headline character
  989. when displaying overlay.
  990. (org-store-link): Link to `image-mode' with just the file name.
  991. ----------------------------------------------------------------------
  992. installed as 4.37
  993. 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
  994. * org.el (org-agenda-mode-map): Add bindings for clocking
  995. functions.
  996. (org-agenda-clock-in, org-check-running-clock)
  997. (org-clock-out-if-current, org-remove-clock-overlays)
  998. (org-put-clock-overlay): New functions.
  999. (org-clock-marker, org-clock-file-total-minutes)
  1000. (org-clock-overlays): New variables
  1001. (org-clock-display, org-clock-sum, org-clock-cancel)
  1002. (org-clock-out, org-clock-in): New commands.
  1003. (org-export): New function.
  1004. (org-emph-re): New constant.
  1005. (org-set-emph-re, org-do-emphasis-faces): New functions.
  1006. (org-emphasis-regexp-components, org-emphasis-alist): New options.
  1007. (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
  1008. (org-export-html-convert-emphasize): Use the configurable
  1009. emphasis.
  1010. (org-cleaned-string-for-export): Make multiline emphasis visible
  1011. to the exporter. New optional argument PARAMETERS.
  1012. (org-export-as-html): Specify :emph-multiline parameter to
  1013. `org-cleaned-string-for-export'.
  1014. * org.texi (Progress logging): New section.
  1015. ----------------------------------------------------------------------
  1016. installed as 4.36
  1017. 2006-06-02 Carsten Dominik <dominik@science.uva.nl>
  1018. * org.el (org-archive-subtree): Use end-of-subtree as insertion
  1019. point and control the number of empty lines.
  1020. (org-paste-subtree): Limit the number of empty lines at the end of
  1021. the inserted tree.
  1022. (org-agenda): Use buffer name of current file for narrowing.
  1023. (org-export-as-xml): Command removed.
  1024. (org-export-xml-type): Option removed.
  1025. (org-mode-map): Call `org-export-as-xoxo' directly.
  1026. (org-get-indentation): New optional argument LINE.
  1027. (org-fix-indentation, org-remove-tabs): New functions.
  1028. (org-export-as-ascii, org-ascii-level-start): Determine and apply
  1029. correct indentation for headlines that are converted it items.
  1030. (org-skip-comments): Remove table lines that contain narrowing
  1031. cookies but no other non-empty fields.
  1032. (org-set-tags): Allow groups of mutually exclusive tags.
  1033. (org-cmp-time): Sort 24:21 before items without time.
  1034. (org-get-time-of-day): Fixed the interpretation of 12pm and 12am.
  1035. (org-open-at-point): Require double colon also for numbers.
  1036. * org.texi (ASCII export): Document indentation adaptation.
  1037. (Setting tags): Document mutually-exclusive tags.
  1038. ----------------------------------------------------------------------
  1039. installed as 4.35
  1040. 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
  1041. * org.el (org-agenda-highlight-todo): Make sure regexp does only
  1042. match in the right place.
  1043. (org-upcoming-deadline): New face.
  1044. (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
  1045. (org-export-ascii-underline): Renamed and made an option (was
  1046. constant `org-ascii-underline').
  1047. (org-export-ascii-bullets): New option.
  1048. (org-export-as-html): Many changes to emit valid XHTML.
  1049. (org-par-open): New variable.
  1050. (org-open-par, org-close-par-maybe, org-close-li-maybe): New
  1051. functions.
  1052. (org-html-do-expand, org-section-number): Fixedcase in
  1053. `replace-match'.
  1054. (org-timeline): Pass `org-timeline-show-empty-dates' to
  1055. `org-get-all-dates'. Interpret empty dates returned by
  1056. `org-get-all-dates'.
  1057. (org-get-all-dates): New argument EMPTY. Add dates without
  1058. entries to the list, mark large ranges of empty dates.
  1059. (org-point-in-group, org-context): New functions.
  1060. ----------------------------------------------------------------------
  1061. installed as 4.34
  1062. 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
  1063. * org.el (org-next-item, org-previous-item): Emit more compact
  1064. error message.
  1065. (org-tags-view): Refresh category table in each file.
  1066. (org-table-justify-field-maybe): Removed superfluous arguments to
  1067. `format'.
  1068. (org-export-as-html): Insert "<p>" before postamble.
  1069. (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill
  1070. ring.
  1071. ---------------------------------------------------------------------
  1072. installed as 4.33
  1073. 2006-05-23 Carsten Dominik <dominik@science.uva.nl>
  1074. * org.el (org-open-at-point): Use renamed variable
  1075. `org-confirm-shell-link-function'.
  1076. (org-confirm-shell-link-function): Renamed from
  1077. `org-confirm-shell-links'.
  1078. (org-export-directory): New function.
  1079. (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
  1080. (org-export-icalendar): Use `org-export-directory'.
  1081. (org-indent-item): Keep cursor position.
  1082. (org-link-file-path-type): New option.
  1083. (org-export-as-html): Fixed bug with plain lists starting in
  1084. column 0.
  1085. (org-export-as-html): Removed deadline formatting, this happens
  1086. now already in `org-html-handle-time-stamps'.
  1087. (org-export-html-style): Deadline class removed.
  1088. (org-insert-labeled-timestamps-at-point): New option.
  1089. (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
  1090. of `hide-sublevels 1', in case the first headline is not level 1.
  1091. (org-overview, org-content): New fuction.
  1092. (org-cycle-global-status, org-cycle-subtree-status): Make these
  1093. variables buffer-local.
  1094. (org-global-cycle): New command.
  1095. (org-shifttab): Use `org-global-cycle'.
  1096. (org-insert-heading, org-insert-item): Go to end of new
  1097. headline/item after creating it.
  1098. (org-export-visible): Renames from `org-export-copy-visible'. Now
  1099. creates a temporary org-file and applies an exporting command to
  1100. it.
  1101. (org-table-eval-formula): Support for lisp forms.
  1102. (org-agenda-todo-ignore-scheduled): New option.
  1103. (org-agenda-get-todos): Use new option
  1104. `org-agenda-todo-ignore-scheduled'.
  1105. (org-export-html-inline-images): New value `maybe'.
  1106. (org-export-as-html): Inlining of images dependent on link
  1107. description.
  1108. (org-archive-subtree): Check for end-of-buffer before trying
  1109. `kill-line'.
  1110. (org-agenda-follow-mode): New option.
  1111. (org-export-with-tags, org-export-with-timestamps): New options.
  1112. (org-html-handle-time-stamps): New function.
  1113. (org-keyword-time-regexp): New variable.
  1114. (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
  1115. (org-agenda-todo-list-sublevels): New option.
  1116. (org-html-level-start): When TITLE is nil, just close all levels.
  1117. (org-parse-key-lines, org-parse-export-options): Functions
  1118. removed, replaced by `org-infile-export-plist'.
  1119. (org-combine-plists, org-infile-export-plist)
  1120. (org-default-export-plist): New functions.
  1121. (org-export-html-preamble, org-export-html-postamble)
  1122. (org-export-html-auto-preamble, org-export-html-auto-postamble):
  1123. New variables.
  1124. (org-export-publishing-directory): New option.
  1125. (org-export-as-html, org-export-as-ascii): Use the new property
  1126. lists for settings.
  1127. (org-export-copy-visible, org-export-as-xoxo): Respect
  1128. `org-export-publishing-directory'.
  1129. (org-link-search, org-store-link, org-file-apps): Support for
  1130. links to BibTeX database entries..
  1131. (org-get-current-options, org-set-regexps-and-options): Implement
  1132. logging as a startup option.
  1133. (org-store-link): Make sure context string is never empty
  1134. (org-insert-link): Use relative path when possible.
  1135. (org-at-item-checklet-p): New function.
  1136. (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
  1137. (org-shiftmetaup, org-shiftmetadown, org-metaleft)
  1138. (org-metaright, org-metaup, org-metadown, org-shiftup)
  1139. (org-shiftdown, org-shiftright, org-shiftleft)
  1140. (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
  1141. Dispatch using `call-interactively'.
  1142. (org-call-with-arg): New defsubst.
  1143. (org-tag-alist, org-use-fast-tag-selection): New options.
  1144. (org-complete): Use `org-tag-alist'.
  1145. (org-fast-tag-insert, org-fast-tag-selection): New functions.
  1146. (org-next-item, org-previous-item): New commands.
  1147. (org-beginning-of-item, org-end-of-item): Added (interactive) to
  1148. make command.
  1149. (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
  1150. * org.texi (Plain lists): Added new item navigation commands.
  1151. (External links): Documented elisp and info links.
  1152. * orgcard.tex (section{Motion}): Added the item navigation
  1153. commands.
  1154. (section{Publishing}): New section.
  1155. (section{Links}): Documented elisp and shell links.
  1156. (Custom searches): New section.
  1157. (Publishing): New chapter.
  1158. (HTML export): Include a list of supported CSS classes.
  1159. (Setting tags): Describe the fast-tag-setting interface.
  1160. ----------------------------------------------------------------------
  1161. installed as 4.26
  1162. 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
  1163. * org.texi Many small fixes.
  1164. (Handling links): Renamed from "Managing links".
  1165. * org.el (org-mode-map): Catch conflict with old allout.el.
  1166. (org-open-at-point): Remove the "...done" message to keep
  1167. output in the echo area visible.
  1168. ----------------------------------------------------------------------
  1169. installed as 4.25
  1170. 2006-04-19 Carsten Dominik <dominik@science.uva.nl>
  1171. * org.el (org-deadline-announce): Face removed.
  1172. (org-level-faces, org-n-levels): Converted to constant.
  1173. (org-compatible-face): New function.
  1174. (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
  1175. (org-level-5, org-level-6, org-level-7, org-level-8)
  1176. (org-special-keyword, org-warning, org-headline-done, org-link)
  1177. (org-date, org-tag, org-todo, org-done, org-table, org-formula)
  1178. (org-scheduled-today, org-scheduled-previously, org-time-grid):
  1179. Face definition revised for better color tty support.
  1180. (org-bold-re, org-italic-re, org-underline-re): New constants.
  1181. (org-set-font-lock-defaults): Use the new constants.
  1182. (org-agenda-highlight-todo): New function.
  1183. (org-agenda-todo): Fixed bug with point at end of line.
  1184. (org-agenda-change-all-lines, org-finalize-agenda-entries):
  1185. Fontify TODO keywords.
  1186. (org-insert-link): Preserve relative path in ../ links.
  1187. (org-export-as-html): Convert links pointing to .org files into
  1188. links that will work beteen the exported HTML files.
  1189. (org-todo-list): Fix bug when arg=0.
  1190. (org-insert-heading): More fine-tuning.
  1191. * org.texi (Time stamps): Better explanation of the purpose of
  1192. different time stamps.
  1193. ----------------------------------------------------------------------
  1194. installed as 4.24
  1195. * org.texi (Formula syntax): Fixed link to Calc Manual.
  1196. * org.el (org-insert-heading): Insert heading before current if at
  1197. beginning of line.
  1198. (org-todo, org-date): New faces.
  1199. (org-table-align): Make sure tooltip window contains full text.
  1200. (org-no-properties): New defsubst.
  1201. (org-set-font-lock-defaults): Use new faces.
  1202. ----------------------------------------------------------------------
  1203. installed as 4.23
  1204. * org.texi (Visibility cycling): Better names for the startup
  1205. folding options.
  1206. (Exporting): Completely restructured.
  1207. (The very busy C-c C-c key): New section.
  1208. (Summary of in-buffer settings): New section.
  1209. * org.el (org-set-regexps-and-options, org-get-current-options):
  1210. Better names for the startup folding options.
  1211. ----------------------------------------------------------------------
  1212. installed as 4.22
  1213. 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
  1214. * org.el (org-ctrl-c-ctrl-c): Improved documentation string.
  1215. (org-agenda-mouse-1-follows-link)
  1216. (org-mouse-1-follows-link): New options.
  1217. (org-format-agenda-item): Fixed bug if TAGS is nil.
  1218. (org-agenda-get-scheduled): Quote `priority' symbol in plist.
  1219. * org.texi (Updating settings): New section.
  1220. ----------------------------------------------------------------------
  1221. installed as 4.21
  1222. 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
  1223. * org.texi (Link format): New section, emphasis on bracket links.
  1224. (External links): Document bracket links.
  1225. (FAQ): Expanded to cover shell links and the new link format.
  1226. * orgcard.tex (section{Tables}): Document column narrowing.
  1227. (section{Links}): Document bracket links.
  1228. * org.el
  1229. (org-export-plain-list-max-depth)
  1230. (org-table-spaces-around-separators)
  1231. (org-radio-targets, org-activate-camels)
  1232. (org-table-spaces-around-invisible-separators): Options removed.
  1233. (org-time-stamp-rounding-minutes, org-remember-templates)
  1234. (org-ellipsis, org-activate-links, org-descriptive-links): New
  1235. options.
  1236. (org-remember-apply-template, org-current-time)
  1237. (org-finish-edit-table-field)
  1238. (org-link-unescape, org-link-escape)
  1239. (org-string-width, org-table-clean-line, org-html-do-expand)
  1240. (org-edit-agenda-file-list, org-store-new-agenda-file-list)
  1241. (org-read-agenda-file-list): New functions.
  1242. (org-table-edit-field)
  1243. (org-table-create-or-convert-from-region): New commands
  1244. (org-table-toggle-vline-visibility): Command removed.
  1245. (org-table-convert-region): Made a command.
  1246. (orgtbl-deleta-backward-char,orgtbl-delete-char): Commands
  1247. removed, replaced with the normal org- functions.
  1248. (org-self-insert-command): Don't trigger realign unnecessarily
  1249. when blanking a field that is not full.
  1250. (org-mode): `Set buffer-invisibility-spec' for links.
  1251. (org-activate-links2): Hide link part and only show descriptive
  1252. part of the link.
  1253. (org-insert-link): Modified for new linking system.
  1254. (org-store-link): Store description separately, for use by
  1255. `org-insert-link'.
  1256. (org-table-align): Use `org-string-width'.
  1257. (defgroup): Completely new group structure for custom variables.
  1258. (org-agenda-files): Option: Single file name allowed. Function:
  1259. Optional argument unrestrited means ignore any restricitons.
  1260. (org-install-agenda-files-menu): Find a buffer in Org-mode before
  1261. trying to modify the menu. Use generalized access to
  1262. `org-agenda-files.'
  1263. (org-agenda-list, org-todo-list, org-cycle-agenda-files)
  1264. (org-agenda-file-to-front, org-remove-file, org-diary)
  1265. (org-tags-view, org-export-icalendar-all-agenda-files)
  1266. (org-export-icalendar-combine-agenda-files): Use generalized
  1267. access to `org-agenda-files'.
  1268. (org-remember-handler): Correctly preserve heading if present.
  1269. (org-table-insert-row, org-table-insert-hline): Deal with
  1270. invisible characters.
  1271. ----------------------------------------------------------------------
  1272. installes as 4.13
  1273. -------------------------------------------------------------------
  1274. installed as 4.10
  1275. 2006-03-14 Carsten Dominik <dominik@science.uva.nl>
  1276. * org.el (org-insert-centered): Use `string-width' to make
  1277. underlining work for wide characters.
  1278. 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
  1279. * org.el (org-goto-map, org-agenda-mode-map, org-mode-map):
  1280. Explicitly bind TAB to `org-cycle', to make sure that no binding
  1281. in `outline-mode-map' can supercede it.
  1282. --------------------------------------------------------------
  1283. installed as 4.09
  1284. 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
  1285. * org.el (org-link-search): Avoid self-matching of links, allow
  1286. target text to be distributed over several lines.
  1287. (org-search-not-link): New function.
  1288. (org-set-regexps-and-options, org-get-current-options): New
  1289. startup options.
  1290. (org-export-as-html): Take odd-level setting from local variable.
  1291. (org-fontify-emphasized-text): New option.
  1292. (org-set-font-lock-defaults): Include emphasized text.
  1293. (org-follow-mhe-link): Allow folder-only links, fix folder name.
  1294. (org-font-lock): Customize group renamed from `org-faces'.
  1295. * org.texi (Clean view): Startup options documented.
  1296. --------------------------------------------------------------
  1297. installed as 4.08
  1298. 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
  1299. * org.el Move defvars out of eval-when-compile. Use
  1300. buffer-file-name variable.
  1301. (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
  1302. arg `file'.
  1303. (org-level-faces): Remove startup dependency.
  1304. (org-cycle, org-map-tree, org-scan-tags)
  1305. (org-remember-handler): Don't call `outline-level' directly.
  1306. (org-mhe-search-all-folders): New option.
  1307. (org-mhe-get-message-folder-from-index,
  1308. org-mhe-get-message-folder): Fix indexing search.
  1309. (org-format-agenda-item): Handle nil TAGS argument.
  1310. (org-cleaned-string-for-export, org-activate-target-links)
  1311. (org-make-target-link-regexp): Deal with empty radio target list.
  1312. (org-tag): New face.
  1313. (org-get-level-face): New function.
  1314. (org-set-font-lock-defaults): Simplify setup for headlines.
  1315. (org-complete): Pass common substring to `display-completion-list'.
  1316. --------------------------------------------------------------
  1317. installed as 4.07
  1318. 2006-02-28 Carsten Dominik <dominik@science.uva.nl>
  1319. * org.el (org-get-legal-level, org-tr-level): New functions.
  1320. (org-odd-levels-only): New option.
  1321. (org-level-faces, org-paste-subtree, org-convert-to-odd-levels,
  1322. org-demote, org-promote): Deal with double-star levels.
  1323. (org-convert-to-odd-levels): New command.
  1324. (org-tr-level):
  1325. * org.el (org-export-as-html): Fixed bugs in HTML
  1326. formatting (removed nested achors).
  1327. (org-all-targets): Fixed bug with XEmacs compatibility.
  1328. (org-read-date): Add (require 'parse-time).
  1329. (org-set-tags): Fixed bug with extra inserted space.
  1330. (org-export-html-style): Define a style class for targets.
  1331. (org-agenda-keymap, org-mouse-map): Added a binding for
  1332. `follow-link'.
  1333. (org-hide-leading-stars): New option.
  1334. (org-hide): New face.
  1335. (org-set-font-lock-defaults): Allow to hide leading stars.
  1336. * org.texi (Interaction): Added item about `org-mouse.el' by Piotr
  1337. Zielinski.
  1338. (Managing links, Managing links): Documented that also mouse-1 can
  1339. be used to activate a link.
  1340. (Headlines, FAQ): Added entry about hiding leading stars.
  1341. --------------------------------------------------------------------------
  1342. installed as 4.06
  1343. 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
  1344. * org.el (org-cleaned-string-for-export, org-solidify-link-text):
  1345. New function.
  1346. (org-add-hook): Use `add-local-hook' instead of `make-local-hook'
  1347. for XEmacs, just to silence the compiler.
  1348. (org-export-as-ascii, org-export-as-html-and-open): Use
  1349. `org-cleaned-string-for-export' and create internal links.
  1350. (org-follow-mhe-link): Require mh-e, use folder.
  1351. (org-read-date):
  1352. --------------------------------------------------------------------------
  1353. Installed as 4.05
  1354. 2006-02-21 Carsten Dominik <dominik@science.uva.nl>
  1355. * org.el (org-mark-ring-previous, org-mark-ring-set): New
  1356. commands.
  1357. (org-mark-ring): New variable.
  1358. (org-mark-ring-length): New option.
  1359. (org-open-at-point, org-goto, org-open-file): Push old position
  1360. onto the mark ring.
  1361. (org-add-hook): New function.
  1362. (org-export-table-remove-special-lines): New option.
  1363. (org-skip-comments, org-format-org-table-html): Respect new option
  1364. `org-export-table-remove-special-lines'.
  1365. (org-open-file): Allow special command configuration for
  1366. directory link.
  1367. (org-file-apps): Fixed bugs in customize type, added setting for
  1368. directories.
  1369. (org-activate-tags, org-format-agenda-item, org-complete)
  1370. (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
  1371. (org-get-tags, org-get-buffer-tags, org-open-at-point)
  1372. (org-link-search, org-make-org-heading-search-string)
  1373. (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
  1374. (org-radio-targets, org-file-link-context-use-camel-case)
  1375. (org-activate-camels): New options.
  1376. (org-update-radio-target-regexp, org-all-targets)
  1377. (org-make-target-link-regexp, org-activate-target-links): New
  1378. functions.
  1379. (org-make-org-heading-search-string): New function.
  1380. (org-store-link, org-insert-link): Use new option
  1381. `org-file-link-context-use-camel-case'.
  1382. (org-activate-camels): Use new option `org-activate-camels'.
  1383. (org-link-regexp): Added mhe prefix.
  1384. (org-open-at-point,org-store-link): Support for mhe links.
  1385. (org-mhe-get-message-id, org-mhe-get-message-folder)
  1386. (org-mhe-get-header,org-follow-mhe-link): New functions.
  1387. (org-remove-angle-brackets, org-add-angle-brackets): New
  1388. functions.
  1389. (org-bracked-link-regexp): New constant.
  1390. (org-read-date): Fixed bug that was rejecting all typed dates.
  1391. (org-link-search): Make hierarchy above visible after a match.
  1392. (org-follow-bbdb-link): Inhibit electric mode for BBDB.
  1393. (org-store-link): Fixed bug with link creation when cursor is in
  1394. an empty line.
  1395. (org-open-at-point): Fixed bug with matching a link. Fixed buggy
  1396. argument sequence in call to `org-view-tags'.
  1397. (org-compile-prefix-format): Set `org-prefix-has-tag'.
  1398. (org-prefix-has-tag): New variable.
  1399. (org-format-agenda-item): Remove tags from headline if
  1400. appropriate.
  1401. (org-agenda-remove-tags-when-in-prefix): New option.
  1402. * org.texi (Internal Links): Rewritten to cover the modified
  1403. linking system.
  1404. * orgcard.tex (section{Links}): Rewritten to cover the modified
  1405. link system.
  1406. (section{TODO Items}): Shortened to make space for more links
  1407. stuff.
  1408. ----------------------------------------------------------------------
  1409. installed as 4.03
  1410. 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
  1411. * org.texi (Agenda commands): Document tags command.
  1412. * org.el (org-open-file): Use mailcap for selecting an
  1413. application.
  1414. (org-file-apps-defaults-gnu): Use mailcap as the default for
  1415. selecting an application on a UNIX system.
  1416. (org-agenda-show-tags): New command.
  1417. (org-table-insert-hline): Keep cursor in current table
  1418. line.
  1419. (org-table-convert): Offset effect of modifying
  1420. `org-table-insert-hline'.
  1421. (org-format-agenda-item): New optional argument TAG.
  1422. (org-compile-prefix-format): Handle %T format for the tag.
  1423. (org-expand-wide-chars): New function.
  1424. (org-table-insert-row, org-table-insert-hline): Use
  1425. `org-expand-wide-chars'.
  1426. (org-open-file): Fixed bug in program launch.
  1427. (org-get-time-of-day): Fixed bug with times before 1am.
  1428. (org-agenda-menu): Addes tags commands.
  1429. -----------------------------------------------------------------------
  1430. installed as 4.02
  1431. 2006-01-02 Carsten Dominik <dominik@science.uva.nl>
  1432. * org.el (org-end-of-subtree): New function.
  1433. (org-cycle, org-subtree-end-visible-p, org-scan-tags): Use
  1434. `org-end-of-subtree'.
  1435. (org-agenda, org-agenda-convert-date): Protect calls to
  1436. `fit-window-to-buffer'.
  1437. (org-tags-view): Force matching of sublevels when doing a
  1438. todo-only search. Define the correct redo command, including the
  1439. arguments.
  1440. (org-agenda-redo): Display message.
  1441. (org-check-for-org-mode): New function.
  1442. (org-agenda-type): New variable.
  1443. (org-timeline, org-agenda-list, org-todo-list, org-tags-view): Set
  1444. `org-agenda-type'.
  1445. (org-agenda-check-type): New function.
  1446. (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
  1447. (org-agenda-week-view, org-agenda-day-view)
  1448. (org-agenda-next-date-line, org-agenda-previous-date-line)
  1449. (org-agenda-log-mode, org-agenda-toggle-diary)
  1450. (org-agenda-toggle-time-grid, org-agenda-date-later)
  1451. (org-agenda-date-prompt, org-agenda-diary-entry)
  1452. (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
  1453. (org-agenda-convert-date, org-agenda-menu): Use
  1454. `org-agenda-check-type'.
  1455. (org-make-overlay, org-delete-overlay)
  1456. (org-detatch-overlay, org-move-overlay, org-overlay-put): New
  1457. compatibility functions.
  1458. (org-calendar-select-mouse): New command.
  1459. * org.texi (Agenda Views): Chapter reorganized.
  1460. ------------------------------------------------------------------------
  1461. installed as 4.01
  1462. 2005-12-19 Carsten Dominik <dominik@science.uva.nl>
  1463. * org.texi (Tags): Booolean logic documented.
  1464. (Agenda Views): Document custom commands.
  1465. * org.el (org-agenda-custom-commands): New option.
  1466. (org-agenda): Offer custom commands on splash screen.
  1467. (org-make-tags-matcher): Parser for Boolean logic added.
  1468. (org-agenda-set-tags): New command.
  1469. (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
  1470. (org-set-tags): Efficiency improvements.
  1471. (org-auto-align-tags): New option.
  1472. (org-todo, org-demote, org-promote): Realign tags.
  1473. (org-tags-completion-function): Use also "&" and "|" as
  1474. separators.
  1475. (org-org-menu): Agenda commands simplified.
  1476. ---------------------------------------------------------------------------
  1477. installed as 4.00
  1478. 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
  1479. * org.el (org-tags-match-list-sublevels): New option.
  1480. (org-open-at-point): implement tag searches as links
  1481. (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
  1482. (org-make-tags-matcher, org-scan-tags, org-activate-tags): New
  1483. functions
  1484. (org-tags-sparse-tree, org-tags-view, org-set-tags)
  1485. (org-agenda-dispatch): New commands.
  1486. (org-use-tag-inheritance, org-tags-column): New options.
  1487. (org-tab-follows-link, org-return-follows-link): New options.
  1488. (org-tags): New customize group.
  1489. (org-start-icalendar-file): Get local time zone.
  1490. (org-tags-completion-function): New function.
  1491. (org-set-font-lock-defaults): make sure links will also
  1492. be highlighted inside headlines.
  1493. * org.texi (Tags): New section.
  1494. (Agenda Views): Chapter reorganized.
  1495. ------------------------------------------------------------------------
  1496. installed as 3.24
  1497. 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
  1498. * org.el (org-agenda, org-timeline, org-todo): Implement Logging
  1499. and the keep-modes setting.
  1500. (org-get-category): Make sure a string is returned.
  1501. (org-log-done): New function.
  1502. ------------------------------------------------------------------------
  1503. installed as 3.23
  1504. 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
  1505. * org.el (org-insert-heading): Try to do items before headings.
  1506. (org-agenda-mode): Quote `org-agenda-mode-hook'.
  1507. (org-insert-item): New function.
  1508. (org-renumber-ordered-list): Don't skip to higher level lists.
  1509. ----------------------------------------------------------------------
  1510. installed as 3.22
  1511. 2005-12-05 Carsten Dominik <dominik@science.uva.nl>
  1512. * org.el (org-occur-highlights): New variable.
  1513. (org-highlight-new-match, org-remove-occur-highlights): New
  1514. functions.
  1515. (org-highlight-sparse-tree-matches): New option.
  1516. (org-do-occur): New function.
  1517. (org-get-heading): Make it work also at beginning of line.
  1518. (org-category-table): New variable.
  1519. (org-get-category-table, org-get-category)
  1520. (org-camel-to-words, org-link-search): New functions.
  1521. (org-select-this-todo-keyword): New variable.
  1522. (org-todo-list): New command.
  1523. (org-shiftright, org-shiftleft): New commands.
  1524. (org-agenda-todo): Added prefix argument.
  1525. (org-show-hierarchy-above): New option.
  1526. (org-show-todo-tree): Numerical prefix creates tree for specific
  1527. TODO keyword.
  1528. (org-outline-level): New function, to assign a level to plain
  1529. lists items.
  1530. (org-cycle-include-plain-lists): New option.
  1531. (org-mode): Use `org-outline-level' as value of `outline-level'.
  1532. (org-cycle): Temporarily switch `outline-regexp' if
  1533. `org-cycle-include-plain-lists' is non-nil.
  1534. (org-start-icalendar-file): Fixed format bug.
  1535. (org-agenda-get-day-entries): Create category table.
  1536. (org-agenda-get-todos, org-agenda-get-timestamps)
  1537. (org-agenda-get-deadlines, org-agenda-get-scheduled)
  1538. (org-agenda-get-blocks): Use `org-get-category'.
  1539. (org-context-in-file-links): Renamed from
  1540. `org-line-numbers-in-file-links' .
  1541. * org.texi (TODO basics): Document the global todo list.
  1542. (TODO items): Documents sparse tree for specific TODO
  1543. keywords.
  1544. ----------------------------------------------------------------------
  1545. installed as 3.21
  1546. 2005-11-23 Carsten Dominik <dominik@science.uva.nl>
  1547. * org.el (org-export-plain-list-max-depth): Renamed from
  1548. `org-export-local-list-max-depth'. Default values changed to 3.
  1549. (org-auto-renumber-ordered-lists,
  1550. org-plain-list-ordered-item-terminator): New options.
  1551. (org-at-item-p, org-beginning-of-item, org-end-of-item,
  1552. org-get-indentation, org-get-string-indentation,
  1553. org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
  1554. functions.
  1555. (org-move-item-down, org-move-item-up): New commands.
  1556. (org-export-as-html): New classes for CSS support. Bug fix in
  1557. regular expression detecting fixed-width regions. Respect
  1558. `org-local-list-ordered-item-terminator'.
  1559. (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
  1560. also a list item.
  1561. (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
  1562. New item moving functions added.
  1563. * org.texi (Structure editing): New item moving commands added.
  1564. (Plain Lists): New section.
  1565. ----------------------------------------------------------------------
  1566. installed as 3.20
  1567. 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
  1568. * org.el (org-table-sort-lines): New command.
  1569. (org-tbl-menu): Add entry for `org-table-sort-lines'.
  1570. (org-add-file): Command removed, use `org-agenda-file-to-front'
  1571. instead.
  1572. (org-export-icalendar): Use `org-icalendar-combined-name'.
  1573. (org-cycle-agenda-files, org-agenda-file-to-end)
  1574. (org-agenda-file-to-front): New commands.
  1575. (org-table-tab-jumps-over-hlines,org-export-html-style): New
  1576. options.
  1577. (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
  1578. (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
  1579. New functions.
  1580. (org-fill-paragraph): Call `org-table-align' in tables.
  1581. (org-mode): Call `org-set-autofill-regexps'.
  1582. (org-export-as-html): Support for local handformatted lists.
  1583. Modified to produce valid HTML 4.0. Use `org-export-html-style'.
  1584. (org-export-local-list-max-depth): New option.
  1585. (org-html-expand): Use `org-html-protect'.
  1586. * org.texi (FAQ): Document `org-table-tab-jumps-over-hlines'.
  1587. (Agenda): Document commands `org-cycle-agenda-files' and
  1588. `org-agenda-file-to-front'
  1589. (Built-in table editor): Document `org-table-sort-lines'.
  1590. (HTML formatting): Export of hand-formatted lists.
  1591. ----------------------------------------------------------------------
  1592. installed as 3.19
  1593. 2005-10-28 Carsten Dominik <dominik@science.uva.nl>
  1594. * org.el (org-read-date, org-goto-calendar)
  1595. (org-recenter-calendar, org-agenda-goto-calendar): Temporarily
  1596. clear 'calendar-move-hook'.
  1597. ------------------------------------------------------------------------
  1598. installed as 3.18
  1599. 2005-10-19 Carsten Dominik <dominik@science.uva.nl>
  1600. * textmodes/org.el (org-combined-agenda-icalendar-file)
  1601. (org-icalendar-include-todo, org-icalendar-combined-name): New
  1602. options.
  1603. (org-export-icalendar-this-file)
  1604. (org-export-icalendar-all-agenda-files)
  1605. (org-export-icalendar-combine-agenda-files): New commands.
  1606. (org-export-icalendar, org-print-icalendar-entries)
  1607. (org-start-icalendar-file, org-finish-icalendar-file)
  1608. (org-ical-ts-to-string): New functions.
  1609. (org-read-date, org-goto-calendar)
  1610. (org-agenda-goto-calendar): Inhibit displaying diary entries by
  1611. call to `calendar'.
  1612. (orgtbl-setup): Removed the :keys arguments from the menu
  1613. description.
  1614. (org-after-save-iCalendar-file-hook): New variable.
  1615. * org.texi (Summary): Mention iCalendar support.
  1616. (Exporting): Document iCalendar support.
  1617. * orgcard.tex: Add iCalendar export keys.
  1618. ------------------------------------------------------------------------
  1619. installed as 3.17
  1620. 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
  1621. * org.el (org-mode-map): Explicit definition of `C-c C-x' as a
  1622. prefix.
  1623. (orgtbl-mode-map): Full keymap instead of sparse, because all
  1624. `self-insert-command' keys are redifined in this map.
  1625. (org-export-as-html): Specify charset for HTML file, by taking it
  1626. from the codinf system.
  1627. * org.texi (Workflow states): Documented that change in keywords
  1628. becomes active only after restart of Emacs.
  1629. --------------------------------------------------------------------------
  1630. Installed as 3.16
  1631. 2005-09-21 Carsten Dominik <dominik@science.uva.nl>
  1632. * org.el (org-mode-map, orgtbl-mode-map): Move keybindings with
  1633. `C-c C-h' prefix to `C-c C-x' prefix. Make use of `remap' feature
  1634. when available. Additional key bindings for better tty support.
  1635. (org-mode-restart, org-force-self-insert): New commands.
  1636. (org-time-stamp-inactive): New command.
  1637. (org-remap): New function.
  1638. (org-table-auto-blank-field, org-level-color-stars-only): New
  1639. options.
  1640. (org-enable-fixed-width-editor): Moved to `org-structure'
  1641. customization group.
  1642. (org-self-insert-command, orgtbl-self-insert-command): Modified to
  1643. blank field after field motion commands.
  1644. ----------------------------------------------------------------------
  1645. installed as 3.15
  1646. 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
  1647. * textmodes/org.el (org-special-keyword): New face.
  1648. (org-table-copy-down, org-table-eval-formula)
  1649. (org-table-recalculate, org-init-section-numbers): Use
  1650. `string-to-number' instead of `string-to-int'.
  1651. (org-get-location): Use `insert-buffer-substring' instead of
  1652. `insert-buffer'.
  1653. (org-modify-diary-entry-string): New function.
  1654. (org-get-entries-from-diary): Set the hook for
  1655. `add-to-diary-list'.
  1656. (org-disable-agenda-to-diary): renamed from `org-disable-diary'.
  1657. (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
  1658. active region.
  1659. (org-export-as-html): Handle QUOTE keyword.
  1660. (org-quote-string): New option.
  1661. (org-bookmark-jump-unhide): New function, used for
  1662. `bookmark-after-jump-hook'.
  1663. (org-diary-default-entry): Apply only when not called through
  1664. `org-agenda'.
  1665. ----------------------------------------------------------------------
  1666. installed as 3.14
  1667. 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
  1668. * org.el (org-table-column-names, org-table-column-name-regexp)
  1669. (org-table-named-field-locations): New variables.
  1670. (org-archive-subtree): Protect `this-command' when calling
  1671. `org-copy-subtree' and `org-cut-subtree', to avoid appending to
  1672. the kill buffer.
  1673. (org-complete): Removed fixed-formula completion.
  1674. (org-edit-formulas-map): New variable.
  1675. (org-table-edit-formulas): New command.
  1676. (org-finish-edit-formulas, org-abort-edit-formulas,
  1677. org-show-variable, org-table-get-vertical-vector): New functions.
  1678. (org-table-maybe-eval-formula): Handle `:=' fields.
  1679. (org-table-get-stored-formulas, org-table-store-formulas)
  1680. (org-table-get-formula, org-table-modify-formulas)
  1681. (org-table-replace-in-formulas): Handle named field formulas.
  1682. (org-table-get-specials): Store locations of named fields.
  1683. ---------------------------------------------------------------------------
  1684. Installed as 3.13
  1685. 2005-07-01 Carsten Dominik <dominik@science.uva.nl>
  1686. * org.el: Leading space replaced by TABS.
  1687. (org-recalc-marks, org-table-rotate-recalc-marks)
  1688. (org-table-get-specials): Treat "^" and "_" marks.
  1689. (org-table-justify-field-maybe): Optional argument NEW.
  1690. (org-table-eval-formula): Parsing of the format simplified. New
  1691. modes C,I. Honor the %= parameter in the current table. Avoid
  1692. unnecessary re-align by using the NEW argument to
  1693. `org-table-justify-field-maybe'. C-u prefix now interpreted as
  1694. request to store named field equation.
  1695. (org-calc-default-modes): Default for date-format mimicks
  1696. org-mode.
  1697. (org-agenda, org-timeline): Quote argument in
  1698. `org-agenda-redo-command'.
  1699. ----------------------------------------------------------------------------
  1700. installed as version 3.12
  1701. 2005-06-28 Carsten Dominik <dominik@science.uva.nl>
  1702. * org.el (orgtbl-setup): New function, for delayed setup for the
  1703. orgtbl commands.
  1704. (org-calc-default-modes): New option.
  1705. (orgtbl-make-binding): Use `defun' to get better help display.
  1706. (org-diary): Call `org-compile-prefix-format'.
  1707. (org-table-formula-substitute-names): New function.
  1708. (org-agenda-day-view, org-agenda-week-view): New commands.
  1709. (org-agenda-toggle-week-view): Command removed.
  1710. (org-tbl-menu): Split off from org-org-menu.
  1711. (org-mode): Moved removal of outline-mode menus to here.
  1712. (org-table-formula-debug): New option.
  1713. (org-table-insert-row): Keep first field if just "#" or "*".
  1714. (org-mode): Paragraph regexps fixed.
  1715. (org-table-recalculate-regexp): New constant.
  1716. (org-table-justify-field-maybe): Avoid replace if not necessary.
  1717. (org-copy-special, org-cut-special): Use `call-interactively'.
  1718. (org-table-copy-region): Take region from `interactive' call.
  1719. (org-trim): Return string even if no match.
  1720. (org-formula): New face.
  1721. (org-set-font-lock-defaults): No longer highlight "FIXME". But
  1722. highlight formula-related fields in table.
  1723. (org-table-p): Use regexp, not fontification.
  1724. (org-table-align): Handle white space at end of line.
  1725. (org-table-formula-evaluate-inline): New option.
  1726. (org-mode): Auto-wrapping in comment lines turned off.
  1727. (org-table-copy-down): Evaluate only in copied field, not in
  1728. destination.
  1729. (org-table-current-formula): Variable removed.
  1730. (org-table-store-formulas, org-table-get-stored-formulas)
  1731. (org-table-modify-formulas, org-table-replace-in-formulas)
  1732. (org-table-maybe-eval-formula): New functions.
  1733. (org-table-get-formula): Modified to use stored formulas.
  1734. (org-table-insert-column, org-table-delete-column)
  1735. (org-table-move-column): Call `org-table-modify-formulas'.
  1736. (org-complete): Add completion for keyword formulas.
  1737. (orgtbl-mode): Pull orgtbl-mode-map to start of
  1738. minor-mode-map-alist.
  1739. --------------------------------------------------------------------------
  1740. installed as 3.11
  1741. 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
  1742. * textmodes/org.el (org-CUA-compatible): New option.
  1743. (org-disputed-keys): New variable.
  1744. (org-key): New function.
  1745. (orgtbl-make-binding): Add docstring to the created function.
  1746. (org-mode): Set paragraph start/separate regexps.
  1747. (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
  1748. (org-archive-location, org-archive-mark-done)
  1749. (org-archive-stamp-time): New options.
  1750. (org-archive-subtree): New command.
  1751. (org-fill-paragraph): New function.
  1752. (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
  1753. (org-fake-empty-table-line): Function removed.
  1754. (org-format-org-table-html): Do not create empty table lines at
  1755. separator lines. Improved table header treatment.
  1756. (org-link-format): New option.
  1757. (org-make-link): New function.
  1758. (org-insert-link, org-store-link): Use org-make-link.
  1759. (org-open-file): Quote file name for shell command, to allow
  1760. spaces in file names.
  1761. (org-link-regexp): Fixed bug with mailto link.
  1762. (org-link-maybe-angles-regexp, org-protected-link-regexp): New
  1763. constant.
  1764. (org-export-as-html): Deal with the optional angles around a link.
  1765. Better treatment of file: links.
  1766. (org-open-at-point): Replace @{ and @} with < and >.
  1767. --------------------------------------------------------------------------
  1768. installed as 3.10
  1769. 2005-05-30 Carsten Dominik <dominik@science.uva.nl>
  1770. * org.el (org-agenda-mode): Use `run-mode-hooks' if available.
  1771. --------------------------------------------------------------------------
  1772. installed as 3.09
  1773. 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
  1774. * textmodes/org.el (org-agenda-toggle-time-grid): New command.
  1775. (org-agenda-use-time-grid, org-agenda-time-grid): New options.
  1776. (org-agenda-add-time-grid-maybe): New function.
  1777. (org-agenda): Call `org-agenda-add-time-grid-maybe'.
  1778. (org-table-create): `dotimes' instead of `mapcar'.
  1779. (org-xor): Simplified implementation.
  1780. (org-agenda): `inhibit-redisplay' turned on.
  1781. (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
  1782. a consistent line after a state change.
  1783. (org-agenda-remove-times-when-in-prefix): New option.
  1784. (org-prefix-has-time): New variable.
  1785. (org-parse-time-string): Optional argument NODEFAULT.
  1786. (org-format-agenda-item): Parse items for time-of-day
  1787. specifications and move these into the prefix if possible.
  1788. (org-agenda-priority): Get current heading, not previous heading
  1789. during agenda remote editing.
  1790. ======================================================================
  1791. Intsalled as 3.08
  1792. 2005-04-28 Carsten Dominik <dominik@science.uva.nl>
  1793. * org.el Many small changes to keep the byte compiler happy.
  1794. (org-prefix-format-compiled): New variable.
  1795. (org-compile-prefix-format): New function.
  1796. (org-timeline, org-agenda, org-diary): Call
  1797. `org-compile-prefix-format'.
  1798. (org-agenda-prefix-format,org-timeline-prefix-format): New
  1799. options.
  1800. (org-agenda-get-scheduled): Check if file is openned in
  1801. `org-mode'.
  1802. (org-get-entries-from-diary): Use `org-get-time-of-day', for
  1803. consistency with entries from `org-mode' files.
  1804. (org-get-time-of-day): Fixed bug with partial matches early in a
  1805. line.
  1806. (org-non-link-chars): New constant.
  1807. (org-link-regexp): Respect `org-non-link-chars'.
  1808. (org-agenda-day-view): Command removed.
  1809. (org-agenda-toggle-week-view): Renamed from
  1810. `org-agenda-week-view'.
  1811. (org-follow-bbdb-link, org-store-link): Search also company field.
  1812. (org-highlight-overlay): New variable.
  1813. (org-highlight, org-unhighlight): New functions.
  1814. (org-agenda-mode): Added pre-command-hook to remove highlight.
  1815. (org-evaluate-time-range): Behavior depend upon time stamp format:
  1816. Does it contain a time or not?
  1817. (org-show-subtree, org-show-entry): New functions.
  1818. (org-agenda-cleanup-fancy-diary): Remove empty lines.
  1819. ============================================================
  1820. installed as 3.06
  1821. 2005-04-14 Carsten Dominik <dominik@science.uva.nl>
  1822. * org.el (org-agenda-date-prompt): Renamed from
  1823. `org-agenda-date-today'.
  1824. (org-evaluate-time-range): Insert at point instead of directly
  1825. after time range.
  1826. (org-first-headline-recenter, org-subtree-end-visible-p)
  1827. (org-optimize-window-after-visibility-change): New functions
  1828. (org-agenda-post-command-hook): Don't allow point at end of line,
  1829. to make sure it always hits the text properties.
  1830. (org-agenda-next-date-line, org-agenda-previous-date-line): New
  1831. commands.
  1832. (org-set-regexps-and-options): Category may contain white space.
  1833. (org-agenda-get-deadlines, org-agenda-get-scheduled): Improved
  1834. marker positions.
  1835. (org-agenda-new-marker): Argument POS made optional.
  1836. (org-agenda-get-timestamps): Deadlines which are done are listed
  1837. in org-done-face now.
  1838. (org-agenda-get-todos, org-agenda-get-timestamps)
  1839. (org-agenda-get-deadlines, org-agenda-get-scheduled): set
  1840. `undone-face' and `done-face' properties.
  1841. (org-last-todo-state-is-todo): New variable.
  1842. (org-todo): Set `org-last-todo-state-is-todo'.
  1843. (org-agenda-todo): Change face according to
  1844. `org-last-todo-state-is-todo'. And change other lines refering to
  1845. the same entry.
  1846. (org-calendar-goto-agenda): New command.
  1847. (org-calendar-to-agenda-key): New option.
  1848. (org-startup-folded): New allowed value `content'.
  1849. (org-set-regexps-and-options): Accept new value `content' for
  1850. `org-startup-folded'.
  1851. (org-get-current-options): Handle new value `content' for
  1852. `org-startup-folded'.
  1853. (org-insert-todo-heading): New command.
  1854. (org-mode): Insert first line "*-* mode: org-mode -*-" when called
  1855. interactively in empty file and option
  1856. `org-insert-mode-line-in-empty-file' has been set.
  1857. (org-agenda-todo,org-agenda-priority): Modified to use
  1858. `org-agenda-change-all-lines'.
  1859. (org-warning-face): Changed color on dark background
  1860. ======================================================================
  1861. Installed as version 3.05
  1862. 2005-03-29 Carsten Dominik <dominik@science.uva.nl>
  1863. * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
  1864. (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
  1865. 2005-03-28 Carsten Dominik <dominik@science.uva.nl>
  1866. * org.el (org-diary-default-entry): New function.
  1867. (org-get-entries-from-diary): Better parsing of diary entries
  1868. (org-agenda-check-no-diary): New function.
  1869. ("diary-lib"): Advice to function `add-to-diary-list', to allow
  1870. linking to diary entries.
  1871. (org-agenda-execute-calendar-command): New function
  1872. 2005-03-24 Carsten Dominik <dominik@science.uva.nl>
  1873. * org.el (org-agenda): Improved visible section in window. And
  1874. use `org-fit-agenda-window'.
  1875. (org-fit-agenda-window): New option.
  1876. 2005-03-17 Carsten Dominik <dominik@science.uva.nl>
  1877. * org.el (org-move-subtree-down): Better handling of empty lines
  1878. at end of subtree.
  1879. (org-cycle): Numeric prefix is interpreted now as show-subtree N
  1880. levels up.
  1881. 2005-03-16 Carsten Dominik <dominik@science.uva.nl>
  1882. * org.el (org-fontify-done-headline): New option.
  1883. (org-headline-done-face): New face.
  1884. (org-set-font-lock-defaults): Use `org-headline-done-face'.
  1885. 2005-03-11 Carsten Dominik <dominik@science.uva.nl>
  1886. * org.el (org-table-copy-down): renamed from
  1887. `org-table-copy-from-above'. When current field is non-empty, it
  1888. is copied to next row.
  1889. 2005-03-05 Carsten Dominik <dominik@science.uva.nl>
  1890. * org.el (org-table-copy-from-above): Fixed bug which made it
  1891. impossible to copy fields containing only a single non-white
  1892. character.
  1893. Release of 3.04 -------------------------------------------------------------
  1894. 2005-01-17 Carsten Dominik <dominik@science.uva.nl>
  1895. * org.el (org-version): Prefix arg removed, was not needed.
  1896. 2005-01-11 Carsten Dominik <dominik@science.uva.nl>
  1897. * org.el (org-show-following-heading): New option.
  1898. (org-show-hierarchy-above): Use `org-show-following-heading'.
  1899. 2005-01-03 Carsten Dominik <dominik@science.uva.nl>
  1900. * org.el (orgtbl-optimized): New option
  1901. (orgtbl-mode): New command, a minor mode.
  1902. (orgtbl-mode-map): New variable.
  1903. (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
  1904. (orgtbl-error, orgtbl-self-insert-command)
  1905. (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
  1906. 2004-12-22 Carsten Dominik <dominik@science.uva.nl>
  1907. * org.el (org-mode): `org-table-may-need-update' is now a local
  1908. variable in each org-mode buffer.
  1909. 2004-12-10 Carsten Dominik <dominik@science.uva.nl>
  1910. * org.el (org-set-regexps-and-options): Renamed from
  1911. `org-set-regexps'. Added checking for STARTUP keyword.
  1912. (org-get-current-options): Added STARTUP options.
  1913. (org-table-insert-row): Mode mode intelligent about when
  1914. realignment is needed.
  1915. (org-self-insert-command, org-delete-backward-char,
  1916. org-delete-char): New commands.
  1917. (org-enable-table-editor): new default value `optimized'.
  1918. (org-table-blank-field): Support blanking regions if active.