ChangeLog 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400
  1. 2010-04-14 Carsten Dominik <carsten.dominik@gmail.com>
  2. * org-crypt.el (org-encrypt-entry): Improve mapping behavior.
  3. 2010-04-13 Carsten Dominik <carsten.dominik@gmail.com>
  4. * org.el (org-align-all-tags): New command.
  5. 2010-04-13 David Maus <dmaus@ictsoc.de>
  6. * org-wl.el (org-wl-link-remove-filter): New customizable
  7. variable. If non-nil, filter conditions are stripped when storing
  8. link to message in filter folder.
  9. (org-wl-shimbun-prefer-web-links): New customizable variable. If
  10. non-nil, links to shimbun messages are created as web links to
  11. message source.
  12. (org-wl-nntp-prefer-web-links): New customizable variable. If
  13. non-nil, links to nntp message are created as web links to gmane
  14. or googlegroups.
  15. (org-wl-namazu-default-index): New customizable variable.
  16. Directory of namazu search index that should be used as default
  17. when opening a link in a search folder.
  18. (org-wl-folder-types): New constant. Wanderlust folder type
  19. indicators.
  20. (org-wl-folder-type): New function. Return type of Wanderlust
  21. folder.
  22. (org-wl-store-link): Create web links for shimbun or nntp messages
  23. and strip filter conditions depending on customizable variables.
  24. (org-wl-open): Open namazu search folder for message when called
  25. with prefix.
  26. 2010-04-12 Carsten Dominik <carsten.dominik@gmail.com>
  27. * org.el (org-remove-if, org-remove-if-not): New functions.
  28. (org-open-file): Use internal remove-if functions.
  29. 2010-04-10 Jan Böcker <jan.boecker@jboecker.de>
  30. * org.el (org-file-apps-entry-match-against-dlink-p): new function.
  31. (org-file-apps-ex): remove variable.
  32. (org-open-file): Integrate org-file-apps-ex functionality back
  33. into org-file-apps, and decide whether to match a regexp against
  34. the link or the filename using org-file-apps-entry-uses-grouping-p.
  35. 2010-04-09 Jan Böcker <jan.boecker@jboecker.de>
  36. * org.el (org-file-apps-ex): new variable.
  37. (org-open-file): Before considering org-file-apps, first match the
  38. regexps from org-file-apps-ex against the whole link. See
  39. docstring of org-file-apps-ex.
  40. 2010-04-12 Carsten Dominik <carsten.dominik@gmail.com>
  41. * org.el (org-export-latex-default-packages-alist): Remove
  42. microtype package.
  43. (org-todo-repeat-to-state): New variable.
  44. (org-auto-repeat-maybe): Allow user-selected target states.
  45. (org-default-properties): Add the new property REPEAT_TO_STATE.
  46. 2010-04-09 Carsten Dominik <carsten.dominik@gmail.com>
  47. * org-mobile.el (org-mobile-check-setup): Make sure that there is
  48. a binary to compute checksums.
  49. 2010-04-08 Carsten Dominik <carsten.dominik@gmail.com>
  50. * org.el (org-insert-link): Find the link buffer on visible
  51. frames.
  52. (org-export-latex-default-packages-alist): hyperref must be loaded
  53. late.
  54. 2010-04-07 Carsten Dominik <carsten.dominik@gmail.com>
  55. * org-latex.el (org-export-latex-preprocess): Do not yet protect
  56. defined entities - these will be taken care of later.
  57. (org-export-latex-special-chars): Post-process entity replacement.
  58. (org-export-latex-fontify-headline): Do not yet protect defined
  59. entities - these will be taken care of later.
  60. (org-export-latex-tables, org-export-latex-links): Format the
  61. caption properly.
  62. * org-entities.el (org-entities-user): Fix typo.
  63. * org.el (org-prepare-agenda-buffers): Uniquify TODO keywords
  64. * org-entities.el (org-entities-user): Improve docstring.
  65. 2010-04-06 Carsten Dominik <carsten.dominik@gmail.com>
  66. * org-entities.el (org-macs): Require org-macs, to be sure that we
  67. have `declare-function' defined.
  68. 2010-04-05 Carsten Dominik <carsten.dominik@gmail.com>
  69. * org-latex.el (org-export-latex-classes): Update docstring.
  70. * org.el (org-format-latex-header): Add cookies to the header.
  71. (org-splice-latex-header): Implement placement according to
  72. cookies.
  73. 2010-04-04 Carsten Dominik <carsten.dominik@gmail.com>
  74. * org-publish.el (org-publish-aux-preprocess): Control case
  75. sensitivity.
  76. 2010-04-04 Bastien Guerry <bzg@altern.org>
  77. * org.el (org-splice-latex-header): Fix typo.
  78. 2010-04-04 Carsten Dominik <carsten.dominik@gmail.com>
  79. * org-latex.el (org-export-latex-make-header): Use
  80. `org-splice-latex-header' to build the header.
  81. (org-export-latex-classes): Update docstring.
  82. * org.el (org-splice-latex-header): New function.
  83. (org-create-formula-image): Use `org-splice-latex-header' to build
  84. the header.
  85. * org-gnus.el (org-gnus-follow-link): Handle nndoc backend.
  86. 2010-04-03 Carsten Dominik <carsten.dominik@gmail.com>
  87. * org.el (org-export-latex-packages-alist)
  88. (org-export-latex-default-packages-alist): Fix docstring to
  89. reflect the expected structure.
  90. * org-docbook.el (org-docbook-do-expand): Fix bug with variable names.
  91. (org-export-docbook-finalize-table): Make use of label for tables.
  92. 2010-04-02 Carsten Dominik <carsten.dominik@gmail.com>
  93. * org-attach.el (org-attach-commit): Split on newlines.
  94. * org.el (org-export-latex-default-packages-alist): Use list
  95. instead of cons for the entries.
  96. 2010-04-01 Carsten Dominik <carsten.dominik@gmail.com>
  97. * org-entities.el (org-entity-get-representation): Catch the case
  98. that there is not entry in the list.
  99. * org-mobile.el (org-mobile-use-encryption)
  100. (org-mobile-encryption-tempfile, org-mobile-encryption-password):
  101. New options.
  102. (org-mobile-check-setup): CHeck the encryption setup.
  103. (org-mobile-copy-agenda-files, org-mobile-sumo-agenda-command)
  104. (org-mobile-create-sumo-agenda): Use encryption code.
  105. (org-mobile-encrypt-and-move): New function.
  106. (org-mobile-encrypt-file, org-mobile-decrypt-file): New
  107. functions.
  108. (org-mobile-move-capture): Decrypt the capture file.
  109. * org.el (org-entities): Require the new file.
  110. (org-export-latex-default-packages-alist): New variable.
  111. (org-complete): Use new entity code for completion.
  112. (org-create-formula-image): Use the new packages variable.
  113. * org-latex.el (org-export-latex-classes): Remove the standard
  114. packages from the class headers.
  115. (org-export-latex-make-header): Use the new package variable.
  116. (org-export-latex-special-chars): Better regexp for entities, to
  117. support entity name that contain numbers.
  118. (org-export-latex-treat-backslash-char): Use the new entity code.
  119. * org-html.el (org-html-do-expand): Use the new entity code.
  120. * org-exp.el (org-export): Add the new export commands.
  121. (org-html-entities): Constant removed.
  122. (org-export-visible): Add the new export commands.
  123. * org-entities.el: New file.
  124. * org-docbook.el (org-docbook-do-expand): Use new entity code.
  125. * org-ascii.el (org-export-ascii-entities): New variable.
  126. (org-export-as-latin1, org-export-as-latin1-to-buffer)
  127. (org-export-as-utf8, org-export-as-utf8-to-buffer): New commands.
  128. (org-export-as-encoding): New function.
  129. (org-export-ascii-preprocess): Call `org-ascii-replace-entities'.
  130. (org-ascii-replace-entities): New function.
  131. 2010-03-31 Carsten Dominik <carsten.dominik@gmail.com>
  132. * org-html.el (org-html-level-start): Catch the case that target
  133. might be nil.
  134. 2010-03-31 Dan Davison <davison@stats.ox.ac.uk>
  135. * org.el (org-appearance): Change Customize group variable name
  136. from org-font-lock to org-appearance, and change tag from "Org
  137. Font Lock" to "Org Appearance"
  138. (org-odd-levels-only): Change Customize group variable name
  139. (org-level-color-stars-only): Change Customize group variable name
  140. (org-hide-leading-stars): Change Customize group variable name
  141. (org-hidden-keywords): Change Customize group variable name
  142. (org-fontify-done-headline): Change Customize group variable name
  143. (org-fontify-emphasized-text): Change Customize group variable name
  144. (org-fontify-whole-heading-line): Change Customize group variable name
  145. (org-highlight-latex-fragments-and-specials): Change Customize
  146. group variable name
  147. (org-hide-emphasis-markers): Change Customize group variable name
  148. (org-emphasis-alist): Change Customize group variable name
  149. (org-emphasis-regexp-components): Change Customize group variable
  150. name
  151. (org-modules): Remove mention of org-R
  152. * org-faces.el (org-faces): Change Customize group variable name
  153. 2010-03-29 Carsten Dominik <carsten.dominik@gmail.com>
  154. * org-agenda.el (org-diary-last-run-time): New variable.
  155. (org-diary): prepare agenda buffers only if last call was some
  156. time ago.
  157. * org-html.el (org-export-html-preprocess): Replace \ref macros
  158. with a link.
  159. (org-format-org-table-html): Add the label as an anchor.
  160. * org-docbook.el (org-export-docbook-format-image): Do some
  161. formatting on captions.
  162. * org-latex.el (org-export-latex-tables, org-export-latex-links):
  163. Do some formatting on captions.
  164. * org-html.el (org-export-html-format-image)
  165. (org-format-org-table-html): Do some formatting on captions.
  166. 2010-03-28 Dan Davison <davison@stats.ox.ac.uk>
  167. * org.el (org-hidden-keywords): New customizable variable. This is
  168. a list of symbols specifying which of the special keywords #+DATE,
  169. #+AUTHOR, #+EMAIL and #+TITLE should be hidden by font lock.
  170. (org-fontify-meta-lines-and-blocks): Changes to font-lock code
  171. implementing new faces and hiding behaviour.
  172. * org-faces.el (org-document-title): New face for #+TITLE lines
  173. (org-document-info): New face for #+DATE, #+AUTHOR, #+EMAIL lines
  174. (org-document-info-keyword): New face for #+DATE, #+AUTHOR, #+EMAIL keywords
  175. 2010-03-28 Carsten Dominik <carsten.dominik@gmail.com>
  176. * org-publish.el (org-publish-sanitize-plist): New function to
  177. rename "index" properties to "sitemap". Do this renaming
  178. globally.
  179. (org-publish-with-aux-preprocess-maybe): New macro.
  180. (org-publish-org-to-pdf, org-publish-org-to-html): Use the new
  181. macro.
  182. (org-publish-aux-preprocess)
  183. (org-publish-index-generate-theindex.inc): New function.
  184. 2010-03-27 Carsten Dominik <carsten.dominik@gmail.com>
  185. * org-table.el (org-table-align): Interpret <N> at fixed width,
  186. not as maximum width.
  187. 2010-03-26 Carsten Dominik <carsten.dominik@gmail.com>
  188. * org-exp.el (org-export-author-info, org-export-email-info): Fix
  189. docstrings.
  190. * org-beamer.el (org-beamer-select-environment): Renamed from
  191. `org-beamer-set-environment-tag'. Improve docstring.
  192. * org-freemind.el (org-freemind-write-mm-buffer): Fix another
  193. problem with odd levels.
  194. * org-ascii.el (org-export-as-ascii): Export email only if the
  195. author wants it.
  196. * org-docbook.el (org-export-as-docbook): Export email only if the
  197. author wants it.
  198. * org-html.el (org-export-as-html): Export email only if the
  199. author wants it.
  200. * org-exp.el (org-export-email-info): New option.
  201. (org-export-plist-vars): Add entry for `org-export-email'.
  202. 2010-03-25 Carsten Dominik <carsten.dominik@gmail.com>
  203. * org-table.el (org-table-goto-line): Fix typo.
  204. 2010-03-25 Mikael Fornius <mfo@abc.se>
  205. * org.el (org-agenda-files): Typo.
  206. (org-read-agenda-file-list): Add optional argument to help
  207. `org-store-new-agenda-file-list' to remember un-expanded file
  208. names. Expand file names relative to `org-directory'.
  209. (org-store-new-agenda-file-list): Keep un-expanded file names when
  210. saving, if available.
  211. (org-agenda-files): Update documentation.
  212. 2010-03-25 Carsten Dominik <carsten.dominik@gmail.com>
  213. * org-ascii.el (org-export-as-ascii): Catch the case of exporting
  214. a buffer with no file name attached.
  215. * org.el (org-log-refile): New option.
  216. (org-log-note-headings): Add a heading for refiling.
  217. (org-startup-options): Add keywords for logging of the refile
  218. action.
  219. (org-refile): Add logging action.
  220. (org-add-log-note): Allow for refiling action.
  221. * org-agenda.el (org-agenda-bulk-action): Make sure
  222. `org-log-refile' is not `note' during a bulk action.
  223. 2010-03-24 Carsten Dominik <carsten.dominik@gmail.com>
  224. * org.el (org-map-dblocks): Use save-excursion to remember the
  225. position.
  226. * org-attach.el (org-attach-commit): Remove dependence on xargs.
  227. (org-attach-delete-one): Commit after deleting a file.
  228. * org-latex.el (org-export-latex-fontify): Do not mistake table.el
  229. borders for strike-through emphasis.
  230. * org-freemind.el (org-freemind-write-mm-buffer): Simplify the
  231. handling of odd levels.
  232. * org-agenda.el (org-agenda-todo-ignore-deadlines): Document `past'
  233. and `future' values.
  234. (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
  235. Handle `past' and `future' values.
  236. * org.el (org-read-agenda-file-list): Interpret file names
  237. relative to org-directory and allow environment variables and
  238. "~".
  239. * org-latex.el (org-export-latex-special-chars): Allow a
  240. parenthesis before an exponent or subscript.
  241. 2010-03-23 Dan Davison <davison@stats.ox.ac.uk>
  242. * org-src.el (org-edit-src-exit): When returning from code edit
  243. buffer, if code block is hidden, leave point at start of
  244. #+begin_src line
  245. 2010-03-23 Carsten Dominik <carsten.dominik@gmail.com>
  246. * org.el (org-insert-heading): Do not remove all spaces if the
  247. headline is empty.
  248. * org-indent.el (org-indent): Fix group name.
  249. 2010-03-21 Carsten Dominik <carsten.dominik@gmail.com>
  250. * org-table.el (org-table-goto-column): Fix forcing a non-existing
  251. column.
  252. (org-table-get, org-table-put, org-table-goto-line)
  253. (org-table-current-line): New functions.
  254. 2010-03-21 Carsten Dominik <carsten.dominik@gmail.com>
  255. * org-crypt.el (org-reveal-start-hook): Add a decryption function
  256. to this hook.
  257. (org-decrypt-entries, org-encrypt-entries, org-decrypt-entry): Add
  258. docstrings.
  259. * org.el (org-point-at-end-of-empty-headline)
  260. (org-level-increment, org-get-previous-line-level): New function.
  261. (org-cycle-level): Rewritten to be independent of when this
  262. function is called.
  263. (org-in-regexps-block-p): New function.
  264. (org-reveal-start-hook): New hook.
  265. (org-reveal): Run new hook.
  266. 2010-03-19 Carsten Dominik <carsten.dominik@gmail.com>
  267. * org-latex.el (org-export-latex-keywords): Start a new paragraph
  268. after time keywords, do not add "\newline".
  269. * org-html.el (org-export-as-html): Avoid double # in href.
  270. * org.el (org-refile-get-location): Catch an invalid target
  271. specification.
  272. 2010-03-18 Carsten Dominik <carsten.dominik@gmail.com>
  273. * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
  274. Make sure the behavior regarding to extracting time is
  275. consistent.
  276. 2010-03-17 Stephen Eglen <stephen@gnu.org>
  277. * org-agenda.el (org-agenda-insert-diary-extract-time): New
  278. variable.
  279. (org-agenda-add-entry-to-org-agenda-diary-file): Use this new
  280. variable rather than `org-agenda-search-headline-for-time'.
  281. 2010-03-17 Carsten Dominik <carsten.dominik@gmail.com>
  282. * org-list.el (org-fix-bullet-type): Improve cursor positioning.
  283. 2010-03-15 Carsten Dominik <carsten.dominik@gmail.com>
  284. * org.el (org-adaptive-fill-regexp-backup): New variable.
  285. (org-set-autofill-regexps): Store a backup of
  286. `adaptive-fill-regexp'.
  287. (org-adaptive-fill-function): Fix filling of comments and ordered
  288. lists. If there is no other match, till try adaptive fill.
  289. 2010-03-15 John Wiegley <jwiegley@gmail.com>
  290. * org-agenda.el (org-agenda-include-deadlines): Added new
  291. customization variable to determine whether unscheduled tasks
  292. should appear in the agenda solely because of their deadline.
  293. Default to true, which was the previous behavior (it just wasn't
  294. configurable).
  295. (org-agenda-mode-map, org-agenda-view-mode-dispatch): Bind ! in
  296. the agenda to show/hide deadline tasks.
  297. (org-agenda-menu): Added menu option for show/hide deadlines.
  298. (org-agenda-list): Make the agenda list sensitive to the value of
  299. `org-agenda-include-deadlines'.
  300. (org-agenda-toggle-deadlines): New function to toggle the value of
  301. `org-agenda-include-deadlines' and repaint the modeline
  302. indicators.
  303. (org-agenda-set-mode-name): Show "Deadlines" in the agenda
  304. modeline if deadline tasks are being displayed.
  305. 2010-03-14 Carsten Dominik <carsten.dominik@gmail.com>
  306. * org-table.el (org-table-eval-formula): Replace $# and @# by
  307. current column and row number.
  308. 2010-03-12 Carsten Dominik <carsten.dominik@gmail.com>
  309. * org.el (org-set-property, org-delete-property): Go back to
  310. prompting for the property.
  311. * org-latex.el (org-export-latex-make-header): Fully process
  312. author line.
  313. (org-export-latex-fontify-headline): Allow several arguments, not
  314. just one.
  315. (org-export-latex-fix-inputenc): Catch the error when
  316. `latexenc-coding-system-to-inputenc' is not defined.
  317. * org-agenda.el (org-agenda-skip-if-todo): New function.
  318. (org-agenda-skip-if): Add conditions for TODO keywords.
  319. (org-agenda-skip-if): Document the new todo conditions.
  320. 2010-03-11 Mikael Fornius <mfo@abc.se>
  321. * org.el (org-at-property-p): Check if we are inside a property
  322. drawer not just any drawer.
  323. (org-set-property, org-delete-property): When cursor is on a
  324. property key value pair do not prompt for property name instead
  325. use name at cursor.
  326. (org-ctrl-c-ctrl-c): Still do org-property-action when cursor is
  327. on the first line of a property drawer.
  328. (org-property-end-re): Spell check.
  329. 2010-03-11 Carsten Dominik <carsten.dominik@gmail.com>
  330. * org-exp.el (org-export-attach-captions-and-attributes): Add the
  331. properties to the entire table, in case the first line is
  332. removed.
  333. * org-archive.el (org-archive-reversed-order): New option.
  334. (org-archive-subtree, org-archive-to-archive-sibling): Use the new
  335. option `org-archive-reversed-order'.
  336. 2010-03-10 Carsten Dominik <carsten.dominik@gmail.com>
  337. * org-agenda.el (org-agenda-entry-types): New variable.
  338. (org-agenda-list): Use `org-agenda-entry-types'.
  339. (org-agenda-custom-commands-local-options): Support for setting
  340. `org-agenda-entry-types' as an option.
  341. (org-diary): Shift some documentation from here to the variable
  342. `org-agenda-entry-types'.
  343. 2010-03-09 Carsten Dominik <carsten.dominik@gmail.com>
  344. * org-latex.el (org-export-latex-make-header): Apply macros in
  345. author field.
  346. * org-clock.el (org-clocking-buffer, org-clocking-p): New function.
  347. (org-clock-select-task, org-clock-notify-once-if-expired)
  348. (org-clock-in, org-clock-out, org-clock-cancel, org-clock-goto)
  349. (org-clock-out-if-current, org-clock-save): Use the new functions.
  350. 2010-03-08 Carsten Dominik <carsten.dominik@gmail.com>
  351. * org-docbook.el (org-export-as-docbook): Remove unnecessary
  352. newline.
  353. (org-export-as-docbook): Remove unnecessary newline.
  354. (org-export-as-docbook): Fix problem with double footnote
  355. reference in one place.
  356. * org-exp.el (org-export-format-source-code-or-example): Remove
  357. unnecessary newline.
  358. * org.el (org-deadline, org-schedule): Allow rescheduling entries
  359. with repeaters.
  360. * org-table.el (org-table-convert-refs-to-rc): Better way to catch
  361. function calls that look like references.
  362. * org.el (org-open-at-point): Get link abbreviations from
  363. reference buffer.
  364. 2010-03-07 Carsten Dominik <carsten.dominik@gmail.com>
  365. * org-table.el (org-table-convert-refs-to-rc): Do not read arctan2
  366. as a reference.
  367. 2010-03-05 Carsten Dominik <carsten.dominik@gmail.com>
  368. * org.el (org-link-unescape): Solve issue with lower-case escapes.
  369. 2010-03-04 Carsten Dominik <carsten.dominik@gmail.com>
  370. * org-latex.el (org-export-latex-classes): Add
  371. \usepackage{latexsym} to all classes.
  372. 2010-03-03 Carsten Dominik <carsten.dominik@gmail.com>
  373. * org-html.el (org-export-as-html): Do not allow protected lines
  374. into the table of contents.
  375. * org-latex.el (org-export-latex-special-chars): Find subsequent
  376. occurrences of special characters.
  377. (org-export-latex-tables): Do not convert table-like stuff that is
  378. protected.
  379. 2010-03-01 Carsten Dominik <carsten.dominik@gmail.com>
  380. * org-list.el (org-toggle-checkbox): No errors when updating
  381. checkbox count fails because there is no heading.
  382. 2010-02-27 Carsten Dominik <carsten.dominik@gmail.com>
  383. * org-clock.el (org-clock-report-include-clocking-task): New
  384. option.
  385. (org-clock-sum): Add the current clocking task.
  386. 2010-02-26 Carsten Dominik <carsten.dominik@gmail.com>
  387. * org.el (org-cycle): Print a message when in a table.el table.
  388. (org-edit-special): Recognize the table.el context.
  389. (org-ctrl-c-ctrl-c): Print a message when in a table.el table.
  390. * org-src.el (org-at-table.el-p): Declare.
  391. (org-edit-src-code): Handle a special case for table.el editing.
  392. (org-edit-src-find-region-and-lang): Recognize the table.el
  393. context.
  394. * org-latex.el (org-export-latex-tables): Convert table.el
  395. tables.
  396. (org-export-latex-convert-table.el-table): New function.
  397. * org-html.el (org-html-expand): Fix table.el export.
  398. * org-latex.el (org-export-latex-preprocess): Protect footnotes in
  399. headings.
  400. * org-id.el (org-id-find-id-file): Fix bug when there is no hash
  401. table for the id locations.
  402. * org.el (org-read-date-analyze): Match American-style dates, like
  403. 5/30 or 5/13/7. Make sure cal-iso.el is loaded. Don't force he
  404. current year when reading ISO and American dates.
  405. 2010-02-25 Carsten Dominik <carsten.dominik@gmail.com>
  406. * org.el (org-face-from-face-or-color): New function.
  407. (org-get-todo-face, org-font-lock-add-priority-faces)
  408. (org-get-tag-face): Use `org-face-from-face-or-color'.
  409. * org-faces.el (org-todo-keyword-faces, org-priority-faces): Allow
  410. simple colors as values.
  411. (org-faces-easy-properties): New option.
  412. * org-agenda.el (org-agenda-set-mode-name): Show if the agenda is
  413. restricted, as an agenda mode.
  414. (org-agenda-fontify-priorities): Allow simple colors as values.
  415. 2010-02-25 Bastien Guerry <bzg@altern.org>
  416. * org-timer.el (org-timer-current-timer): Renamed from
  417. `org-timer-last-timer'.
  418. (org-timer-timer1, org-timer-timer2, org-timer-timer3): Removed.
  419. (org-timer-cancel-timer, org-timer-show-remaining-time)
  420. (org-timer-set-timer): Update to use only one timer.
  421. * org.el (org-set-property): Remove useless space in the prompt.
  422. 2010-02-25 Carsten Dominik <carsten.dominik@gmail.com>
  423. * org-html.el (org-export-html-style-default): Add a default style
  424. for textareas.
  425. * org-exp.el (org-export-format-source-code-or-example): Fix
  426. textarea tag.
  427. 2010-02-24 Bastien Guerry <bzg@altern.org>
  428. * org-clock.el (org-clock-current-task): New variable to store
  429. last clocked in task.
  430. (org-clock-set-current, org-clock-delete-current): New functions.
  431. 2010-02-24 Carsten Dominik <carsten.dominik@gmail.com>
  432. * org-remember.el (org-remember-apply-template): Extend comment.
  433. (org-remember-handler): Implement clock sibling filing.
  434. 2010-02-23 Carsten Dominik <carsten.dominik@gmail.com>
  435. * org-publish.el (org-publish-all, org-publish-current-file)
  436. (org-publish-current-project): When called with prefix argument
  437. FORCE, also rebuild the validation file list.
  438. * org-latex.el (org-export-latex-preprocess): Protect footnotes in
  439. section headings.
  440. 2010-02-21 Carsten Dominik <carsten.dominik@gmail.com>
  441. * org-html.el (org-export-as-html-and-open): Kill product buffer
  442. if the user wants that.
  443. * org-latex.el (org-export-as-pdf-and-open): Kill product buffer
  444. if the user wants that.
  445. * org-exp.el (org-export-kill-product-buffer-when-displayed): New
  446. option.
  447. * org-agenda.el (org-batch-agenda-csv): Use the time property
  448. instead of the `time-of-day' property.
  449. 2010-02-20 Carsten Dominik <carsten.dominik@gmail.com>
  450. * org-timer.el (org-timer-start-hook, org-timer-stop-hook)
  451. (org-timer-pause-hook, org-timer-set-hook)
  452. (org-timer-cancel-hook): New hooks.
  453. (org-timer-start): Run `org-timer-start-hook'.
  454. (org-timer-pause-or-continue): Run `org-timer-pause-hook'.
  455. (org-timer-stop): Run `org-timer-stop-hook'.
  456. (org-timer-cancel-timers): Run `org-timer-cancel-hook'.
  457. 2010-02-19 Carsten Dominik <carsten.dominik@gmail.com>
  458. * org.el (org-reveal): Double prefix arg shows the subtree of the
  459. parent.
  460. 2010-02-17 Carsten Dominik <carsten.dominik@gmail.com>
  461. * org-agenda.el (org-search-view): Fix bug with searching full
  462. words in headlines in search view.
  463. (org-agenda-skip-deadline-prewarning-if-scheduled): New option.
  464. (org-agenda-get-deadlines): Suppress pre-warning if the entry is
  465. scheduled (if the user configures it so.
  466. 2010-02-16 Carsten Dominik <carsten.dominik@gmail.com>
  467. * org.el (org-hide-archived-subtrees): Don't jump to end of
  468. subtree if the match was not in a headline.
  469. (org-inside-latex-macro-p): Allow more complex arguments.
  470. (org-emphasize): Protect against use at end of buffer.
  471. 2010-02-15 Carsten Dominik <carsten.dominik@gmail.com>
  472. * org-agenda.el (org-agenda-align-tags): Avoid side effects on
  473. text properties.
  474. 2010-02-14 Carsten Dominik <carsten.dominik@gmail.com>
  475. * org-agenda.el (org-agenda-todo-ignore-scheduled): More allowed
  476. values.
  477. (org-agenda-todo-ignore-scheduled)
  478. (org-agenda-todo-ignore-deadlines): More control with different
  479. allowed values.
  480. (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
  481. Honor the new option settings.
  482. 2010-02-12 Carsten Dominik <carsten.dominik@gmail.com>
  483. * org.el (org-get-location): Make sure the selection buffer is
  484. shown in the current frame.
  485. * org-ascii.el (org-export-ascii-table-widen-columns): New
  486. option.
  487. (org-export-ascii-preprocess): Realign tables to remove narrowing
  488. if `org-export-ascii-table-widen-columns' is set.
  489. * org-table.el (org-table-do-narrow): New variable.
  490. (org-table-align): Narrow only if `org-table-do-narrow' is t.
  491. * org.el (org-deadline, org-schedule): Allow updating if the
  492. relevant time stamp does not have a repeater, i.e. do not require
  493. that no time stamp has a repeater.
  494. * org-agenda.el (org-agenda-align-tags): Don't add a face to the
  495. new white space before the tags.
  496. * org-latex.el (org-export-as-latex): Do nit require the buffer to
  497. be visiting a file when only exporting to a buffer or string.
  498. (org-export-latex-fix-inputenc): Only save the buffer is there is
  499. a file name attached to it.
  500. 2010-02-09 Dan Davison <davison@stats.ox.ac.uk>
  501. * org-src.el (org-edit-src-exit): Widen before exiting edit buffers
  502. 2010-02-08 Carsten Dominik <carsten.dominik@gmail.com>
  503. * org.el (org-fontify-meta-lines-and-blocks): Honor
  504. `org-fontify-quote-and-verse-blocks'.
  505. * org-faces.el (org-fontify-quote-and-verse-blocks): New option.
  506. 2010-02-03 Carsten Dominik <carsten.dominik@gmail.com>
  507. * org.el (org-open-at-point): Also check for text property
  508. org-linked-text before offering collected links.
  509. 2010-02-03 Stephen Eglen <stephen@gnu.org>
  510. * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
  511. Optionally extract time specification from text and add to the
  512. timestamp.
  513. 2010-02-03 Carsten Dominik <carsten.dominik@gmail.com>
  514. * org-exp.el (org-html-entities): Fix typo.
  515. * org-latex.el (org-export-latex-make-header): Use \providecommand
  516. to make sure the \alert macro is defined.
  517. * org.el (org-format-latex-signal-error)
  518. (org-create-formula-image): Use `org-format-latex-signal-error'.
  519. 2010-02-02 Stephen Eglen <stephen@gnu.org>
  520. * org.el (org-store-link): For dired buffers, use
  521. default-directory as link name if dired-get-filename returns
  522. nil.
  523. 2010-02-02 Carsten Dominik <carsten.dominik@gmail.com>
  524. * org-exp.el (org-export-concatenate-multiline-links): The for
  525. protectedness at beginning of match.
  526. * org-latex.el (org-export-latex-fix-inputenc): Never leave the
  527. AUTO as a coding system, instead default to utf8.
  528. 2010-02-01 Carsten Dominik <carsten.dominik@gmail.com>
  529. * org.el (org-block-todo-from-children-or-siblings-or-parent)
  530. (org-block-todo-from-checkboxes): Respect the local variable
  531. value when deciding if blocking should be active.
  532. * org-latex.el (org-export-latex-make-header): Define the align
  533. macro if it is not yet defined.
  534. * org-agenda.el (org-agenda-insert-diary-make-new-entry): Call
  535. `org-insert-heading' with the INVISIBLE-OK argument.
  536. * org-mac-message.el (org-mac-message-insert-flagged): Call
  537. `org-insert-heading' with the INVISIBLE-OK argument.
  538. * org.el (org-insert-heading): New argument INVISIBLE-OK.
  539. * org-agenda.el (org-agenda-view-mode-dispatch): Improve the
  540. prompt message.
  541. * org-html.el (org-html-level-start): Use the
  542. `html-container-class' text property to set an additional class
  543. for an outline container.
  544. * org-exp.el (org-export-remember-html-container-classes): New
  545. function.
  546. (org-export-preprocess-string): Call
  547. `org-export-remember-html-container-classes'.
  548. * org.el (org-cycle): Mention level cycling in the docstring.
  549. (org-default-properties): Add new property HTML_CONTAINER_CLASS.
  550. * org-remember.el (org-remember-apply-template): Do file insertion
  551. first.
  552. 2010-01-31 Carsten Dominik <carsten.dominik@gmail.com>
  553. * org-habit.el (org-habit-insert-consistency-graphs): Fix a
  554. problem with mis-aligned graphs when showing habits.
  555. 2010-01-28 Mikael Fornius <mfo@abc.se>
  556. * org.el (org-assign-fast-keys): Prefer keys used in keyword name
  557. when assigning. Begin using numerical characters when all in name
  558. is used up. This is to spare alphanumeric characters for better
  559. match with other keywords.
  560. 2010-01-28 Carsten Dominik <carsten.dominik@gmail.com>
  561. * org-exp.el (org-export-preprocess-hook): Improve documentation.
  562. * org-latex.el (org-export-latex-preprocess): More consistent
  563. conversion and protection of the words LaTeX and TeX.
  564. (org-export-latex-fontify-headline, org-export-latex-preprocess):
  565. Allow angle brackets in commands, for beamer.
  566. 2010-01-26 Carsten Dominik <carsten.dominik@gmail.com>
  567. * org-clock.el (org-clock-in): Improve the look of the clock line
  568. by formatting links.
  569. 2010-01-24 Carsten Dominik <carsten.dominik@gmail.com>
  570. * org-latex.el (org-export-latex-classes): Use AUTO as the place
  571. holder string for the coding system. And improve the
  572. documentation.
  573. (org-export-latex-fix-inputenc): Only modify the coding system if
  574. it is given by the placeholder AUTO.
  575. 2010-01-23 Carsten Dominik <carsten.dominik@gmail.com>
  576. * org-clock.el (org-task-overrun-text): New option.
  577. (org-task-overrun, org-clock-update-period): New variables.
  578. (org-clock-get-clock-string, org-clock-update-mode-line): Mark
  579. overrun clock.
  580. (org-clock-notify-once-if-expired): Check if clock is overrun.
  581. * org-faces.el: New face `org-mode-line-clock-overrun'.
  582. 2010-01-18 Jan Böcker <jan.boecker@jboecker.de>
  583. * org.el (org-narrow-to-subtree): Position the end of the narrowed
  584. region before the line with the next heading, to prevent the user
  585. from prepending text to the next headline.
  586. 2010-01-20 Stephen Eglen <stephen@gnu.org>
  587. * org-agenda.el (org-get-time-of-day): Use
  588. org-agenda-time-leading-zero to allow leading zero (rather than
  589. space) for times.
  590. 2010-01-20 Carsten Dominik <carsten.dominik@gmail.com>
  591. * org-agenda.el (org-agenda-diary-entry-in-org-file): Make sure
  592. org-datetree.el is loaded.
  593. * org-datetree.el: autoload `org-datetree-find-day-create'
  594. * org-latex.el (org-export-latex-hyperref-format): New option.
  595. (org-export-latex-links): Use `org-export-latex-hyperref-format'.
  596. 2010-01-18 Carsten Dominik <carsten.dominik@gmail.com>
  597. * org-ctags.el (org-ctags-enable): Change order of functions.
  598. (org-ctags-create-tags): Add wildcard to file name expansion.
  599. 2010-01-17 Carsten Dominik <carsten.dominik@gmail.com>
  600. * org.el (org-entry-properties): Fix some important bugs.
  601. 2010-01-16 Carsten Dominik <carsten.dominik@gmail.com>
  602. * org.el (org-link-unescape, org-link-escape): Only use hexlify if
  603. the table is not explicitly given.
  604. 2010-01-15 Carsten Dominik <carsten.dominik@gmail.com>
  605. * org-clock.el (org-clock-out-when-done): Allow a list of keywords
  606. as value.
  607. (org-clock-out-if-current): Work with the new list value of
  608. `org-clock-out-when-done'.
  609. (org-clock-out, org-clock-out-if-current): Avoid circular logic
  610. between clocking out and state changes.
  611. * org-ctags.el (org-ctags-path-to-ctags): Better system-type test.
  612. * org-latex.el (org-export-latex-treat-backslash-char): Do not by
  613. accident protect a character that is before a backslash.
  614. 2010-01-14 Carsten Dominik <carsten.dominik@gmail.com>
  615. * org-agenda.el (org-diary-class): Use
  616. `org-order-calendar-date-args'.
  617. * org.el (org-order-calendar-date-args): New function.
  618. * org-exp.el (org-export-target-internal-links): Check for
  619. protectedness after the first bracket.
  620. * org.el (org-entry-properties): Don't match wrong-case TODO
  621. keywords.
  622. * org-agenda.el (org-agenda-schedule, org-agenda-deadline):
  623. Document that ARG is passed through to remove the date.
  624. (org-agenda-bulk-action): Accept prefix arg and pass it on. Do
  625. not read a date when the user has given a `C-u' prefix.
  626. 2010-01-11 Carsten Dominik <carsten.dominik@gmail.com>
  627. * org-agenda.el (org-agenda-fix-displayed-tags): Fix bug when all
  628. tags are hidden.
  629. 2010-01-10 Carsten Dominik <carsten.dominik@gmail.com>
  630. * org-latex.el (org-export-latex-fix-inputenc): New function.
  631. (org-export-latex-inputenc-alist): New option.
  632. * org-exp.el (org-export): New key SPC to publish enclosing
  633. subtree.
  634. 2010-01-09 Carsten Dominik <carsten.dominik@gmail.com>
  635. * org-indent.el (org-indent-add-properties): Catch case when there
  636. is no headline in the buffer.
  637. 2010-01-08 Carsten Dominik <carsten.dominik@gmail.com>
  638. * org-exp.el (org-html-entities): Add checkmark symbol.
  639. * org-ascii.el (org-export-ascii-preprocess): Protect targets in
  640. verbatim code for ASCII export.
  641. * org.el (org-update-statistics-cookies): Also see checkboxes in
  642. ordered lists.
  643. 2010-01-07 Carsten Dominik <carsten.dominik@gmail.com>
  644. * org-agenda.el (org-agenda-view-mode-dispatch): Define the `L'
  645. key.
  646. * org-beamer.el (org-beamer-amend-header): Change the location
  647. where `org-beamer-header-extra' is inserted.
  648. * org.el (org-compute-latex-and-specials-regexp): Don't do BIND
  649. just for computing this regexp.
  650. 2010-01-06 Carsten Dominik <carsten.dominik@gmail.com>
  651. * org-beamer.el (org-beamer-frame-default-options): New option.
  652. (org-beamer-sectioning): Use default options if the user does not
  653. have defined any.
  654. (org-beamer-fix-toc): Put a frame around the table of contents.
  655. * org-exp.el (org-export-remove-comment-blocks-and-subtrees): Make
  656. sure case-folding works well when processing comment stuff.
  657. * org-latex.el (org-export-latex-after-save-hook): New hook.
  658. (org-export-as-latex): Run the new hook.
  659. 2010-01-05 Carsten Dominik <carsten.dominik@gmail.com>
  660. * org-beamer.el (org-beamer-environments-default): Add the note
  661. environments.
  662. (org-beamer-after-initial-vars): Allow several BEAMER_HEADER_EXTRA
  663. lines and collect and combine the content.
  664. (org-beamer-after-initial-vars): Check for note tags and make sure
  665. they will be seen like a property.
  666. * org.el (org-offer-links-in-entry): Fix bug when there is a
  667. single link.
  668. * org-exp.el (org-export): Make sure the mark is activated, also
  669. when `transient-mark-mode' is off.
  670. * org-agenda.el (org-agenda-search-view-always-boolean): New option.
  671. (org-agenda-search-view-search-words-only): Obsolete variable, is
  672. now an alias for `org-agenda-search-view-always-boolean'.
  673. (org-agenda-search-view-force-full-words): New option.
  674. (org-search-view): Improve docstring, and implement a better logic
  675. for Boolean and phrase searches.
  676. (org-agenda-last-search-view-search-was-boolean): New variable.
  677. (org-agenda-manipulate-query): Consider the type of the last
  678. search when modifying the search string.
  679. 2010-01-04 Carsten Dominik <carsten.dominik@gmail.com>
  680. * org-latex.el (org-export-as-latex): Do the first letbind in the
  681. right moment.
  682. * org-agenda.el (org-get-entries-from-diary): Add the new face to
  683. these entries.
  684. * org-faces.el (org-agenda-diary): New face.
  685. * org.el (org-make-link-regexps): Allow regexp-special characters
  686. in link types.
  687. (org-open-file): When in-emacs is `system', also force system
  688. opening, like when the value was `(16)'.
  689. (org-update-statistics-cookies): Handle entries without children.
  690. * org-exp.el
  691. (org-export-preprocess-before-normalizing-links-hook): New hook.
  692. (org-export-preprocess-string): Run the new hook.
  693. * org.el (org-offer-links-in-entry): Make RET open all links.
  694. * org-html.el (org-export-as-html): Remove any leftover display
  695. properties in the html file.
  696. * org-wl.el (org-wl-store-link): Work-around for format bug with
  697. text properties.
  698. * org-habit.el (org-habit-insert-consistency-graphs): Turn off
  699. invisibility while adding the graphs.
  700. 2010-01-03 Carsten Dominik <carsten.dominik@gmail.com>
  701. * org-remember.el (org-select-remember-template): Use C letter to
  702. customize remember templates.
  703. * org-agenda.el (org-agenda-bulk-mark, org-agenda-bulk-unmark):
  704. Move cursor to next visible line.
  705. 2010-01-02 Carsten Dominik <carsten.dominik@gmail.com>
  706. * org-beamer.el (org-beamer-sectioning): Leave columns environment
  707. by specifying 0 or 1 for column width.
  708. (org-beamer-column-widths): Make 0 stand for 0.0.
  709. 2010-01-01 Carsten Dominik <carsten.dominik@gmail.com>
  710. * org-exp.el (org-export-mark-radio-links): Don't match inside
  711. <<target>>.
  712. * org.el (org-format-latex-header-extra): New variable.
  713. (org-format-latex): Set org-format-latex-header-extra from
  714. in-buffer stuff.
  715. (org-format-latex): Add org-format-latex-header-extra to the
  716. variables on which image creation depends.
  717. (org-create-formula-image): Add the header stuff from in-buffer
  718. settings.
  719. (org-read-date-analyze): Base the analysis for future preference
  720. on NOW, not on the default date.
  721. * org-inlinetask.el (org-inlinetask-export-handler): Add CSS class
  722. for TODO keyword in inline tasks.
  723. * org.el (org-log-note-headings): New headings for removing
  724. deadline or scheduling date.
  725. (org-deadline, org-schedule): Arrange for logging when removing a
  726. date.
  727. (org-add-log-note): Handle deadline and scheduling removal.
  728. 2009-12-31 Carsten Dominik <carsten.dominik@gmail.com>
  729. * org-exp.el (org-export-visible): Add LaTeX/pdf export.
  730. 2009-12-28 Carsten Dominik <carsten.dominik@gmail.com>
  731. * org-agenda.el (org-diary-class): New function.
  732. 2009-12-24 Carsten Dominik <carsten.dominik@gmail.com>
  733. * org-latex.el (org-export-latex-preprocess): Do process the text
  734. of a radio target.
  735. 2009-12-20 Carsten Dominik <carsten.dominik@gmail.com>
  736. * org.el (org-entry-properties): Add TIMESTAMP properties back
  737. in.
  738. 2009-12-18 Carsten Dominik <carsten.dominik@gmail.com>
  739. * org.el (org-all-time-keywords): New variable.
  740. (org-set-regexps-and-options): Set `org-all-time-keywords'.
  741. (org-entry-blocked-p): New function.
  742. (org-special-properties): Add BLOCKED as a new special property.
  743. (org-entry-properties): New optional argument SPECIFIC, only parse
  744. for this property when it is specified.
  745. (org-entry-get): Pass a SPECIFIC argument to
  746. `org-entry-properties'.
  747. * org-latex.el (org-export-as-latex): Preprocess TEXT as well.
  748. 2009-12-17 Carsten Dominik <carsten.dominik@gmail.com>
  749. * org-latex.el (org-export-latex-tables): No forced line end if
  750. there is no caption.
  751. 2009-12-16 Carsten Dominik <carsten.dominik@gmail.com>
  752. * org-exp.el (org-html-entities): Add Euro symbols from Marvosym
  753. package.
  754. * org-latex.el (org-export-latex-tables): Only add a caption when
  755. macro in in longtable environments if one has been defined.
  756. * org-html.el (org-export-as-html): Only take title from buffer if
  757. not exporting body-only.
  758. * org-latex.el (org-export-latex-preprocess): Better version of
  759. the regular expression for protecting LaTeX macros.
  760. (org-export-latex-preprocess): Start searching for macros to
  761. protect from beginning of buffer.
  762. * org-exp.el (org-export-target-internal-links): Check for
  763. protectedness earlier in the string.
  764. * org-agenda.el (org-agenda-highlight-todo): Match TODO keywords
  765. case sensitively.
  766. * org-id.el (org-id-store-link): Match TODO keywords case
  767. sensitively.
  768. * org.el (org-heading-components, org-get-outline-path)
  769. (org-display-outline-path): Match TODO keywords case sensitively.
  770. * org-latex.el (org-export-as-latex): Ignore read-only
  771. properties.
  772. * org-exp.el (org-export-preprocess-string): Remove any
  773. `read-only' properties.
  774. * org-agenda.el (org-agenda-inactive-leader): New option.
  775. (org-agenda-get-timestamps): Use `org-agenda-inactive-leader'.
  776. (org-tags-view): Prompt for matcher if MATCH is an empty string.
  777. (org-todo-list): Prompt for matcher if ARG is an empty string.
  778. 2009-12-15 Carsten Dominik <carsten.dominik@gmail.com>
  779. * org.el (org-open-link-functions): New hook.
  780. (org-open-at-point): Run `org-open-link-functions'.
  781. 2009-12-14 Carsten Dominik <carsten.dominik@gmail.com>
  782. * org-agenda.el (org-agenda-date-prompt): Allow inactive time
  783. stamps as well.
  784. * org.el (org-inhibit-startup-visibility-stuff): New variable.
  785. (org-mode): Don't do startup visibility if inhibited.
  786. (org-outline-overlay-data, org-set-outline-overlay-data): New
  787. functions.
  788. (org-save-outline-visibility): New macro.
  789. (org-log-note-headings): Document that one should not change the
  790. `state' note format.
  791. 2009-12-13 Carsten Dominik <carsten.dominik@gmail.com>
  792. * org.el (org-make-link-regexps): Capture link path into a group.
  793. 2009-12-12 Carsten Dominik <carsten.dominik@gmail.com>
  794. * org-beamer.el (org-beamer-after-initial-vars): Do not overwrite
  795. the options plist.
  796. 2009-12-11 Carsten Dominik <carsten.dominik@gmail.com>
  797. * org.el (org-startup-with-beamer-mode): New option.
  798. (org-property-changed-functions)
  799. (org-property-allowed-value-functions): New hooks.
  800. (org-entry-put, org-property-get-allowed-values): Run the new
  801. hooks.
  802. (org-property-next-allowed-value): Run the new hooks.
  803. * org-exp.el (org-export-select-backend-specific-text): Add the
  804. special beamer tags.
  805. * org-beamer.el
  806. (org-export-preprocess-before-selecting-backend-code-hook): New
  807. file.
  808. * org-latex.el (org-export-latex-after-initial-vars-hook): New hook.
  809. (org-export-as-latex): Run
  810. `org-export-latex-after-initial-vars-hook'.
  811. (org-export-latex-format-toc-function)
  812. (org-export-latex-make-header): Call
  813. `org-export-latex-format-toc-function'.
  814. * org.el (org-fill-template): Make template searches case sensitive.
  815. * org-exp.el (org-export): Use "1" as a sign to export only the
  816. subtree.
  817. * org-colview-xemacs.el (org-columns-edit-value): Use
  818. org-unrestricted property.
  819. * org-colview.el (org-columns-edit-value): Use
  820. org-unrestricted property.
  821. * org.el (org-compute-property-at-point): Set org-unrestricted
  822. text property if the list contains ":ETC".
  823. (org-insert-property-drawer): Use
  824. org-unrestricted property.
  825. * org-exp.el
  826. (org-export-preprocess-before-selecting-backend-code-hook): New hook.
  827. (org-export-preprocess-string): Run
  828. `org-export-preprocess-before-selecting-backend-code-hook'.
  829. * org-xoxo.el (org-export-as-xoxo): Run `org-export-first-hook'.
  830. * org-latex.el (org-export-region-as-latex): Run
  831. `org-export-first-hook'.
  832. * org-html.el (org-export-as-html): Run `org-export-first-hook'.
  833. * org-docbook.el (org-export-as-docbook): Run
  834. `org-export-first-hook'.
  835. * org-ascii.el (org-export-as-ascii): Run `org-export-first-hook'.
  836. * org-exp.el (org-export-first-hook): New hook.
  837. 2009-12-10 Carsten Dominik <carsten.dominik@gmail.com>
  838. * org-list.el (org-previous-item): Exit at the beginning of the
  839. buffer.
  840. * org-id.el (org-id-locations-save): Only write the id locations
  841. if any are defined.
  842. * org-archive.el (org-archive-all-done): Make this work in a file
  843. with org-odd-levels-only set.
  844. * org.el (org-get-refile-targets): Catch the case when a buffer
  845. has no file.
  846. * org-latex.el (org-export-as-latex): Cleanup forced line ends
  847. where they are not needed.
  848. (org-export-latex-subcontent): Remove unnecessary newlines.
  849. 2009-12-09 Carsten Dominik <carsten.dominik@gmail.com>
  850. * org-latex.el (org-export-latex-make-header): Remove \obeylines.
  851. (org-export-latex-fontify): Fix regexp bug that takes special
  852. care of protecting the right boundary characters in emphasis
  853. matches.
  854. (org-export-latex-preprocess): Allow multiple arguments to latex
  855. macros.
  856. * org.el (org-make-link-regexps): Use John Gruber's regexp for
  857. urls.
  858. * org-macs.el (org-re): Interpret :punct: in regexps.
  859. * org-exp.el (org-export-replace-src-segments-and-examples): Also
  860. take the final newline after the END line.
  861. * org.el (org-clean-visibility-after-subtree-move): Only fix
  862. entries that are not entirely invisible already.
  863. (org-insert-link): Respect org-link-file-path-type for
  864. "docview:" links in addition to "file:" links.
  865. 2009-12-03 Carsten Dominik <carsten.dominik@gmail.com>
  866. * org-exp.el (org-export-format-source-code-or-example): Avoid
  867. additional extra white lines in LaTeX.
  868. * org-list.el (org-list-parse-list): Leave empty lines after the
  869. list, don't consider them as part of the list.
  870. * org-mobile.el (org-mobile-sumo-agenda-command): Allow tagstodo
  871. searches.
  872. * org-clock.el (org-clock-select-task): Convert integer to
  873. character for XEmacs.
  874. 2009-12-02 Carsten Dominik <carsten.dominik@gmail.com>
  875. * org-clock.el (org-clock-resolve): Make reading a char XEmacs
  876. compatible.
  877. 2009-11-30 Tassilo Horn <tassilo@member.fsf.org>
  878. * org.el (org-complete-tags-always-offer-all-agenda-tags): New
  879. variable.
  880. (org-set-tags): Use it.
  881. 2009-11-30 Carsten Dominik <carsten.dominik@gmail.com>
  882. * org-list.el (org-empty-line-terminates-plain-lists): Update
  883. docstring.
  884. * org.el (org-format-latex): Fix link creation for processed latex
  885. snippets.
  886. 2009-11-29 Carsten Dominik <carsten.dominik@gmail.com>
  887. * org-footnote.el (org-footnote-normalize): Protect replacement
  888. text.
  889. * org.el (org-inside-latex-macro-p): Save match data.
  890. 2009-11-28 Jan Böcker <jan.boecker@jboecker.de>
  891. * org-docview.el: New file.
  892. 2009-11-27 Carsten Dominik <carsten.dominik@gmail.com>
  893. * org-latex.el (org-export-latex-class-options): New variable.
  894. (org-export-latex-set-initial-vars): Use the class options.
  895. * org.el (org-forward-same-level): Stop at headings that start
  896. with an invisible character.
  897. (org-additional-option-like-keywords): Add LaTeX_CLASS_OPTIONS.
  898. 2009-11-26 Carsten Dominik <carsten.dominik@gmail.com>
  899. * org-footnote.el (org-footnote-normalize): Don't take optional
  900. arguments in LaTeX macros as footnotes.
  901. * org.el (org-inside-latex-macro-p): New function.
  902. * org-latex.el (org-latex-to-pdf-process): Change customization
  903. group to `org-export-pdf'.
  904. * org-agenda.el (org-agenda-get-blocks): Look at time string also
  905. on days after the first one.
  906. * org.el (org-insert-heading): Also check for item before assuming
  907. before-first-heading condition.
  908. * org-latex.el (org-latex-to-pdf-process): Fix typo in group tag.
  909. (org-export-pdf-logfiles): New option.
  910. (org-export-as-pdf): Use `org-export-pdf-logfiles'.
  911. (org-export-pdf-logfiles): Fix customization type.
  912. * org.el (org-insert-link): Improve error message when there is no
  913. default link to select with RET.
  914. * org-agenda.el (org-agenda-filter-by-tag): Use char argument from
  915. parameter list.
  916. 2009-11-25 Carsten Dominik <carsten.dominik@gmail.com>
  917. * org-latex.el (org-export-latex-parse-global)
  918. (org-export-latex-parse-content)
  919. (org-export-latex-parse-subcontent): Use
  920. `org-re-search-forward-unprotected'.
  921. (org-export-as-pdf): Remove log files produced by XeTeX.
  922. * org-macs.el (org-re-search-forward-unprotected): New function.
  923. 2009-11-25 James TD Smith <ahktenzero@mohorovi.cc>
  924. * org-colview.el (org-agenda-colview-summarize): Sort out some
  925. confusion between properties and titles, which resulted in
  926. agenda summaries not working if a title was set for a column.
  927. 2009-11-24 Carsten Dominik <carsten.dominik@gmail.com>
  928. * org-mobile.el (org-mobile-agendas): New option.
  929. (org-mobile-sumo-agenda-command): Select the right agendas.
  930. * org-latex.el (org-export-latex-format-image): Preserve the
  931. original-indentation property.
  932. 2009-11-23 Carsten Dominik <carsten.dominik@gmail.com>
  933. * org-clock.el (org-clock-insert-selection-line): Catch error when
  934. an old tasks no longer exists.
  935. * org-latex.el (org-export-as-pdf): Remove also the .idx file.
  936. (org-export-as-pdf): Don't remove the old PDF file before making
  937. the new one.
  938. * org-mouse.el (org-mouse-end-headline, org-mouse-insert-item)
  939. (org-mouse-context-menu): Use `org-looking-back'.
  940. * org.el (org-cycle-level): Use `org-looking-back'.
  941. * org-list.el (org-cycle-item-indentation): Use
  942. `org-looking-back'.
  943. * org-compat.el (org-looking-back): New function.
  944. * org.el (org-insert-heading): Catch before-first-headline when
  945. inserting a headline.
  946. 2009-11-22 Carsten Dominik <carsten.dominik@gmail.com>
  947. * org-latex.el (org-export-latex-format-image): Indent figure
  948. environment, so that it does not interrupt plain list.
  949. * org.el (org-open-at-point): Allow long link descriptions.
  950. 2009-11-21 Carsten Dominik <carsten.dominik@gmail.com>
  951. * org-html.el (org-export-as-html): Remove empty lines at the
  952. beginning of the exported text.
  953. ;; Local Variables:
  954. ;; coding: utf-8
  955. ;; add-log-time-zone-rule: t
  956. ;; End:
  957. Copyright (C) 2008 Free Software Foundation, Inc.
  958. This file is part of GNU Emacs.
  959. GNU Emacs is free software: you can redistribute it and/or modify
  960. it under the terms of the GNU General Public License as published by
  961. the Free Software Foundation, either version 3 of the License, or
  962. (at your option) any later version.
  963. GNU Emacs is distributed in the hope that it will be useful,
  964. but WITHOUT ANY WARRANTY; without even the implied warranty of
  965. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  966. GNU General Public License for more details.
  967. You should have received a copy of the GNU General Public License
  968. along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  969. ;; arch-tag: a9bdcf06-7c2d-4b5a-bf7a-c5e7b706f67c