Set `org-clock-clocking-in' to t before `org-clock-out'
[org-mode/org-jambu.git] / lisp / ChangeLog
blobb72a91421d1aa66b373f214e852c3c19819a6733
1 2010-05-20  Bernt Hansen <bernt@norang.ca>
3         * org-clock.el (org-clock-in): Set `org-clock-clocking-in' to
4         t before calling `org-clock-out', so that that function can
5         know its call context.
7 2010-05-20  Russell Adams <RLAdams@AdamsInfoServ.Com>
9         * org.el (org-remove-inline-images): Call `clear-image-cache'.
11 2010-05-20  Bastien Guerry  <bzg@altern.org>
13         * org-timer.el (org-timer-default-timer): New variable.
14         (org-timer-set-timer): Use the new variable.  Also offer the
15         possibility to replace the current timer by a new one.
17 2010-05-20  Carsten Dominik  <carsten.dominik@gmail.com>
19         * org.el (org-kill-note-or-show-branches): Hide subtree before
20         exposing the headings.
22 2010-05-19  Carsten Dominik  <carsten.dominik@gmail.com>
24         * org.el (org-add-planning-info): Remove the empty line also
25         if there is no whitespace at all in there.
27         * org-table.el (org-table-align): Fix alignment of strings
28         with invisible characters.
30 2010-05-19  David Maus  <dmaus@ictsoc.de>
32         * org.el (org-refile-cache-get): Return empty list of targets
33         when cache was cleared.
34         (org-clone-subtree-with-time-shift): Maybe create ID property
35         in cloned subtrees.
36         (org-clone-delete-id): New customization variable.
37         (org-clone-subtree-with-time-shift): Use customization
38         variable `org-clone-delete-id'.
39         (org-clone-subtree-with-time-shift): Remove empty property
40         drawer in cloned subtrees.
42 2010-05-17  Carsten Dominik  <carsten.dominik@gmail.com>
44         * org.el (org-refile-use-cache): New option.
45         (org-refile-cache, org-refile-markers): New variable.
46         (org-refile-marker, org-refile-cache-clear)
47         (org-refile-cache-check-set, org-refile-cache-put)
48         (org-refile-cache-get): New function.
49         (org-get-refile-targets): Use the refile cache.
51         * org-clock.el (org-clock-sum): Don't include running clock if
52         the time block is wrong.
54 2010-05-16  John Wiegley  <jwiegley@gmail.com>
56         * org-clock.el (org-clock-clock-in, org-clock-in): Added
57         parameter `start-time'.
58         (org-clock-resolve-clock): Added parameter `clock-out-time'.
59         If set, and resolve-to is a past time, then the clock out
60         event occurs at `clock-out-time' rather than at `resolve-to'.
61         In this case, `resolve-to' becomes the clock in time.
62         (org-clock-jump-to-current-clock): Created new global command
63         to reveal the current clock.
64         (org-clock-resolve): Added new commands g/G and j/J, and a
65         help window describing all commands and their meaning.
66         (org-clock-resolve-expert): New customization variable.
67         (org-find-open-clocks): Fixed a bug that caused discovered
68         clocks not to match up with the currently active clock.
69         (org-resolve-clocks): Changed the argument
70         `also-non-dangling-p' to `only-dangling-p', since due to a bug
71         this was the default behavior all along.
73 2010-05-16  David Maus  <dmaus@ictsoc.de>
75         * org-id.el (org-id-uuid): New function.  Return string with
76         random (version 4) UUID.
77         (org-id-method): Make 'uuid the new default value.
78         (org-id-new): Use `org-id-uuid' if call to uuidgen program
79         does not return a UUID.
81 2010-05-15  Carsten Dominik  <carsten.dominik@gmail.com>
83         * org-latex.el (org-export-latex-format-image): Add support
84         for multicolumn figures in LaTeX.
86 2010-05-14  David Maus  <dmaus@ictsoc.de>
88         * org.el (org-clone-subtree-with-time-shift): Remove ID
89         property of original subtree in cloned subtrees.
91 2010-05-14  Carsten Dominik  <carsten.dominik@gmail.com>
93         * org-exp.el (org-export-format-source-code-or-example):
94         XEmacs compatibility.
96         * org-latex.el (org-export-latex-tables): Accept comma in
97         align string.
99         * org-docbook.el (org-export-docbook-xslt-stylesheet): New option.
100         (org-export-docbook-xslt-proc-command): Fix docstring.
101         (org-export-docbook-xsl-fo-proc-command): Fix docstring.
102         (org-export-as-docbook-pdf): Improve
103         formatting of the xslt command.
105         * org-exp.el (org-infile-export-plist): Check for XSLT setting.
107         * org.el (org-file-contents): Improve error message.
108         (org-set-regexps-and-options): Remove spaces at both ends.
110 2010-05-13  Carsten Dominik  <carsten.dominik@gmail.com>
112         * org-docbook.el (org-export-as-docbook-pdf): Improve
113         formatting of the xslt command.
115 2010-05-13  Sebastian Rose  <sebastian_rose@gmx.de>
117         * org-publish.el (org-publish-cache): Use one big hashmap for
118         each project defined in `org-publish-project-alist'. The
119         hashmap will hold pairs of our timestamp-filenames and
120         timestamps, as well as pairs of source-paths and associated
121         plists for arbitrary values. Currently only the files title is
122         stored there.
124         The caching feature writes the information gathered during
125         publishing to disk and re-loads it from there the next time we
126         publish the same project.  All this information will hence
127         survive a restart of emacs.
129         One cache file per publishing project is used.  The contents of
130         that file is the elisp that fills the new variable
131         `org-publish-cache'.  The cache file is named according to the
132         project with `.cache' added and lives in
133         `org-timestamp-directory'.
135         * org-publish.el (initialize-files-alist): This function and
136         the variable `org-publish-files-alist' are not used anymore in
137         favour of the reloadable cache and the functions for handling
138         it.  Removed.
140         * org-publish.el (org-publish-validate-link) was not used
141         anywhere.  Removed.
143         * org-publish.el (org-publish-get-base-files): Added the
144         variable `sitemap-requested' to avoid sorting where possible.
145         See also end of `org-publish-get-base-files-1'.
147         * org-publish.el (org-publish-get-files): This function is
148         not called anymore. Removed.
150         * org-publish.el (org-publish-get-project-from-filename): does
151         not depend on a list of files anymore. Instead of laoding all
152         files of all, we walk `org-publish-project-alist' until we
153         find a project, where the properties :base-directory, :recursive,
154         :base-extension, :include and :exclude match.
156         * org-publish.el (org-publish-file): takes an additional
157         parameter to avoid superfloues loading and writing of the
158         cache file when used to publish a part of a project.
160 2010-05-13  Carsten Dominik  <carsten.dominik@gmail.com>
162         * org.el (org-beginning-of-defun, org-end-of-defun): New
163         functions.
164         (org-mode): Install the `org-beginning-of-defun' and
165         `org-end-of-defun' functions.
166         (org-pretty-entities): New option.
167         (org-toggle-pretty-entities): New command.
168         (org-fontify-entities): New function.
169         (org-startup-options): New keywords for pretty entities.
170         (org-set-font-lock-defaults): Call the pretty entities
171         function.
173         * org-latex.el (org-export-latex-keywords-maybe): Protect the
174         TODO markup.
176 2010-05-13  Mikael Fornius  <mfo@abc.se>
178         * org-habit.el (org-habit-build-graph): Help-echo date when
179         mouse is over stars.
181 2010-05-13  Jan Böker  <jan.boecker@jboecker.de>
183         * org.el (org-file-apps): Improve docstring to reflect
184         grouping matches
186 2010-05-12  Carsten Dominik  <carsten.dominik@gmail.com>
188         * org.el (org-set-startup-visibility): Fix empty line display.
190         * org-latex.el (org-export-latex-links): Use the formatting
191         function of the link type, if it is available.
193         * org-table.el (org-table-get-remote-range): Return to
194         original buffer when retrieving remote reference.
196         * org.el (org-display-inline-images): Do the entire buffer,
197         not just the narrowed region.  Clear the cache.
198         (org-display-inline-images): Match mode file paths.
200 2010-05-12  David Maus  <dmaus@ictsoc.de>
202         * org-wl.el (org-wl-store-link-folder): Don't throw error when
203         called on WL folder group.
205 2010-05-10  Carsten Dominik  <carsten.dominik@gmail.com>
207         * org.el (org-replace-escapes): Make sure the cdr is not nil.
208         (org-read-date): Make `M-v' and `C-v' scroll the popup calendar.
209         (org-mode): Revert comment syntax changes.
211 2010-05-09  Carsten Dominik  <carsten.dominik@gmail.com>
213         * org.el (org-sparse-tree): Make `C-c / t' search for all TODO
214         keywords, and `C-c / T' for a specific one.
216 2010-05-08  Carsten Dominik  <carsten.dominik@gmail.com>
218         * org.el (org-mode): Fix comment syntax settings.
220         * org-src.el (org-edit-src-allow-write-back-p): Define
221         variable.
223         * org.el (org-inline-image-overlays): New variable.
224         (org-toggle-inline-images, org-display-inline-images)
225         (org-remove-inline-images): New commands.
226         (org-mode-map): Define a key for `org-toggle-inline-images'.
228 2010-05-08  David Maus  <dmaus@ictsoc.de>
230         * org-wl.el (org-wl-message-field): New function.  Return
231         content of header field in message entity.
232         (org-wl-store-link): Call `org-wl-store-link-folder' or
233         `org-wl-store-link-message' depending on major-mode.
234         (org-wl-store-link-folder): New function.  Store link to
235         Wanderlust folder.
236         (org-wl-store-link-message): New function.  Store link to
237         Wanderlust message.
238         (org-wl-store-link-message): Store link to message while
239         visiting message.
240         (org-wl-open): Don't try to jump to message when opening a
241         folder link.
243 2010-05-08  David Maus  <dmaus@ictsoc.de>
245         * org.el (org-replace-escapes): Avoid infinite loop when
246         replace string contains escape sequence it replaces.
248 2010-05-08  Carsten Dominik  <carsten.dominik@gmail.com>
250         * org-crypt.el (org-crypt-key-for-heading): Use symmetric
251         encryption when now key is set.
253 2010-05-07  Carsten Dominik  <carsten.dominik@gmail.com>
255         * org-table.el (org-table-recalculate-buffer-tables)
256         (org-table-iterate-buffer-tables): New commands.
258         * org.el (org-check-for-hidden): When there is a region, skip
259         the check.
261 2010-05-02  Dan Davison  <davison@stats.ox.ac.uk>
263         * org-src.el (org-edit-src-code): allow-write-back-p had
264         erroneously been omitted from let binding
266 2010-04-30  Carsten Dominik  <carsten.dominik@gmail.com>
268         * org-agenda.el (org-sorting-choice): New sorting type alpha.
269         (org-cmp-alpha): New defsubst.
270         (org-em): New defsubst.
271         (org-entries-lessp): Only compute needed comparisons.
273 2010-04-29  Carsten Dominik  <carsten.dominik@gmail.com>
275         * org-html.el (org-format-org-table-html): Test all columns
276         for number content.
278 2010-04-28  Carsten Dominik  <carsten.dominik@gmail.com>
280         * org-latex.el (org-export-latex-treat-sub-super-char): Make
281         sure parenthesis matching is consistent.
283         * org-table.el (org-table-colgroup-line-p)
284         (org-table-cookie-line-p): New functions.
286         * org-exp.el (org-table-clean-before-export): Better tests for
287         colgroup and cookie lines.
289 2010-04-27  Carsten Dominik  <carsten.dominik@gmail.com>
291         * org-agenda.el (org-agenda-goto): Push a mark before changing
292         the position.
294         * org-footnote.el (org-footnote): New group.
295         (org-footnote-section)
296         (org-footnote-tag-for-non-org-mode-files): Fix typos.
298         * org-list.el (org-end-of-item-text-before-children): Also do
299         the right thing at the end of a file.
301         * org.el (org-set-packages-alist, org-get-packages-alist): New
302         function.
303         (org-export-latex-default-packages-alist)
304         (org-export-latex-packages-alist): Add extra flag to
305         each package, indicating if it should be used for snippets.
306         (org-create-formula-image): Add the snippet argument.
307         (org-splice-latex-header): New argument SNIPPET-P, pass it
308         through to `org-latex-packages-to-string'.
309         (org-latex-packages-to-string): New argument SNIPPET-P.
311         * org-latex.el (org-export-latex-make-header): Add the snippet
312         argument.
314         * org-docbook.el (org-export-as-docbook): Implement ordered
315         lists starting at some offset.
317 2010-04-26  Carsten Dominik  <carsten.dominik@gmail.com>
319         * org.el (org-link-types, org-open-at-point): Add doi links.
321         * org-ascii.el (org-export-ascii-preprocess): Remove list
322         startcounter cookies.
324         * org-list.el (org-renumber-ordered-list): Respect counter
325         start values.
327         * org-latex.el (org-export-latex-lists): Accept ordered list
328         item offset cookie.
330         * org-html.el (org-export-as-html): Accept ordered list
331         item offset cookie.
333         * org-indent.el (org-indent-mode): Turn off `indent-tabs-mode'
334         which messes up alignment of tags.
336 2010-04-25  Carsten Dominik  <carsten.dominik@gmail.com>
338         * org-clock.el (org-clock-cancel, org-clock-out): Make sure
339         the modeline display is removed.
341         * org-exp.el (org-export-format-drawer-function): Fix
342         docstring.
344         * org-agenda.el (org-agenda-refile): New optional argument
345         NO-UPDATE.
346         (org-agenda-refile): Call `org-agenda-redo' unless NO-UPDATE
347         is set.
348         (org-agenda-bulk-action): Call the refile command with updates
349         suppressed - but arrange for `org-agenda-redo' to be called at
350         the end.
352         * org.el (org-mode): Make table mapping quiet.
353         (org-table-map-tables): New optional argument QUIETLY.
355         * org-ascii.el (org-export-ascii-preprocess): Make table
356         mapping quiet.
358         * org-html.el (org-export-as-html, org-html-level-start): Change
359         XHTML IDs to not use dots.
361         * org-exp.el (org-export-define-heading-targets): Change
362         XHTML IDs to not use dots.
364         * org-docbook.el (org-export-docbook-level-start): Change
365         XHTML IDs to not use dots.
367         * org-latex.el (org-export-as-latex): Make sure that the
368         result buffer is in latex-mode.
370         * org.el (org-shiftup-final-hook, org-shiftdown-final-hook)
371         (org-shiftleft-final-hook, org-shiftright-final-hook): New
372         hooks.
374 2010-04-24  Carsten Dominik  <carsten.dominik@gmail.com>
376         * org-table.el (org-table-justify-field-maybe): Make sure that
377         inserting a value does not turn a line into a hline.
379 2010-04-23  Carsten Dominik  <carsten.dominik@gmail.com>
381         * org-clock.el (org-clock-sum): New argument HEADLINE-FILTER.
382         (org-clock-sum): Add property to selected headlines.
383         (org-dblock-write:clocktable): Make tags matcher.
385         * org.el (org-set-autofill-regexps): XEmacs compatibility.
387         * org-latex.el (org-export-latex-set-initial-vars): Allow "-"
388         in latex class definitions
390         * org.el (org-shiftup-hook, org-shiftdown-hook)
391         (org-shiftleft-hook, org-shiftright-hook): New hooks.
393         * org-entities.el (org-entities): Use \land and \lor for logical
394         operators.
396         * org.el (org-shiftmetaleft, org-shiftmetaright): Call the subtree
397         indentation commands.
398         (org-hidden-tree-error): New defsubst.
399         (org-metaleft, org-metaright): Check for hidden stuff and throw an
400         error.
401         (org-check-for-hidden): New function.
403         * org-list.el (org-item-re): New function.
404         (org-at-item-p): Use `org-item-re'.
405         (org-end-of-item-text-before-children): New function.
406         (org-outdent-item, org-indent-item): Arrange for leaving the
407         subtree alone.
408         (org-outdent-item-tree, org-indent-item-tree): New argument
409         NO-SUBTREE.
410         (org-indent-item-tree): Use `org-end-of-item-text-before-children'
411         to find the end for processing while ignoring the subtree.
413         * org-publish.el (org-publish-sitemap-sort-alphabetically)
414         (org-publish-sitemap-sort-folders)
415         (org-publish-sitemap-sort-ignore-case): New options.
417 2010-04-22  Carsten Dominik  <carsten.dominik@gmail.com>
419         * org-publish.el (org-publish-compare-directory-files): Fix sorting.
421         * org-compat.el (org-get-x-clipboard-compat): Use (featurep 'xemacs).
423         * org-publish.el (org-publish-project-alist): Update docstring.
424         (org-publish-file-title-cache): New variable.
425         (org-publish-initialize-files-alist): Initialize
426         `org-publish-initialize-files-alist' to nil.
427         (org-publish-sort-directory-files): New function.
428         (org-publish-projects): Access the new properties.
429         (org-publish-find-title): Use the file title cache.
430         (org-publish-find-title): Build the file title cache.
431         (org-publish-get-base-files-1): Sort files.
432         (org-publish-aux-preprocess): Do not throw an error when before
433         the first headline.  Allow an empty target, meaning to link just
434         to the file.
435         (org-publish-index-generate-theindex.inc): Check if there is
436         actually a target and only then add it to the link.
437         (org-publish-projects): Fix a remaining issue with the last commit
439         * org-html.el (org-export-as-html): Treat verse as open/close
440         paragraph.
441         (org-export-html-close-lists-maybe): Allow to splice raw HTML into
442         and out of lists.
444 2010-04-22  Dan Davison  <davison@stats.ox.ac.uk>
446         * org-src.el (org-edit-src-code): Allow the org-src edit buffer to
447         be used in a read-only mode.
448         (org-edit-src-code): Different message in read-only mode
450 2010-04-21  Carsten Dominik  <carsten.dominik@gmail.com>
452         * org-src.el (org-edit-src-find-region-and-lang): Test for
453         table.el as late as possible.
455         * org-colview-xemacs.el: Make sure this file is never loaded into
456         Emacs.  Remove all tests for XEmacs.
458         * org-colview.el: Make sure this file is never loaded into XEmacs.
460         * org-agenda.el (org-highlight, org-unhighlight): Use direct
461         overlay calls.
463         * org.el (org-key): Apply the translations defined in
464         `org-xemacs-key-equivalents'.
466         * org-mouse.el (org-mode-hook): Use `org-defkey'.
468         * org-compat.el (org-xemacs-key-equivalents): New constant.
470 2010-04-20  Carsten Dominik  <carsten.dominik@gmail.com>
472         * org-inlinetask.el (org-inlinetask-defaut-state): New option.
473         (org-inlinetask-insert-task): Use `org-inlinetask-defaut-state'.
474         Obey `org-odd-levels-only'.
476         * org-compat.el (org-find-overlays): Use overlays-in/at.
478         * org.el (org-remove-empty-overlays-at)
479         (org-outline-overlay-data, org-hide-block-toggle)
480         (org-format-latex, org-context): Use overlays-in/at.
482         * org-src.el (org-edit-src-exit): Use overlays-in/at.
484         * org-agenda.el (org-agenda-mark-clocking-task)
485         (org-agenda-fontify-priorities, org-agenda-dim-blocked-tasks)
486         (org-agenda-entry-text-hide)
487         (org-agenda-fix-tags-filter-overlays-at)
488         (org-agenda-bulk-remove-overlays): Use overlays-in/at.
490         * org-compat.el (org-overlays-at): Function removed.
491         (org-overlays-in): Function removed.
493 2010-04-19  Bastien Guerry  <bzg@altern.org>
495         * org-clock.el (org-clock-set-current): Just return the headline
496         itself, strip the TODO keyword, the priority cookie and the tags.
498 2010-04-18  Carsten Dominik  <carsten.dominik@gmail.com>
500         * org-compat.el (org-xemacs-without-invisibility): New macro.
501         (org-xemacs-without-invisibility): New macro.
502         (org-indent-to-column, org-indent-line-to, org-move-to-column):
503         Redefine using the macro `org-xemacs-without-invisibility'.
505         * org.el (org-mode, org-org-menu): Use `add-to-invisibility-spec'.
507         * org-table.el (orgtbl-mode): Use `add-to-invisibility-spec'.
509         * org-compat.el (org-make-overlay, org-delete-overlay)
510         (org-overlay-start, org-overlay-end, org-overlay-put)
511         (org-overlay-get, org-overlay-move, org-overlay-buffer): Functions
512         removed.
513         (org-add-to-invisibility-spec): Function removed.
515         * org-html.el (org-export-as-html-and-open): Add argument to
516         kill-buffer.
518         * org-habit.el (require): `calendar' is now required already by
519         org.el on top level.
521         * org-clock.el (require): `calendar' is now required already by
522         org.el on top level.
524         * org-agenda.el (require, org-timeline, org-agenda-list)
525         (org-todo-list, org-agenda-to-appt): `calendar' is now required
526         already by org.el on top level.
528         * org.el (org-export-latex-fix-inputenc): Declare function.
530         * org-agenda.el (org-agenda-goto-calendar): Do not bind obsolete
531         variables.
533         * org.el (calendar): Require calendar now on top level in org.el
534         and define aliases to new variables when needed.
535         (org-read-date, org-goto-calendar): Do not bind obsolete
536         variables.
538         * org-clock.el (org-clock-out, org-clock-cancel): Get rid of
539         compilation warning, add comment that this cannot be done with
540         `with-current-buffer'.
542         * org-wl.el (org-wl-open): Use `with-current-buffer'.
544         * org.el (overlay, org-remove-empty-overlays-at)
545         (org-outline-overlay-data, org-set-outline-overlay-data)
546         (org-show-block-all, org-hide-block-toggle)
547         (org-highlight-new-match, org-remove-occur-highlights)
548         (org-tags-overlay, org-fast-tag-selection, org-date-ovl)
549         (org-read-date, org-read-date-display, org-eval-in-calendar)
550         (org-format-latex, org-context)
551         (org-speedbar-restriction-lock-overlay)
552         (org-speedbar-set-agenda-restriction): Use the normal overlay API.
554         * org-table.el (org-table-add-rectangle-overlay)
555         (org-table-remove-rectangle-highlight)
556         (org-table-overlay-coordinates)
557         (org-table-toggle-coordinate-overlays): Use the normal overlay
558         API.
560         * org-src.el (org-edit-src-code, org-edit-fixed-width-region)
561         (org-edit-src-exit, org-src-mode-configure-edit-buffer): Use the
562         normal overlay API.
564         * org-colview.el (org-columns-new-overlay)
565         (org-columns-display-here, org-columns-remove-overlays)
566         (org-columns-edit-value, org-columns-next-allowed-value)
567         (org-columns-update): Use the normal overlay API.
569         * org-clock.el (org-clock-out, org-clock-cancel)
570         (org-clock-put-overlay, org-clock-remove-overlays): Use the normal
571         overlay API.
573         * org-agenda.el (org-agenda-mark-filtered-text)
574         (org-agenda-mark-clocking-task, org-agenda-fontify-priorities)
575         (org-agenda-dim-blocked-tasks, org-agenda-entry-text-show-here)
576         (org-agenda-entry-text-hide)
577         (org-agenda-restriction-lock-overlay)
578         (org-agenda-set-restriction-lock)
579         (org-agenda-filter-by-tag-hide-line)
580         (org-agenda-fix-tags-filter-overlays-at)
581         (org-agenda-filter-by-tag-show-all, org-hl)
582         (org-agenda-goto-calendar, org-agenda-bulk-mark)
583         (org-agenda-bulk-remove-overlays): Use the normal overlay API.
585         * org-freemind.el (org-freemind-from-org-mode-node)
586         (org-freemind-from-org-mode, )
587         (org-freemind-from-org-sparse-tree, org-freemind-to-org-mode): Use
588         interactive-p instead of called-interactively, because this is
589         backward compatible with older Emacsen I still support..
591 2010-04-16  Carsten Dominik  <carsten.dominik@gmail.com>
593         * org-exp.el (org-export-define-heading-targets): Fix bug in
594         regexp finding ID and CUSTOM_ID properties.
596 2010-04-14  Carsten Dominik  <carsten.dominik@gmail.com>
598         * org-footnote.el (org-footnote-goto-previous-reference): Renamed
599         from `org-footnote-goto-next-reference'.
601         * org.el (org-auto-repeat-maybe): Only record LAST_REPEAT if
602         org-log-repeat is non-nil, or if there is clocking data in the
603         entry.
605         * org-crypt.el (org-encrypt-entry): Improve mapping behavior.
607 2010-04-13  Carsten Dominik  <carsten.dominik@gmail.com>
609         * org.el (org-align-all-tags): New command.
611 2010-04-13  David Maus  <dmaus@ictsoc.de>
613         * org-wl.el (org-wl-link-remove-filter): New customizable
614         variable.  If non-nil, filter conditions are stripped when storing
615         link to message in filter folder.
616         (org-wl-shimbun-prefer-web-links): New customizable variable.  If
617         non-nil, links to shimbun messages are created as web links to
618         message source.
619         (org-wl-nntp-prefer-web-links): New customizable variable.  If
620         non-nil, links to nntp message are created as web links to gmane
621         or googlegroups.
622         (org-wl-namazu-default-index): New customizable variable.
623         Directory of namazu search index that should be used as default
624         when opening a link in a search folder.
625         (org-wl-folder-types): New constant.  Wanderlust folder type
626         indicators.
627         (org-wl-folder-type): New function.  Return type of Wanderlust
628         folder.
629         (org-wl-store-link): Create web links for shimbun or nntp messages
630         and strip filter conditions depending on customizable variables.
631         (org-wl-open): Open namazu search folder for message when called
632         with prefix.
634 2010-04-12  Carsten Dominik  <carsten.dominik@gmail.com>
636         * org.el (org-remove-if, org-remove-if-not): New functions.
637         (org-open-file): Use internal remove-if functions.
639 2010-04-10  Jan Böcker  <jan.boecker@jboecker.de>
641         * org.el (org-file-apps-entry-match-against-dlink-p): new function.
642         (org-file-apps-ex): remove variable.
643         (org-open-file): Integrate org-file-apps-ex functionality back
644         into org-file-apps, and decide whether to match a regexp against
645         the link or the filename using org-file-apps-entry-uses-grouping-p.
647 2010-04-09  Jan Böcker  <jan.boecker@jboecker.de>
649         * org.el (org-file-apps-ex): new variable.
650         (org-open-file): Before considering org-file-apps, first match the
651         regexps from org-file-apps-ex against the whole link. See
652         docstring of org-file-apps-ex.
654 2010-04-12  Carsten Dominik  <carsten.dominik@gmail.com>
656         * org.el (org-export-latex-default-packages-alist): Remove
657         microtype package.
658         (org-todo-repeat-to-state): New variable.
659         (org-auto-repeat-maybe): Allow user-selected target states.
660         (org-default-properties): Add the new property REPEAT_TO_STATE.
662 2010-04-09  Carsten Dominik  <carsten.dominik@gmail.com>
664         * org-mobile.el (org-mobile-check-setup): Make sure that there is
665         a binary to compute checksums.
667 2010-04-08  Carsten Dominik  <carsten.dominik@gmail.com>
669         * org.el (org-insert-link): Find the link buffer on visible
670         frames.
671         (org-export-latex-default-packages-alist): hyperref must be loaded
672         late.
674 2010-04-07  Carsten Dominik  <carsten.dominik@gmail.com>
676         * org-latex.el (org-export-latex-preprocess): Do not yet protect
677         defined entities - these will be taken care of later.
678         (org-export-latex-special-chars): Post-process entity replacement.
679         (org-export-latex-fontify-headline): Do not yet protect defined
680         entities - these will be taken care of later.
681         (org-export-latex-tables, org-export-latex-links): Format the
682         caption properly.
684         * org-entities.el (org-entities-user): Fix typo.
686         * org.el (org-prepare-agenda-buffers): Uniquify TODO keywords
688         * org-entities.el (org-entities-user): Improve docstring.
690 2010-04-06  Carsten Dominik  <carsten.dominik@gmail.com>
692         * org-entities.el (org-macs): Require org-macs, to be sure that we
693         have `declare-function' defined.
695 2010-04-05  Carsten Dominik  <carsten.dominik@gmail.com>
697         * org-latex.el (org-export-latex-classes): Update docstring.
699         * org.el (org-format-latex-header): Add cookies to the header.
700         (org-splice-latex-header): Implement placement according to
701         cookies.
703 2010-04-04  Carsten Dominik  <carsten.dominik@gmail.com>
705         * org-publish.el (org-publish-aux-preprocess): Control case
706         sensitivity.
708 2010-04-04  Bastien Guerry  <bzg@altern.org>
710         * org.el (org-splice-latex-header): Fix typo.
712 2010-04-04  Carsten Dominik  <carsten.dominik@gmail.com>
714         * org-latex.el (org-export-latex-make-header): Use
715         `org-splice-latex-header' to build the header.
716         (org-export-latex-classes): Update docstring.
718         * org.el (org-splice-latex-header): New function.
719         (org-create-formula-image): Use `org-splice-latex-header' to build
720         the header.
722         * org-gnus.el (org-gnus-follow-link): Handle nndoc backend.
724 2010-04-03  Carsten Dominik  <carsten.dominik@gmail.com>
726         * org.el (org-export-latex-packages-alist)
727         (org-export-latex-default-packages-alist): Fix docstring to
728         reflect the expected structure.
730         * org-docbook.el (org-docbook-do-expand): Fix bug with variable names.
731         (org-export-docbook-finalize-table): Make use of label for tables.
733 2010-04-02  Carsten Dominik  <carsten.dominik@gmail.com>
735         * org-attach.el (org-attach-commit): Split on newlines.
737         * org.el (org-export-latex-default-packages-alist): Use list
738         instead of cons for the entries.
740 2010-04-01  Carsten Dominik  <carsten.dominik@gmail.com>
742         * org-entities.el (org-entity-get-representation): Catch the case
743         that there is not entry in the list.
745         * org-mobile.el (org-mobile-use-encryption)
746         (org-mobile-encryption-tempfile, org-mobile-encryption-password):
747         New options.
748         (org-mobile-check-setup): CHeck the encryption setup.
749         (org-mobile-copy-agenda-files, org-mobile-sumo-agenda-command)
750         (org-mobile-create-sumo-agenda): Use encryption code.
751         (org-mobile-encrypt-and-move): New function.
752         (org-mobile-encrypt-file, org-mobile-decrypt-file): New
753         functions.
754         (org-mobile-move-capture): Decrypt the capture file.
756         * org.el (org-entities): Require the new file.
757         (org-export-latex-default-packages-alist): New variable.
758         (org-complete): Use new entity code for completion.
759         (org-create-formula-image): Use the new packages variable.
761         * org-latex.el (org-export-latex-classes): Remove the standard
762         packages from the class headers.
763         (org-export-latex-make-header): Use the new package variable.
764         (org-export-latex-special-chars): Better regexp for entities, to
765         support entity name that contain numbers.
766         (org-export-latex-treat-backslash-char): Use the new entity code.
768         * org-html.el (org-html-do-expand): Use the new entity code.
770         * org-exp.el (org-export): Add the new export commands.
771         (org-html-entities): Constant removed.
772         (org-export-visible): Add the new export commands.
774         * org-entities.el: New file.
776         * org-docbook.el (org-docbook-do-expand): Use new entity code.
778         * org-ascii.el (org-export-ascii-entities): New variable.
779         (org-export-as-latin1, org-export-as-latin1-to-buffer)
780         (org-export-as-utf8, org-export-as-utf8-to-buffer): New commands.
781         (org-export-as-encoding): New function.
782         (org-export-ascii-preprocess): Call `org-ascii-replace-entities'.
783         (org-ascii-replace-entities): New function.
785 2010-03-31  Carsten Dominik  <carsten.dominik@gmail.com>
787         * org-html.el (org-html-level-start): Catch the case that target
788         might be nil.
790 2010-03-31  Dan Davison  <davison@stats.ox.ac.uk>
792         * org.el (org-appearance): Change Customize group variable name
793         from org-font-lock to org-appearance, and change tag from "Org
794         Font Lock" to "Org Appearance"
795         (org-odd-levels-only): Change Customize group variable name
796         (org-level-color-stars-only): Change Customize group variable name
797         (org-hide-leading-stars): Change Customize group variable name
798         (org-hidden-keywords): Change Customize group variable name
799         (org-fontify-done-headline): Change Customize group variable name
800         (org-fontify-emphasized-text): Change Customize group variable name
801         (org-fontify-whole-heading-line): Change Customize group variable name
802         (org-highlight-latex-fragments-and-specials): Change Customize
803         group variable name
804         (org-hide-emphasis-markers): Change Customize group variable name
805         (org-emphasis-alist): Change Customize group variable name
806         (org-emphasis-regexp-components): Change Customize group variable
807         name
808         (org-modules): Remove mention of org-R
810         * org-faces.el (org-faces): Change Customize group variable name
812 2010-03-29  Carsten Dominik  <carsten.dominik@gmail.com>
814         * org-agenda.el (org-diary-last-run-time): New variable.
815         (org-diary): prepare agenda buffers only if last call was some
816         time ago.
818         * org-html.el (org-export-html-preprocess): Replace \ref macros
819         with a link.
820         (org-format-org-table-html): Add the label as an anchor.
822         * org-docbook.el (org-export-docbook-format-image): Do some
823         formatting on captions.
825         * org-latex.el (org-export-latex-tables, org-export-latex-links):
826         Do some formatting on captions.
828         * org-html.el (org-export-html-format-image)
829         (org-format-org-table-html): Do some formatting on captions.
831 2010-03-28  Dan Davison  <davison@stats.ox.ac.uk>
833         * org.el (org-hidden-keywords): New customizable variable. This is
834         a list of symbols specifying which of the special keywords #+DATE,
835         #+AUTHOR, #+EMAIL and #+TITLE should be hidden by font lock.
836         (org-fontify-meta-lines-and-blocks): Changes to font-lock code
837         implementing new faces and hiding behaviour.
839         * org-faces.el (org-document-title): New face for #+TITLE lines
840         (org-document-info): New face for #+DATE, #+AUTHOR, #+EMAIL lines
841         (org-document-info-keyword): New face for #+DATE, #+AUTHOR, #+EMAIL keywords
843 2010-03-28  Carsten Dominik  <carsten.dominik@gmail.com>
845         * org-publish.el (org-publish-sanitize-plist): New function to
846         rename "index" properties to "sitemap".  Do this renaming
847         globally.
848         (org-publish-with-aux-preprocess-maybe): New macro.
849         (org-publish-org-to-pdf, org-publish-org-to-html): Use the new
850         macro.
851         (org-publish-aux-preprocess)
852         (org-publish-index-generate-theindex.inc): New function.
854 2010-03-27  Carsten Dominik  <carsten.dominik@gmail.com>
856         * org-table.el (org-table-align): Interpret <N> at fixed width,
857         not as maximum width.
859 2010-03-26  Carsten Dominik  <carsten.dominik@gmail.com>
861         * org-exp.el (org-export-author-info, org-export-email-info): Fix
862         docstrings.
864         * org-beamer.el (org-beamer-select-environment): Renamed from
865         `org-beamer-set-environment-tag'.  Improve docstring.
867         * org-freemind.el (org-freemind-write-mm-buffer): Fix another
868         problem with odd levels.
870         * org-ascii.el (org-export-as-ascii): Export email only if the
871         author wants it.
873         * org-docbook.el (org-export-as-docbook): Export email only if the
874         author wants it.
876         * org-html.el (org-export-as-html): Export email only if the
877         author wants it.
879         * org-exp.el (org-export-email-info): New option.
880         (org-export-plist-vars): Add entry for `org-export-email'.
882 2010-03-25  Carsten Dominik  <carsten.dominik@gmail.com>
884         * org-table.el (org-table-goto-line): Fix typo.
886 2010-03-25  Mikael Fornius  <mfo@abc.se>
888         * org.el (org-agenda-files): Typo.
889         (org-read-agenda-file-list): Add optional argument to help
890         `org-store-new-agenda-file-list' to remember un-expanded file
891         names.  Expand file names relative to `org-directory'.
892         (org-store-new-agenda-file-list): Keep un-expanded file names when
893         saving, if available.
894         (org-agenda-files): Update documentation.
896 2010-03-25  Carsten Dominik  <carsten.dominik@gmail.com>
898         * org-ascii.el (org-export-as-ascii): Catch the case of exporting
899         a buffer with no file name attached.
901         * org.el (org-log-refile): New option.
902         (org-log-note-headings): Add a heading for refiling.
903         (org-startup-options): Add keywords for logging of the refile
904         action.
905         (org-refile): Add logging action.
906         (org-add-log-note): Allow for refiling action.
908         * org-agenda.el (org-agenda-bulk-action): Make sure
909         `org-log-refile' is not `note' during a bulk action.
911 2010-03-24  Carsten Dominik  <carsten.dominik@gmail.com>
913         * org.el (org-map-dblocks): Use save-excursion to remember the
914         position.
916         * org-attach.el (org-attach-commit): Remove dependence on xargs.
917         (org-attach-delete-one): Commit after deleting a file.
919         * org-latex.el (org-export-latex-fontify): Do not mistake table.el
920         borders for strike-through emphasis.
922         * org-freemind.el (org-freemind-write-mm-buffer): Simplify the
923         handling of odd levels.
925         * org-agenda.el (org-agenda-todo-ignore-deadlines): Document `past'
926         and `future' values.
927         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
928         Handle `past' and `future' values.
930         * org.el (org-read-agenda-file-list): Interpret file names
931         relative to org-directory and allow environment variables and
932         "~".
934         * org-latex.el (org-export-latex-special-chars): Allow a
935         parenthesis before an exponent or subscript.
937 2010-03-23  Dan Davison  <davison@stats.ox.ac.uk>
939         * org-src.el (org-edit-src-exit): When returning from code edit
940         buffer, if code block is hidden, leave point at start of
941         #+begin_src line
943 2010-03-23  Carsten Dominik  <carsten.dominik@gmail.com>
945         * org.el (org-insert-heading): Do not remove all spaces if the
946         headline is empty.
948         * org-indent.el (org-indent): Fix group name.
950 2010-03-21  Carsten Dominik  <carsten.dominik@gmail.com>
952         * org-table.el (org-table-goto-column): Fix forcing a non-existing
953         column.
954         (org-table-get, org-table-put, org-table-goto-line)
955         (org-table-current-line): New functions.
957 2010-03-21  Carsten Dominik  <carsten.dominik@gmail.com>
959         * org-crypt.el (org-reveal-start-hook): Add a decryption function
960         to this hook.
961         (org-decrypt-entries, org-encrypt-entries, org-decrypt-entry): Add
962         docstrings.
964         * org.el (org-point-at-end-of-empty-headline)
965         (org-level-increment, org-get-previous-line-level): New function.
966         (org-cycle-level): Rewritten to be independent of when this
967         function is called.
968         (org-in-regexps-block-p): New function.
969         (org-reveal-start-hook): New hook.
970         (org-reveal): Run new hook.
972 2010-03-19  Carsten Dominik  <carsten.dominik@gmail.com>
974         * org-latex.el (org-export-latex-keywords): Start a new paragraph
975         after time keywords, do not add "\newline".
977         * org-html.el (org-export-as-html): Avoid double # in href.
979         * org.el (org-refile-get-location): Catch an invalid target
980         specification.
982 2010-03-18  Carsten Dominik  <carsten.dominik@gmail.com>
984         * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
985         Make sure the behavior regarding to extracting time is
986         consistent.
988 2010-03-17  Stephen Eglen  <stephen@gnu.org>
990         * org-agenda.el (org-agenda-insert-diary-extract-time): New
991         variable.
992         (org-agenda-add-entry-to-org-agenda-diary-file): Use this new
993         variable rather than `org-agenda-search-headline-for-time'.
995 2010-03-17  Carsten Dominik  <carsten.dominik@gmail.com>
997         * org-list.el (org-fix-bullet-type): Improve cursor positioning.
999 2010-03-15  Carsten Dominik  <carsten.dominik@gmail.com>
1001         * org.el (org-adaptive-fill-regexp-backup): New variable.
1002         (org-set-autofill-regexps): Store a backup of
1003         `adaptive-fill-regexp'.
1004         (org-adaptive-fill-function): Fix filling of comments and ordered
1005         lists. If there is no other match, till try adaptive fill.
1007 2010-03-15  John Wiegley  <jwiegley@gmail.com>
1009         * org-agenda.el (org-agenda-include-deadlines): Added new
1010         customization variable to determine whether unscheduled tasks
1011         should appear in the agenda solely because of their deadline.
1012         Default to true, which was the previous behavior (it just wasn't
1013         configurable).
1014         (org-agenda-mode-map, org-agenda-view-mode-dispatch): Bind ! in
1015         the agenda to show/hide deadline tasks.
1016         (org-agenda-menu): Added menu option for show/hide deadlines.
1017         (org-agenda-list): Make the agenda list sensitive to the value of
1018         `org-agenda-include-deadlines'.
1019         (org-agenda-toggle-deadlines): New function to toggle the value of
1020         `org-agenda-include-deadlines' and repaint the modeline
1021         indicators.
1022         (org-agenda-set-mode-name): Show "Deadlines" in the agenda
1023         modeline if deadline tasks are being displayed.
1025 2010-03-14  Carsten Dominik  <carsten.dominik@gmail.com>
1027         * org-table.el (org-table-eval-formula): Replace $# and @# by
1028         current column and row number.
1030 2010-03-12  Carsten Dominik  <carsten.dominik@gmail.com>
1032         * org.el (org-set-property, org-delete-property): Go back to
1033         prompting for the property.
1035         * org-latex.el (org-export-latex-make-header): Fully process
1036         author line.
1037         (org-export-latex-fontify-headline): Allow several arguments, not
1038         just one.
1039         (org-export-latex-fix-inputenc): Catch the error when
1040         `latexenc-coding-system-to-inputenc' is not defined.
1042         * org-agenda.el (org-agenda-skip-if-todo): New function.
1043         (org-agenda-skip-if): Add conditions for TODO keywords.
1044         (org-agenda-skip-if): Document the new todo conditions.
1046 2010-03-11  Mikael Fornius  <mfo@abc.se>
1048         * org.el (org-at-property-p): Check if we are inside a property
1049         drawer not just any drawer.
1050         (org-set-property, org-delete-property): When cursor is on a
1051         property key value pair do not prompt for property name instead
1052         use name at cursor.
1053         (org-ctrl-c-ctrl-c): Still do org-property-action when cursor is
1054         on the first line of a property drawer.
1055         (org-property-end-re): Spell check.
1057 2010-03-11  Carsten Dominik  <carsten.dominik@gmail.com>
1059         * org-exp.el (org-export-attach-captions-and-attributes): Add the
1060         properties to the entire table, in case the first line is
1061         removed.
1063         * org-archive.el (org-archive-reversed-order): New option.
1064         (org-archive-subtree, org-archive-to-archive-sibling): Use the new
1065         option `org-archive-reversed-order'.
1067 2010-03-10  Carsten Dominik  <carsten.dominik@gmail.com>
1069         * org-agenda.el (org-agenda-entry-types): New variable.
1070         (org-agenda-list): Use `org-agenda-entry-types'.
1071         (org-agenda-custom-commands-local-options): Support for setting
1072         `org-agenda-entry-types' as an option.
1073         (org-diary): Shift some documentation from here to the variable
1074         `org-agenda-entry-types'.
1076 2010-03-09  Carsten Dominik  <carsten.dominik@gmail.com>
1078         * org-latex.el (org-export-latex-make-header): Apply macros in
1079         author field.
1081         * org-clock.el (org-clocking-buffer, org-clocking-p): New function.
1082         (org-clock-select-task, org-clock-notify-once-if-expired)
1083         (org-clock-in, org-clock-out, org-clock-cancel, org-clock-goto)
1084         (org-clock-out-if-current, org-clock-save): Use the new functions.
1086 2010-03-08  Carsten Dominik  <carsten.dominik@gmail.com>
1088         * org-docbook.el (org-export-as-docbook): Remove unnecessary
1089         newline.
1090         (org-export-as-docbook): Remove unnecessary newline.
1091         (org-export-as-docbook): Fix problem with double footnote
1092         reference in one place.
1094         * org-exp.el (org-export-format-source-code-or-example): Remove
1095         unnecessary newline.
1097         * org.el (org-deadline, org-schedule): Allow rescheduling entries
1098         with repeaters.
1100         * org-table.el (org-table-convert-refs-to-rc): Better way to catch
1101         function calls that look like references.
1103         * org.el (org-open-at-point): Get link abbreviations from
1104         reference buffer.
1106 2010-03-07  Carsten Dominik  <carsten.dominik@gmail.com>
1108         * org-table.el (org-table-convert-refs-to-rc): Do not read arctan2
1109         as a reference.
1111 2010-03-05  Carsten Dominik  <carsten.dominik@gmail.com>
1113         * org.el (org-link-unescape): Solve issue with lower-case escapes.
1115 2010-03-04  Carsten Dominik  <carsten.dominik@gmail.com>
1117         * org-latex.el (org-export-latex-classes): Add
1118         \usepackage{latexsym} to all classes.
1120 2010-03-03  Carsten Dominik  <carsten.dominik@gmail.com>
1122         * org-html.el (org-export-as-html): Do not allow protected lines
1123         into the table of contents.
1125         * org-latex.el (org-export-latex-special-chars): Find subsequent
1126         occurrences of special characters.
1127         (org-export-latex-tables): Do not convert table-like stuff that is
1128         protected.
1130 2010-03-01  Carsten Dominik  <carsten.dominik@gmail.com>
1132         * org-list.el (org-toggle-checkbox): No errors when updating
1133         checkbox count fails because there is no heading.
1135 2010-02-27  Carsten Dominik  <carsten.dominik@gmail.com>
1137         * org-clock.el (org-clock-report-include-clocking-task): New
1138         option.
1139         (org-clock-sum): Add the current clocking task.
1141 2010-02-26  Carsten Dominik  <carsten.dominik@gmail.com>
1143         * org.el (org-cycle): Print a message when in a table.el table.
1144         (org-edit-special): Recognize the table.el context.
1145         (org-ctrl-c-ctrl-c): Print a message when in a table.el table.
1147         * org-src.el (org-at-table.el-p): Declare.
1148         (org-edit-src-code): Handle a special case for table.el editing.
1149         (org-edit-src-find-region-and-lang): Recognize the table.el
1150         context.
1152         * org-latex.el (org-export-latex-tables): Convert table.el
1153         tables.
1154         (org-export-latex-convert-table.el-table): New function.
1156         * org-html.el (org-html-expand): Fix table.el export.
1158         * org-latex.el (org-export-latex-preprocess): Protect footnotes in
1159         headings.
1161         * org-id.el (org-id-find-id-file): Fix bug when there is no hash
1162         table for the id locations.
1164         * org.el (org-read-date-analyze): Match American-style dates, like
1165         5/30 or 5/13/7.  Make sure cal-iso.el is loaded.  Don't force he
1166         current year when reading ISO and American dates.
1168 2010-02-25  Carsten Dominik  <carsten.dominik@gmail.com>
1170         * org.el (org-face-from-face-or-color): New function.
1171         (org-get-todo-face, org-font-lock-add-priority-faces)
1172         (org-get-tag-face): Use `org-face-from-face-or-color'.
1174         * org-faces.el (org-todo-keyword-faces, org-priority-faces): Allow
1175         simple colors as values.
1176         (org-faces-easy-properties): New option.
1178         * org-agenda.el (org-agenda-set-mode-name): Show if the agenda is
1179         restricted, as an agenda mode.
1180         (org-agenda-fontify-priorities): Allow simple colors as values.
1182 2010-02-25  Bastien Guerry  <bzg@altern.org>
1184         * org-timer.el (org-timer-current-timer): Renamed from
1185         `org-timer-last-timer'.
1186         (org-timer-timer1, org-timer-timer2, org-timer-timer3): Removed.
1187         (org-timer-cancel-timer, org-timer-show-remaining-time)
1188         (org-timer-set-timer): Update to use only one timer.
1190         * org.el (org-set-property): Remove useless space in the prompt.
1192 2010-02-25  Carsten Dominik  <carsten.dominik@gmail.com>
1194         * org-html.el (org-export-html-style-default): Add a default style
1195         for textareas.
1197         * org-exp.el (org-export-format-source-code-or-example): Fix
1198         textarea tag.
1200 2010-02-24  Bastien Guerry  <bzg@altern.org>
1202         * org-clock.el (org-clock-current-task): New variable to store
1203         last clocked in task.
1204         (org-clock-set-current, org-clock-delete-current): New functions.
1206 2010-02-24  Carsten Dominik  <carsten.dominik@gmail.com>
1208         * org-remember.el (org-remember-apply-template): Extend comment.
1209         (org-remember-handler): Implement clock sibling filing.
1211 2010-02-23  Carsten Dominik  <carsten.dominik@gmail.com>
1213         * org-publish.el (org-publish-all, org-publish-current-file)
1214         (org-publish-current-project): When called with prefix argument
1215         FORCE, also rebuild the validation file list.
1217         * org-latex.el (org-export-latex-preprocess): Protect footnotes in
1218         section headings.
1220 2010-02-21  Carsten Dominik  <carsten.dominik@gmail.com>
1222         * org-html.el (org-export-as-html-and-open): Kill product buffer
1223         if the user wants that.
1225         * org-latex.el (org-export-as-pdf-and-open): Kill product buffer
1226         if the user wants that.
1228         * org-exp.el (org-export-kill-product-buffer-when-displayed): New
1229         option.
1231         * org-agenda.el (org-batch-agenda-csv): Use the time property
1232         instead of the `time-of-day' property.
1234 2010-02-20  Carsten Dominik  <carsten.dominik@gmail.com>
1236         * org-timer.el (org-timer-start-hook, org-timer-stop-hook)
1237         (org-timer-pause-hook, org-timer-set-hook)
1238         (org-timer-cancel-hook): New hooks.
1239         (org-timer-start): Run `org-timer-start-hook'.
1240         (org-timer-pause-or-continue): Run `org-timer-pause-hook'.
1241         (org-timer-stop): Run `org-timer-stop-hook'.
1242         (org-timer-cancel-timers): Run `org-timer-cancel-hook'.
1244 2010-02-19  Carsten Dominik  <carsten.dominik@gmail.com>
1246         * org.el (org-reveal): Double prefix arg shows the subtree of the
1247         parent.
1249 2010-02-17  Carsten Dominik  <carsten.dominik@gmail.com>
1251         * org-agenda.el (org-search-view): Fix bug with searching full
1252         words in headlines in search view.
1253         (org-agenda-skip-deadline-prewarning-if-scheduled): New option.
1254         (org-agenda-get-deadlines): Suppress pre-warning if the entry is
1255         scheduled (if the user configures it so.
1257 2010-02-16  Carsten Dominik  <carsten.dominik@gmail.com>
1259         * org.el (org-hide-archived-subtrees): Don't jump to end of
1260         subtree if the match was not in a headline.
1261         (org-inside-latex-macro-p): Allow more complex arguments.
1262         (org-emphasize): Protect against use at end of buffer.
1264 2010-02-15  Carsten Dominik  <carsten.dominik@gmail.com>
1266         * org-agenda.el (org-agenda-align-tags): Avoid side effects on
1267         text properties.
1269 2010-02-14  Carsten Dominik  <carsten.dominik@gmail.com>
1271         * org-agenda.el (org-agenda-todo-ignore-scheduled): More allowed
1272         values.
1273         (org-agenda-todo-ignore-scheduled)
1274         (org-agenda-todo-ignore-deadlines): More control with different
1275         allowed values.
1276         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
1277         Honor the new option settings.
1279 2010-02-12  Carsten Dominik  <carsten.dominik@gmail.com>
1281         * org.el (org-get-location): Make sure the selection buffer is
1282         shown in the current frame.
1284         * org-ascii.el (org-export-ascii-table-widen-columns): New
1285         option.
1286         (org-export-ascii-preprocess): Realign tables to remove narrowing
1287         if `org-export-ascii-table-widen-columns' is set.
1289         * org-table.el (org-table-do-narrow): New variable.
1290         (org-table-align): Narrow only if `org-table-do-narrow' is t.
1292         * org.el (org-deadline, org-schedule): Allow updating if the
1293         relevant time stamp does not have a repeater, i.e. do not require
1294         that no time stamp has a repeater.
1296         * org-agenda.el (org-agenda-align-tags): Don't add a face to the
1297         new white space before the tags.
1299         * org-latex.el (org-export-as-latex): Do nit require the buffer to
1300         be visiting a file when only exporting to a buffer or string.
1301         (org-export-latex-fix-inputenc): Only save the buffer is there is
1302         a file name attached to it.
1304 2010-02-09  Dan Davison  <davison@stats.ox.ac.uk>
1306         * org-src.el (org-edit-src-exit): Widen before exiting edit buffers
1308 2010-02-08  Carsten Dominik  <carsten.dominik@gmail.com>
1310         * org.el (org-fontify-meta-lines-and-blocks): Honor
1311         `org-fontify-quote-and-verse-blocks'.
1313         * org-faces.el (org-fontify-quote-and-verse-blocks): New option.
1315 2010-02-03  Carsten Dominik  <carsten.dominik@gmail.com>
1317         * org.el (org-open-at-point): Also check for text property
1318         org-linked-text before offering collected links.
1320 2010-02-03  Stephen Eglen  <stephen@gnu.org>
1322         * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
1323         Optionally extract time specification from text and add to the
1324         timestamp.
1326 2010-02-03  Carsten Dominik  <carsten.dominik@gmail.com>
1328         * org-exp.el (org-html-entities): Fix typo.
1330         * org-latex.el (org-export-latex-make-header): Use \providecommand
1331         to make sure the \alert macro is defined.
1333         * org.el (org-format-latex-signal-error)
1334         (org-create-formula-image): Use `org-format-latex-signal-error'.
1336 2010-02-02  Stephen Eglen  <stephen@gnu.org>
1338         * org.el (org-store-link): For dired buffers, use
1339         default-directory as link name if dired-get-filename returns
1340         nil.
1342 2010-02-02  Carsten Dominik  <carsten.dominik@gmail.com>
1344         * org-exp.el (org-export-concatenate-multiline-links): The for
1345         protectedness at beginning of match.
1347         * org-latex.el (org-export-latex-fix-inputenc): Never leave the
1348         AUTO as a coding system, instead default to utf8.
1350 2010-02-01  Carsten Dominik  <carsten.dominik@gmail.com>
1352         * org.el (org-block-todo-from-children-or-siblings-or-parent)
1353         (org-block-todo-from-checkboxes): Respect the local variable
1354         value when deciding if blocking should be active.
1356         * org-latex.el (org-export-latex-make-header): Define the align
1357         macro if it is not yet defined.
1359         * org-agenda.el (org-agenda-insert-diary-make-new-entry): Call
1360         `org-insert-heading' with the INVISIBLE-OK argument.
1362         * org-mac-message.el (org-mac-message-insert-flagged): Call
1363         `org-insert-heading' with the INVISIBLE-OK argument.
1365         * org.el (org-insert-heading):  New argument INVISIBLE-OK.
1367         * org-agenda.el (org-agenda-view-mode-dispatch): Improve the
1368         prompt message.
1370         * org-html.el (org-html-level-start): Use the
1371         `html-container-class' text property to set an additional class
1372         for an outline container.
1374         * org-exp.el (org-export-remember-html-container-classes): New
1375         function.
1376         (org-export-preprocess-string): Call
1377         `org-export-remember-html-container-classes'.
1379         * org.el (org-cycle): Mention level cycling in the docstring.
1380         (org-default-properties): Add new property HTML_CONTAINER_CLASS.
1382         * org-remember.el (org-remember-apply-template): Do file insertion
1383         first.
1385 2010-01-31  Carsten Dominik  <carsten.dominik@gmail.com>
1387         * org-habit.el (org-habit-insert-consistency-graphs): Fix a
1388         problem with mis-aligned graphs when showing habits.
1390 2010-01-28  Mikael Fornius  <mfo@abc.se>
1392         * org.el (org-assign-fast-keys): Prefer keys used in keyword name
1393         when assigning. Begin using numerical characters when all in name
1394         is used up. This is to spare alphanumeric characters for better
1395         match with other keywords.
1397 2010-01-28  Carsten Dominik  <carsten.dominik@gmail.com>
1399         * org-exp.el (org-export-preprocess-hook): Improve documentation.
1401         * org-latex.el (org-export-latex-preprocess): More consistent
1402         conversion and protection of the words LaTeX and TeX.
1403         (org-export-latex-fontify-headline, org-export-latex-preprocess):
1404         Allow angle brackets in commands, for beamer.
1406 2010-01-26  Carsten Dominik  <carsten.dominik@gmail.com>
1408         * org-clock.el (org-clock-in): Improve the look of the clock line
1409         by formatting links.
1411 2010-01-24  Carsten Dominik  <carsten.dominik@gmail.com>
1413         * org-latex.el (org-export-latex-classes): Use AUTO as the place
1414         holder string for the coding system.  And improve the
1415         documentation.
1416         (org-export-latex-fix-inputenc): Only modify the coding system if
1417         it is given by the placeholder AUTO.
1419 2010-01-23  Carsten Dominik  <carsten.dominik@gmail.com>
1421         * org-clock.el (org-task-overrun-text): New option.
1422         (org-task-overrun, org-clock-update-period): New variables.
1423         (org-clock-get-clock-string, org-clock-update-mode-line): Mark
1424         overrun clock.
1425         (org-clock-notify-once-if-expired): Check if clock is overrun.
1427         * org-faces.el: New face `org-mode-line-clock-overrun'.
1429 2010-01-18  Jan Böcker  <jan.boecker@jboecker.de>
1431         * org.el (org-narrow-to-subtree): Position the end of the narrowed
1432         region before the line with the next heading, to prevent the user
1433         from prepending text to the next headline.
1435 2010-01-20  Stephen Eglen  <stephen@gnu.org>
1437         * org-agenda.el (org-get-time-of-day): Use
1438         org-agenda-time-leading-zero to allow leading zero (rather than
1439         space) for times.
1441 2010-01-20  Carsten Dominik  <carsten.dominik@gmail.com>
1443         * org-agenda.el (org-agenda-diary-entry-in-org-file): Make sure
1444         org-datetree.el is loaded.
1446         * org-datetree.el: autoload `org-datetree-find-day-create'
1448         * org-latex.el (org-export-latex-hyperref-format): New option.
1449         (org-export-latex-links): Use `org-export-latex-hyperref-format'.
1451 2010-01-18  Carsten Dominik  <carsten.dominik@gmail.com>
1453         * org-ctags.el (org-ctags-enable): Change order of functions.
1454         (org-ctags-create-tags): Add wildcard to file name expansion.
1456 2010-01-17  Carsten Dominik  <carsten.dominik@gmail.com>
1458         * org.el (org-entry-properties): Fix some important bugs.
1460 2010-01-16  Carsten Dominik  <carsten.dominik@gmail.com>
1462         * org.el (org-link-unescape, org-link-escape): Only use hexlify if
1463         the table is not explicitly given.
1465 2010-01-15  Carsten Dominik  <carsten.dominik@gmail.com>
1467         * org-clock.el (org-clock-out-when-done): Allow a list of keywords
1468         as value.
1469         (org-clock-out-if-current): Work with the new list value of
1470         `org-clock-out-when-done'.
1471         (org-clock-out, org-clock-out-if-current): Avoid circular logic
1472         between clocking out and state changes.
1474         * org-ctags.el (org-ctags-path-to-ctags): Better system-type test.
1476         * org-latex.el (org-export-latex-treat-backslash-char): Do not by
1477         accident protect a character that is before a backslash.
1479 2010-01-14  Carsten Dominik  <carsten.dominik@gmail.com>
1481         * org-agenda.el (org-diary-class): Use
1482         `org-order-calendar-date-args'.
1484         * org.el (org-order-calendar-date-args): New function.
1486         * org-exp.el (org-export-target-internal-links): Check for
1487         protectedness after the first bracket.
1489         * org.el (org-entry-properties): Don't match wrong-case TODO
1490         keywords.
1492         * org-agenda.el (org-agenda-schedule, org-agenda-deadline):
1493         Document that ARG is passed through to remove the date.
1494         (org-agenda-bulk-action): Accept prefix arg and pass it on.  Do
1495         not read a date when the user has given a `C-u' prefix.
1497 2010-01-11  Carsten Dominik  <carsten.dominik@gmail.com>
1499         * org-agenda.el (org-agenda-fix-displayed-tags): Fix bug when all
1500         tags are hidden.
1502 2010-01-10  Carsten Dominik  <carsten.dominik@gmail.com>
1504         * org-latex.el (org-export-latex-fix-inputenc): New function.
1505         (org-export-latex-inputenc-alist): New option.
1507         * org-exp.el (org-export): New key SPC to publish enclosing
1508         subtree.
1510 2010-01-09  Carsten Dominik  <carsten.dominik@gmail.com>
1512         * org-indent.el (org-indent-add-properties): Catch case when there
1513         is no headline in the buffer.
1515 2010-01-08  Carsten Dominik  <carsten.dominik@gmail.com>
1517         * org-exp.el (org-html-entities): Add checkmark symbol.
1519         * org-ascii.el (org-export-ascii-preprocess): Protect targets in
1520         verbatim code for ASCII export.
1522         * org.el (org-update-statistics-cookies): Also see checkboxes in
1523         ordered lists.
1525 2010-01-07  Carsten Dominik  <carsten.dominik@gmail.com>
1527         * org-agenda.el (org-agenda-view-mode-dispatch): Define the `L'
1528         key.
1530         * org-beamer.el (org-beamer-amend-header): Change the location
1531         where `org-beamer-header-extra' is inserted.
1533         * org.el (org-compute-latex-and-specials-regexp): Don't do BIND
1534         just for computing this regexp.
1536 2010-01-06  Carsten Dominik  <carsten.dominik@gmail.com>
1538         * org-beamer.el (org-beamer-frame-default-options): New option.
1539         (org-beamer-sectioning): Use default options if the user does not
1540         have defined any.
1541         (org-beamer-fix-toc): Put a frame around the table of contents.
1543         * org-exp.el (org-export-remove-comment-blocks-and-subtrees): Make
1544         sure case-folding works well when processing comment stuff.
1546         * org-latex.el (org-export-latex-after-save-hook): New hook.
1547         (org-export-as-latex): Run the new hook.
1549 2010-01-05  Carsten Dominik  <carsten.dominik@gmail.com>
1551         * org-beamer.el (org-beamer-environments-default): Add the note
1552         environments.
1553         (org-beamer-after-initial-vars): Allow several BEAMER_HEADER_EXTRA
1554         lines and collect and combine the content.
1555         (org-beamer-after-initial-vars): Check for note tags and make sure
1556         they will be seen like a property.
1558         * org.el (org-offer-links-in-entry): Fix bug when there is a
1559         single link.
1561         * org-exp.el (org-export): Make sure the mark is activated, also
1562         when `transient-mark-mode' is off.
1564         * org-agenda.el (org-agenda-search-view-always-boolean): New option.
1565         (org-agenda-search-view-search-words-only): Obsolete variable, is
1566         now an alias for `org-agenda-search-view-always-boolean'.
1567         (org-agenda-search-view-force-full-words): New option.
1568         (org-search-view): Improve docstring, and implement a better logic
1569         for Boolean and phrase searches.
1570         (org-agenda-last-search-view-search-was-boolean): New variable.
1571         (org-agenda-manipulate-query): Consider the type of the last
1572         search when modifying the search string.
1574 2010-01-04  Carsten Dominik  <carsten.dominik@gmail.com>
1576         * org-latex.el (org-export-as-latex): Do the first letbind in the
1577         right moment.
1579         * org-agenda.el (org-get-entries-from-diary): Add the new face to
1580         these entries.
1582         * org-faces.el (org-agenda-diary): New face.
1584         * org.el (org-make-link-regexps): Allow regexp-special characters
1585         in link types.
1586         (org-open-file): When in-emacs is `system', also force system
1587         opening, like when the value was `(16)'.
1588         (org-update-statistics-cookies): Handle entries without children.
1590         * org-exp.el
1591         (org-export-preprocess-before-normalizing-links-hook): New hook.
1592         (org-export-preprocess-string): Run the new hook.
1594         * org.el (org-offer-links-in-entry): Make RET open all links.
1596         * org-html.el (org-export-as-html): Remove any leftover display
1597         properties in the html file.
1599         * org-wl.el (org-wl-store-link): Work-around for format bug with
1600         text properties.
1602         * org-habit.el (org-habit-insert-consistency-graphs): Turn off
1603         invisibility while adding the graphs.
1605 2010-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
1607         * org-remember.el (org-select-remember-template): Use C letter to
1608         customize remember templates.
1610         * org-agenda.el (org-agenda-bulk-mark, org-agenda-bulk-unmark):
1611         Move cursor to next visible line.
1613 2010-01-02  Carsten Dominik  <carsten.dominik@gmail.com>
1615         * org-beamer.el (org-beamer-sectioning): Leave columns environment
1616         by specifying 0 or 1 for column width.
1617         (org-beamer-column-widths): Make 0 stand for 0.0.
1619 2010-01-01  Carsten Dominik  <carsten.dominik@gmail.com>
1621         * org-exp.el (org-export-mark-radio-links): Don't match inside
1622         <<target>>.
1624         * org.el (org-format-latex-header-extra): New variable.
1625         (org-format-latex): Set org-format-latex-header-extra from
1626         in-buffer stuff.
1627         (org-format-latex): Add org-format-latex-header-extra to the
1628         variables on which image creation depends.
1629         (org-create-formula-image): Add the header stuff from in-buffer
1630         settings.
1631         (org-read-date-analyze): Base the analysis for future preference
1632         on NOW, not on the default date.
1634         * org-inlinetask.el (org-inlinetask-export-handler): Add CSS class
1635         for TODO keyword in inline tasks.
1637         * org.el (org-log-note-headings): New headings for removing
1638         deadline or scheduling date.
1639         (org-deadline, org-schedule): Arrange for logging when removing a
1640         date.
1641         (org-add-log-note): Handle deadline and scheduling removal.
1643 2009-12-31  Carsten Dominik  <carsten.dominik@gmail.com>
1645         * org-exp.el (org-export-visible): Add LaTeX/pdf export.
1647 2009-12-28  Carsten Dominik  <carsten.dominik@gmail.com>
1649         * org-agenda.el (org-diary-class): New function.
1651 2009-12-24  Carsten Dominik  <carsten.dominik@gmail.com>
1653         * org-latex.el (org-export-latex-preprocess): Do process the text
1654         of a radio target.
1656 2009-12-20  Carsten Dominik  <carsten.dominik@gmail.com>
1658         * org.el (org-entry-properties): Add TIMESTAMP properties back
1659         in.
1661 2009-12-18  Carsten Dominik  <carsten.dominik@gmail.com>
1663         * org.el (org-all-time-keywords): New variable.
1664         (org-set-regexps-and-options): Set `org-all-time-keywords'.
1665         (org-entry-blocked-p): New function.
1666         (org-special-properties): Add BLOCKED as a new special property.
1667         (org-entry-properties): New optional argument SPECIFIC, only parse
1668         for this property when it is specified.
1669         (org-entry-get): Pass a SPECIFIC argument to
1670         `org-entry-properties'.
1672         * org-latex.el (org-export-as-latex): Preprocess TEXT as well.
1674 2009-12-17  Carsten Dominik  <carsten.dominik@gmail.com>
1676         * org-latex.el (org-export-latex-tables): No forced line end if
1677         there is no caption.
1679 2009-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
1681         * org-exp.el (org-html-entities): Add Euro symbols from Marvosym
1682         package.
1684         * org-latex.el (org-export-latex-tables): Only add a caption when
1685         macro in in longtable environments if one has been defined.
1687         * org-html.el (org-export-as-html): Only take title from buffer if
1688         not exporting body-only.
1690         * org-latex.el (org-export-latex-preprocess): Better version of
1691         the regular expression for protecting LaTeX macros.
1692         (org-export-latex-preprocess): Start searching for macros to
1693         protect from beginning of buffer.
1695         * org-exp.el (org-export-target-internal-links): Check for
1696         protectedness earlier in the string.
1698         * org-agenda.el (org-agenda-highlight-todo): Match TODO keywords
1699         case sensitively.
1701         * org-id.el (org-id-store-link): Match TODO keywords case
1702         sensitively.
1704         * org.el (org-heading-components, org-get-outline-path)
1705         (org-display-outline-path): Match TODO keywords case sensitively.
1707         * org-latex.el (org-export-as-latex): Ignore read-only
1708         properties.
1710         * org-exp.el (org-export-preprocess-string): Remove any
1711         `read-only' properties.
1713         * org-agenda.el (org-agenda-inactive-leader): New option.
1714         (org-agenda-get-timestamps): Use `org-agenda-inactive-leader'.
1715         (org-tags-view): Prompt for matcher if MATCH is an empty string.
1716         (org-todo-list): Prompt for matcher if ARG is an empty string.
1718 2009-12-15  Carsten Dominik  <carsten.dominik@gmail.com>
1720         * org.el (org-open-link-functions): New hook.
1721         (org-open-at-point): Run `org-open-link-functions'.
1723 2009-12-14  Carsten Dominik  <carsten.dominik@gmail.com>
1725         * org-agenda.el (org-agenda-date-prompt): Allow inactive time
1726         stamps as well.
1728         * org.el (org-inhibit-startup-visibility-stuff): New variable.
1729         (org-mode): Don't do startup visibility if inhibited.
1730         (org-outline-overlay-data, org-set-outline-overlay-data): New
1731         functions.
1732         (org-save-outline-visibility): New macro.
1733         (org-log-note-headings): Document that one should not change the
1734         `state' note format.
1736 2009-12-13  Carsten Dominik  <carsten.dominik@gmail.com>
1738         * org.el (org-make-link-regexps): Capture link path into a group.
1740 2009-12-12  Carsten Dominik  <carsten.dominik@gmail.com>
1742         * org-beamer.el (org-beamer-after-initial-vars): Do not overwrite
1743         the options plist.
1745 2009-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
1747         * org.el (org-startup-with-beamer-mode): New option.
1748         (org-property-changed-functions)
1749         (org-property-allowed-value-functions): New hooks.
1750         (org-entry-put, org-property-get-allowed-values): Run the new
1751         hooks.
1752         (org-property-next-allowed-value): Run the new hooks.
1754         * org-exp.el (org-export-select-backend-specific-text): Add the
1755         special beamer tags.
1757         * org-beamer.el
1758         (org-export-preprocess-before-selecting-backend-code-hook): New
1759         file.
1761         * org-latex.el (org-export-latex-after-initial-vars-hook): New hook.
1762         (org-export-as-latex): Run
1763         `org-export-latex-after-initial-vars-hook'.
1764         (org-export-latex-format-toc-function)
1765         (org-export-latex-make-header): Call
1766         `org-export-latex-format-toc-function'.
1768         * org.el (org-fill-template): Make template searches case sensitive.
1770         * org-exp.el (org-export): Use "1" as a sign to export only the
1771         subtree.
1773         * org-colview-xemacs.el (org-columns-edit-value): Use
1774         org-unrestricted property.
1776         * org-colview.el (org-columns-edit-value):  Use
1777         org-unrestricted property.
1779         * org.el (org-compute-property-at-point): Set org-unrestricted
1780         text property if the list contains ":ETC".
1781         (org-insert-property-drawer):  Use
1782         org-unrestricted property.
1784         * org-exp.el
1785         (org-export-preprocess-before-selecting-backend-code-hook): New hook.
1786         (org-export-preprocess-string): Run
1787         `org-export-preprocess-before-selecting-backend-code-hook'.
1789         * org-xoxo.el (org-export-as-xoxo): Run `org-export-first-hook'.
1791         * org-latex.el (org-export-region-as-latex): Run
1792         `org-export-first-hook'.
1794         * org-html.el (org-export-as-html): Run `org-export-first-hook'.
1796         * org-docbook.el (org-export-as-docbook): Run
1797         `org-export-first-hook'.
1799         * org-ascii.el (org-export-as-ascii): Run `org-export-first-hook'.
1801         * org-exp.el (org-export-first-hook): New hook.
1803 2009-12-10  Carsten Dominik  <carsten.dominik@gmail.com>
1805         * org-list.el (org-previous-item): Exit at the beginning of the
1806         buffer.
1808         * org-id.el (org-id-locations-save): Only write the id locations
1809         if any are defined.
1811         * org-archive.el (org-archive-all-done): Make this work in a file
1812         with org-odd-levels-only set.
1814         * org.el (org-get-refile-targets): Catch the case when a buffer
1815         has no file.
1817         * org-latex.el (org-export-as-latex): Cleanup forced line ends
1818         where they are not needed.
1819         (org-export-latex-subcontent): Remove unnecessary newlines.
1821 2009-12-09  Carsten Dominik  <carsten.dominik@gmail.com>
1823         * org-latex.el (org-export-latex-make-header): Remove \obeylines.
1824         (org-export-latex-fontify): Fix regexp bug that takes special
1825         care of protecting the right boundary characters in emphasis
1826         matches.
1827         (org-export-latex-preprocess): Allow multiple arguments to latex
1828         macros.
1830         * org.el (org-make-link-regexps): Use John Gruber's regexp for
1831         urls.
1833         * org-macs.el (org-re): Interpret :punct: in regexps.
1835         * org-exp.el (org-export-replace-src-segments-and-examples): Also
1836         take the final newline after the END line.
1838         * org.el (org-clean-visibility-after-subtree-move): Only fix
1839         entries that are not entirely invisible already.
1840         (org-insert-link): Respect org-link-file-path-type for
1841         "docview:" links in addition to "file:" links.
1843 2009-12-03  Carsten Dominik  <carsten.dominik@gmail.com>
1845         * org-exp.el (org-export-format-source-code-or-example): Avoid
1846         additional extra white lines in LaTeX.
1848         * org-list.el (org-list-parse-list): Leave empty lines after the
1849         list, don't consider them as part of the list.
1851         * org-mobile.el (org-mobile-sumo-agenda-command): Allow tagstodo
1852         searches.
1854         * org-clock.el (org-clock-select-task): Convert integer to
1855         character for XEmacs.
1857 2009-12-02  Carsten Dominik  <carsten.dominik@gmail.com>
1859         * org-clock.el (org-clock-resolve): Make reading a char XEmacs
1860         compatible.
1862 2009-11-30  Tassilo Horn  <tassilo@member.fsf.org>
1864         * org.el (org-complete-tags-always-offer-all-agenda-tags): New
1865         variable.
1866         (org-set-tags): Use it.
1868 2009-11-30  Carsten Dominik  <carsten.dominik@gmail.com>
1870         * org-list.el (org-empty-line-terminates-plain-lists): Update
1871         docstring.
1873         * org.el (org-format-latex): Fix link creation for processed latex
1874         snippets.
1876 2009-11-29  Carsten Dominik  <carsten.dominik@gmail.com>
1878         * org-footnote.el (org-footnote-normalize): Protect replacement
1879         text.
1881         * org.el (org-inside-latex-macro-p): Save match data.
1883 2009-11-28  Jan Böcker  <jan.boecker@jboecker.de>
1885         * org-docview.el: New file.
1887 2009-11-27  Carsten Dominik  <carsten.dominik@gmail.com>
1889         * org-latex.el (org-export-latex-class-options): New variable.
1890         (org-export-latex-set-initial-vars): Use the class options.
1892         * org.el (org-forward-same-level): Stop at headings that start
1893         with an invisible character.
1894         (org-additional-option-like-keywords): Add LaTeX_CLASS_OPTIONS.
1896 2009-11-26  Carsten Dominik  <carsten.dominik@gmail.com>
1898         * org-footnote.el (org-footnote-normalize): Don't take optional
1899         arguments in LaTeX macros as footnotes.
1901         * org.el (org-inside-latex-macro-p): New function.
1903         * org-latex.el (org-latex-to-pdf-process): Change customization
1904         group to `org-export-pdf'.
1906         * org-agenda.el (org-agenda-get-blocks): Look at time string also
1907         on days after the first one.
1909         * org.el (org-insert-heading): Also check for item before assuming
1910         before-first-heading condition.
1912         * org-latex.el (org-latex-to-pdf-process): Fix typo in group tag.
1913         (org-export-pdf-logfiles): New option.
1914         (org-export-as-pdf): Use `org-export-pdf-logfiles'.
1915         (org-export-pdf-logfiles): Fix customization type.
1917         * org.el (org-insert-link): Improve error message when there is no
1918         default link to select with RET.
1920         * org-agenda.el (org-agenda-filter-by-tag): Use char argument from
1921         parameter list.
1923 2009-11-25  Carsten Dominik  <carsten.dominik@gmail.com>
1925         * org-latex.el (org-export-latex-parse-global)
1926         (org-export-latex-parse-content)
1927         (org-export-latex-parse-subcontent): Use
1928         `org-re-search-forward-unprotected'.
1929         (org-export-as-pdf): Remove log files produced by XeTeX.
1931         * org-macs.el (org-re-search-forward-unprotected): New function.
1933 2009-11-25  James TD Smith  <ahktenzero@mohorovi.cc>
1935         * org-colview.el (org-agenda-colview-summarize): Sort out some
1936         confusion between properties and titles, which resulted in
1937         agenda summaries not working if a title was set for a column.
1939 2009-11-24  Carsten Dominik  <carsten.dominik@gmail.com>
1941         * org-mobile.el (org-mobile-agendas): New option.
1942         (org-mobile-sumo-agenda-command): Select the right agendas.
1944         * org-latex.el (org-export-latex-format-image): Preserve the
1945         original-indentation property.
1947 2009-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
1949         * org-clock.el (org-clock-insert-selection-line): Catch error when
1950         an old tasks no longer exists.
1952         * org-latex.el (org-export-as-pdf): Remove also the .idx file.
1953         (org-export-as-pdf): Don't remove the old PDF file before making
1954         the new one.
1956         * org-mouse.el (org-mouse-end-headline, org-mouse-insert-item)
1957         (org-mouse-context-menu): Use `org-looking-back'.
1959         * org.el (org-cycle-level): Use `org-looking-back'.
1961         * org-list.el (org-cycle-item-indentation): Use
1962         `org-looking-back'.
1964         * org-compat.el (org-looking-back): New function.
1966         * org.el (org-insert-heading): Catch before-first-headline when
1967         inserting a headline.
1969 2009-11-22  Carsten Dominik  <carsten.dominik@gmail.com>
1971         * org-latex.el (org-export-latex-format-image): Indent figure
1972         environment, so that it does not interrupt plain list.
1974         * org.el (org-open-at-point): Allow long link descriptions.
1976 2009-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
1978         * org-html.el (org-export-as-html): Remove empty lines at the
1979         beginning of the exported text.
1980 ;; Local Variables:
1981 ;; coding: utf-8
1982 ;; add-log-time-zone-rule: t
1983 ;; End:
1985     Copyright (C) 2008  Free Software Foundation, Inc.
1987   This file is part of GNU Emacs.
1989   GNU Emacs is free software: you can redistribute it and/or modify
1990   it under the terms of the GNU General Public License as published by
1991   the Free Software Foundation, either version 3 of the License, or
1992   (at your option) any later version.
1994   GNU Emacs is distributed in the hope that it will be useful,
1995   but WITHOUT ANY WARRANTY; without even the implied warranty of
1996   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1997   GNU General Public License for more details.
1999   You should have received a copy of the GNU General Public License
2000   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
2002 ;; arch-tag: a9bdcf06-7c2d-4b5a-bf7a-c5e7b706f67c