ChangeLog 56 KB

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