ChangeLog 34 KB

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