ChangeLog 43 KB

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