ChangeLog 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492
  1. 2008-11-06 Carsten Dominik <carsten.dominik@gmail.com>
  2. * org.el (org-make-link-regexps): Make sure that links to gnus can
  3. contain brackets.
  4. 2008-11-05 Carsten Dominik <carsten.dominik@gmail.com>
  5. * org-attach.el (org-attach-dir): Remove duplicate ID creation
  6. code.
  7. * org-id.el (org-id-new): Use `org-trim' to extract the uuid from
  8. shell output.
  9. * org.el (org-link-abbrev-alist): Improve customization type.
  10. * org-attach.el (org-attach-expand-link, org-attach-expand): New
  11. functions.
  12. * org-agenda.el (org-agenda-get-progress): Renamed from
  13. `org-get-closed'. Implement searching for state changes as well.
  14. (org-agenda-log-mode-items): New option.
  15. (org-agenda-log-mode): New option prefix argument, interpreted as
  16. request to show all possible progress info.
  17. (org-agenda-get-day-entries): Call `org-get-progress' instead of
  18. `org-get-closed'.
  19. (org-agenda-set-mode-name): Handle the more complex log mode
  20. settings.
  21. (org-get-closed): New alias, pointing to `org-get-progress'.
  22. 2008-11-05 Carsten Dominik <dominik@science.uva.nl>
  23. * org.el (org-file-apps-defaults-gnu)
  24. (org-file-apps-defaults-macosx)
  25. (org-file-apps-defaults-windowsnt): Add an entry defining the
  26. system command.
  27. (org-file-apps): Allow `system' as key and value.
  28. (org-open-at-point): Explain the effect of a double prefix arg.
  29. (org-open-file): If the argument `in-emacs' is (16),
  30. i.e. corresponding to a double prefix argument, try to open the
  31. file externally.
  32. 2008-11-04 Carsten Dominik <dominik@science.uva.nl>
  33. * org.el (org-insert-link): Abbreviate absolute files names in
  34. links. Also, fix a bug in which the double C-u prefix would not
  35. be honored.
  36. 2008-11-03 Carsten Dominik <dominik@science.uva.nl>
  37. * org.el (org-insert-heading): If buffer does not end with a
  38. newline, add one if necessary to insert headline correctly.
  39. * org-exp.el (org-export-as-html): Make sure that <hr/> is between
  40. paragraphs, not inside.
  41. * org.el (org-todo): Quote
  42. `org-agenda-headline-snapshot-before-repeat'.
  43. * org-exp.el (org-export-as-html): Fully process link descriptions.
  44. (org-export-html-format-desc): New function.
  45. (org-export-as-html): Collect footnotes into the correct basket.
  46. (org-html-protect): No longer protect quotations marks here, this
  47. goes wrong.
  48. * org-agenda.el (org-agenda-remove-marked-text): Bind variable
  49. BEG.
  50. * org-compat.el (org-fit-window-to-buffer): New function (not
  51. really, a preliminary and incomplete version was present earlier,
  52. but not used).
  53. * org.el (org-fast-todo-selection, org-fast-tag-selection): Use
  54. `org-fit-window-to-buffer'.
  55. * org-exp.el (org-export): Use `org-fit-window-to-buffer'.
  56. * org-agenda.el (org-agenda-get-restriction-and-command)
  57. (org-fit-agenda-window, org-agenda-convert-date): Use
  58. `org-fit-window-to-buffer'.
  59. * org-exp.el (org-export-as-html): Process href links through
  60. `org-export-html-format-href'.
  61. (org-export-html-format-href): New function.
  62. * org-agenda.el (org-agenda-todo): Update only the current
  63. headline if this is a repeated TODO, marked done for today.
  64. (org-agenda-change-all-lines): New argument JUST-THIS, to change
  65. only the current line.
  66. * org.el (org-todo): Take a snapshot of the headline if the
  67. repeater might change it.
  68. 2008-11-02 Carsten Dominik <dominik@science.uva.nl>
  69. * org-publish.el (org-publish-find-title): Remove buffers visited
  70. only for extracting the title.
  71. * org-exp.el (org-export-html-style)
  72. (org-export-html-style-default): Mark style definitions as
  73. unparsed CDATA.
  74. * org-publish.el (org-publish-validate-link): Function
  75. re-introduced.
  76. 2008-11-02 Charles Sebold <csebold@gmail.com>
  77. * org-plot.el (org-plot/add-options-to-plist): Supports timefmt
  78. property.
  79. (org-plot-quote-timestamp-field): New function.
  80. (org-plot-quote-tsv-field): Call timestamp field function when
  81. necessary rather than just quoting as a string.
  82. (org-plot/gnuplot-to-data): Pass in timefmt property.
  83. (org-plot/gnuplot-script): Supports timefmt property.
  84. (org-plot/gnuplot): Checks for timestamp column before checking
  85. for text index column.
  86. 2008-11-02 Carsten Dominik <dominik@science.uva.nl>
  87. * org.el (org-insert-heading): Improve behavior with hidden subtrees.
  88. * org-publish.el (org-publish-org-index): Create a section in the
  89. index file.
  90. (org-publish-org-index): Stop linking to directories.
  91. * org.el (org-emphasis-alist): Use span instead of <u> to
  92. underline text.
  93. * org-exp.el (org-export-as-html): Make sure <p> is closed before
  94. <pre> sections.
  95. 2008-11-01 Sebastian Rose <sebastian_rose@gmx.de>
  96. * org-jsinfo.el (org-infojs-template): Remove language attribute
  97. from script tag.
  98. 2008-11-01 Carsten Dominik <dominik@science.uva.nl>
  99. * org-agenda.el (org-agenda-remove-marked-text): New function.
  100. (org-agenda-mark-filtered-text)
  101. (org-agenda-unmark-filtered-text): New functions.
  102. (org-write-agenda): Remove fltered text.
  103. * org.el (org-make-tags-matcher): Give access to TODO "property"
  104. without speed penalty.
  105. 2008-10-29 Carsten Dominik <dominik@science.uva.nl>
  106. * org.el (org-link-frame-setup): Add `org-gnus-no-new-news' as an
  107. option.
  108. (org-store-link-props): Make sure adding to the plist works
  109. correctly.
  110. * org-gnus.el (org-gnus-no-new-news): New function.
  111. (org-gnus-follow-link): Allow the article ID to be a message-id,
  112. in addition to allowing article numbers. Message IDs make much
  113. more roubust links.
  114. (org-gnus-store-link): Use message-id to create link.
  115. 2008-10-28 Carsten Dominik <dominik@science.uva.nl>
  116. * org.el (org-emphasize): Reverse the selection array.
  117. (org-emphasis-alist): Set <code> tags for the verbatim
  118. environment.
  119. * org-remember.el (org-remember-handler): Fix bug with
  120. prefix-related changing of the note storage target.
  121. * org-exp.el (org-print-icalendar-entries): Make the exported
  122. priorities compatible with RFC 2445.
  123. * org-clock.el (org-clock-save): Insert time stamp without
  124. dependence on time-stamp.el.
  125. 2008-10-27 Carsten Dominik <dominik@science.uva.nl>
  126. * org.el ("saveplace"): If saveplace puts point into an invisible
  127. location, make it visible.
  128. (org-make-tags-matcher): Allow inactive time stamps in time
  129. comparisons.
  130. (org-yank-adjusted-subtrees): New option.
  131. (org-yank): Incorporate adjusting trees.
  132. (org-paste-subtree): New argument FOR-YANK which will cause
  133. insertion at point without backing up over white lines, and leave
  134. point at the end of the inserted text. Also if the cursor is
  135. at the beginning of a headline, use the same level or the inserted
  136. tree.
  137. * org-publish.el (org-publish-get-base-files-1): Deal correctly
  138. with broken symlinks
  139. 2008-10-26 Carsten Dominik <dominik@science.uva.nl>
  140. * org-exp.el (org-export-select-tags, org-get-current-options):
  141. Fix typo.
  142. 2008-10-25 Carsten Dominik <dominik@science.uva.nl>
  143. * org-agenda.el (org-format-agenda-item)
  144. (org-agenda-filter-make-matcher): Make sure tags are stored and
  145. compared donwcased.
  146. 2008-10-23 Carsten Dominik <dominik@science.uva.nl>
  147. * org.el (org-insert-todo-heading): Fix bug with force-heading
  148. argument.
  149. 2008-10-23 James TD Smith <ahktenzero@mohorovi.cc>
  150. * org-clock.el (org-clock-in-resume): Add a custom option to
  151. toggle starting the clock from an open clock line.
  152. (org-clock-in): When clocking in to an entry, if
  153. `org-clock-in-resume' is set, check if the first clock line is
  154. open and if so, start the clock from the time in the clock line.
  155. (org-clock-persist): Add a custom option to toggle clock
  156. persistence.
  157. (org-clock-persist-query-save): Add a custom option to toggle
  158. asking the user if they want to save the running clock when
  159. exiting.
  160. (org-clock-persist-query-resume): Add a custom option to toggle
  161. asking the user if they want to resume the saved clock when Emacs
  162. is restarted.
  163. (org-clock-save): Add a function to save clock data.
  164. This includes the contents of `org-clock-history' and the buffer
  165. and position of the currently clocked task, if any.
  166. (org-clock-load): Add a function to load clock data.
  167. This populates `org-clock-history', and resumes the saved clocked
  168. task if there is one.
  169. (org-clock-persistence-insinuate): Add a method to set up the
  170. hooks for clock persistence.
  171. 2008-10-22 Carsten Dominik <dominik@science.uva.nl>
  172. * org-exp.el (org-export-as-ascii): Handle the case that we are
  173. publishing from an indirect buffer.
  174. * org-table.el (org-table-copy-down): Fix bug with time stamp
  175. increment.
  176. * org-mouse.el (org-mouse-features): New option.
  177. (org-mode-hook): Turn on features depending on
  178. `org-mouse-features'.
  179. * org.el (org-insert-heading-respect-content): Force heading
  180. creation.
  181. (org-insert-heading): keep the folding state of the heading before
  182. the inserted one.
  183. 2008-10-21 Carsten Dominik <dominik@science.uva.nl>
  184. * org-archive.el (org-archive-to-archive-sibling): Handle top
  185. level headlines better.
  186. 2008-10-21 Bastien Guerry <bzg@altern.org>
  187. * org-export-latex.el (org-export-latex-classes): Added
  188. \usepackage{graphicx} to the default list of packages.
  189. 2008-10-21 Carsten Dominik <dominik@science.uva.nl>
  190. * org-agenda.el (org-agenda-filter): Renamed from
  191. `org-agenda-filter-tags'.
  192. 2008-10-20 Carsten Dominik <dominik@science.uva.nl>
  193. * org.el (org-entry-properties): Add CATEGORY property, iven if it
  194. is not defined as a property in this entry.
  195. (org-add-log-note): Mask prefix argument when immediately storing
  196. the note.
  197. * org-agenda.el (org-agenda-filter-effort-default-operator): New
  198. option.
  199. 2008-10-19 James TD Smith <ahktenzero@mohorovi.cc>
  200. * org.el (org-add-log-setup): Bugfix; code to find insertion point
  201. after drawers was skipping ahead one line too many, so notes were
  202. inserted after the first note instead of before it.
  203. 2008-10-18 Carsten Dominik <dominik@science.uva.nl>
  204. * org-agenda.el (org-agenda-filter-tags,org-agenda-filter-form):
  205. New variables.
  206. (org-prepare-agenda): Reset the filter tags.
  207. (org-agenda-filter-by-tag, org-agenda-filter-by-tag-show-all):
  208. Show filter tags in mode line.
  209. * org-table.el (orgtbl-to-html): Bind `html-table-tag' for the
  210. formatter.
  211. * org-export-latex.el (org-latex-entities-regexp): New constant.
  212. (org-export-as-pdf): Use two calls to `shell-command'.
  213. 2008-10-17 Carsten Dominik <dominik@science.uva.nl>
  214. * org-export-latex.el (org-export-latex-treat-sub-super-char):
  215. Honor the {} value of the subsuperscript setting. Make sure that
  216. longer subsuperscripts are typeset in a roman font.
  217. * org.el (org-clock-update-time-maybe): Compute negative clock
  218. intervals correctly.
  219. 2008-10-16 Carsten Dominik <dominik@science.uva.nl>
  220. * org.el (org-add-log-setup): Respect
  221. `org-log-state-notes-insert-after-drawers'.
  222. (org-log-state-notes-insert-after-drawers): New option.
  223. (org-todo-trigger-tag-changes): New function.
  224. (org-todo): Call `org-todo-trigger-tag-changes'.
  225. 2008-10-15 James TD Smith <ahktenzero@mohorovi.cc>
  226. * org.el (org-add-log-setup): Only skip drawers if the are
  227. immediately after the scheduling keywords.
  228. * org-clock.el (org-clock-in-switch-to-state): Allow this to be a
  229. function
  230. (org-clock-in): If `org-clock-in-switch-to-state' is a function,
  231. call it with the current todo state to get the state to switch to
  232. when clocking in.
  233. (org-clock-in): Use org-indent-line-function to indent clock lines.
  234. (org-clock-find-position): Fix indentation of empty clock drawers.
  235. 2008-10-15 Carsten Dominik <dominik@science.uva.nl>
  236. * org-publish.el (org-publish-org-to): Handle case when
  237. org-export-to-pdf does return a file name, not a buffer.
  238. (org-publish-org-to-pdf): New function.
  239. * org-export-latex.el (org-export-as-pdf)
  240. (org-export-as-pdf-and-open): New commands.
  241. * org-table.el (org-table-eval-formula): Avoid parsing Calc's HMS
  242. forms as ranges.
  243. * org-export-latex.el (org-export-latex-lists): Ignore lists-like
  244. things in protexted regions.
  245. 2008-10-14 Carsten Dominik <dominik@science.uva.nl>
  246. * org-export-latex.el (org-export-latex-preprocess): Improve
  247. quoting of LaTeX environments.
  248. 2008-10-10 Carsten Dominik <dominik@science.uva.nl>
  249. * org.el (org-edit-fixed-width-region): Exclude final newline from
  250. picture area.
  251. * org-export-latex.el (org-export-latex-subcontent): Add labels to
  252. sections, to make internal links work.
  253. (org-export-latex-fontify-headline): Do not remove all text
  254. properties, to make sure that target properties survive this
  255. process.
  256. * org-exp.el (org-export-preprocess-string): Change sequence of
  257. modifications, to make sure links are prepared before the LaTeX
  258. conversions do happen.
  259. 2008-10-09 Carsten Dominik <dominik@science.uva.nl>
  260. * org-attach.el (org-attach-delete-all): Renamed from
  261. `org-attch-delete'. Add a security query before deleting the
  262. entire directory. New optional argument FORCE can overrule the
  263. security query.
  264. (org-attach-delete-one): New command.
  265. 2008-10-08 Carsten Dominik <dominik@science.uva.nl>
  266. * org-attach.el (org-attach-file-list): Fix bug with directory.
  267. 2008-10-07 Carsten Dominik <dominik@science.uva.nl>
  268. * org.el (org-apps-regexp-alist): New function.
  269. (org-file-apps): Add auto-mode to the default value.
  270. (org-open-file): Use the new structure of org-file-apps.
  271. * org-attach.el (org-attach): Support the new keys.
  272. (org-attach-method): New option.
  273. 2008-10-06 Carsten Dominik <dominik@science.uva.nl>
  274. * org-bbdb.el (org-bbdb-anniversaries): Fix but with 29 Feb/1
  275. March.
  276. * org.el (org-remove-uniherited-tags): Fix reverse interpretation
  277. of the list value o `org-use-tag-inheritance'.
  278. * org-attach.el (org-attach-auto-tag): New option.
  279. (org-attach-tag, org-attach-untag): New functions.
  280. (org-attach-attach, org-attach-new, org-attach-sync): Call
  281. `org-attach-tag'.
  282. (org-attach-delete): Call `org-attach-untag'.
  283. 2008-10-04 Carsten Dominik <dominik@science.uva.nl>
  284. * org-table.el (orgtbl-self-insert-command): Make this work for
  285. the keypad as well.
  286. 2008-10-02 Carsten Dominik <dominik@science.uva.nl>
  287. * org.el (org-add-log-setup): Limit searc for drawers to entry
  288. text, not to subtree.
  289. * org-clock.el (org-clock-heading-for-remember): New variable.
  290. (org-clock-in): Set `org-clock-heading-for-remember'.
  291. 2008-10-01 James TD Smith <ahktenzero@mohorovi.cc>
  292. * org-remember.el (org-remember-apply-template): Add new
  293. expansions: %k, %K for currently clocked task and a link to the
  294. currently clocked task, and %< to file notes in the currently
  295. clocked task.
  296. 2008-10-01 Carsten Dominik <dominik@science.uva.nl>
  297. * org-export-latex.el (org-export-latex-make-header): Also insert
  298. the content of the property :latex-header-extra.
  299. * org-exp.el (org-infile-export-plist): Put the content of
  300. #+LATEX_HEADER: into the property :latex-header-extra.
  301. * org-colview.el (org-columns-get-format-and-top-level): Remove
  302. resetting the marker.
  303. * org-colview-xemacs.el (org-columns-get-format-and-top-level):
  304. Remove resetting the marker.
  305. * org.el (org-entry-property-inherited-from): Improve docstring.
  306. (org-entry-get-with-inheritance): Reset marker before starting the
  307. search.
  308. * org-exp.el (org-infile-export-plist): Allow multiple STYLE lines.
  309. 2008-09-30 Carsten Dominik <dominik@science.uva.nl>
  310. * org.el (org-entry-get-multivalued-property)
  311. (org-entry-protect-space, org-entry-restore-space): New
  312. functions.
  313. (org-file-apps-defaults-macosx): Let postscript files be opened by
  314. preview.
  315. (org-time-stamp-inactive): Call `org-time-stamp'.
  316. (org-time-stamp): New argument `inactive'. Also edit inacive
  317. stamps. Convert time stamp type.
  318. (org-open-file): Interpret the `default' value for the `command'
  319. in `org-file-apps'.
  320. * org-id.el (org-id-int-to-b36-one-digit)
  321. (org-id-b36-to-int-one-digit, org-id-int-to-b36)
  322. (org-id-b36-to-int, org-id-time-to-b36): Modified from b62 to
  323. b36.
  324. 2008-09-29 Carsten Dominik <dominik@science.uva.nl>
  325. * org-id.el (org-id-reverse-string): New function.
  326. (org-id-new): Use `org-id-reverse-string' to make sure the
  327. beginning chars of the ID are mutating fast. This allows to use a
  328. directory structure to spread things better.
  329. (org-id-prefix): Changed default to nil.
  330. * org-list.el (org-move-item-down, org-move-item-up): Remember and
  331. restore the column of the cursor position.
  332. * org-remember.el (org-remember-apply-template): Remove properties
  333. from `initial'.
  334. 2008-09-27 Carsten Dominik <dominik@science.uva.nl>
  335. * org-wl.el (org-wl-open): Remove useless call to
  336. `wl-thread-open-all'.
  337. * org-remember.el (org-remember-handler): Fix bug with `bottom'
  338. location.
  339. 2008-09-26 Carsten Dominik <dominik@science.uva.nl>
  340. * org-bbdb.el (org-bbdb-anniversaries): Require bbdb in
  341. `org-bbdb-anniversaries'.
  342. * org.el (org-get-next-sibling, org-forward-same-level): New
  343. functions, similar to the outline versions, but invisible headings
  344. are OK.
  345. 2008-09-25 Bastien Guerry <bzg@altern.org>
  346. * org.el (org-auto-repeat-maybe): Insert a space between
  347. the timestamp's type and the timestamp itself.
  348. 2008-09-24 Carsten Dominik <dominik@science.uva.nl>
  349. * org-table.el (org-table-sum): Do not format the result with %g,
  350. it does rounding when there are too many digits.
  351. * org.el (org-map-entries): Protect the keyword-selecting variables.
  352. 2008-09-23 Bastien Guerry <bzg@altern.org>
  353. * org-agenda.el (org-agenda-to-appt): Make sure the function check
  354. against all agenda files.
  355. 2008-09-23 Carsten Dominik <dominik@science.uva.nl>
  356. * org-list.el: New file, aggregating list functions from org.el
  357. and org-export-latex.el.
  358. * org.el (org-edit-src-region-extra): New option.
  359. 2008-09-22 Carsten Dominik <dominik@science.uva.nl>
  360. * org-agenda.el (org-agenda-to-appt): Fix bug with appointment
  361. time before 1am.
  362. 2008-09-22 Bastien Guerry <bzg@altern.org>
  363. * org-export-latex.el (org-export-latex-keywords-maybe): Bug fix.
  364. 2008-09-22 James TD Smith <ahktenzero@mohorovi.cc>
  365. * org-plot.el (org-plot/gnuplot): Make tables starting with a
  366. hline work correctly.
  367. (org-plot/gnuplot-script): Put commas at the end of each script
  368. line.
  369. 2008-09-20 James TD Smith <ahktenzero@mohorovi.cc>
  370. * org.el (org-get-refile-targets): Replace links with their
  371. descriptions
  372. (org-imenu-get-tree): Replace links with their descriptions.
  373. * org-remember.el (org-remember-apply-template): Add a new
  374. expansion for adding properties to remember items.
  375. * org.el (org-add-log-setup): Skip over drawers (properties,
  376. clocks etc) when adding notes.
  377. * org-agenda.el (org-agenda-get-closed): show durations of clocked
  378. items as well as the start and end times.
  379. * org-compat.el (org-get-x-clipboard-compat): Add a compat
  380. function for fetching the X clipboard on XEmacs and GNU Emacs 21.
  381. * org-remember.el (org-get-x-clipboard): Use the compat
  382. function to get clipboard values when x-selection-value is
  383. unavailable. Use substring-no-properties instead of
  384. set-text-properties to remove text properties from the clipboard
  385. value.
  386. * lisp/org-clock.el (org-update-mode-line): Support limiting the
  387. modeline clock string, and display the full todo value in the
  388. tooltip. Set a local keymap so mouse-3 on the clock string goes to
  389. the currently clocked task.
  390. (org-clock-string-limit): Add a custom value for the maximum
  391. length of the clock string in the modeline.
  392. (org-clock-mode-map): Add a keymap for the modeline string
  393. 2008-09-21 Carsten Dominik <dominik@science.uva.nl>
  394. * org-compat.el (org-propertize): New function.
  395. 2008-09-20 Bastien Guerry <bzg@altern.org>
  396. * org-export-latex.el (org-export-latex-tables): protect exported
  397. tables from further special chars conversion.
  398. (org-export-latex-preprocess): Preserve LaTeX environments.
  399. (org-list-parse-list): Parse descriptive lists.
  400. (org-list-to-generic, org-list-to-latex, org-list-to-html)
  401. (org-list-to-texinfo): Export descriptive lists.
  402. (org-quote-chars): Remove.
  403. (org-export-latex-keywords-maybe): Use `replace-regexp-in-string'.
  404. (org-export-latex-list-beginning-re): Rename to
  405. `org-list-beginning-re'
  406. (org-list-item-begin): Rename to `org-list-item-beginning'
  407. 2008-09-20 Carsten Dominik <dominik@science.uva.nl>
  408. * org.el (org-refile): Allow refiling to the last entry in the
  409. buffer.
  410. (org-get-tags-at): Fix bug when inheritance is turned off.
  411. 2008-09-19 Carsten Dominik <dominik@science.uva.nl>
  412. * org.el (org-indent-line-function): No longer check for src
  413. regions, this is too much overhead.
  414. * org-agenda.el (org-agenda-highlight-todo): Fix bugs with keyword
  415. matching.
  416. * org.el (org-scan-tags): Make sure that tags matching is not case
  417. sensitive. TODO keyword matching is case sensitive, however, to
  418. avoid confusion with similar words that are not meant to be
  419. keywords.
  420. 2008-09-18 Carsten Dominik <dominik@science.uva.nl>
  421. * org.el (org-get-local-tags-at): New function.
  422. (org-get-local-tags): New function.
  423. * org-exp.el (org-export-get-categories): New function.
  424. * org-agenda.el (org-sorting-choice)
  425. (org-agenda-sorting-strategy, org-agenda-get-todos)
  426. (org-agenda-get-timestamps, org-agenda-get-deadlines)
  427. (org-agenda-get-scheduled, org-agenda-get-blocks)
  428. (org-entries-lessp): Implement sorting by TODO state.
  429. (org-cmp-todo-state): New defsubst.
  430. * org-colview.el (org-colview-construct-allowed-dates): New
  431. function.
  432. (org-columns-next-allowed-value): Use
  433. `org-colview-construct-allowed-dates'.
  434. * org-colview-xemacs.el (org-colview-construct-allowed-dates): New
  435. function.
  436. (org-columns-next-allowed-value): Use
  437. `org-colview-construct-allowed-dates'.
  438. 2008-09-17 Carsten Dominik <dominik@science.uva.nl>
  439. * org.el (org-protect-slash): New function.
  440. (org-get-refile-targets): Use `org-protect-slash'.
  441. * org-agenda.el (org-global-tags-completion-table): New variable.
  442. * org-exp.el (org-export-handle-export-tags): New function.
  443. (org-export-preprocess-string): Call
  444. `org-export-handle-export-tags'.
  445. * org-plot.el: New file.
  446. * org-publish.el (org-publish-expand-components): Function removed.
  447. (org-publish-expand-projects): Allow components to have components.
  448. 2008-09-13 Carsten Dominik <dominik@science.uva.nl>
  449. * org.el (org-indent-line-function): Do not indent in regions that
  450. are external source code.
  451. (org-yank-and-fold-if-subtree): New function.
  452. * org-agenda.el (org-agenda-todayp): New function.
  453. (org-agenda-get-deadlines, org-agenda-get-scheduled): Use
  454. `org-agenda-todayp'.
  455. * org.el (org-insert-heading-respect-content)
  456. (org-insert-todo-heading-respect-content): New commands.
  457. (org-insert-heading-respect-content): New option.
  458. (org-insert-heading): Respect `org-insert-heading-respect-content'.
  459. * org-clock.el (org-clock-find-position): Make sure the note after
  460. the clock line gets moved into the new clock drawer.
  461. 2008-09-11 Carsten Dominik <dominik@science.uva.nl>
  462. * org-id.el (org-id-new): New option.
  463. 2008-09-08 Carsten Dominik <dominik@science.uva.nl>
  464. * org-table.el (org-table-copy-down): Avoid overflow during
  465. increment. Use prefix argument 0 to temporarily disable the
  466. increment.
  467. 2008-09-07 Carsten Dominik <dominik@science.uva.nl>
  468. * org-exp.el (org-export-as-html): Do not turn on the major mode
  469. if the buffer will be killed anyway.
  470. (org-get-current-options): Exclude the #+TEXT field.
  471. (org-export-as-html): Make sure text before the first headline is
  472. a paragraph.
  473. * org-publish.el (org-publish-org-to): Tell the exporter that this
  474. buffer will be killed, so it is not necessary to do major mode
  475. initialization.
  476. * org-archive.el (org-archive-to-archive-sibling): Show empty
  477. lines after folding the archive sibling.
  478. * org.el (org-log-note-extra): New variable.
  479. 2008-09-05 Bastien Guerry <bzg@altern.org>
  480. * org.el (org-additional-option-like-keywords): Added keywords for
  481. the _QUOTE, _VERSE and _SRC environments.
  482. * org-export-latex.el (org-export-latex-preprocess): Fix bug when
  483. exporting _QUOTE and _VERSE environments.
  484. 2008-09-05 Carsten Dominik <dominik@science.uva.nl>
  485. * org-agenda.el (org-agenda-filter-by-tag): New command.
  486. * org-exp.el (org-get-current-options): Remove angular brackets
  487. from the date entry.
  488. * org.el (org-edit-fixed-width-region): New function.
  489. (org-edit-fixed-width-region): Also try
  490. `org-edit-fixed-width-region'.
  491. (org-edit-fixed-width-region-mode): New option.
  492. (org-activate-code): Only interprete lines starting with colon
  493. plus a space as example lines.
  494. * org-remember.el (org-remember-templates): Add nil instead of
  495. empty strings to fix the length of remember templates.
  496. * org-table.el (org-calc-default-modes): Fix the time format for
  497. calc, from 12 hour to 24 hour clock.
  498. 2008-09-04 Carsten Dominik <dominik@science.uva.nl>
  499. * org-agenda.el (org-agenda-get-deadlines)
  500. (org-agenda-get-scheduled): Avoid `time-of-day' extraction for
  501. entries that are pre-warnings of deadlines or reminders.
  502. * org.el (org-sort-entries-or-items): Make numeric and alpha
  503. comparisons ignore any TODO keyword and priority cookie.
  504. * org-remember.el (org-remember-handler): Reinterpretation of the
  505. prefix argument.
  506. 2008-09-03 Carsten Dominik <dominik@science.uva.nl>
  507. * org-agenda.el (org-agenda-get-scheduled): Use new
  508. `org-scheduled' face.
  509. * org-faces.el (org-scheduled): New face.
  510. * org-wl.el (org-wl-open): Remove incorrect declaration.
  511. * org-gnus.el (org-gnus-store-link): Support for :to information
  512. in gnus links.
  513. * org-exp.el (org-export-as-html): Fixed typo in creator
  514. information.
  515. (org-export-protect-examples): New parameter indent. Insert extra
  516. spaces only when this parameter is specified.
  517. (org-export-preprocess-string): Call `org-export-protect-examples'
  518. with an indentation parameter when exporting to ASCII.
  519. * org-remember.el (org-remember-templates)
  520. (org-remember-apply-template): Allow the file component to be a
  521. function.
  522. * org.el (org-goto-local-search-headings): Renamed from
  523. `org-goto-local-search-forward-headings'. Added the possibility
  524. to search backwards.
  525. 2008-09-02 Carsten Dominik <dominik@science.uva.nl>
  526. * org-export-latex.el (org-export-latex): New customization
  527. group.
  528. * org-agenda.el (org-write-agenda): Erase buffer for txt export.
  529. 2008-09-01 Carsten Dominik <dominik@science.uva.nl>
  530. * org-exp.el (org-html-do-expand): Allow {} to terminate
  531. tex macro
  532. 2008-07-29 Carsten Dominik <dominik@science.uva.nl>
  533. * org.el (org-buffer-list): Select buffers based on major mode,
  534. not on file name.
  535. 2008-07-26 Carsten Dominik <dominik@science.uva.nl>
  536. * org-agenda.el (org-agenda-align-tags): Fix bug with malformed
  537. face property.
  538. * org-colview.el (org-columns-display-here): Use
  539. `org-columns-modify-value-for-display-function'.
  540. * org-colview-xemacs.el (org-columns-display-here): Use
  541. `org-columns-modify-value-for-display-function'.
  542. 2008-07-25 Carsten Dominik <dominik@science.uva.nl>
  543. * org.el (org-columns-modify-value-for-display-function): New option.
  544. * org-publish.el (org-publish-file): Make sure the directory match
  545. for the publishing directory works correctly.
  546. * org-agenda.el (org-agenda-execute-calendar-command)
  547. (org-agenda-diary-entry): Additional optional argument.
  548. 2008-07-24 Carsten Dominik <dominik@science.uva.nl>
  549. * org-exp.el (org-export-as-html): Add attributes also in mailto
  550. and ftp links.
  551. * org.el (org-autoload): Add `org-dblock-write:columnview'.
  552. 2008-07-23 Carsten Dominik <dominik@science.uva.nl>
  553. * org-exp.el (org-export-region-as-html, org-export-as-html): Make
  554. sure that calls from `org-export-region-as-html' do not do the
  555. special check for a subtree.
  556. 2008-07-22 Carsten Dominik <dominik@science.uva.nl>
  557. * org-agenda.el (org-batch-store-agenda-views): Fix parsing bug.
  558. 2008-07-20 Juri Linkov <juri@jurta.org>
  559. * org.el (narrow-map): Bind `org-narrow-to-subtree' to "s" on the
  560. new keymap `narrow-map' instead of binding "\C-xns".
  561. 2008-07-18 Carsten Dominik <dominik@science.uva.nl>
  562. * org.el (org-open-file): Use
  563. `org-open-directory-means-index-dot-org'.
  564. (org-open-directory-means-index-dot-org): New option.
  565. 2008-07-17 Carsten Dominik <dominik@science.uva.nl>
  566. * org.el (org-make-link-string): Remove link attributes from
  567. description.
  568. (org-open-at-point): Remove link attributes bevore using the path.
  569. * org-exp.el (org-export-as-html): Handle link attributes.
  570. * org.el (org-extract-attributes, org-attributes-to-string): New functions.
  571. * org-table.el (org-table-to-lisp): New function.
  572. * org.el (org-narrow-to-subtree): Do not include the final newline
  573. into the narrowed region.
  574. * org-agenda.el (org-agenda-custom-commands-local-options): Fixed
  575. bug with user-define skipping condition.
  576. 2008-07-16 Carsten Dominik <dominik@science.uva.nl>
  577. * org-agenda.el (org-agenda-get-restriction-and-command): Fixed typo.
  578. 2008-07-14 Carsten Dominik <dominik@science.uva.nl>
  579. * org-exp.el (org-export-html-style-default): Automatic overflow
  580. handling for pre fields.
  581. (org-export-as-ascii, org-export-as-html): Change default format
  582. for time stamp.
  583. * org-table.el (org-table-export): Offer completion for translator
  584. functions, and do not require a heading above the table.
  585. * org.el (org-renumber-ordered-list, org-beginning-of-item-list):
  586. Cater for the case of a list starting in the first line of the
  587. buffer.
  588. 2008-07-09 Carsten Dominik <dominik@science.uva.nl>
  589. * org-publish.el (org-publish-find-title): Bug fix.
  590. (org-publish-org-index): Implement new :index-style option.
  591. 2008-07-07 Carsten Dominik <dominik@science.uva.nl>
  592. * org-publish.el (org-publish-timestamp-filename): Use
  593. SHA1-encoded file names in the timestamp directory.
  594. 2008-07-05 Carsten Dominik <dominik@science.uva.nl>
  595. * org-publish.el (org-publish-needed-p): Be verbose about files
  596. published and files skipped.
  597. * org-exp.el (org-export-preprocess-string): Swap link
  598. normalization and inernal link targeting.
  599. * org-publish.el (org-publish-needed-p): Create timestamp
  600. directory when it does not exist.
  601. 2008-07-04 Bastien Guerry <bzg@altern.org>
  602. * org-clock.el (org-clock-out-when-done): Doc fix.
  603. * org.el (org-agenda-skip-unavailable-files): Doc fix.
  604. * org-exp.el (org-export-remove-comment-blocks-and-subtrees):
  605. Ignore case when searching for the COMMENT cookie at export time.
  606. 2008-07-02 Carsten Dominik <dominik@science.uva.nl>
  607. * org-exp.el (org-get-file-contents)
  608. (org-get-and-remove-property): New functions.
  609. (org-export-handle-include-files): Handle the new prefix options.
  610. (org-export-as-html): Fix the verse environment.
  611. 2008-07-01 Carsten Dominik <dominik@science.uva.nl>
  612. * org.el (org-time=, org-time<, org-time<=, org-time>)
  613. (org-time>=, org-time<>, org-2ft): New functions.
  614. (org-op-to-function): Also provide for the time testing fucntions.
  615. 2008-06-30 Carsten Dominik <dominik@science.uva.nl>
  616. * org-exp.el (org-export-html-style-default): New constant.
  617. 2008-06-29 Carsten Dominik <dominik@science.uva.nl>
  618. * org-exp.el (org-export-html-style-extra): New variable.
  619. (org-export-splice-style): New function.
  620. 2008-06-26 Carsten Dominik <dominik@science.uva.nl>
  621. * org-exp.el (org-export-plist-vars, org-export-as-html):
  622. Implement `org-export-creator-info'.
  623. (org-export-creator-info): New option.
  624. 2008-06-25 Carsten Dominik <dominik@science.uva.nl>
  625. * org.el (org-clock-drawer-start-re, org-clock-drawer-end-re)
  626. (org-property-drawer-re, org-clock-drawer-re): New constants.
  627. 2008-06-23 Carsten Dominik <dominik@science.uva.nl>
  628. * org-exp.el (org-icalendar-use-deadline)
  629. (org-icalendar-use-scheduled): New options.
  630. (org-icalendar-include-todo): Default changed to t.
  631. (org-print-icalendar-entries): Implement better utilization of
  632. scheduling and deadline time stamps.
  633. (org-export-target-internal-links, org-export-as-html): Allow file
  634. lines without the "file:" prefix if the file path is an absolute
  635. path or starts with ".".
  636. * org-clock.el (org-clocktable-shift): Also undertand yesterday,
  637. lastweek etc.
  638. (org-clock-special-range): Also undertand yesterday, lastweek etc.
  639. 2008-06-18 Glenn Morris <rgm@gnu.org>
  640. * org.el (org-map-entries): Let-bind `file'.
  641. 2008-06-19 Carsten Dominik <dominik@science.uva.nl>
  642. * org.el (org-agenda-skip-archived-trees): Docstring now
  643. discourages using this.
  644. (org-scan-tags): Check for org-agenda-archives-mode.
  645. (org-map-entries): Make sure org-agenda-archives-mode is nil.
  646. (org-agenda-files): Functionality of second arg changed.
  647. * org-agenda.el (org-agenda-archives-mode): New variable
  648. (org-write-agenda, org-prepare-agenda, org-agenda-list)
  649. (org-search-view, org-todo-list, org-tags-view)
  650. (org-agenda-list-stuck-projects): Call `org-agenda-files' with
  651. `ifmode' argument.
  652. (org-agenda-quit): Reset the archives mode.
  653. (org-agenda-archives-mode): New command.
  654. (org-agenda-set-mode-name): Include archives info.
  655. 2008-06-18 Carsten Dominik <dominik@science.uva.nl>
  656. * org.el (org-paste-subtree): Make sure the yanked headline is
  657. visible if it was yanked at a visible point.
  658. (org-move-item-up): Fix the bug with moving white space at the end
  659. of the item.
  660. (org-show-empty-lines-in-parent): New function.
  661. 2008-06-16 Carsten Dominik <dominik@science.uva.nl>
  662. * org-colview.el (org-columns-next-allowed-value): Bug fix.
  663. * org-colview-xemacs.el (org-columns-next-allowed-value): Bug fix.
  664. * org-agenda.el (org-agenda-get-closed): Get the end time into the
  665. agenda prefix as well.
  666. * org-publish.el (org-publish-org-index): Make a properly indented
  667. list.
  668. * org.el (org-calendar-agenda-action-key): New option.
  669. (org-get-cursor-date): New function.
  670. (org-mark-entry-for-agenda-action): New command.
  671. (org-overriding-default-time): New variable.
  672. (org-read-date): Respect `org-overriding-default-time'.
  673. * org-remember.el (org-remember-apply-template): Respect the
  674. ovverriding default time.
  675. * org-agenda.el (org-agenda-action-marker): New variable.
  676. (org-agenda-action): New command.
  677. (org-agenda-do-action): New function.
  678. 2008-06-15 Carsten Dominik <dominik@science.uva.nl>
  679. * org.el (org-schedule, org-deadline): Protect scheduled and
  680. deadline tasks against changes that accidently remove the
  681. repeater. Also show a message with the new date when done.
  682. 2008-06-15 Carsten Dominik <dominik@science.uva.nl>
  683. * org.el (org-beginning-of-line): Cater for the case when there
  684. are tags but no headline text.
  685. (org-align-tags-here): Convert to tabs only when indent-tabs-mode
  686. it set.
  687. 2008-06-13 Carsten Dominik <dominik@science.uva.nl>
  688. * org-mhe.el (org-mhe-get-message-folder-from-index): Make sure
  689. the return value is nil instead of "nil" when there is no match.
  690. * org-exp.el (org-insert-centered): Use fill-column instead of
  691. 80.
  692. (org-export-as-ascii): Use string-width to measure the width of
  693. the heading.
  694. * org.el (org-diary-to-ical-string): No longer kill buffer
  695. FROMBUF, this is now done by the caller.
  696. * org-exp.el (org-print-icalendar-entries): Move the call to
  697. `org-diary-to-ical-string' out of the loop, and kill the buffer
  698. afterwords.
  699. * org-remember.el (org-remember-visit-immediately): Position
  700. cursor after moving to the note.
  701. (org-remember-apply-template): Use a text property to record the
  702. cursor position.
  703. (org-remember-handler): Align tags after pasting the note.
  704. 2008-06-12 Carsten Dominik <dominik@science.uva.nl>
  705. * org-bbdb.el (org-bbdb-follow-anniversary-link): New function.
  706. * org-agenda.el (org-agenda-open-link): If there is an
  707. org-bbdb-name property in the current line, jump to that bbdb
  708. entry.
  709. * org-bbdb.el (org-bbdb-anniversaries): Add the bbdb-name as a
  710. text property, so that the agenda knows where this entry comes
  711. from.
  712. * org-agenda.el (org-agenda-clock-in): Fixed bug in the
  713. interaction between clocking-in from the agenda, and automatic
  714. task state switching.
  715. * org-macs.el (org-with-point-at): Bug fix in macro defintion.
  716. * org.el (org-beginning-of-line, org-end-of-line): Make sure the
  717. zmacs-region stays after this command in XEmacs.
  718. 2008-06-11 Carsten Dominik <dominik@science.uva.nl>
  719. * org.el (org-scan-tags): Allow new values for ACTION parameter.
  720. * org-remember.el (org-remember-templates): Fix bug in
  721. customization type definition.
  722. * org.el (org-map-entries): New function.
  723. 2008-06-11 verhuur82 <verhuur82@macbook-van-verhuur82.local>
  724. * org-agenda.el (org-agenda-skip-comment-trees): New option.
  725. (org-agenda-skip): Respect `org-agenda-skip-comment-trees'.
  726. 2008-06-10 Carsten Dominik <dominik@science.uva.nl>
  727. * org-remember.el (org-jump-to-target-location): New variable.
  728. (org-remember-apply-template): Set
  729. `org-remember-apply-template' if requested by template.
  730. (org-remember-handler): Start an idle timer to jump to
  731. remember location.
  732. * org-exp.el (org-get-current-options): Add the FILETAGS setting.
  733. * org.el (org-set-regexps-and-options): Fix bug with parsing of
  734. file tags.
  735. (org-get-tags-at): Add the content of `org-file-tags'.
  736. * org-exp.el (org-export-handle-comments): Fix bug with several
  737. comment lines after each other.
  738. (org-number-to-roman, org-number-to-counter): New functions.
  739. (org-export-section-number-format): New option.
  740. 2008-06-09 Carsten Dominik <dominik@science.uva.nl>
  741. * org-exp.el (org-export-protect-examples): Catch the case of a
  742. missing end_example line.
  743. * org.el (org-set-regexps-and-options): Set `org-file-properties' and
  744. `org-file-tags' to nil.
  745. * org-colview.el (org-columns-next-allowed-value): Handle next
  746. argument NTH to directly select a value.
  747. * org-colview-xemacs.el (org-columns-next-allowed-value): Handle next
  748. argument NTH to directly select a value.
  749. 2008-06-08 Carsten Dominik <dominik@science.uva.nl>
  750. * org-agenda.el (org-agenda-scheduled-leaders): Fix docstring.
  751. 2008-05-30 Carsten Dominik <dominik@science.uva.nl>
  752. * org.el (org-columns-ellipses): New option.
  753. 2008-05-29 Carsten Dominik <dominik@science.uva.nl>
  754. * org-colview.el (org-columns-add-ellipses): New function.
  755. (org-columns-compact-links): New function.
  756. (org-columns-cleanup-item): Call `org-columns-compact-links'.
  757. (org-columns-display-here): Call `org-agenda-columns-cleanup-item'
  758. when in agenda.
  759. (org-columns-edit-value): Fixed bug with editing values from
  760. agenda column view.
  761. (org-columns-redo): Also redo the agenda itself.
  762. 2008-05-28 Carsten Dominik <dominik@science.uva.nl>
  763. * org-agenda.el (org-agenda-columns-remove-prefix-from-item): New
  764. option.
  765. * org-colview.el (org-agenda-columns-cleanup-item): New function.
  766. * org-exp.el (org-export-ascii-preprocess): Renamed from
  767. `org-export-ascii-clean-string'.
  768. (org-export-kill-licensed-text)
  769. (org-export-define-heading-targets)
  770. (org-export-handle-invisible-targets)
  771. (org-export-target-internal-links)
  772. (org-export-remove-or-extract-drawers)
  773. (org-export-remove-archived-trees)
  774. (org-export-protect-quoted-subtrees)
  775. (org-export-protect-verbatim, org-export-protect-examples)
  776. (org-export-select-backend-specific-text)
  777. (org-export-mark-blockquote-and-verse)
  778. (org-export-remove-comment-blocks-and-subtrees)
  779. (org-export-handle-comments, org-export-mark-radio-links)
  780. (org-export-remove-special-table-lines)
  781. (org-export-normalize-links)
  782. (org-export-concatenate-multiline-links)
  783. (org-export-concatenate-multiline-emphasis): New functions,
  784. obtained from spliiting the export preprocessor.
  785. * org-table.el (org-table-recalculate): Improve error message if
  786. the row number is invalid.
  787. 2008-05-27 Carsten Dominik <dominik@science.uva.nl>
  788. * org-archive.el (org-archive-save-context-info): Fix bugs in
  789. customization setup and docstring.
  790. * org-exp.el (org-export-html-style): Changed the size of in the
  791. <pre> element to 90%.
  792. 2008-05-26 Carsten Dominik <dominik@science.uva.nl>
  793. * org.el (org-find-src-example-start): Function removed.
  794. (org-edit-src-find-region-and-lang): New function.
  795. 2008-05-25 Carsten Dominik <dominik@science.uva.nl>
  796. * org.el (org-edit-src-exit): New function.
  797. (org-exit-edit-mode): New minor mode.
  798. * org-exp.el (org-export-preprocess-string): Fix bug with removing
  799. comment-like lines from protected examples.
  800. * org.el (org-edit-src-example, org-find-src-example-start)
  801. (org-protect-source-example, org-edit-special): New functions.
  802. 2008-05-24 Carsten Dominik <dominik@science.uva.nl>
  803. * org-publish.el (org-publish-project-alist): Fix typo in
  804. docstring.
  805. (org-publish-project-alist): Handle :index-title property.
  806. 2008-05-21 Carsten Dominik <dominik@science.uva.nl>
  807. * org-export-latex.el (org-export-as-latex): Make sure region
  808. bounds are correct. Parse subtree properties relating to export.
  809. * org-exp.el (org-export-add-options-to-plist): New function.
  810. (org-infile-export-plist): Use `org-export-add-options-to-plist'.
  811. 2008-05-20 Carsten Dominik <dominik@science.uva.nl>
  812. * org.el (org-default-properties): Add EXPORT_FILE_NAME and
  813. EXPORT_TITLE.
  814. * org-exp.el (org-export-get-title-from-subtree)
  815. (org-export-as-ascii, org-export-as-html): Make sure the original
  816. region-beginning and region-end are used, even after moving
  817. point.
  818. (org-export-get-title-from-subtree): Also try the EXPORT_TITLE
  819. property.
  820. * org-remember.el (org-remember-last-stored-marker): New variable.
  821. (org-remember-goto-last-stored): Use `org-goto-marker-or-bmk'.
  822. (org-remember-handler): Also use marker to remember
  823. last-stored position.
  824. * org.el (org-goto-marker-or-bmk): New function.
  825. 2008-05-19 Carsten Dominik <dominik@science.uva.nl>
  826. * org.el (org-file-properties): Renamed from `org-local-properties'.
  827. (org-scan-tags): Take file tags into account.
  828. (org-tags-match-list-sublevels): Default changed to t.
  829. * org-exp.el (org-export-as-html): Close paragraph after a
  830. footnote.
  831. * org.el (org-update-parent-todo-statistics): New function.
  832. * org-exp.el (org-icalendar-store-UID): New option.
  833. (org-icalendar-force-UID): Option removed.
  834. (org-print-icalendar-entries): IMplement UIDs.
  835. 2008-05-18 Carsten Dominik <dominik@science.uva.nl>
  836. * org-mhe.el (org-mhe-follow-link): Fix bug in mhe searches.
  837. 2008-05-16 Carsten Dominik <dominik@science.uva.nl>
  838. * org-faces.el (org-column): Document how this face is being used
  839. and why sometimes the background faces shine through.
  840. * org-mhe.el (org-mhe-follow-link): Improve handling of searches.
  841. * org-publish.el (org-publish-attachment): Create publishing
  842. directory if it does not yet exist.
  843. * org-table.el (org-calc-default-modes): Change default number
  844. format to (float 8).
  845. * org.el (org-olpath-completing-read): New function.
  846. (org-time-clocksum-format): New option.
  847. (org-minutes-to-hh:mm-string): Use `org-time-clocksum-format'.
  848. * org-clock.el (org-clock-display, org-clock-out)
  849. (org-update-mode-line): Use `org-time-clocksum-format'.
  850. * org-colview-xemacs.el (org-columns-number-to-string): Use
  851. `org-time-clocksum-format'.
  852. * org-colview.el (org-columns-number-to-string): Use
  853. `org-time-clocksum-format'.
  854. 2008-05-15 Carsten Dominik <dominik@science.uva.nl>
  855. * org-id.el: New file, move from contrib to core.
  856. * org-exp.el (org-icalendar-force-UID): New option.
  857. 2008-05-14 Carsten Dominik <dominik@science.uva.nl>
  858. * org-exp.el (org-print-icalendar-entries): Make sure DTEND is
  859. shifted by one day if theere is a date range without an end
  860. time.
  861. * org.el (org-try-structure-completion): New function.
  862. 2008-05-13 Carsten Dominik <dominik@science.uva.nl>
  863. * org.el (org-set-font-lock-defaults): Improve fontification of
  864. description lists.
  865. (org-insert-item): Handle description lists.
  866. (org-adaptive-fill-function): Improve auto indentation in
  867. description lists.
  868. * org-exp.el (org-export-as-html, org-export-preprocess-string):
  869. Implement VERSE environment.
  870. (org-export-preprocess-string): Implement the COMMENT
  871. environment.
  872. * org-export-latex.el (org-export-latex-preprocess): Implement
  873. VERSE environment.
  874. 2008-05-12 Carsten Dominik <dominik@science.uva.nl>
  875. * org-jsinfo.el (org-infojs-opts-table): Add entry for FIXED_TOC
  876. option.
  877. 2008-05-10 Carsten Dominik <dominik@science.uva.nl>
  878. * org-table.el (orgtbl-to-tsv, orgtbl-to-csv): New functions.
  879. * org.el (org-quote-csv-field): New functions.
  880. * org-table.el (org-table-export-default-format): Remove :splice
  881. from default format, we get the same effect by not specifying
  882. :tstart and :tend.
  883. (org-table-export): Improve setup, distinguish better between
  884. interactive and non-interactive use, allow specifying the format
  885. on the fly, better protection against wrong file names.
  886. (orgtbl-to-generic): Fix documentation. Do not require :tstart
  887. and :tend when :splice is omitted.
  888. 2008-05-09 Bernt Hansen <bernt@norang.ca>
  889. * org-clock.el (org-clock-select-task): Make sure the selection
  890. letters are 1-9 and A-Z, no special characters.
  891. 2008-05-09 Carsten Dominik <dominik@science.uva.nl>
  892. * org-exp.el (org-export-htmlize): New group.
  893. (org-export-htmlize-output-type)
  894. (org-export-htmlize-css-font-prefix): New options.
  895. (org-export-htmlize-region-for-paste): New function.
  896. (org-export-htmlize-generate-css): New command.
  897. 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
  898. * org/org.el (org-modules, org-format-latex-options):
  899. * org/org-archive.el (org-archive-stamp-time)
  900. (org-archive-save-context-info):
  901. * org/org-faces.el (org-hide):
  902. * org/org-irc.el (org-irc-parse-link):
  903. * org/org-macs.el (org-call-with-arg, org-autoload):
  904. * org/org-mew.el (org-mew-store-link):
  905. * org/org-remember.el (org-remember-store-without-prompt)
  906. (org-remember-templates): Fix typos in docstrings.
  907. * org/org-info.el (org-info-store-link): Remove leftover docstring.
  908. * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
  909. (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
  910. (org-bbdb-anniv-split): Fix typos in docstrings.
  911. * org/org-publish.el (org-publish-project-alist): Doc fixes.
  912. (org-publish-use-timestamps-flag): Reflow docstring.
  913. (org-publish-files-alist): Fix typos in docstring.
  914. 2008-05-08 Carsten Dominik <dominik@science.uva.nl>
  915. * org.el (org-set-visibility-according-to-property): New function.
  916. (org-ctrl-c-ctrl-c): Do not restart org-mode, just get the options
  917. and compute the regular expressions, and update font-lock.
  918. (org-property-re): Allow a dash in property names.
  919. * org-archive.el (org-extract-archive-file): Insert the file name
  920. without the path into the format, to allow the location format to
  921. contain a subdirectory.
  922. * org-agenda.el (org-agenda-post-command-hook): If point is at end
  923. of buffer, and the `org-agenda-type' property undefined, use the
  924. value from the character before.
  925. * org.el (org-add-planning-info): Don't let indentation for
  926. would-be timestamp become extra whitespace at the end of headline.
  927. 2008-05-07 Carsten Dominik <dominik@science.uva.nl>
  928. * org.el (org-remove-double-quotes, org-file-contents): New
  929. functions.
  930. * org-exp.el (org-infile-export-plist): Also parse the
  931. contents of #+SETUPFILE files, recursively.
  932. * org.el (org-set-regexps-and-options): Also parse the
  933. contents of #+SETUPFILE files, recursively.
  934. * org-exp.el (org-export-handle-include-files): New function.
  935. (org-export-preprocess-string): Call
  936. `org-export-handle-include-files'.
  937. * org.el (org-delete-property-globally)
  938. (org-delete-property, org-set-property): Ignore case during
  939. completion.
  940. (org-set-property): Use `org-completing-read' instead of
  941. `completing-read'.
  942. * org.el (org-complete-expand-structure-template): New,
  943. experimental function.
  944. (org-structure-template-alist): New, experimental option.
  945. (org-complete): Call `org-complete-expand-structure-template'.
  946. 2008-05-06 Bastien Guerry <bzg@altern.org>
  947. * org-export-latex.el (org-export-latex-preprocess): Added
  948. support for blockquotes.
  949. 2008-05-05 Carsten Dominik <dominik@science.uva.nl>
  950. * org.el (org-read-date-analyze): Catch the case where only a
  951. weekday is given.
  952. 2008-05-04 Carsten Dominik <dominik@science.uva.nl>
  953. * org.el (org-set-font-lock-defaults): Make the description
  954. tag bold.
  955. * org-exp.el (org-export-as-html, org-close-li): Implement
  956. description lists.
  957. 2008-05-04 Jason Riedy <jason@acm.org>
  958. * org-table.el (*orgtbl-default-fmt*): New variable.
  959. (orgtbl-format-line): Use the value of *orgtbl-default-fmt*
  960. when there is no other fmt available.
  961. (orgtbl-to-generic): Allow an explicitly nil :tstart or
  962. :tend to suppress the appropriate string.
  963. (orgtbl-to-orgtbl): New function for translating to another orgtbl
  964. table.
  965. 2008-05-02 Carsten Dominik <dominik@science.uva.nl>
  966. * org.el (org-read-date-analyze): "." as an alias for "+0" in
  967. read date.
  968. * org-clock.el (org-clock-save-markers-for-cut-and-paste):
  969. New function.
  970. * org-agenda.el (org-agenda-save-markers-for-cut-and-paste):
  971. New function.
  972. 2008-05-01 Carsten Dominik <dominik@science.uva.nl>
  973. * org-clock.el (org-clock-find-position): Don't include notes
  974. into clock drawer.
  975. * org-archive.el (org-archive-subtree): No longer remove an
  976. extra line after cutting the subtree. `org-cut-subtree' already
  977. takes care of this.
  978. * org-remember.el (org-remember-handler): Only kill the target
  979. buffer if it does not contain the running clock.
  980. * org.el (org-markers-to-move): New variable.
  981. (org-save-markers-in-region, org-check-and-save-marker)
  982. (org-reinstall-markers-in-region): New function.
  983. (org-move-subtree-down, org-copy-subtree): Remember relative
  984. marker positions before cutting.
  985. (org-move-subtree-down, org-paste-subtree): Restore relative
  986. marker positions after pasting.
  987. * org-remember.el (org-remember-clock-out-on-exit): New option.
  988. (org-remember-finalize): Clock out only if the setting in
  989. `org-remember-clock-out-on-exit' requires it.
  990. (org-remember-handler): Do the cleanup in the buffer, to make sure
  991. that the clock marker remains in tact.
  992. 2008-04-29 Carsten Dominik <dominik@science.uva.nl>
  993. * org-clock.el (org-clock-goto): Widen buffer if necessary.
  994. (org-clock-in): Make sure that also tasks outside the narrowed
  995. region will be clocked in correctly.
  996. (org-clock-insert-selection-line): Widen the buffer so that we can
  997. find the correct task heading.
  998. * org.el (org-base-buffer): New function.
  999. * org-exp.el (org-icalendar-cleanup-string): Make sure ',"
  1000. and ";" are escaped.
  1001. (org-print-icalendar-entries): Also apply
  1002. `org-icalendar-cleanup-string' to the headline, not only to the
  1003. summary property.
  1004. 2008-04-28 Carsten Dominik <dominik@science.uva.nl>
  1005. * org-exp.el (org-export-preprocess-hook): New hook.
  1006. (org-export-preprocess-string): Call
  1007. `org-export-preprocess-hook'.
  1008. * org.el (org-font-lock-hook): New variable.
  1009. (org-font-lock-hook): New function.
  1010. (org-set-font-lock-defaults): Call `org-font-lock-hook'.
  1011. ;; Local Variables:
  1012. ;; coding: utf-8
  1013. ;; add-log-time-zone-rule: t
  1014. ;; End:
  1015. Copyright (C) 2008 Free Software Foundation, Inc.
  1016. This file is part of GNU Emacs.
  1017. GNU Emacs is free software: you can redistribute it and/or modify
  1018. it under the terms of the GNU General Public License as published by
  1019. the Free Software Foundation, either version 3 of the License, or
  1020. (at your option) any later version.
  1021. GNU Emacs is distributed in the hope that it will be useful,
  1022. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1023. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1024. GNU General Public License for more details.
  1025. You should have received a copy of the GNU General Public License
  1026. along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  1027. ;; arch-tag: a9bdcf06-7c2d-4b5a-bf7a-c5e7b706f67c