ChangeLog 52 KB

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