Start displaying colors from the first scheduled date
[org-mode.git] / lisp / ChangeLog
blob99ec6d0e661b6080b433492f92341ed239f7f459
1 2009-10-20  John Wiegley  <jwiegley@gmail.com>
3         * org-habit.el (org-habit-build-graph): Start displaying colors
4         from the first scheduled date, if that date is earlier than the
5         first completion date.
7         * org-habit.el: Changed all "color" variables to faces, and made
8         them appropriate for light and dark backgrounds.
10         * org-habit.el (org-habit-duration-to-days): Made this function
11         more general.
12         (org-habit-parse-todo): Parse the new ".+N/N" style repeater.
14         * org-agenda.el (org-agenda-get-deadlines): Removed all mention of
15         habits, since they don't use DEADLINE anymore.
17         * org.el (org-repeat-re, org-display-custom-time)
18         (org-timestamp-change): Extended to support the new ".+N/N"
19         syntax, used for habits.
21         * org-clock.el (org-clock-resolve-clock): Fixed an incorrect
22         variable reference.
24         * org-agenda.el (org-agenda-set-mode-name): Show Habit in the
25         modeline when habits are being displayed (if that module is being
26         loaded).
28 2009-10-20  Carsten Dominik  <carsten.dominik@gmail.com>
30         * org-agenda.el (org-agenda-next-line): New command.
31         (org-agenda-previous-line): New commands.
32         (org-agenda-show-and-scroll-up, org-agenda-show-scroll-down): New
33         commands.
34         (org-agenda-follow-mode): Do the follow immediately if the mode is
35         turned on here.
36         (previous-line, next-line): Replace keys with the corresponding
37         org functions.
38         (org-agenda-mode-map): Bind backspace and delete to the scrolling
39         command.
41         * org.el (org-icompleting-read): Turn off partial completion mode
42         for the duration of this completion round.
44         * org-latex.el (org-export-latex-fontify-headline): Protect TeX
45         macros in author lines and similar stuff.
47         * org.el (org-file-tags): Fix docstring.
48         (org-get-buffer-tags): Add the #+FILETAGS tags.
49         ("ecb"): Maks ecb show context after jumping into an Org file.
51 2009-10-20  John Wiegley  <johnw@newartisans.com>
53         * org-agenda.el (org-finalize-agenda): Draw habit consistency
54         graphs after everything else in the buffer has been setup.
56 2009-10-19  Carsten Dominik  <carsten.dominik@gmail.com>
58         * org-mobile.el (org-mobile-apply): Count success and failure.
60         * org.el (org-indent-line-function): Fix regexp replace problem.
62 2009-10-19  John Wiegley  <johnw@newartisans.com>
64         * org-clock.el (org-clock-disable-clock-resolution): New
65         customization variable that disable automatic clock resolution on
66         clock in.
67         (org-clock-in): If `org-clock-disable-clock-resolution' is set, do
68         not automatically resolve anything.  This is does not affect
69         idle-time resolution, however, if `org-clock-idle-time' is set.
71 2009-10-19  John Wiegley  <johnw@newartisans.com>
73         * org-habit.el: New file, which implements code to build a "habit
74         consistency graph".
76         * org-agenda.el (org-agenda-get-deadlines)
77         (org-agenda-get-scheduled): Display consistency graphs when
78         outputting habits into the agenda.  The graphs are always relative
79         to the current time.
80         (org-format-agenda-item): Added new parameter `habitp', which
81         indicates whether we are formatting a habit or not.  Do not
82         display "extra" leading information if habitp is true.
84         * org.el (org-repeat-re): Improved regexp to include .+ and ++
85         leaders for repeat strings.
86         (org-get-repeat): Now takes a string parameter `tagline', so the
87         caller can obtain the SCHEDULED repeat, or the DEADLINE repeat.
89 2009-10-19  John Wiegley  <johnw@newartisans.com>
91         * org-agenda.el (org-agenda-auto-exclude-function): New
92         customization variable for allowing the user to create an "auto
93         exclusion" filter for doing context-aware auto tag filtering.
94         (org-agenda-filter-by-tag): Changes to support the use of
95         `org-agenda-auto-exclude-function'.  See the new manual addition,.
97 2009-10-18  John Wiegley  <johnw@newartisans.com>
99         * org.el (org-files-list): Don't attempt to return a file name for
100         Org buffers which have no associated file.
102         * org-agenda.el (org-agenda-do-action): Fixed a typo.
104 2009-10-18  Carsten Dominik  <carsten.dominik@gmail.com>
106         * org-mobile.el (org-mobile-locate-entry): Interpret files
107         relative to org-directory.
108         (org-mobile-inbox-for-pull): Document the best location for this
109         file.
110         (org-mobile-check-setup): Verify `org-directory'.
111         (org-mobile-create-index-file): Sort the files to be listed in
112         index.org.
114 2009-10-17  Carsten Dominik  <carsten.dominik@gmail.com>
116         * org-clock.el (org-clock-resolve, org-resolve-clocks)
117         (org-emacs-idle-seconds): Use `org-float-time' instead of
118         `time-to-seconds'
120 2009-10-17  Carsten Dominik  <carsten.dominik@gmail.com>
122         * org-agenda.el (org-agenda-sorting-strategy): Fix customization
123         type.
125         * org.el (org-pre-cycle-hook): Document that `empty' can also be
126         the value of ARG when doing local cycling.
128 2009-10-17  John Wiegley  <johnw@newartisans.com>
130         * org-clock.el (org-clock-resolve-clock): If keeping or
131         subtracting time results in a clock out at a time in the past, and
132         if the resolution occurred due to idleness or invoking `M-x
133         org-resolve-clocks', remember that past moment in time.  On the
134         next clock in, the user will be prompted to see if they want to
135         back-date their new clock to then.
136         (org-clock-resolve): Do not jump the user to the location of a
137         dangling clock if the resolution is occuring due to an idle
138         timeout.  In that case there is typically only one dangling clock,
139         the active one, and there is no value gained by shuffling their
140         windows around to show it to them.  Being prompted to resolve an
141         idle clock should be as inobtrusive as possible.
142         (org-resolve-clocks-if-idle): New function that resolves only the
143         currently active clock if the user has exceeded the time returned
144         by `org-user-idle-seconds', based on the value of
145         `org-clock-idle-time'.
146         (org-clock-in): If, after resolving clocks, 
147         (org-clock-out): Cancel the `org-clock-idle-timer' on clock out.
149         * org-clock.el (org-clock-resolve-clock): New function that
150         resolves a clock to a specific time, closing or resuming as need
151         be, and possibly even starting a new clock.
152         (org-clock-resolve): New function used by `org-resolve-clocks'
153         that sets up for the call to `org-clock-resolve-clock'.  It
154         determines the time to resolve to based on a single-character
155         selection from the user to either keep time, subtract away time or
156         cancel the clock.
157         (org-resolve-clocks): New user command which resolves dangling
158         clocks -- that is, open but not active -- anywhere in the file
159         list returned by `org-files-list'.
160         (org-clock-in): Automatically resolve dangling clocks whenever a
161         user clocks in.
162         (org-clock-cancel): If the user cancels the solely clock in a
163         LOGBOOK, remove the empty drawer.
165         * org-clock.el (org-clock-idle-time): New user customizable option
166         for detecting whether the user has left a clock idle.  Note: it is
167         only used in this commit to test whether it's worthwhile to check
168         OS X to get the Mac user's current idle time.  If the Emacs idle
169         time is less than the value, the user hasn't been away long enough
170         to be worth checking (a more expensive test than just getting
171         Emacs idle time).
172         (org-user-idle-seconds, org-mac-idle-seconds)
173         (org-emacs-idle-seconds): This three functions, in conjunction
174         with the user customization variable `org-clock-idle-time', return
175         the number of seconds (as a floating point) that the user has been
176         away from their Emacs (or, if running on OS X, their computer).
178         * org-clock.el (org-find-open-clocks): New function that returns a
179         list of all open clocks in the given FILE.  Note that each clock
180         it returns is a cons cell of the format (MARKER . START-TIME).
181         This "clock" value is used by several of the new clock module
182         utility functions.
183         (org-is-active-clock): New inline function which tests whether the
184         given clock value is the same as the currently active clock.
185         Returns non-nil if this is the case.
186         (org-with-clock-position): New macro that evaluates FORMS with
187         point in the buffer and at the position of the given clock.
188         Changes to the current clock are global.
189         (org-with-clock): New macro that evaluates FORMS with point in the
190         buffer and at the position of the given clock.  However, changes
191         to the current clock are local and have no effect on the user's
192         active clock.  This allows, for example, far any clock to be
193         cancelled without cancelling the active clock.
194         (org-clock-clock-in): New inline function that switches the active
195         clock to the given clock.  If either the argument RESUME, or the
196         global `org-clock-in-resume', are non-nil, it will resume a clock
197         that was previously left open.
198         (org-clock-clock-out): New inline function that clocks out the
199         given clock value without affecting the currently active clock.
200         (org-clock-clock-cancel): New inline function that cancels the
201         given clock value without affecting the currently active clock.
203         * org-clock.el (org-clock-in): Before creating
204         `org-clock-mode-line-timer', check to make sure an older timer is
205         not currently running.
206         (org-clock-out): Accept new third parameter `at-time', which
207         permits a clock to be clocked out at a specific time.  Note that
208         no attempt is made to verify that the clock out time is later than
209         the clock in time.
211         * org.el (org-files-list): New utility function for returning a
212         list of all open org-mode buffers, plus all files used to build
213         the agenda buffer.  Note that not all the files will necessarily
214         be visited by a buffer at time of call.
215         (org-entry-beginning-position): Like the function
216         `line-beginning-position', this inline function returns the
217         beginning position of the current heading/entry.
218         (org-entry-end-position): Like the function `line-end-position',
219         this inline function returns the end position of the current
220         heading/entry.
222 2009-10-16  Carsten Dominik  <carsten.dominik@gmail.com>
224         * org-agenda.el (org-agenda-list): Mark the all-todo items line as
225         a header line.
227 2009-10-15  Carsten Dominik  <carsten.dominik@gmail.com>
229         * org-exp.el (org-inlinetask-remove-END-maybe): Declare function.
231 2009-10-14  Carsten Dominik  <carsten.dominik@gmail.com>
233         * org-agenda.el (org-agenda-filter-make-matcher): Allow to filter
234         entries that have no tags.
235         (org-agenda-search-view): New customize group.
236         (org-agenda-search-view-search-words-only): New option.
237         (org-search-view): Implement substring search.
239 2009-10-13  Carsten Dominik  <carsten.dominik@gmail.com>
241         * org.el (org-outline-level): Add doc string.
243 2009-10-12  Carsten Dominik  <carsten.dominik@gmail.com>
245         * org-inlinetask.el (org-inlinetask-export): Re-introduce
246         variable.
247         (org-inlinetask-export-handler): Only export inline task if the
248         user option calls for it.
250 2009-10-10  Carsten Dominik  <carsten.dominik@gmail.com>
252         * org-exp.el (org-export-handle-export-tags): Remove inlinetask
253         END if present.
255 2009-10-07  Carsten Dominik  <carsten.dominik@gmail.com>
257         * org-latex.el (org-export-latex-tables): Don't format in
258         protected regions.
260 2009-10-06  Carsten Dominik  <carsten.dominik@gmail.com>
262         * org-src.el (org-edit-src-code)
263         (org-edit-src-find-region-and-lang, org-edit-src-exit): Handle
264         macro editing.
266         * org-agenda.el (org-prefix-category-max-length): New variable.
267         (org-format-agenda-item): Use `org-prefix-category-max-length'.
268         (org-compile-prefix-format): Set `org-prefix-category-max-length'.
270 2009-10-03  Carsten Dominik  <carsten.dominik@gmail.com>
272         * org-mobile.el (org-mobile-create-index-file): Improve the
273         listing of tags and todo keywords.
275         * org-latex.el (org-export-latex-format-image): New function.
276         (org-export-latex-links): Use `org-export-latex-format-image'.
278 2009-10-02  Carsten Dominik  <carsten.dominik@gmail.com>
280         * org-inlinetask.el (org-inlinetask-get-current-indentation)
281         (org-inlinetask-remove-terminator): New functions.
282         (org-inlinetask-export-handler): Terminate the description list.
284         * org-exp.el (org-export-select-backend-specific-text): Remove the
285         region markers.
287         * org-inlinetask.el (org-inlinetask-export-handler): fix bug for
288         tasks without content.
290         * org-clock.el: Make sure the clock-in target position does not
291         move to a different node by widening the buffer.
293         * org-html.el (org-export-html-format-image): Wrap image into
294         figure div only when there is a caption.
296         * org-archive.el (org-archive-mark-done): Change default value to
297         nil.
299 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
301         * org.el (org-context): Call `bobp', not `eobp'.
303         * org-clock.el (org-clock-cancel): Remove quotes from marker
304         variables.
306         * org.el (org-read-date-prefer-future): New allowed value `time'.
307         (org-read-date-analyze): Shift day to tomorrow depending on time
308         entered and value of `org-read-date-prefer-future'.
310 2009-09-30  Carsten Dominik  <carsten.dominik@gmail.com>
312         * org.el (org-set-tags-to): New command.
314         * org-mobile.el (org-mobile-action-alist): Add more options and
315         update the docstring.
316         (org-mobile-apply-flags): Parse for and use the data.
318         * org-latex.el (org-export-latex-set-initial-vars): Also check in
319         the plist.
321         * org.el (org-additional-option-like-keywords): Add LATEX_CLASS
322         keyword.
324         * org-exp.el (org-infile-export-plist): Add LATEX_CLASS keyword.
326 2009-09-29  Carsten Dominik  <carsten.dominik@gmail.com>
328         * org-inlinetask.el (org-inlinetask-export): Option removed.
329         (org-inlinetask-export-handler): Better export.
331         * org-xoxo.el (org-export-xoxo-final-hook): New hook.
332         (org-export-as-xoxo): Run the new hook.
334         * org-html.el (org-export-html-final-hook): New hook.
335         (org-export-as-html): Run the new hook.
337         * org-docbook.el (org-export-docbook-final-hook): New hook.
338         (org-export-as-docbook): Run the new hook.
340         * org-ascii.el (org-export-ascii-final-hook): New hook.
341         (org-export-as-ascii): Run the new hook.
343         * org-mobile.el (org-mobile-create-sumo-agenda): Call
344         `org-sore-agenda-views' instead of `org-batch-store-agenda-views'.
346         * org-latex.el (org-export-latex-treat-sub-super-char): Allow a
347         space character as the character before the ^/_.
348         (org-export-latex-final-hook): New hook.
349         (org-export-as-latex): Run `org-export-latex-final-hook'.
351 2009-09-28  Carsten Dominik  <carsten.dominik@gmail.com>
353         * org-macs.el (org-if-unprotected-at): Fix docstring.
355         * org-agenda.el (org-agenda-change-all-lines): Handle invisible
356         text in the prefix (if category is a link).
358         * org-latex.el (org-export-latex-preprocess): Deal properly with
359         empty lines in verse environments.
361         * org.el (org-format-latex-header): Inline fullpage.sty.
363         * org-footnote.el (org-footnote-create-definition): Reveal context
364         to add a new footnote definition.
366         * org-mobile.el (org-mobile-files-alist): Add the list of tags to
367         the index file.
368         (org-mobile-files): New option.
369         (org-mobile-files-alist, org-mobile-checksum-files): New variable.
370         (org-mobile-prepare-file-lists, org-mobile-files-alist): New
371         functions.
372         (org-mobile-push): Start by creating the files lists.
373         (org-mobile-copy-agenda-files): Move killing the buffer to after
374         the save-excursion has exited.
375         (org-mobile-write-checksums): Write checksums also for files in
376         sub-directories.
378         * org.el (org-ctrl-c-ctrl-c): Pass prefix arg to
379         org-table-recalculate when cursor is in TBLFM line.
381         * org-list.el (org-renumber-ordered-list): Fix cursor position
382         when bullet length has changed.
384 2009-09-26  Carsten Dominik  <carsten.dominik@gmail.com>
386         * org.el (org-format-latex): Mention `org-format-latex-options' in
387         the docstring.
389 2009-09-25  Carsten Dominik  <carsten.dominik@gmail.com>
391         * org.el (org-agenda-get): New function.
393         * org-agenda.el (org-agenda-post-command-hook): No longer move
394         point away from end of line.
395         (org-agenda-add-entry-text, org-agenda-collect-markers)
396         (org-finalize-agenda, org-agenda-mark-clocking-task)
397         (org-agenda-dim-blocked-tasks, org-agenda-entry-text-show-here)
398         (org-agenda-entry-text-show, org-agenda-highlight-todo)
399         (org-agenda-compare-effort, org-agenda-filter-apply)
400         (org-agenda-later, org-agenda-change-time-span)
401         (org-agenda-post-command-hook, org-agenda-show-priority)
402         (org-agenda-show-tags, org-agenda-goto, org-agenda-kill)
403         (org-agenda-archive, org-agenda-archive-to-archive-sibling)
404         (org-remove-subtree-entries-from-agenda, org-agenda-refile)
405         (org-agenda-open-link, org-agenda-copy-local-variable)
406         (org-agenda-switch-to, org-agenda-check-no-diary)
407         (org-agenda-tree-to-indirect-buffer, org-agenda-todo)
408         (org-agenda-add-note, org-agenda-change-all-lines)
409         (org-agenda-priority, org-agenda-set-tags)
410         (org-agenda-set-property, org-agenda-set-effort)
411         (org-agenda-toggle-archive-tag, org-agenda-date-later)
412         (org-agenda-show-new-time, org-agenda-date-prompt)
413         (org-agenda-schedule, org-agenda-deadline, org-agenda-action)
414         (org-agenda-clock-in, org-agenda-bulk-mark)
415         (org-agenda-bulk-unmark, org-agenda-show-the-flagging-note): Use
416         `org-get-at-bol'.
418         * org-colview.el (org-columns-display-here)
419         (org-columns-edit-allowed, org-agenda-columns): Use
420         `org-get-at-bol'.
422 2009-09-25  Carsten Dominik  <carsten.dominik@gmail.com>
424         * org.el (org-special-ctrl-a/e): Improve documentation and
425         customize type.
426         (org-end-of-line): Don't jump to after the ellipsis.
427         (org-mode-map): Bind <home> and <end> as well.
429 2009-09-24  Carsten Dominik  <carsten.dominik@gmail.com>
431         * org.el (org-fontify-meta-lines-and-blocks): Treat lines with a
432         space after #+ as comments.
433         (org-open-at-point): Run `org-follow-link-hook' always.
435         * org-latex.el (org-export-latex-emph-format): Use better commands
436         to insert special characters in verbatim snippets.
438 2009-09-22  Carsten Dominik  <carsten.dominik@gmail.com>
440         * org-faces.el (org-copy-face): New function.  Use it to create
441         various faces formerly created by using `copy-face'.
443         * org-agenda.el (org-prepare-agenda): Don't officially mark this
444         window dedicated.
445         (org-agenda-quit): Kill the frame containing the agenda window if
446         that frame was created for the agenda.
448 2009-09-21  Carsten Dominik  <carsten.dominik@gmail.com>
450         * org-agenda.el (org-agenda-date-prompt): Mark the changed time
451         stamp in the agenda.
453 2009-09-19  Carsten Dominik  <carsten.dominik@gmail.com>
455         * org-mobile.el (org-mobile-create-index-file): Add the list of
456         TODO keywords, and the list of drawers to the index file.
458         * org-agenda.el (org-prepare-agenda): Reset
459         `org-drawers-for-agenda'.
460         (org-prepare-agenda): Uniquify list of drawers.
462         * org.el (org-complex-heading-regexp-format): New variable.
463         (org-set-regexps-and-options): Define
464         `org-complex-heading-regexp-format'.
465         (org-drawers-for-agenda): New variable.
466         (org-map-entries): Bind `org-drawers-for-agenda'.
467         (org-prepare-agenda-buffers): Add to `org-drawers-for-agenda'.
469         * org-remember.el (org-go-to-remember-target)
470         (org-remember-handler): Use `org-complex-heading-regexp-format'.
472 2009-09-18  Carsten Dominik  <carsten.dominik@gmail.com>
474         * org-agenda.el (org-agenda-highlight-todo): Fix text property
475         problem.
477         * org-mobile.el (org-mobile-capture-file): Use `mobileorg.org' as
478         the capture file, and make it non-configurable.
480         * org.el (org-on-heading-p, org-at-heading-p): Make sure these are
481         always with `invisible-ok'.
482         (org-store-link): No error when there is nothing to link to in the
483         agenda.
485         * org-list.el (org-update-checkbox-count): Insert changed cookie
486         before the old, to avoid problems with invisibility at the end of
487         the line.
488         (org-update-checkbox-count): Insert changed cookie before the old,
489         to avoid problems with invisibility at the end of the line.
491         * org.el (org-sort-entries-or-items): Include the final newline.
492         (org-fontify-meta-lines-and-blocks): Add indented dynamic block
493         lines for fontification.
494         (org-dblock-start-re, org-dblock-end-re): Allow indentation.
495         (org-prepare-dblock): Store the current indentation of the BEGIN
496         line.
497         (org-update-dblock): Apply the indentation of the begin line to
498         the rest of the block.
499         (org-ctrl-c-ctrl-c): Also find indented dblock lines.
500         (org-startup-folded): New allowed value `showeverything'.
501         (org-startup-options): Add STARTUP keyword `showeverything'.
502         (org-set-startup-visibility): Respect value `showeverything' in
503         org-startup-folded.
505 2009-09-17  Carsten Dominik  <carsten.dominik@gmail.com>
507         * org.el (org-closest-date): Fix issue with past preference.
509         * org-mobile.el (org-mobile-apply-flags): Require `org-archive'.
511         * org-archive.el (org-archive-set-tag)
512         (org-archive-subtree-default): New commands.
514         * org-mobile.el (org-mobile-create-index-file): Fix link to
515         capture file.
516         (org-mobile-copy-agenda-files): Create the capture file if it does
517         not exist.
519         * org-clock.el (org-clock-clocktable-default-properties): New
520         option.
521         (org-clock-report): Use
522         `org-clock-clocktable-default-properties'.
524 2009-09-16  Carsten Dominik  <carsten.dominik@gmail.com>
526         * org.el (org-iswitchb-completing-read): Fix typo.
528         * org-crypt.el: New file.
530         * org.el: Add an entry for org-crypt.
532 2009-09-15  Carsten Dominik  <carsten.dominik@gmail.com>
534         * org-agenda.el (org-agenda-menu): Reorganize the menu for more
535         consistency.
536         (org-batch-store-agenda-views): New function.
537         (org-mobile-force-id-on-agenda-items): Mention variable.
538         (org-agenda-title-append): Define variable.
539         (org-write-agenda): New export to Org files.
540         (org-agenda-get-some-entry-text): New arguments INDENT and KEEP.
541         (org-agenda): Allow to keep the restricted file list if a special
542         variable is bound to t.
543         (org-agenda): Define a special agenda view for working on flagged
544         entries.
545         (org-agenda-get-restriction-and-command): List the new agenda
546         view.
547         (org-agenda-show-the-flagging-note): New command.
548         (org-agenda-mode-map): New key `?' for looking at the flagging
549         note.
551         * org.el (org-autoload): Autoload org-mobile.el.
552         (org-org-menu): Add menu commands for MobileOrg in the Org menu.
554         * org-id.el (org-id-get): Fix bug with forcing ID on an item.
556 2009-09-15  Carsten Dominik  <carsten.dominik@gmail.com>
558         * org-table.el (orgtbl-line-start-regexp): Match also TBLNAME
559         statements.
560         (org-table-get-remote-range): Match indented #+TBLNAME
561         statements.
563         * org.el (org-convert-to-odd-levels)
564         (org-convert-to-oddeven-levels): Work also correctly if the file
565         is in outline-mode.
567 2009-09-12  Carsten Dominik  <carsten.dominik@gmail.com>
569         * org.el (org-store-link): When in agenda buffer, link to
570         referenced entry.
571         (org-add-planning-info): Remove spaces at eol.
573         * org-macs.el (org-with-point-at): Add a `lisp-indent-function'
574         property.
576 2009-09-10  Carsten Dominik  <carsten.dominik@gmail.com>
578         * org-latex.el (org-export-latex-first-lines): Fix problem with
579         LaTeX export of first line and selected subtree.
581         * org.el (org-shifttab): Interpret arg differently when using only
582         odd levels.
584 2009-09-09  Bastien Guerry  <bzg@altern.org>
586         * org.el (org-check-agenda-file): Use a more explicit message
588 2009-09-08  Carsten Dominik  <carsten.dominik@gmail.com>
590         * org-exp.el (org-export-remove-special-table-lines): Don't remove
591         normal lines.
593 2009-09-08  Bastien Guerry  <bzg@altern.org>
595         * org.el (org-offer-links-in-entry): Don't use "Select link" as a
596         prompt in the temporary window.
598         * org-agenda.el (org-agenda-bulk-mark): Use a slightly soberer
599         prefix for marked entries in the agenda view.
601 2009-09-07  Andreas Burtzlaff <andy13@gmx.net>  (tiny change)
603         * org.el (outline-end-of-subtree): Bugfix: advise this function in
604         a way that prevents any trailing character from being displayed.
606 2009-09-07  Carsten Dominik  <carsten.dominik@gmail.com>
608         * org-agenda.el (org-agenda-menu): Fix bugs in the bulk action
609         menu.
611         * org-exp.el (org-export-remove-special-table-lines): Remove bad
612         slow regexp match.
614 2009-09-06  Carsten Dominik  <carsten.dominik@gmail.com>
616         * org-latex.el (org-export-latex-preprocess): Do not protect in
617         the LaTeX header.
619         * org-src.el (org-edit-src-save): Save window setup while saving.
620         (org-edit-src-code): Use new buffer name construction scheme.
622 2009-09-04  Carsten Dominik  <carsten.dominik@gmail.com>
624         * org-agenda.el (org-agenda-entry-text-exclude-regexps): New
625         variable.
626         (org-agenda-entry-text-cleanup-hook): New hook.
627         (org-agenda-get-some-entry-text): Remove matches of
628         `org-agenda-entry-text-exclude-regexps' and run the hook
629         `org-agenda-entry-text-cleanup-hook'.
631         * org.el (org-offer-links-in-entry): New argument ZERO to
632         implement a link with index zero.
633         (org-cycle-show-empty-lines): Not keep empty line under header
634         hidden.
635         (org-iswitchb-completing-read): Bind `switchb-use-virtual-buffers'
636         to nil for special completion.
637         (org-store-link): Don't error before the first heading.
639         * org-agenda.el (org-agenda-open-link): Pass the prefix to
640         `org-offer-links-in-entry'.
642 2009-09-03  Carsten Dominik  <carsten.dominik@gmail.com>
644         * org-agenda.el (org-agenda-quit): Provide the window argument for
645         `window-dedicated-p', Emacs 22 needs it.
646         (org-format-agenda-item): If the category is a link, arrange for
647         invisible text to replaced with spaces.
648         (org-compile-prefix-format): Add the extra space.
649         (org-prefix-category-length): New variable.
651         * org-exp.el (org-export-cleanup-toc-line): Remove footnote
652         references from TOC lines.
654         * org.el (org-selected-window): New variable.
656         * org-table.el (org-table-edit-formulas): Remember the selected
657         window.
658         (org-table-fedit-finish, org-table-fedit-abort): Select the window
659         that was originally selected.
661         * org-exp.el (org-export-preprocess-apply-macros): Scan the
662         expansion of a macro for more macro definitions.
664         * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure the
665         invisibility overlay starts on the newline.
667 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
669         * org-protocol.el (org-protocol-store-link)
670         (org-protocol-remember, org-protocol-open-source): Add autoloads.
672         * org-compat.el (org-float-time): New function.
674         * org.el (org-clock-update-time-maybe)
675         (org-sort-entries-or-items, org-do-sort)
676         (org-evaluate-time-range, org-time-string-to-seconds)
677         (org-closed-in-range): Use `org-float-time'.
679         * org-timer.el (org-timer-start, org-timer-pause-or-continue)
680         (org-timer-seconds):  Use `org-float-time'.
682         * org-clock.el (org-clock-get-clocked-time, org-clock-out)
683         (org-clock-sum, org-dblock-write:clocktable)
684         (org-clocktable-steps):  Use `org-float-time'.
686         * org-agenda.el (org-agenda-last-marker-time)
687         (org-agenda-new-marker, org-diary):  Use `org-float-time'.
689         * org-compat.el (w32-focus-frame): Declare the w32-focus-frame
690         function.
692         * org-exp.el (org-get-file-contents): Only protect lines that
693         really need it.
695         * org-html.el (require): Require cl for compilation.
697         * org.el:  Avoid using `default-major-mode'.
699         * org-plot.el (require): Require CL only at compile time.
701         * org-exp.el (require): Require CL only at compile time.
703         * org-agenda.el (org-agenda-quit): When the agenda window is
704         dedicated, remove other windows before exiting, so that the frame
705         really will be killed.
707         * org-exp.el (org-export-handle-include-files): Reset START and
708         END for each loop cycle.
710 2009-09-01  Carsten Dominik  <carsten.dominik@gmail.com>
712         * org.el (org-eval-in-calendar): Use
713         `org-select-frame-set-input-focus'.
715         * org-compat.el (org-select-frame-set-input-focus): New function.
717         * org.el (org-update-statistics-cookies): New function.
718         (org-mode-map): Bind `C-c #' to `org-update-statistics-cookies'.
720 2009-08-31  Carsten Dominik  <carsten.dominik@gmail.com>
722         * org-src.el (org-edit-fixed-width-region): Set org-src-mode only
723         after the local variables are set.
725         * org-latex.el (org-export-latex-protect-amp): New function.
726         (org-export-latex-links): Protect link ampersands in tables.
728         * org-exp.el (org-export-select-backend-specific-text): Match in
729         two steps, to avoid regexp problems.
731         * org.el (org-offer-links-in-entry): Improve working with many and
732         duplicate links.
734         * org-agenda.el (org-agenda-show-1): Make more consistent with
735         normal cycling.
736         (org-agenda-cycle-show): Make more consistent with normal cycling.
738         * org-gnus.el (org-gnus-store-link): Restore the linking to a
739         website.
741 2009-08-30  Bastien Guerry  <bzg@altern.org>
743         * org-latex.el (org-export-latex-first-lines): Bugfix.
745 2009-08-29  Carsten Dominik  <carsten.dominik@gmail.com>
747         * org-clock.el (org-clock-modify-effort-estimate): Emit message
748         about new effort.
750         * org.el (org-set-effort): New function.
751         (org-mode-map): New key for effort setting command.
753         * org-agenda.el (org-agenda): Keep window setup when calling
754         agenda from within agenda window.
755         (org-agenda-mode-map): New keys for effort setting commands.
756         (org-agenda-menu): Add effort setting commands to menu.
757         (org-agenda-set-property, org-agenda-set-effort): New functions.
759         * org-latex.el (org-export-latex-tables): Fix
760         `org-table-last-alignment' and `org-table-last-column-widths' if
761         the first column has been removed.
763 2009-08-28  Carsten Dominik  <carsten.dominik@gmail.com>
765         * org.el (org-remove-timestamp-with-keyword): Only remove in
766         entry, not in subtree.
768         * org-src.el (org-src-lang-modes): Add abbreviation elisp for
769         emacs lisp.
771         * org.el (org-open-at-point): When on headline, offer all strings
772         in entry.
774         * org-remember.el (org-remember-templates): Documentation fix.
776         * org.el (org-move-subtree-down): Use `org-get-next-sibling' and
777         `org-get-last-sibling' instead of the outline versions of these
778         functions.
779         (org-get-last-sibling): New function.
780         (org-refile): Use `org-get-next-sibling' instead of the outline
781         version of this function.
782         (org-clean-visibility-after-subtree-move): Use
783         `org-get-next-sibling' and `org-get-last-sibling' instead of the
784         outline versions of these functions.
786 2009-08-27  Carsten Dominik  <carsten.dominik@gmail.com>
788         * org-agenda.el (org-prepare-agenda): When creating a new frame
789         for the agenda, make the window dedicated.
791         * org-agenda.el (org-agenda-mode-map): New keys for time motion.
793         * org-table.el (org-table-align): Change the order of reinsertion
794         and deletion, to avoid problems with overlays following the table.
796         * org.el (org-parse-time-string): Better error message.
797         (org-show-subtree): Use org-end-of-subtree.
799         * org-macs.el (org-goto-line): New defsubst.
801         * org.el (org-open-file, org-change-tag-in-region)
802         (org-fast-tag-show-exit): Don't use `goto-line'.
804         * org-table.el (org-table-align, org-table-insert-column)
805         (org-table-delete-column, org-table-move-column)
806         (org-table-sort-lines, org-table-copy-region)
807         (org-table-paste-rectangle, org-table-wrap-region)
808         (org-table-get-specials, org-table-rotate-recalc-marks)
809         (org-table-get-range, org-table-recalculate)
810         (org-table-edit-formulas, org-table-fedit-convert-buffer)
811         (org-table-show-reference, org-table-highlight-rectangle): Don't
812         use `goto-line'.
814         * org-src.el (org-edit-src-code, org-edit-fixed-width-region)
815         (org-edit-src-exit): Don't use `goto-line'.
817         * org-macs.el (org-preserve-lc): Don't use `goto-line'.
819         * org-list.el (org-renumber-ordered-list, org-fix-bullet-type):
820         Don't use `goto-line'.
822         * org-exp.el (org-export-number-lines): Don't use `goto-line'.
824         * org-colview.el (org-columns, org-columns-redo)
825         (org-agenda-columns): Don't use `goto-line'.
827         * org-colview-xemacs.el (org-columns, org-agenda-columns): Don't
828         use `goto-line'.
830         * org-agenda.el (org-agenda-mode): Force visual line motion off.
831         (org-agenda-add-entry-text-maxlines): Improve docstring.
832         (org-agenda-start-with-entry-text-mode): New option.
833         (org-agenda-entry-text-maxlines): New option.
834         (org-agenda-entry-text-mode): New variable.
835         (org-agenda-mode): Set initial value of
836         `org-agenda-entry-text-mode'.
837         (org-agenda-mode-map): Add the `E' key.
838         (org-agenda-menu): Add entry text mode to the menu.
839         (org-agenda-get-some-entry-text): Fix line count bug.
840         (org-finalize-agenda): Apply entry text mode if appropriate.
841         (org-agenda-entry-text-show-here): New function.
842         (org-agenda-entry-text-show): New function.
843         (org-agenda-entry-text-hide): New function.
844         (org-agenda-view-mode-dispatch): Add entry text mode to the view
845         key menu.
846         (org-agenda-entry-text-mode): New command.
847         (org-agenda-set-mode-name): Add entry text mode to the mode line
848         string.
849         (org-agenda-undo, org-agenda-get-restriction-and-command)
850         (org-agenda-get-some-entry-text, org-agenda-redo): Don't use
851         `goto-line'.
853 2009-08-26  Bernt Hansen  <bernt@norang.ca>
855         * org-clock.el (org-notify): Bugfix.
857 2009-08-25  Carsten Dominik  <carsten.dominik@gmail.com>
859         * org-agenda.el (org-agenda-open-link): Handle multiple links and
860         check for after-string.
862         * org-gnus.el (org-gnus-store-link): Simplify.
864         * org.el (org-latex-regexps): Don't add extra empty lines for
865         display formulas.
867 2009-08-24  Carsten Dominik  <carsten.dominik@gmail.com>
869         * org-agenda.el (org-agenda-get-some-entry-text): New function.
870         (org-agenda-add-entry-text): Use
871         `org-agenda-get-some-entry-text'.
873         * org.el (org-cycle-separator-lines): Update docstring.
874         (org-cycle-show-empty-lines): Handle negative values for
875         `org-cycle-show-empty-lines'.
877         * org-exp.el (org-export-protect-sub-super): New function.
878         (org-export-normalize-links): Protect the url of plain links from
879         supscript and superscript processing.
881         * org-remember.el (org-remember-escaped-%): New function.
882         (org-remember-apply-template): Use `org-remember-escaped-%' to
883         detect escaped % signs.
885 2009-08-23  Bastien Guerry  <bzg@altern.org>
887         * org-timer.el (org-timer-set-timer): Use `org-notify' and play a
888         sound when showing the notification.
890         * org-clock.el (org-notify): New function.
891         (org-clock-notify-once-if-expired): Use `org-notify'.
893         * org-gnus.el (org-gnus-store-link): Handle `gnus-summary-mode'
894         and `gnus-article-mode' separately.
895         (gnus-summary-article-header): Fix the declare-function.
897 2009-08-23  Carsten Dominik  <carsten.dominik@gmail.com>
899         * org-exp.el (org-export-format-source-code-or-example): Translate
900         language.
902         * org-src.el (org-src-lang-modes): New variable
903         (org-edit-src-code): Translate language.
905         * org-exp.el (org-export-format-source-code-or-example): Deal wit
906         the new structure of the `org-export-latex-listings-langs'
907         variable.
909         * org-latex.el (org-export-latex-listings-langs): Change structure
910         of the variable from plist to alist.
912 2009-08-21  Carsten Dominik  <carsten.dominik@gmail.com>
914         * org.el (org-in-commented-line): New function.
916 2009-08-20  Carsten Dominik  <carsten.dominik@gmail.com>
918         * org.el (org-hide-block-toggle): Make folded blocks searchable.
920 2009-08-19  Friedrich Delgado Friedrichs <friedel@nomaden.org>  (tiny change)
922         * org.el (org-flag-drawer): More useful error.
924 2009-08-19  Carsten Dominik  <carsten.dominik@gmail.com>
926         * org-remember.el (org-remember-apply-template): Use
927         org-icompleting-read.
929         * org-publish.el (org-publish): Use org-icompleting-read.
931         * org-colview.el (org-columns-edit-value, org-columns-new)
932         (org-insert-columns-dblock): Use org-icompleting-read.
934         * org-colview-xemacs.el (org-columns-edit-value)
935         (org-columns-new, org-insert-columns-dblock): Use
936         org-icompleting-read.
938         * org-attach.el (org-attach-delete-one, org-attach-open): Use
939         org-icompleting-read.
941 2009-08-18  Carsten Dominik  <carsten.dominik@gmail.com>
943         * org.el (org-hierarchical-todo-statistics): Improve docstring.
944         (org-version): Return the version text.
945         (org-org-menu): Add a menu entry for the new bug reporter.
946         (org-submit-bug-report): New command.
948         * org-list.el (org-hierarchical-checkbox-statistics): Improve
949         docstring.
951         * org.el (org-emphasis-regexp-components): Add "`" to set of
952         pre-emphasis characters.
954         * org-latex.el (org-export-latex-classes): Always include the soul
955         package.
956         (org-export-latex-emphasis-alist): Use \st for strikethough.
958         * org-exp-blocks.el (org-export-blocks-preprocess): Use
959         `indent-code-rigidly' to indent.
961         * org-agenda.el (org-agenda-get-restriction-and-command): Remove
962         properties only if MATCH really is a string.
964 2009-08-16  Carsten Dominik  <carsten.dominik@gmail.com>
966         * org-latex.el (org-export-latex-packages-alist): Fix
967         customization type.
969         * org.el (org-create-formula-image): Also use
970         `org-export-latex-packages-alist'.
972         * org-html.el (org-export-as-html): Fix bug in footnote regexp.
973         (org-export-as-html): Format footnotes correctly.
975 2009-08-14  Carsten Dominik  <carsten.dominik@gmail.com>
977         * org.el (org-fast-tag-selection): Avoid text properties on tags
978         in the alist.
980         * org-agenda.el (org-agenda-get-restriction-and-command): Avoid
981         text properties on the match element.
983 2009-08-12  Carsten Dominik  <carsten.dominik@gmail.com>
985         * org.el (org-set-regexps-and-options): Make sure the list of done
986         keywords is not invalid.
988         * org-exp.el (org-export-interpolate-newlines): New function.
990 2009-08-11  Carsten Dominik  <carsten.dominik@gmail.com>
992         * org.el (org-format-latex): Avoid nested overlays.
994         * org-latex.el (org-export-latex-listings-langs): Add a few more
995         languages.
997         * org-exp.el (org-export-preprocess-apply-macros): Make sure to
998         ignore newlines and space before the first macro argument.
1000         * org-latex.el (org-export-latex-tables): Remove save-excursion
1001         around `org-table-align'.
1003 2009-08-10  Carsten Dominik  <carsten.dominik@gmail.com>
1005         * org.el (org-export-html-special-string-regexps): Definition
1006         moved into org.el
1008         * org-exp.el (org-export-preprocess-apply-macros): Allow newlines
1009         in macro calls.
1011 2009-08-09  Carsten Dominik  <carsten.dominik@gmail.com>
1013         * org-latex.el (org-export-latex-listings)
1014         (org-export-latex-listings-langs): New options.
1016         * org-exp.el (org-export-format-source-code-or-example): Use
1017         listing package if requested by the user.
1019 2009-08-08  Bastien Guerry  <bzg@altern.org>
1021         * org.el (org-iswitchb): Fix bug when aborting the `org-iswitchb'
1022         command before actually switching to a buffer.
1024 2009-08-07  Carsten Dominik  <carsten.dominik@gmail.com>
1026         * org-exp.el (org-get-file-contents): Only quote org lines when
1027         the markup is src or example.
1029         * org-agenda.el (org-agenda-skip-scheduled-if-deadline-is-shown):
1030         New option
1031         (org-agenda-get-day-entries): Remember deadline results and pass
1032         them on into the function getting the scheduling information.
1033         (org-agenda-get-scheduled): Accept deadline results as parameters
1034         and maybe skip some entries.
1035         (org-agenda-skip-scheduled-if-deadline-is-shown): New option.
1037         * org.el (org-insert-heading): When respecting content, do not
1038         convert current line to headline.
1040         * org-clock.el (org-clock-save-markers-for-cut-and-paste): Also
1041         cheeeeeck the hd marker
1042         (org-clock-in): Also set the hd marker.
1043         (org-clock-out): Also set the hd marker.
1044         (org-clock-cancel): Reset markers.
1046         * org.el (org-clock-hd-marker): New marker.
1048         * org-faces.el (org-agenda-clocking): New face.
1050         * org-agenda.el (org-agenda-mark-clocking-task): New function.
1051         (org-finalize-agenda): call `org-agenda-mark-clocking-task'.
1053         * org.el (org-modules): Add org-track.el.
1055         * org-agenda.el (org-agenda-bulk-marked-p): New function.
1056         (org-agenda-bulk-mark, org-agenda-bulk-unmark): Use
1057         `org-agenda-bulk-marked-p'.
1058         (org-agenda-bulk-toggle): New command.
1060 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
1062         * org.el (org-move-subtree-down): Hide subtree if it was folded,
1063         not just the body.
1065         * org-remember.el (org-remember-finalize): Avoid buffer-modified
1066         messages.
1084 2009-08-05  Carsten Dominik  <carsten.dominik@gmail.com>
1086         * org-latex.el (org-export-latex-first-lines): Fix bug with
1087         finding the end of the first lines.
1089         * org.el (org-create-formula-image): Remove the -E option for
1090         dvipng.
1092         * org-exp.el (org-default-export-plist): Respect #+BIND.
1093         (org-export-confirm-letbind): New function.
1095         * org.el (org-paste-subtree): Test the kill ring entry if it is
1096         going to be used.
1097         (org-copy-subtree): Use `org-forward-same-level'.
1098         (org-forward-same-level): Respect the `invisibe-ok' arg for
1099         back-to-heading.
1101 2009-08-04  Carsten Dominik  <carsten.dominik@gmail.com>
1103         * org.el (org-table-map-tables): Make sure cursor is back at table
1104         beginning after funcall.
1106         * org-agenda.el (org-agenda-bulk-action): Make sure parents are
1107         handled before children, and do not error if an entry is not
1108         found, probably because it hase been remove when the parent was
1109         archived or refiled.
1111         * org.el (org-ido-completing-read): Accept straight lists for
1112         completion as well as alists.
1114         * org-html.el (org-export-as-html): Fix parenthesis error in
1115         footnore code.
1117         * org-timer.el (org-timer-cancel-timers): Renamed from
1118         `org-timer-cancel-timers'.
1120         * org.el (org-cycle-internal-local): Fix problem with finding next
1121         invisible line.
1123 2009-08-03  Carsten Dominik  <carsten.dominik@gmail.com>
1125         * org-list.el (org-list-send-list): Call
1126         `org-list-goto-true-beginning' instead of
1127         `org-list-find-true-beginning', which does not exist.
1129         * org-timer.el (org-timer-reset-timers): Use `mapc'.
1130         (org-timer-set-timer): Do not assign to heading.
1132         * org-id.el (org-id-open): Quote function name.
1134         * org-macs.el (org-unmodified): Turn off recording undo
1135         information while running inside the macro.
1137         * org-indent.el (org-hide-leading-stars-before-indent-mode): New
1138         variable.
1139         (org-indent-mode): Remember and restore value of
1140         org-hide-leading-stars before `org-indent-mode'.
1142         * org-table.el (org-table-export): Also work in file-less
1143         buffers.
1145         * org.el (org-startup-indented): New option.
1146         (org-startup-options): Add new options indent and noindent.
1147         (org-unfontify-region): Remove line-prefix and wrap-prefix
1148         properties.
1149         (org-after-demote-entry-hook, org-after-promote-entry-hook): New
1150         hooks.
1151         (org-promote, org-demote): Run the new hooks.
1153         * org-table.el (org-table-align): Replace leading \n as well.
1155         * org-exp.el (org-export-push-to-kill-ring): Remove `line-prefix'
1156         and `line-wrap' text properties.
1158         * org-compat.el (org-kill-new): New function.
1160         * org-agenda.el (org-format-agenda-item): Remove `line-prefix' and
1161         `line-wrap' text properties.
1163         * org-indent.el: New file.
1165 2009-08-02  Carsten Dominik  <carsten.dominik@gmail.com>
1167         * org.el (org-provide-todo-statistics): Tweak docstring.
1169         * org-id.el (org-id-open): Honor `org-link-frame-setup'.
1171 2009-08-01  Carsten Dominik  <carsten.dominik@gmail.com>
1173         * org-exp.el (org-export-as-org): Insert the "-source" string
1174         before the extension.
1176         * org.el (org-read-date): Make sure the calendar is in the current
1177         frame.
1178         (org-set-emph-re): Remove the ? from the post-match.
1179         (org-emphasis-regexp-components): Add backslash to the
1180         postmatch class.
1181         (org-set-font-lock-defaults): Write \n instead of \xa, and make it
1182         optional so that also lines at the end of the buffers will still
1183         be matched as headlines.
1185         * org-table.el (org-table-error-on-row-ref-crossing-hline):
1186         Variable made obsolete.
1187         (org-table-relative-ref-may-cross-hline): New option.
1188         (org-table-find-row-type): Honow the new option
1189         `org-table-relative-ref-may-cross-hline'.
1191 2009-07-31  Carsten Dominik  <carsten.dominik@gmail.com>
1193         * org-table.el (org-table-cut-region, org-table-copy-region): Work
1194         on single field if no active region.
1196 2009-07-27  Carsten Dominik  <carsten.dominik@gmail.com>
1198         * org-latex.el (org-export-latex-make-header): Only insert title
1199         if one is defined.
1201         * org.el (org-make-options-regexp): Allow empty values.
1203         * org-html.el (org-export-as-html): Move hrule detection to after
1204         plain list handling.
1206 2009-07-26  Carsten Dominik  <carsten.dominik@gmail.com>
1208         * org-html.el (org-format-org-table-html): Fix colgroup tags.
1210 2009-07-23  Carsten Dominik  <carsten.dominik@gmail.com>
1212         * org.el (org-cycle-internal-local): Improved version of finding
1213         next visible line.
1214         (org-cycle-hide-drawers): Only hide drawers if this is really
1215         necessary.
1216         (outline-end-of-subtree): Make `outline-end-of-subtree' use the
1217         org-version of this function in Org-mode.  We use advice to
1218         implement this change, so that future changes to this function in
1219         outline.el wil be handled properly.
1220         (org-forward-same-level, org-backward-same-level): New commands.
1222 2009-07-21  Carsten Dominik  <carsten.dominik@gmail.com>
1224         * org.el (org-remove-empty-overlays-at)
1225         (org-clean-visibility-after-subtree-move): New functons.
1226         (org-move-subtree-down): Simplify cleanup of display.
1228 2009-07-20  Carsten Dominik  <carsten.dominik@gmail.com>
1230         * org-mac-message.el (org-mac-message-get-links): Improve
1231         docstring.  Make argument SELECT-OR-FLAGGED optional, default to
1232         "s".  Fix the return value.
1233         (org-mac-message-insert-flagged): Simplify.
1235         * org.el (org-refile-get-location): Tamper with refile history o
1236         that history contains compete matches instead of the entered
1237         string.
1239 2009-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
1241         * org.el (org-store-link): Never store a link to an inline task.
1243         * org-inlinetask.el (org-inlinetask-insert-task): New command.
1245         * org-footnote.el (org-footnote-goto-local-insertion-point): Skip
1246         inline tasks when positioning footnotes.
1248         * org-inlinetask.el (org-inlinetask-remove-END-maybe): New
1249         function.
1251         * org.el (org-refile): Remove the END line when archiving an
1252         inline task that does have an END line.
1254         * org-archive.el (org-archive-subtree): Remove the END line when
1255         archiving an inline task that does have an END line.
1257         * org-macs.el (org-with-limited-levels): New macro.
1258         (org-get-limited-outline-regexp): New function.
1260         * org-exp.el (org-export-format-source-code-or-example): Fix bug
1261         that did not enumerate first line.
1262         (org-export-mark-radio-links): Skip matches in links.
1264 2009-07-18  Carsten Dominik  <carsten.dominik@gmail.com>
1266         * org.el (org-activate-plain-links): Make single-match.
1267         (org-adapt-indentation): Fix docstring.
1269         * org-macs.el (org-unmodified): Turn of modification hooks while
1270         running this macro.
1272 2009-08-02  Bastien Guerry  <bzg@altern.org>
1274         * org.el (org-adapt-indentation): Slightly improve the docstring.
1275         (org-occur): Sends an error when the user inputs an empty string.
1276         (org-priority): Bugfix: the tag alignement should happen within
1277         save-excursion.
1279 2009-07-31  Bastien Guerry  <bzg@altern.org>
1281         * org.el (org-make-link-regexps): Don't exclude parentheses from
1282         `org-plain-link-re'
1283         (org-cycle-internal-local): When locally cycling, switch directly
1284         from CHILDREN to FOLDED if there is no subtree
1285         (org-cycle): Update the docstring to document the new behavior of
1286         `org-cycle-internal-local'.
1288 2009-07-29  Nicolas Goaziou <n.goaziou@neuf.fr>  (tiny change)
1290         * org-clock.el (org-clock-in): Bugfix: recognize timestamps with
1291         an abbreviated format for days.
1293 2009-07-27  Bastien Guerry  <bzg@altern.org>
1295         * org-protocol.el (org-protocol-default-template-key): New
1296         option.
1298         * org.el (org-refile): Bugfix: save-excursion before reading the
1299         refile target, otherwise cursor moves might confuse `org-refile'.
1301         * org-html.el (org-export-as-html): Bugfix: correctly convert the
1302         footnote reference before the footnote itself.
1304         * org.el (org-toggle-heading): Bugfix: correctly convert list
1305         items before the first headline.
1307         * org-html.el (org-export-html-footnote-format): New option for
1308         formatting the footnote reference.
1309         (org-export-as-html): Use the new option.
1311         * org.el (org-provide-todo-statistics): Allow a list of TODO
1312         keywords to compute statistics against headlines containing a
1313         keyword from this list.
1314         (org-update-parent-todo-statistics): Possibly use the new allowed
1315         value of `org-provide-todo-statistics'.
1317 2009-07-26  Bastien Guerry  <bzg@altern.org>
1319         * org-timer.el: Add autoload cookie.
1321         * org.el (org-occur-link-in-agenda-files): New function.
1323         * org-timer.el (org-timer-last-timer): New variable.
1325         * org-agenda.el (org-agenda-mode-map): New key for
1326         org-timer-set-timer called from the agenda.
1328         * org.el (org-mode-map): New key for org-timer-set-timer.
1330         * org-timer.el (org-timer-reset-timers)
1331         (org-timer-show-remaining-time, org-timer-set-timer): New
1332         functions.
1334         * org-clock.el (org-show-notification): Update the docstring.
1336         * org.el (org-provide-todo-statistics): Allow new value
1337         'all-headlines for this option, which includes entries with no
1338         TODO keywords in the todo statistics.
1339         (org-update-parent-todo-statistics): Possibly use the new
1340         'all-headline value from `org-provide-todo-statistics'.
1342 2009-07-25  Bastien Guerry  <bzg@altern.org>
1344         * org-clock.el (org-dblock-write:clocktable): Add a new option
1345         :timestamp which allows display of timestamps in clock reports.
1347         * org.el (org-mode-map): Define new key `C-c C-*': convert a plain
1348         list to a subtree, preserving the structure of the list.
1349         (org-set-emph-re): Make the last element optional in the regexp.
1350         This regexp now matches an emphasized string at the end of a line.
1352         * org-list.el (org-list-goto-true-beginning)
1353         (org-list-make-subtree, org-list-make-subtrees): New functions.
1355         * org.el (org-eval-in-calendar): Select the right frame.
1356         (org-save-frame-excursion): Remove this macro.
1358 2009-07-24  Bastien Guerry  <bzg@altern.org>
1360         * org-list.el (org-list-beginning-re): Bugfix: don't use * when
1361         trying to find the beginning of a list.
1363         * org-exp.el (org-get-file-contents): Use a new argument: markup.
1364         When present, tell org-get-file-contents not to protect org-like
1365         lines.
1367         * org-id.el (org-id-uuid-program): New option to set the name of
1368         the uuidgen program.
1369         (org-id-method): Use `org-id-uuid-program'.
1370         (org-id-new): Use `org-id-uuid-program'.
1372 2009-07-23  Bastien Guerry  <bzg@altern.org>
1374         * org-exp.el (org-export-number-lines): Allow whitespace in code
1375         references.  Allow the -r switch to remove the references in the
1376         source code even when the lines are not numbered: the labels can
1377         be explicit enough.
1379         * org.el (org-fontify-whole-heading-line): New option.
1380         (org-set-font-lock-defaults): Use the new option.
1382         * org-clock.el (org-show-notification-handler): New option.
1383         (org-show-notification): Use the new option.
1385 2009-07-21  Bastien Guerry  <bzg@altern.org>
1387         * org.el (org-eval-in-calendar): Fix a bug about calendar
1388         navigation when `calendar-setup' value is 'calendar-only.
1390 2009-07-19  Bastien Guerry  <bzg@altern.org>
1392         * org.el (orgstruct++-mode): Fix typo in docstring.
1393         (org-insert-link): Clean up: (or (...)) => (...)
1394         (org-insert-link): Use TAB for stored links completion.
1396 2009-07-18  Bastien Guerry  <bzg@altern.org>
1398         * org.el (org-get-refile-targets): Fix bug: don't ignore case when
1399         building the list of targets.
1401         * org-remember.el (org-remember-delete-empty-lines-at-end): New
1402         option.
1403         (org-remember-handler): Use the new option.
1405 2009-07-17  James TD Smith  <ahktenzero@mohorovi.cc>
1407         * org.el (org-tags-sort-function): New option for sorting tags.
1408         (org-set-tags): Use the new option to sort tags.
1410         * org-plot.el (org-plot/gnuplot): Run with an idle timer to avoid
1411         premature deletion of the data when using org-plot in a script.
1413 2009-07-17  Bastien Guerry  <bzg@altern.org>
1415         * org-clock.el (org-clock-in-prepare-hook): New hook.
1416         (org-clock-in): Use this new hook.
1418 2009-07-16  Bastien Guerry  <bzg@altern.org>
1420         * org.el (org-special-ctrl-a/e): Explicitely bind the value
1421         'reversed for this option to the "true line boundary first"
1422         behavior.
1423         (org-tags-match-list-sublevels): Document the 'indented value for
1424         this variable.
1426         * org-latex.el (org-export-latex-first-lines): Fix problem with
1427         publishing the region.
1429         * org-exp.el (org-export-format-source-code-or-example): Fix
1430         bad line numbering when exporting examples in HTML.
1432 2009-07-12  James TD Smith  <ahktenzero@mohorovi.cc>
1434         * org-colview.el (org-format-time-period): Formats a time in
1435         fractional days as days, hours, mins, seconds.
1436         (org-columns-display-here): Add special handling for SINCE and
1437         SINCE_IA to format for display.
1439         * org.el (org-time-since): Add a function to get the time since an
1440         org timestamp.
1441         (org-entry-properties): Add two new special properties: SINCE and
1442         SINCE_IA. These give the time since any active or inactive
1443         timestamp in an entry.
1444         (org-special-properties): Add SINCE, SINCE_IA.
1445         (org-tags-sort-function): Add custom declaration for tags
1446         sorting function.
1447         (org-set-tags): Sort tags if org-tags-sort-function is set
1449 2009-07-08  Carsten Dominik  <carsten.dominik@gmail.com>
1451         * org-clock.el (org-clock-goto): Find hidden headlines as well.
1453         * org.el (org-narrow-to-subtree): Find hidden headlines as well.
1455         * org-plot.el (org-plot/add-options-to-plist): Add timeind
1456         option.
1458 2009-07-07  Carsten Dominik  <carsten.dominik@gmail.com>
1460         * org-publish.el (org-publish-remove-all-timestamps): New function.
1461         (org-publish-all): Remove all timestamp files if `org-publish-all'
1462         is called with a prefix argument.
1464         * org-list.el (org-indent-item): Fix typo.
1465         (org-item-indent-positions): Normalize ordered bullet.
1467         * org-html.el (org-export-html-home/up-format): New option.
1468         (org-export-as-html): Insert the up and HOME links.
1470 2009-07-06  Carsten Dominik  <carsten.dominik@gmail.com>
1472         * org-html.el (org-export-as-html): Insert the title into the
1473         option plist.
1474         (org-export-html-insert-plist-item): New function.
1475         (org-export-as-html): Call `org-export-html-insert-plist-item'.
1477         * org-macs.el (org-set-local): Make a local variable, do not make
1478         the variable buffer-local!
1480         * org-latex.el (org-export-as-latex): Call `org-install-letbind'.
1482         * org-html.el (org-export-as-html): Call `org-install-letbind'.
1484         * org-docbook.el (org-export-as-docbook): Call
1485         `org-install-letbind'.
1487         * org-ascii.el (org-export-as-ascii): Call `org-install-letbind'.
1489         * org-exp.el (org-infile-export-plist): Read BIND lines.
1490         (org-install-letbind): New function.
1491         (org-export-as-org, org-export-preprocess-string): Call
1492         `org-install-letbind'.
1494         * org-src.el (org-edit-src-exit): Untabify the example before
1495         returning to Org.
1497         * org-list.el (org-list-demote-modify-bullet): New option.
1498         (org-first-list-item-p): Save point.
1499         (org-fix-bullet-type): New optional argument FORCE-BULLET.
1500         (org-indent-item): Honor `org-list-demote-modify-bullet'.
1501         (org-item-indent-positions): Return bullet types along with
1502         indentation.
1504 2009-07-05  Carsten Dominik  <carsten.dominik@gmail.com>
1506         * org.el (org-show-entry): Hide drawers.
1508 2009-07-03  Carsten Dominik  <carsten.dominik@gmail.com>
1510         * org-footnote.el (org-footnote-auto-adjust): New option.
1511         (org-footnote-auto-adjust-maybe): New function.
1512         (org-footnote-new, org-footnote-delete): Call
1513         `org-footnote-auto-adjust-maybe'.
1515         * org.el (org-startup-options): Add new footnote-related
1516         keywords.
1518         * org-publish.el (org-publish-timestamp-filename): Additional
1519         arguments PUB-DIR and PUB-FUNC, which are included in the hash.
1520         (org-publish-needed-p): Additional arguments PUB-DIR PUB-FUNC
1521         TRUE-PUB-DIR.  Pass them through to
1522         `org-publish-timestamp-filename'.
1523         (org-publish-update-timestamp): Additional arguments PUB-DIR and
1524         PUB-FUNC, which are included in the hash.
1525         (org-publish-file): Delay timestamp test until the publishing
1526         function is known.
1528 2009-07-02  Carsten Dominik  <carsten.dominik@gmail.com>
1530         * org-agenda.el (org-agenda-bulk-action): Add scheduling and
1531         setting the deadline.
1533         * org.el (org-read-date-final-answer): New variable.
1534         (org-read-date): Store the final answer string, including the date
1535         from the calendar, for reuse by agenda bulk commands.
1537         * org-publish.el (org-publish-attachment): Fix publishing of
1538         attachments.
1540         * org-latex.el (org-export-latex-quotation-marks): Fix export of
1541         quotation makrs in parenthesis.
1542         (org-remove-initial-hash): New function.
1543         (org-export-latex-preprocess): Fix bug with infinite loop if
1544         environment is not properly closed.
1546         * org-table.el (org-table-get-remote-range): Find #+TBLNAME also
1547         when indented.
1549         * org.el (org-fontify-meta-lines-and-blocks): Make #+TBLNAME
1550         highlight also when indented.
1552 2009-07-01  Carsten Dominik  <carsten.dominik@gmail.com>
1554         * org-footnote.el (org-footnote-renumber-fn:N): New command.
1555         (org-footnote-action): Offer renumbering.
1557         * org.el (org-cycle): Honor the `integrate' value of
1558         org-cycle-include-plain-lists'.
1560         * org-list.el (org-cycle-include-plain-lists): New allowed value
1561         `internal'.  Improve the docstring.
1563         * org.el (org-set-autofill-regexps): Improve the paragraph-start
1564         regexp to work better with LaTeX commands.
1566 2009-06-30  Carsten Dominik  <carsten.dominik@gmail.com>
1568         * org-feed.el (org-feed-update): fix problem with non-existing
1569         buffer.
1570         (org-feed-skip-http-headers): New function.
1571         (org-feed-get-feed): Call `org-feed-skip-http-headers'.
1572         (org-feed-get-feed): Fix command line arguments for curl.
1574 2009-06-28  Carsten Dominik  <carsten.dominik@gmail.com>
1576         * org-latex.el (org-export-latex-inline-image-extensions): Add ps
1577         and eps extensions.
1579 2009-06-27  Carsten Dominik  <carsten.dominik@gmail.com>
1581         * org-agenda.el (org-write-agenda): Make sure org-icalendar is
1582         loaded.
1584         * org.el (org-map-entries): No longer force
1585         `org-tags-match-list-sublevels' to t during a todo-only tags
1586         search.
1588 2009-06-26  Carsten Dominik  <carsten.dominik@gmail.com>
1590         * org-latex.el (org-export-latex-low-levels): Allow user-defined
1591         environment.
1592         (org-export-latex-subcontent): Handle user-defined environment.
1594         * org-agenda.el (org-agenda-view-mode-dispatch): Add more keys to
1595         the View dispatcher.
1597         * org.el (org-hide-block-toggle): Use `org-make-overlay' instead of
1598         `make-overlay'.
1600         * org-latex.el (org-export-as-pdf): Protect match data during call
1601         to shell-quote-argument.
1603         * org-agenda.el (org-agenda-mode-map): Modify bulk action keys.
1604         (org-agenda-view-mode-dispatch): New function.
1606 2009-06-24  Carsten Dominik  <carsten.dominik@gmail.com>
1608         * org-agenda.el (org-agenda-mode): Reset list of marks.
1609         (org-agenda-mode-map): Define new keys for refile and bulk action.
1610         (org-agenda-menu): Add menu itesm for refile and bulk action.
1611         (org-agenda-refile): New function.
1612         (org-agenda-set-tags): Optional arguments TAG and ONOFF.
1613         (org-agenda-marked-entries): New variable.
1614         (org-agenda-bulk-select, org-agenda-remove-bulk-action-overlays)
1615         (org-agenda-remove-all-bulk-action-marks)
1616         (org-agenda-bulk-action): New functions/commands.
1618 2009-06-23  Carsten Dominik  <carsten.dominik@gmail.com>
1620         * org-exp.el (org-get-file-contents): Protect org-like lines in
1621         included files.
1622         (org-export-format-source-code-or-example): Remove newlines.
1624         * org-latex.el (org-export-latex-links): Check for no-description
1625         marking.
1627         * org-exp.el (org-export-preprocess-apply-macros): Switch macro
1628         argument separator back to comma.
1629         (org-export-normalize-links): Mark links without description.
1631 2009-06-22  Carsten Dominik  <carsten.dominik@gmail.com>
1633         * org-exp.el (org-infile-export-plist): Fix bug in macro
1634         processing.
1636         * org-agenda.el (org-agenda-clock-out): Update line after clocking
1637         out.
1638         (org-agenda-highlight-todo): Fix bug with highlighting.
1640 2009-06-21  Carsten Dominik  <carsten.dominik@gmail.com>
1642         * org.el (org-set-font-lock-defaults): Adapt formatting to capture
1643         new alignment strings.
1645         * org-table.el (orgtbl-self-insert-command): Add yas/expand to
1646         command list.
1647         (org-table-align): Check for forced align type.
1649         * org.el (org-self-insert-command): Add yas/expand to command
1650         list.
1652         * org-clock.el (org-clock-in-hook): New hook.
1653         (org-clock-in): Run `org-clock-in-hook.
1654         (org-clock-out-hook): New hook.
1655         (org-clock-out): Run `org-clock-out-hook.
1656         (org-clock-cancel-hook): New hook.
1657         (org-clock-cancel): Run `org-clock-cancel-hook.
1658         (org-clock-goto-hook): New hook.
1659         (org-clock-goto): Run `org-clock-goto-hook.
1661 2009-06-20  Carsten Dominik  <carsten.dominik@gmail.com>
1663         * org.el (org-store-link): Better default description for link to
1664         Org-mode headline.
1666         * org-exp.el (org-export-generic): Autoload the generic exporter
1667         function.
1668         (org-export): Implement the `g' key for the generic exporter.
1670 2009-06-19  Carsten Dominik  <carsten.dominik@gmail.com>
1672         * org-table.el (orgtbl-setup): Add a binding for `S-iso-lefttab',
1673         and for zbacktab'.
1675         * org-exp-blocks.el (org-ditaa-jar-path): Fix default ditaa path.
1677         * org-exp.el (org-infile-export-plist): Get macros also from
1678         #+SETUPFILE.
1680 2009-06-18  Carsten Dominik  <carsten.dominik@gmail.com>
1682         * org-colview.el (org-columns-capture-view): Protect vertical bars
1683         in column values.
1684         (org-columns-capture-view): Exclude comment and archived trees.
1686         * org-colview-xemacs.el (org-columns-capture-view): Protect
1687         vertical bars in column values.
1688         (org-columns-capture-view): Exclude comment and archived trees.
1690         * org.el (org-quote-vert): New function.
1692         * org-latex.el (org-export-latex-verbatim-wrap): New option.
1694         * org-exp.el (org-export-format-source-code-or-example): Use
1695         `org-export-latex-verbatim-wrap'.
1697         * org.el (org-clone-subtree-with-time-shift): Also shift inactive
1698         time stamps.
1700         * org-html.el (org-export-table-row-tags): New option.
1701         (org-format-org-table-html): Rename `nlines' to `nline', use new
1702         option.
1705 2009-06-17  Carsten Dominik  <carsten.dominik@gmail.com>
1707         * org-exp-blocks.el: Declare functions and variables.
1709         * org-remember.el (org-remember-templates): Allow the headline
1710         element to be a function.
1711         (org-remember-apply-template): If the headline is a function, call
1712         it to get the true function.
1714         * org-clock.el (org-clock-menu): New function.
1715         (org-clock-update-mode-line): Update help string.
1716         (org-clock-modify-effort-estimate): New function.
1717         (org-clock-mark-default-task): New function.
1719         * org.el (org-hh:mm-string-to-minutes): Also take just a number of
1720         minutes as input.
1721         (org-org-menu): Add new clocking stuff.
1722         (org-clock-is-active): New function.
1724 2009-06-14  Carsten Dominik  <carsten.dominik@gmail.com>
1726         * org.el (org-open-non-existing-files): Improve docstring.
1728 2009-06-11  Carsten Dominik  <carsten.dominik@gmail.com>
1730         * org-icalendar.el (org-icalendar-include-bbdb-anniversaries): New
1731         option.
1732         (org-export-icalendar): Call `org-bbdb-anniv-export-ical'.
1734         * org-bbdb.el (org-bbdb-anniv-export-ical): New function.
1736         * org-list.el (org-get-checkbox-statistics-face): Use the new
1737         faces.
1739         * org-faces.el (org-checkbox-statistics-todo)
1740         (org-checkbox-statistics-done): New faces.
1742 2009-06-09  Carsten Dominik  <carsten.dominik@gmail.com>
1744         * org-src.el (org-src-mode): Renamed from `org-exit-edit-mode'.
1745         (org-edit-src-exit): Better cursor positioning when returning from
1746         editing.
1748         * org-latex.el (org-export-latex-use-verb): New variable.
1749         (org-export-latex-emph-format): Prefer \texttt over \verb when
1750         org-export-latex-use-verb is set.
1752 2009-06-08  Carsten Dominik  <carsten.dominik@gmail.com>
1754         * org-docbook.el (org-export-docbook-close-lists-maybe): Also look
1755         at normal indentation.
1757         * org-html.el (org-export-html-close-lists-maybe): Also look at
1758         normal indentation.
1760         * org-remember.el (org-remember-handler): Abort remember if the
1761         buffer is empty.
1763         * org-src.el (org-edit-src-content-indentation): New option.
1764         (org-edit-src-exit): Apply extra indentation.
1766         * org-exp.el (org-export-format-source-code-or-example): Run
1767         `org-src-mode-hook'.
1769         * org-src.el (org-src-mode-hook): New variable.
1770         (org-edit-src-code): Run `org-src-mode-hook'.
1772 2009-06-07  Carsten Dominik  <carsten.dominik@gmail.com>
1774         * org.el (org-indent-line-function): Fix indentation of +#end lines.
1776         * org-src.el (org-edit-src-get-indentation): New function.
1777         (org-edit-src-code): Base indentation on the begin line.
1779 2009-06-07  Tassilo Horn  <tassilo@member.fsf.org>
1781         * org-gnus.el (org-gnus-store-link): Require message.el in
1782         org-gnus-store-link.
1784 2009-06-07  Carsten Dominik  <carsten.dominik@gmail.com>
1786         * org-src.el: New file, split out of org.el
1788         * org-docbook.el (org-export-as-docbook): Better indentation
1789         treatment.
1791         * org-macs.el (org-replace-match-keep-properties): New function.
1793         * org-exp.el (org-export-mark-blockquote-verse-center): Better
1794         preprocessing of center and quote and verse blocks.
1796         * org-docbook.el (org-export-docbook-close-lists-maybe): New function.
1797         (org-export-as-docbook): Close lists when original indentation
1798         mandates it.
1800         * org-html.el (org-export-html-close-lists-maybe): New function.
1801         (org-export-as-html): Close lists when original indentation
1802         mandates it.
1804         * org-list.el (org-list-end): Respect the stored "original"
1805         indentation when determining the end of the list.
1807         * org-exp.el (org-export-replace-src-segments-and-examples):
1808         Remember indentation correctly.
1810 2009-06-06  Carsten Dominik  <carsten.dominik@gmail.com>
1812         * org-clock.el (org-clock-update-mode-line): Apply face
1813         org-mode-line-clock.
1815         * org-faces.el (org-mode-line-clock): New face.
1817 2009-06-05  Tassilo Horn  <tassilo@member.fsf.org>
1819         * org-gnus.el (org-gnus-store-link): Fix bug where
1820         `org-gnus-store-link' used wrong subject when called in an article
1821         buffer.  Patch provided by fengli AT gmail DOT com.
1823 2009-06-04  Carsten Dominik  <carsten.dominik@gmail.com>
1825         * org-exp.el (org-export-format-source-code-or-example): Remember
1826         the original indentation of source code snippets and examples.
1828         * org-latex.el (org-export-as-latex): Relocate the table of
1829         contents.
1831         * org.el (org-ctrl-c-ctrl-c): Update clock lines.
1833         * org-agenda.el (org-run-agenda-series): Scope global options also
1834         when creating the agenda buffer.
1836 2009-06-03  Carsten Dominik  <carsten.dominik@gmail.com>
1838         * org.el (org-adapt-indentation): Improve documentation.
1839         (org-insert-property-drawer): Respect org-adapt-indentation when
1840         inserting the drawer.
1841         (org-remove-flyspell-overlays-in): New function.
1842         (org-do-emphasis-faces, org-activate-plain-links)
1843         (org-activate-code, org-fontify-meta-lines-and-blocks)
1844         (org-activate-angle-links, org-activate-footnote-links)
1845         (org-activate-bracket-links, org-activate-dates)
1846         (org-activate-target-links, org-activate-tags): Remove flyspell
1847         overlays.
1849 2009-06-02  Carsten Dominik  <carsten.dominik@gmail.com>
1851         * org.el (org-edit-src-save): New function.
1853         * org-clock.el (org-clock-out-switch-to-state): New option.
1854         (org-clock-out): Honor `org-clock-out-switch-to-state'.
1856         * org-compat.el (org-compatible-face): Improve macro.
1858         * org.el (org-global-properties-fixed): Add default for
1859         CLOCK_MODELINE_TOTAL.
1861         * org-clock.el (org-clock-sum): Accept lists and strigs as tstart
1862         andd tend.
1863         (org-clock-sum-current-item): Optional argument TSTART, pass it to
1864         org-clock-sum.
1865         (org-clock-get-sum-start): New function.
1867         * org.el (org-startup-options): New keywords blockhide and
1868         blockshow.
1869         (org-mode): Add new invisibility spec.
1870         (org-set-startup-visibility): Hide block on startup if so
1871         desired.
1872         (org-hide-block-startup): New option.
1873         (org-block-regexp): New constant.
1874         (org-hide-block-overlays): New variable.
1875         (org-block-map, org-hide-block-toggle-all, org-hide-block-all)
1876         (org-show-block-all, org-hide-block-toggle-maybe)
1877         (org-hide-block-toggle): New functions.
1878         (org-edit-src-exit): Do not quote lines starting with # and no +
1879         behind it.
1880         (org-auto-repeat-maybe): Add LAST_REPEAT properter for a repeating
1881         entry.
1883 2009-05-30  Carsten Dominik  <carsten.dominik@gmail.com>
1885         * org.el (org-buffer-property-keys): Add Effort property for
1886         completion.
1888 2009-05-28  Carsten Dominik  <carsten.dominik@gmail.com>
1890         * org-clock.el (org-clock-sum-current-item): Fix positioning bug
1891         when retrieving total clocked time in the subtree.
1893         * org.el (org-quoting-blocks): New variable.
1895 2009-05-27  Carsten Dominik  <carsten.dominik@gmail.com>
1897         * org-table.el (org-table-store-formulas)
1898         (org-table-get-stored-formulas, org-table-fix-formulas)
1899         (org-table-edit-formulas, orgtbl-ctrl-c-ctrl-c)
1900         (orgtbl-gather-send-defs): Allow indented #+TBLFM line.
1902         * org.el (org-fontify-meta-lines, org-ctrl-c-ctrl-c): Allow
1903         indented #+TBLFM line.
1905         * org-footnote.el (org-footnote-goto-local-insertion-point): Allow
1906         indented #+TBLFM line.
1908         * org-colview.el (org-dblock-write:columnview): Allow indented
1909         #+TBLFM line.
1911         * org-colview-xemacs.el (org-dblock-write:columnview): Allow
1912         indented #+TBLFM line.
1914         * org-clock.el (org-dblock-write:clocktable): Allow indented
1915         #+TBLFM line.
1917 2009-05-26  Carsten Dominik  <carsten.dominik@gmail.com>
1919         * org-exp.el (org-export-format-source-code-or-example): Make
1920         editing indented blocks work correctly.
1922         * org.el (org-edit-src-nindent): New variable.
1923         (org-edit-src-code, org-edit-fixed-width-region)
1924         (org-edit-src-find-region-and-lang, org-edit-src-exit): Make
1925         editing indented blocks work correctly.
1927 2009-05-24  Carsten Dominik  <carsten.dominik@gmail.com>
1929         * org-exp.el (org-export-replace-src-segments-and-examples): FInd
1930         indented blocks.
1931         (org-export-format-source-code-or-example): Fix indentation of
1932         blocks.
1933         (org-export-remove-indentation): New function.
1934         (org-export-select-backend-specific-text): Allow backend-specific
1935         code to be indented.
1936         (org-export-mark-blockquote-verse-center): Allow markers to be
1937         indented.
1939         * org.el (org-fontify-meta-lines): New function.
1940         (org-set-font-lock-defaults): Call the new fontification
1941         function.
1943         * org-faces.el (org-meta-line): New face
1944         (org-block):  New face.
1946 2009-05-27  Carsten Dominik  <carsten.dominik@gmail.com>
1948         * org.el (org-treat-insert-todo-heading-as-state-change)
1949         (org-treat-S-cursor-todo-selection-as-state-change): New
1950         variables.
1951         (org-insert-todo-heading): Honor
1952         `org-treat-insert-todo-heading-as-state-change'.
1953         (org-shiftright, org-shiftleft): Honor
1954         `org-treat-S-cursor-todo-selection-as-state-change'.
1955         (org-inhibit-logging): New variable.
1957 2009-05-23  Carsten Dominik  <carsten.dominik@gmail.com>
1959         * org-agenda.el (org-remove-subtree-entries-from-agenda): Reduce
1960         range for marker position checking.
1962         * org-latex.el (org-export-latex-first-lines): Fix bug when
1963         exporting a region.
1965 2009-05-22  Carsten Dominik  <carsten.dominik@gmail.com>
1967         * org-exp.el (org-export-push-to-kill-ring): Protect using
1968         x-set-selection, because that does not always work.
1970         * org-agenda.el (org-agenda-list): Apply the new face
1971         `org-agenda-date-today'.
1973         * org-faces.el (org-agenda-date-today): New face.
1975 2009-05-21  Carsten Dominik  <carsten.dominik@gmail.com>
1977         * org-agenda.el (org-agenda-to-appt): Turn off restriction when
1978         creating appointments.
1980         * org-latex.el (org-export-latex-low-levels): Fix customization
1981         type.
1983         * org.el (org-priority, org-shiftup, org-shiftdown): Disable
1984         priority commands.
1986         * org-agenda.el (org-agenda-priority): Disable priority commands.
1988         * org.el (org-enable-priority-commands): New option.
1990         * org-colview-xemacs.el (org-columns-compute)
1991         (org-columns-number-to-string): Fix problems with empty fields.
1993         * org-colview.el (org-columns-compute)
1994         (org-columns-number-to-string): Fix problems with empty fields.
1996         * org-exp.el (org-export-push-to-kill-ring): New function.
1997         (org-export-copy-to-kill-ring): New option.
1999         * org-latex.el (org-export-as-latex): Call
2000         `org-export-push-to-kill-ring'.
2002         * org-html.el (org-export-as-html): Call
2003         `org-export-push-to-kill-ring'.
2005         * org-docbook.el (org-export-as-docbook): Call
2006         `org-export-push-to-kill-ring'.
2008         * org-ascii.el (org-export-as-ascii): Call
2009         `org-export-push-to-kill-ring'.
2011         * org-exp.el (org-export-show-temporary-export-buffer): New
2012         option.
2014         * org-latex.el (org-export-as-latex): Use
2015         `org-export-show-temporary-export-buffer'.
2017         * org-html.el (org-export-as-html): Use
2018         `org-export-show-temporary-export-buffer'.
2020         * org-docbook.el (org-export-as-docbook): Use
2021         `org-export-show-temporary-export-buffer'.
2023         * org-ascii.el (org-export-as-ascii-to-buffer): Use
2024         `org-export-show-temporary-export-buffer'.
2026         * org-exp.el (org-export-show-temporary-export-buffer): New
2027         option.
2028         (org-export-push-to-kill-ring): New function.
2030         * org-colview.el (org-columns-compile-map): New variable.
2031         (org-columns-new, org-columns-compute)
2032         (org-columns-number-to-string, org-columns-uncompile-format)
2033         (org-columns-compile-format): Implement new operators.
2035 2009-05-20  Carsten Dominik  <carsten.dominik@gmail.com>
2037         * org-exp.el (org-export-plist-vars): Add :xml-declaration.
2039         * org-html.el (org-export-html-xml-declaration): New option.
2040         (org-export-as-html): Use `org-export-html-xml-declaration'.
2042         * org-list.el (org-update-checkbox-count): Make property
2043         dependent.
2045         * org.el (org-hierarchical-todo-statistics): New option.
2046         (org-update-parent-todo-statistics): Modified to handle recursive
2047         statistics.
2049 2009-05-19  Carsten Dominik  <carsten.dominik@gmail.com>
2051         * org-publish.el (org-publish): Make this function behave
2052         correctly in interactive use when called with a prefix argument.
2054         * org.el (org-todo-statistics-hook): New hook.
2055         (org-update-parent-todo-statistics): Use new hook.
2056         (org-log-into-drawer): New function.
2057         (org-add-log-setup): Use the new `org-log-into-drawer' function to
2058         determine if we should be logging into a drawer.
2059         (org-log-into-drawer): Update docstring.
2060         (org-default-properties): Add LOG_INTO_DRAWER as a property.
2062         * org-list.el (org-checkbox-statistics-hook): New hook.
2063         (org-update-checkbox-count-maybe): Use new hook.
2065         * org-ascii.el (org-export-ascii-copy-to-kill): New option.
2066         (org-export-as-ascii): Hide export buffer, and copy exported ASCII
2067         to kill ring.
2069 2009-05-17  Carsten Dominik  <carsten.dominik@gmail.com>
2071         * org-ascii.el (org-export-as-ascii): Fix bug with match string in
2072         a line.
2074 2009-05-16  Carsten Dominik  <carsten.dominik@gmail.com>
2076         * org.el (org-edit-src-code, org-edit-fixed-width-region): Use a
2077         better bufer-generating mechanism.
2078         (org-edit-src-find-buffer): New function.
2080         * org-icalendar.el (org-print-icalendar-entries): Don't check for
2081         archive tag, this is already done by `org-agenda-skip'.
2082         data while constructing lost of tags.
2084 2009-05-15  Carsten Dominik  <carsten.dominik@gmail.com>
2086         * org-exp.el (org-export-preprocess-apply-macros): Use semicolon
2087         as argument separator in macros.
2089         * org-html.el (org-export-as-html): Add xml declaration.
2091 2009-05-14  Carsten Dominik  <carsten.dominik@gmail.com>
2093         * org.el (org-after-sorting-entries-or-items-hook): New hook.
2094         (org-sort-entries-or-items): Run the new hook.
2095         (org-after-refile-insert-hook): New hook.
2096         (org-refile): Run `org-after-refile-insert-hook'.
2098         * org-agenda.el (org-agenda-get-progress): Never take time of day
2099         from headline when displaying progress.
2101         * org-latex.el (org-export-latex-complex-heading-re): New variable.
2102         (org-export-as-latex): Force the correct regexp in the
2103         preprocessor buffer.
2104         (org-export-latex-set-initial-vars): Set
2105         `org-export-latex-complex-heading-re'.
2107         * org-agenda.el (org-agenda-start-with-log-mode): New option.
2108         (org-agenda-mode): Use `org-agenda-start-with-log-mode'.
2110 2009-05-13  Carsten Dominik  <carsten.dominik@gmail.com>
2112         * org-latex.el (org-export-latex-tables-centered): New option.
2113         (org-export-latex-tables): Use `org-export-latex-tables-centered'.
2115         * org-exp.el (org-export-as-org): New command.
2116         (org-export-as-org): New command.
2118         * org-publish.el (org-publish-org-to-org): New function.
2120 2009-05-12  Carsten Dominik  <carsten.dominik@gmail.com>
2122         * org.el (org-yank): Just call `org-yank-generic'.
2123         (org-yank-generic): New function, containing the formaer
2124         functionality of `org-yank'.
2126         * org-latex.el (org-export-latex-not-done-keywords)
2127         (org-export-latex-done-keywords): New variables.
2128         (org-export-latex-todo-keyword-markup): New option.
2129         (org-export-latex-set-initial-vars): Remember the TODO keywords.
2130         (org-export-latex-keywords-maybe): Apply the TODO markup.
2132 2009-05-11  Carsten Dominik  <carsten.dominik@gmail.com>
2134         * org-exp.el (org-infile-export-plist): Add more default macros.
2135         (org-export-preprocess-apply-macros): Process macro arguments.
2137 2009-05-10  Carsten Dominik  <carsten.dominik@gmail.com>
2139         * org-icalendar.el (org-icalendar-include-todo): New allowedvalue
2140         `unblocked'.
2141         (org-print-icalendar-entries): Respect the new value of
2142         `org-icalendar-include-todo'.
2144         * org.el (org-link-try-special-completion)
2145         (org-file-complete-link): New functions.
2146         (org-insert-link): Add special completion support for some link
2147         types.
2149         * org-bbdb.el (org-bbdb-complete-link): New function.
2151 2009-05-08  Carsten Dominik  <carsten.dominik@gmail.com>
2153         * org-list.el (org-update-checkbox-count): Allow recursive
2154         statistics.
2155         (org-hierarchical-checkbox-statistics): New option.
2157         * org.el (org-cycle): Remove erraneous space character.
2159         * org-icalendar.el (org-icalendar-timezone): Initialize from
2160         environment.
2162         * org-html.el (org-format-org-table-html): Specify the scope.
2163         (org-format-table-table-html): Specify the scope.
2164         (org-export-table-header-tags): Prepare the scope parameter.
2166 2009-05-07  Carsten Dominik  <carsten.dominik@gmail.com>
2168         * org-html.el
2169         (org-export-html-table-use-header-tags-for-first-column): New
2170         option.
2172         * org.el (org-autoload): Fix autoloading of ascii export
2173         functions.
2174         (org-modules): Add org-special-blocks.
2176 2009-05-06  Carsten Dominik  <carsten.dominik@gmail.com>
2178         * org-icalendar.el (org-start-icalendar-file): Use the new option.
2179         (org-ical-timezone): New option.
2181         * org-exp.el (org-export-get-coderef-format): Use the description
2182         is present.
2184         * org.el (org-sort-entries-or-items): Improve docstring, and make
2185         better implementation for time sorting.
2187 2009-05-05  Carsten Dominik  <carsten.dominik@gmail.com>
2189         * org.el (org-edit-src-persistent-message): New option.
2190         (org-edit-src-code, org-edit-fixed-width-region): Use the new
2191         option.
2193         * org-clock.el (org-clock-insert-selection-line): Fix prefious
2194         patch.
2196         * org.el (org-edit-src-code, org-edit-fixed-width-region): Use
2197         separate buffer instead of indirect buffer to edit source code.
2198         (org-edit-src-exit): Make this function work with the new setup.
2200         * org-clock.el (org-clock-insert-selection-line): Make sure tasks
2201         are properly fontified before shown in the selection menu.
2203         * org.el (org-fontify-like-in-org-mode): New function.
2205         * org-latex.el (org-export-latex-links): Use the property list to
2206         retrieve the default image attributes.
2208         * org-exp.el (org-export-plist-vars): Add a new option.
2210 2009-05-04  Carsten Dominik  <carsten.dominik@gmail.com>
2212         * org-exp.el (org-export, org-export-visible): Support ASCII
2213         export to buffer
2214         (org-export-normalize-links): Do not protect the description if it
2215         is explicitly given.
2217         * org-ascii.el (org-export-as-ascii-to-buffer)
2218         (org-replace-region-by-ascii, org-export-region-as-ascii): New
2219         commands.
2220         (org-export-as-ascii): Add all the same parameters that are also
2221         supported by the other export functions.
2223         * org-list.el (org-reset-checkbox-state-subtree): Moved here from
2224         org-checklist.el.
2225         (org-reset-checkbox-state-subtree): Call
2226         `org-reset-checkbox-state-subtree'.
2228         * org-remember.el (org-select-remember-template): For the
2229         selection of a valid template.
2231         * org-latex.el (org-export-region-as-latex): Supply the
2232         force-no-subtree argument.
2233         (org-export-as-latex): Provide better limits when exporting the
2234         first line.  When exporting to string, we still want the first
2235         lines.
2236         (org-export-latex-first-lines): New argument END, to force the end
2237         of the region.
2238         (org-export-region-as-latex): Use the property list.
2239         (org-export-as-latex):
2241         * org-colview-xemacs.el (org-columns-remove-overlays)
2242         (org-columns): Fix call to `local-variable-p'.
2244 2009-05-02  Carsten Dominik  <carsten.dominik@gmail.com>
2246         * org-html.el (org-export-html-after-blockquotes-hook): New hook.
2247         (org-export-as-html): Run the new hook.
2249         * org-latex.el (org-export-latex-after-blockquotes-hook): New hook.
2250         (org-export-latex-preprocess): Run the new hook.
2252         * org-exp.el (org-export-preprocess-after-blockquote-hook): New hook.
2253         (org-export-preprocess-string): Run the new hook.
2255 2009-04-30  Carsten Dominik  <carsten.dominik@gmail.com>
2257         * org-macs.el (org-check-external-command): New defsubst.
2259         * org.el (org-mode-map): New key for reload.
2260         (org-format-latex): Better error message when external programs
2261         are not available.
2263         * org-agenda.el (org-agenda-mode-map): Bind `org-reload'.
2265         * org.el (org-sort-entries-or-items): Explicit sorting function
2266         for priorities, needed for XEmacs compatibility.
2268         * org-remember.el (org-remember-apply-template): Improve auto-save
2269         behavior.
2271 2009-04-29  Carsten Dominik  <carsten.dominik@gmail.com>
2273         * org-latex.el (org-export-latex-preprocess): Also protect
2274         environments ending in a star.
2276         * org-list.el (org-at-item-p): Fix regular expression.
2278 2009-04-24  Carsten Dominik  <carsten.dominik@gmail.com>
2280         * org.el (org-end-of-subtree): Improve speed.
2282         * org-agenda.el (org-agenda-get-timestamps)
2283         (org-agenda-get-progress, org-agenda-get-deadlines)
2284         (org-agenda-get-scheduled, org-agenda-get-blocks): Optimizations,
2285         in particular, wait as long as possible to collect the tags.
2286         (org-stuck-projects): Improve docstring.
2288         * org.el (org-store-link): No errors when getting custom id before
2289         first headline.
2290         (org-get-tags-at): Use `org-up-heading-safe' when getting tags.
2292 2009-04-23  Carsten Dominik  <carsten.dominik@gmail.com>
2294         * org.el (org-prepare-agenda-buffers): Catch a throw to nextfile.
2296         * org-protocol.el: Remove dependency on url.el.
2297         (org-protocol-unhex-compound, org-protocol-open-source): Remove
2298         dependency on url.el.
2300         * org-latex.el (org-export-as-pdf): Use
2301         `org-latex-to-pdf-process'.
2303 2009-04-22  Carsten Dominik  <carsten.dominik@gmail.com>
2305         * org-latex.el (org-latex-to-pdf-process): New option.
2307         * org-agenda.el (org-agenda-skip-additional-timestamps-same-entry):
2308         New option.
2309         (org-agenda-get-timestamps): Honor
2310         `org-agenda-skip-additional-timestamps-same-entry'.
2312         * org-clock.el (org-clock-goto-may-find-recent-task): New option.
2313         (org-clock-goto): Find recent task only if
2314         `org-clock-goto-may-find-recent-task' allows it.
2316         * org-exp.el (org-export-remove-or-extract-drawers): Handle empty
2317         drawers, and drawers that are missing the :END: line.
2319 2009-04-21  Carsten Dominik  <carsten.dominik@gmail.com>
2321         * org-clock.el (org-clock-goto): Go to recently clocked task if no
2322         clock is running.
2324 2009-04-21  Carsten Dominik  <carsten.dominik@gmail.com>
2326         * org.el (org-update-parent-todo-statistics): Check for
2327         STATISTICS_FROM property.
2329         * org-list.el (org-update-checkbox-count): Check for
2330         STATISTICS_FROM property.
2332         * org.el (org-tab-first-hook)
2333         (org-tab-after-check-for-table-hook)
2334         (org-tab-after-check-for-cycling-hook): New hooks.
2335         (org-cycle-internal-global, org-cycle-internal-local): New
2336         functions, split out from `org-cycle'.
2337         (org-cycle): Call the new hooks.
2339 2009-04-19  Carsten Dominik  <carsten.dominik@gmail.com>
2341         * org-exp.el (org-export-preprocess-string): Reset the list of
2342         preferred targets for each run of the preprocessor.
2344         * org.el (org-refile-target-verify-function): Improve
2345         documentation.
2346         (org-get-refile-targets): Respect point being moved by the
2347         verification function.
2349         * org-latex.el (org-export-latex-timestamp-keyword-markup): New
2350         option.
2351         (org-export-latex-keywords): Use new option.
2353         * org.el (org-rear-nonsticky-at): New defsubst.
2354         (org-activate-plain-links, org-activate-angle-links)
2355         (org-activate-footnote-links, org-activate-bracket-links)
2356         (org-activate-dates, org-activate-target-links)
2357         (org-activate-tags): Place the rear-nonsticky properties at the
2358         correct location.
2360 2009-04-18  Carsten Dominik  <carsten.dominik@gmail.com>
2362         * org-protocol.el (server-edit): Declare `server-edit'.
2363         (org-protocol-unhex-string, org-protocol-unhex-compound): New
2364         functions.
2365         (org-protocol-check-filename-for-protocol): Call `server-edit'.
2367         * org.el (org-default-properties): New default properteis for
2368         completion.
2370         * org-exp.el (org-export-add-subtree-options): Add new properties
2371         for subtree export.
2373         * org-docbook.el (org-export-docbook-keywords-markup)
2374         (org-export-docbook-timestamp-markup): New options.
2375         (org-export-docbook-protect-tags): New function.
2377 2009-04-17  Carsten Dominik  <carsten.dominik@gmail.com>
2379         * org-id.el (org-id-get-with-outline-path-completion): Turn off
2380         org-refile-target-verify-function for the duration of the command.
2382         * org.el (org-link-to-org-use-id): New possible value
2383         `create-if-interactive-and-no-custom-id'.
2384         (org-store-link): Use custom IDs.
2385         (org-link-search): Find custom ID properties from #link.
2386         (org-default-properties): Add CUSTOM_ID for property completion.
2387         (org-refile-target-verify-function): New option.
2388         (org-goto): Turn off org-refile-target-verify-function
2389         for the duration of the command.
2391 2009-04-16  Carsten Dominik  <carsten.dominik@gmail.com>
2393         * org-html.el (org-export-as-html): Use custom IDs in the toc.
2395         * org-exp.el (org-export-preferred-target-alist): New variable.
2396         (org-export-define-heading-targets): Find the new CUSTOM_ID
2397         property.
2398         (org-export-target-internal-links): Target the custom ids when
2399         possible.
2401         * org-latex.el (org-export-latex-preprocess): Better regexp for
2402         matching latex macros with arguments.
2404 2009-04-15  Carsten Dominik  <carsten.dominik@gmail.com>
2406         * org-remember.el (org-remember-handler): Allow filing to non-org
2407         files.
2409 2009-04-15  Magnus Henoch <magnus.henoch@gmail.com>
2411         * org-feed.el (org-feed-alist): New keyword options.
2412         (org-feed-update): Use the new options.
2413         (org-feed-parse-rss-feed): Renamed from `org-feed-parse-feed'.
2414         (org-feed-parse-rss-entry): Renamed from `org-feed-parse-entry'.
2415         (org-feed-parse-atom-feed, org-feed-parse-atom-entry): New
2416         functions.
2418         * org-table.el (org-table-fix-formulas): Do not change references
2419         to remote tables.
2420         (org-table-get-remote-range): Convert standard coordinates to RC
2421         format.
2423         * org-latex.el (org-export-latex-keywords): Fix regexp bug.
2425 2009-04-14  Carsten Dominik  <carsten.dominik@gmail.com>
2427         * org-compat.el (org-sha1-string): Function removed.
2429         * org.el (org-refile-allow-creating-parent-nodes): New option.
2430         (org-refile-get-location): New argument NEW-NODES.
2431         (org-refile): Call `org-refile-get-location' with the new
2432         argument.
2433         (org-refile-get-location): Arrange for adding a new child.
2434         (org-refile-new-child): New function.
2436         * org-html.el (org-html-handle-time-stamps): Wrap time stamps into
2437         an additional span element.
2439         * org-clock.el: Fix a number of docstrings.
2440         (org-clock-find-position): New argument
2441         FIND-UNCLOSED to make the function find an unclosed clock in the
2442         entry.
2443         (org-clock-in): Call `org-clock-find-position' with the new
2444         argument if we might be resuming a clock.
2446 2009-04-13  Carsten Dominik  <carsten.dominik@gmail.com>
2448         * org-latex.el (org-export-latex-display-custom-times): New variable.
2449         (org-export-latex-timestamp-markup): New option.
2450         (org-export-latex-set-initial-vars): Remember the local value of
2451         `org-display-custom-times'.
2452         (org-export-latex-content): Process time stamps.
2453         (org-export-latex-time-stamps): New function.
2455         * org-macs.el (org-maybe-intangible): Add intangible property
2456         again to invisible text.
2458 2009-04-12  Carsten Dominik  <carsten.dominik@gmail.com>
2460         * org-exp.el (org-default-export-plist): Handle undefined
2461         variables.
2463 2009-04-11  Carsten Dominik  <carsten.dominik@gmail.com>
2465         * org.el (org-sort-entries-or-items): Match TODO keywrds
2466         case-sensitively, when sorting.
2467         (org-priority): Do not match TODO keywords with wrong case.
2469 2009-04-09  Carsten Dominik  <carsten.dominik@gmail.com>
2471         * org-feed.el (org-feed-update): Bind the variable
2472         `new-formatted'.
2474         * org-html.el (org-export-as-html): Start paragraphs after literal
2475         examples.
2477         * org-docbook.el (org-export-as-docbook): Start paragraphs after
2478         literal examples.
2480 2009-04-08  Carsten Dominik  <carsten.dominik@gmail.com>
2482         * org.el (org-todo): Honor the NOBLOCKING property.
2484         * org-agenda.el (org-agenda-dim-blocked-tasks): Honor the
2485         NOBLOCKING property.
2487         * org.el (org-scan-tags): Fix bug in tag scanner
2489 2009-04-07  Carsten Dominik  <carsten.dominik@gmail.com>
2491         * org.el (org-modules): Mark obsolete packages.
2493         * org-html.el: New file, split out from org-exp.el.
2495         * org-icalendar.el: New file, split out from org-exp.el.
2497         * org-xoxo.el: New file, split out from org-exp.el.
2499         * org-ascii.el: New file, split out from org-exp.el.
2501 2009-04-06  Carsten Dominik  <carsten.dominik@gmail.com>
2503         * org-compat.el (org-find-library-name): New function.
2505         * org.el (org-pre-cycle-hook): New hook.
2506         (org-cycle): Call the new hook in appropriate places.
2507         (org-reload): Only reload files that have been loaded before.
2509 2009-04-05  Carsten Dominik  <carsten.dominik@gmail.com>
2511         * org.el (org-set-font-lock-defaults): Enforxe space or line end
2512         after todo keyword.
2513         (org-todo): When changing TODO state, do matching
2514         case-sensitively.
2515         (org-map-continue-from): New variable.
2516         (org-scan-tags): Respect values in `org-map-continue-from'.
2517         (org-reload): Make XEmacs compatible.
2519 2009-04-04  Carsten Dominik  <carsten.dominik@gmail.com>
2521         * org-protocol.el (org-protocol-flatten-greedy): New function.
2522         (org-protocol-flatten): New function.
2524         * org.el (org-open-link-from-string): Pass reference buffer to
2525         `org-open-at-point'.
2526         (org-open-at-point): New optional argument `reference-buffer'.
2528 2009-04-03  Carsten Dominik  <carsten.dominik@gmail.com>
2530         * org.el (org-scan-tags): Make tag scan find headline in first
2531         line, 2nd attempt.
2532         (org-get-refile-targets): Add the naked file name.
2533         (org-refile): Store as top-level entry when only file name was
2534         given.
2536         * org-agenda.el (org-agenda-get-progress): Fix regexp bug.
2538         * org.el (org-block-todo-from-children-or-siblings-or-parent):
2539         Renamed from org-block-todo-from-children-or-siblings, and
2540         enhanced to look for the parent's status as well.
2542         * org-agenda.el (org-agenda-log-mode-add-notes): New option.
2543         (org-agenda-get-progress): Add first notes line to log entry if so
2544         desired.
2546 2009-04-02  Carsten Dominik  <carsten.dominik@gmail.com>
2548         * org-agenda.el (org-agenda-cleanup-fancy-diary-hook): New hook.
2549         (org-agenda-cleanup-fancy-diary): Call the new hook.
2551         * org-remember.el (org-remember-apply-template): Take the default
2552         for the annotation from the :annotation property.
2554         * org-mac-message.el (org-mac-message-get-link): Remove the
2555         quotes.
2556         (org-mac-message-get-link): Return the result.
2558 2009-04-01  Carsten Dominik  <carsten.dominik@gmail.com>
2560         * org.el (org-refile-get-location): Add file name only if not
2561         already included in outline path.
2563         * org-faces.el (org-n-level-faces): Fix customization type from
2564         number to integer.
2566         * org-exp.el (org-export-headline-levels): Fix customization type
2567         from number to integer.
2569         * org-agenda.el (org-agenda-confirm-kill)
2570         (org-agenda-custom-commands-local-options)
2571         (org-timeline-show-empty-dates, org-agenda-ndays)
2572         (org-agenda-start-on-weekday, org-scheduled-past-days): Fix
2573         customization type from number to integer.
2575 2009-03-31  Carsten Dominik  <carsten.dominik@gmail.com>
2577         * org-protocol.el: Declare some functions.
2579         * org-inlinetask.el (org-inlinetask-export-handler): Fix line
2580         postion before inserting modified headline.
2582         * org-agenda.el (org-agenda-compare-effort): Honor
2583         `org-sort-agenda-noeffort-is-high'.
2584         (org-agenda-filter-by-tag, org-agenda-filter-make-matcher)
2585         (org-agenda-compare-effort): Implement the "?" operator for
2586         finding entries without effort setting.
2588         * org.el (org-extract-attributes-from-string): New function.
2590         * org-exp.el (org-export-splice-attributes): New function.
2592 2009-03-30  Carsten Dominik  <carsten.dominik@gmail.com>
2594         * org-mouse.el: XEmacs compatibility fixes
2596         * org-docbook.el (org-export-as-docbook): Process footnotes like
2597         normal text.
2599         * org.el (org-modules): Add org-inlinetasks.el
2600         (org-cycle): Implement limiting level on cycling.
2601         (org-move-subtree-down): Fix bug with swapping subtrees at end of
2602         buffer.
2604         * org-inlinetask.el: New file.
2606         * org.el (org-emphasis-regexp-components): Allow braces in
2607         emphasis pre and post match.
2609         * org-footnote.el (org-footnote-normalize): When only dorting, do
2610         not insert inline notes at the end.
2612         * org-docbook.el (org-id-find-id-file): Add function declaration.
2614         * org.el (org-require-autoloaded-modules): Add org-docbook.el.
2616         * org-docbook.el: New file.
2618 2009-03-28  Carsten Dominik  <carsten.dominik@gmail.com>
2620         * org.el (org-reftex-citation): New command.
2622 2009-03-27  Carsten Dominik  <carsten.dominik@gmail.com>
2624         * org-agenda.el (org-agenda-cmp-user-defined): New option.
2625         (org-sorting-choice, org-agenda-sorting-strategy): Add the new
2626         sorting options.
2627         (org-entries-lessp): Apply the new sorting option.
2629         * org.el (org-block-todo-from-children-or-siblings): Fix bug in
2630         blocker code, when an older sibling has children.
2632         * org-mac-message.el (org-mac-message-get-link): Improve getting
2633         links from multiple selected messages.
2635 2009-03-26  Carsten Dominik  <carsten.dominik@gmail.com>
2637         * org-remember.el (org-remember-finalize): Do not set buffer file
2638         name to nil.
2639         (org-remember-handler): Mark buffer as unmodified.
2640         (org-remember-handler): Delete backup file and show message about
2641         remaining backup files.
2642         (org-remember-auto-remove-backup-files): New option.
2644         * org.el (org-store-link): Use buffer name as link description in
2645         w3-mode buffers.
2646         (org-ido-switchb): Fix argument bug for completion.
2648         * org-remember.el (org-remember-apply-template): Set local
2649         variable `auto-save-visited-file-name' instead of global one.
2651 2009-03-25  Carsten Dominik  <carsten.dominik@gmail.com>
2653         * org-feed.el: Re-write.
2655         * org-agenda.el (org-agenda-get-todos): Fix bug with match-data.
2656         (org-agenda-get-todos): Mark file tags as inherited.
2657         (org-agenda-list): Always search diary lines for a time.
2659 2009-03-24  Carsten Dominik  <carsten.dominik@gmail.com>
2661         * org-feed.el (org-feed-assume-stable): New option.
2662         (org-feed-before-adding-hook): New hook.
2664         * org-exp.el (org-export-as-html): Close local lists depending on
2665         indentation, also when starting a table.
2667         * org-remember.el (org-remember-backup-directory)
2668         (org-remember-backup-name): New internal variable.
2670 2009-03-23  Carsten Dominik  <carsten.dominik@gmail.com>
2672         * org-clock.el (org-clock-out-if-current): Make buffer detection
2673         work in indirect buffers as well.
2675         * org.el (org-emphasis-regexp-components): Add the exxclamation
2676         mark to the post-emphasis characters.
2678 2009-03-22  Carsten Dominik  <carsten.dominik@gmail.com>
2680         * org.el (org-read-date-minibiffer-septup-hook): New hook.
2681         (org-read-date): Run the new hook.
2683         * org-mac-message.el (org-mac-flagged-mail): New group.
2684         (org-mac-mail-account): New variable.
2685         (org-mac-create-flagged-mail, org-mac-insert-flagged-mail): New
2686         commands.
2688         * org-remember.el (org-remember-backup-directory): New variable.
2689         (org-remember-apply-template): Write file to backup directory.
2691 2009-03-21  Carsten Dominik  <carsten.dominik@gmail.com>
2693         * org-mouse.el (org-mouse-todo-menu): New function.
2694         (org-mouse-todo-keywords): Function removed.
2695         (org-mouse-context-menu): Use `org-mouse-todo-menu'.
2697         * org-table.el (org-table-beginning-of-field)
2698         (org-table-end-of-field): New commands
2699         (org-table-previous-field, org-table-beginning-of-field): Better
2700         error messages.
2701         (orgtbl-setup): Include `M-a' and `M-e'.
2703         * org.el (org-backward-sentence, org-forward-sentence): New
2704         commands.
2706         * org-colview.el (org-colview-initial-truncate-line-value): New
2707         variable.
2708         (org-columns-remove-overlays): Restore the value of `truncate-lines'.
2709         (org-columns): Remember the value of `truncate-lines'.
2711         * org-colview-xemacs.el (org-colview-initial-truncate-line-value):
2712         New variable.
2713         (org-columns-remove-overlays): Restore the value of
2714         `truncate-lines'.
2715         (org-columns): Remember the value of `truncate-lines'.
2717         * org.el (org-columns-skip-arrchived-trees): New option.
2719         * org-agenda.el (org-agenda-export-html-style): Define color for
2720         org-agenda-done face.
2721         (org-search-view, org-agenda-get-todos, org-agenda-get-progress)
2722         (org-agenda-get-deadlines, org-agenda-get-scheduled): Use new face.
2724         * org.el (org-scan-tags): Use the new face.
2726         * org-faces.el (org-agenda-done): New face.
2728         * org.el (org-scan-tags): Test the value org
2729         `org-tags-match-list-sublevels'.
2730         (org-tags-match-list-sublevels): New allowed value: indented.
2732         * org-export-latex.el (org-export-latex-make-header): Apply macros
2733         in header.
2735         * org-exp.el (org-export-apply-macros-in-string): New function.
2737         * org-export-latex.el (org-export-latex-list-parameters): Fix bug
2738         with the definition of a checked box.
2740         * org-clock.el (org-clock-find-position): Fix drawer indentations.
2742         * org-export-latex.el (org-export-latex-low-levels): More options
2743         for how to process lower levels in LaTeX.
2744         (org-export-latex-subcontent): Better treatment for lists as a
2745         means of publishing lower levels.
2747 2009-03-20  Carsten Dominik  <carsten.dominik@gmail.com>
2749         * org.el (org-set-font-lock-defaults): Use new checkbox face.
2751         * org-faces.el (org-checkbox): New face.
2753         * org-exp.el (org-export-html-preprocess): Only create LaTeX
2754         fragement images if there is an export file.
2756 2009-03-19  Carsten Dominik  <carsten.dominik@gmail.com>
2758         * org-agenda.el (org-stuck-projects): Document that the subtree of
2759         projects that are not stuck will now be searched for stuck
2760         sub-projects.
2761         (org-agenda-skip-entry-when-regexp-matches)
2762         (org-agenda-skip-entry-when-regexp-matches-in-subtree): New functions.
2763         (org-agenda-list-stuck-projects): Use
2764         `org-agenda-skip-entry-when-regexp-matches-in-subtree'.
2766         * org-export-latex.el (org-export-latex-preprocess): Improve
2767         export of verses.
2769         * org-exp.el (org-export-as-html): Implement centering as a div
2770         rather than a paragraph.  Do a better job with line-end in verse
2771         environments.
2773 2009-03-17  Carsten Dominik  <carsten.dominik@gmail.com>
2775         * org.el (org-open-at-point): Fix tags searches by mouse click.
2777 2009-03-16  Carsten Dominik  <carsten.dominik@gmail.com>
2779         * org-export-latex.el (org-export-latex-preprocess): Implement the
2780         centering markup.
2782         * org-exp.el (org-export-mark-blockquote-verse-center): Renamed
2783         from `org-export-mark-blockquote-and-verse'.
2784         (org-export-as-html): Implement the centering markup.
2786         * org-export-latex.el (org-export-latex-tables): Fix vertical
2787         lines in tables.
2789 2009-03-15  Carsten Dominik  <carsten.dominik@gmail.com>
2791         * org.el (org-read-date-history): New variable.
2792         (org-read-date): Use new history variable.
2793         (org-toggle-heading): Fix bug when used before first headline.
2794         (org-store-log-note): Remove drawer if empty while note is
2795         aborted.
2796         (org-remove-empty-drawer-at): New function.
2797         (org-check-after-date): New command.
2798         (org-sparse-tree): New sparse tree command "a".
2800         * org-exp.el (org-export-as-ascii): Improve export of plain lists.
2802 2009-03-14  Bastien Guerry  <bzg@altern.org>
2804         * org.el (org-toggle-fixed-width-section): Bug fix: insert a
2805         column and a space, not only a column.
2807 2009-03-14  Carsten Dominik  <carsten.dominik@gmail.com>
2809         * org-export-latex.el (org-export-latex-emphasis-alist): Better
2810         defaults for verbose emphasis.
2811         (org-export-latex-emph-format): New function.
2812         (org-export-latex-fontify): Call `org-export-latex-emph-format'.
2814         * org-agenda.el (org-agenda-menu): Add new commands to menu.
2815         (org-agenda-do-date-later, org-agenda-do-date-earlier)
2816         (org-agenda-date-later-minutes, org-agenda-date-earlier-minutes)
2817         (org-agenda-date-later-hours, org-agenda-date-earlier-hours): New
2818         commands.
2820         * org.el (org-timestamp-change): Move end-time along with start
2821         time.
2823 2009-03-12  Carsten Dominik  <carsten.dominik@gmail.com>
2825         * org-exp.el (org-export-target-internal-links)
2826         (org-export-as-html): Protect links specified as #name.
2828 2009-03-11  Carsten Dominik  <carsten.dominik@gmail.com>
2830         * org.el (org-clone-subtree-with-time-shift): New command.
2832         * org-export-latex.el (org-export-latex-special-chars)
2833         (org-export-latex-treat-sub-super-char): Fix subscript export.
2835         * org-exp.el (org-create-multibrace-regexp): Do not add
2836         backslashes to the class.
2838 2009-03-10  Carsten Dominik  <carsten.dominik@gmail.com>
2840         * org-colview.el (org-columns-map): Better functions for moving up
2841         and down a row, even if `truncate-line' is nil.
2843         * org.el (org-insert-todo-heading): Make sure the keyword is
2844         inserted at the correct position.
2846         * org-publish.el (org-publish-project-alist)
2847         (org-publish-projects, org-publish-org-index): Change default anme
2848         for the index of file names to "sitemap.org".
2850         * org-export-latex.el (org-export-latex-tables): Use
2851         `org-split-string', for Emacs 21 compatibility.
2853 2009-03-09  Carsten Dominik  <carsten.dominik@gmail.com>
2855         * org-agenda.el (org-agenda-log-mode-items): Improve docstring.
2857 2009-03-08  Carsten Dominik  <carsten.dominik@gmail.com>
2859         * org-exp.el (org-export-page-description)
2860         (org-export-page-keywords): New variables.
2861         (org-export-plist-vars): Add entries for :keywords and
2862         :description.
2863         (org-infile-export-plist): Parse for new keywords.
2864         (org-get-current-options): Add new keywords
2865         (org-export-as-html): Publish description and keywords.
2867         * org-agenda.el (org-agenda-add-entry-text-descriptive-links): New
2868         option.
2869         (org-agenda-add-entry-text): Honor
2870         `org-agenda-add-entry-text-descriptive-links'.
2872         * org-export-latex.el (org-export-latex-preprocess): Make all
2873         external preprocess functions use a PARAMETER arg.
2875         * org-exp.el (org-export-preprocess-string)
2876         (org-export-select-backend-specific-text)
2877         (org-export-format-source-code-or-example)
2878         (org-format-org-table-html): Support docbook export.
2879         (org-export-preprocess-string): Make all external preprocess
2880         functions use a PARAMETER arg.
2882 2009-03-07  Carsten Dominik  <carsten.dominik@gmail.com>
2884         * org-exp.el (org-export-html-style-include-scripts): New option.
2885         (org-export-plist-vars): Add new option
2886         `org-export-html-style-include-scripts'.
2887         (org-export-as-html): Honor new option
2888         `org-export-html-style-include-scripts'.
2889         (org-export-html-scripts, org-export-html-style-default): Fix
2890         xml issues with the Safari browser.
2892 2009-03-06  Carsten Dominik  <carsten.dominik@gmail.com>
2894         * org-publish.el (org-publish-attachment): Only copy file when the
2895         directories differ.
2897 2009-03-05  Carsten Dominik  <carsten.dominik@gmail.com>
2899         * org-clock.el (org-clocktable-steps): Use inactive time stamps
2900         for clocktable steps.
2902         * org.el (org-additional-option-like-keywords): Add two more
2903         keywords.
2905 2009-03-04  Carsten Dominik  <carsten.dominik@gmail.com>
2907         * org-exp.el (org-export-format-source-code-or-example): Mark
2908         temporary buffer unmodified, so that it will be killed even if
2909         mode like message mode has decided to assign a file name.
2911         * org.el (org-scan-tags): Improve tag inheritance.
2912         (org-scan-tags, org-make-tags-matcher): Make tag comparison
2913         case-sensitive.
2914         (org-scan-tags): Use the internal tags list instead of creating it
2915         from scratch.
2916         (org-trust-scanner-tags, org-scanner-tags): New variables.
2917         (org-scan-tags): Set `org-scanner-tags'.
2918         (org-get-tags-at): Take advantage of `org-trust-scanner-tags'.
2919         (org-map-entries): Document the possible speedup using scanner
2920         tags.
2922 2009-03-03  Carsten Dominik  <carsten.dominik@gmail.com>
2924         * org.el (org-add-planning-info): Fix bug with looking for keyword
2925         only at column 0.
2927         * org-agenda.el (org-agenda-custom-commands-local-options): Add
2928         option for tags filter preset.
2929         (org-prepare-agenda): Store filter preset as a property on the
2930         filter variable.
2931         (org-finalize-agenda): Call the filter, if there is a preset.
2932         (org-agenda-filter-by-tag): Filter again after clearing the
2933         filter, when there still is a preset.
2934         (org-agenda-filter-make-matcher, org-agenda-set-mode-name):
2935         Include the preset filter.
2936         (org-agenda-redo): Apply the filter again, also the preset filter.
2938         * org-exp.el (org-export-as-html): Use IDs in the correct way.
2940         * org.el (org-uuidgen-p): New funtion.
2942         * org-agenda.el (org-agenda-fontify-priorities): New default value
2943         `cookies'.
2944         (org-agenda-fontify-priorities): Renamed from
2945         org-fontify-priorities.
2947         * org.el (org-set-font-lock-defaults): Call
2948         `org-font-lock-add-priority-faces'.
2949         (org-font-lock-add-priority-faces): New function.
2951         * org-faces.el: (org-set-tag-faces): New option.
2952         (org-priority-faces): New variable.
2954         * org-exp.el (org-export-as-html): Add a "content" div around the
2955         entire content of the body tag.
2956         (org-export-html-get-bibliography): New function.
2957         (org-export-html-validation-link): New variable.
2958         (org-export-as-html): Add validation link to exported page.
2960         * org.el (org-match-sparse-tree): Renamed from
2961         `org-tags-sparse-tree'.
2962         (org-tags-sparse-tree): New alias.
2964 2009-03-02  Carsten Dominik  <carsten.dominik@gmail.com>
2966         * org.el (org-get-valid-level): Catch the case where the level
2967         change is nil.
2969         * org-clock.el (org-clock-find-position): Better indentation of
2970         new clock drawers.
2972 2009-03-01  Carsten Dominik  <carsten.dominik@gmail.com>
2974         * org-agenda.el (org-agenda-quit): Delete window only when the
2975         frame-setup was not `current-window'.
2977         * org.el (org-tag-persistent-alist): New option.
2978         (org-startup-options): Add keyword `noptag'.
2979         (org-fast-todo-selection): Handle :newline correctly.
2980         (org-set-tags): Handle :newline correctly.
2981         (org-fast-tag-selection): Handle :newline correctly.
2983 2009-02-28  Carsten Dominik  <carsten.dominik@gmail.com>
2985         * org-exp.el (org-export-as-ascii): Reverse link buffer before
2986         outputting it.
2987         (org-export-ascii-push-links): Fix bug with pussing links into the
2988         export buffer.
2990 2009-02-27  Carsten Dominik  <carsten.dominik@gmail.com>
2992         * org-archive.el (org-archive-subtree): Do not add 1 to level if
2993         pasting at top level.
2995         * org-bbdb.el: Improve documentation.
2997 2009-02-26  Carsten Dominik  <carsten.dominik@gmail.com>
2999         * org-list.el (org-insert-item): Only consider insert empty lines
3000         is `org-empty-line-terminates-plain-lists' is not nil.
3002         * org.el (org-blank-before-new-entry): Mention the dependence on
3003         `org-empty-line-terminates-plain-lists' in the docstring.
3005         * org-publish.el (org-publish-get-project-from-filename): New
3006         optional argument UP.  Only find the top project if UP is set.
3007         (org-publish-current-project): Find the top encloding project.
3009         * org-agenda.el (org-agenda-before-write-hook)
3010         (org-agenda-add-entry-text-maxlines): New options.
3011         (org-write-agenda): Run the new hook in the temporary buffer.
3012         (org-agenda-add-entry-text): New function.
3013         (org-write-agenda): Implement PDF export, using ps2pdf.
3015         * org.el (org-global-properties-fixed, org-global-properties):
3016         Improve documentation string.
3018         * org-exp.el (org-export-ascii-links-to-notes): New option.
3019         (org-export-as-ascii): Handle links better.
3020         (org-export-ascii-wrap, org-export-ascii-push-links): New
3021         functions.
3023 2009-02-25  Carsten Dominik  <carsten.dominik@gmail.com>
3025         * org-agenda.el (org-agenda): Make prefix arg optional.
3026         (org-agenda-search-headline-for-time): New option.
3027         (org-format-agenda-item): Honor
3028         `org-agenda-search-headline-for-time'.
3030         * org-table.el (orgtbl-self-insert-command): Cluster undo for 20
3031         characters.
3033         * org.el (org-self-insert-cluster-for-undo): New option.
3034         (org-self-insert-command): Cluster undo for 20 characters.
3035         (org-self-insert-command-undo-counter): New variable.
3037 2009-02-24  Carsten Dominik  <carsten.dominik@gmail.com>
3039         * org-exp.el (org-export-as-html): Fix problem with closing colone
3040         example.
3042 2009-02-22  Carsten Dominik  <carsten.dominik@gmail.com>
3044         * org-export-latex.el (org-export-as-latex)
3045         (org-export-latex-first-lines): Avoid modification flag when
3046         adding or removing text properties.
3047         (org-export-latex-fontify): Catch error when org-emph-alist has
3048         entries that are not defined for LaTeX export.
3050         * org.el (orgstruct++-mode): New function.
3051         (turn-on-orgstruct++): Call `orgstruct++-mode'.
3052         (org-context-p): Allow detecting item context after the first line
3053         of an item.
3054         (orgstruct-make-binding): Detect if item-body context should be
3055         seen.
3056         (orgstruct-is-++): New variable.
3057         (org-add-planning-info): Catch the case when there is no planning
3058         info yet and the call does not want to add anything, only maybe
3059         tries to remove something.
3060         (org-special-ctrl-a/e): All value to be a cons cell with separate
3061         settings for `C-a. and `C-e'.
3062         (org-beginning-of-line, org-end-of-line): Honor separate values
3063         for `C-a' and `C-e'.
3065 2009-02-21  Carsten Dominik  <carsten.dominik@gmail.com>
3067         * org.el (org-reload): New command.
3069 2009-02-20  Carsten Dominik  <carsten.dominik@gmail.com>
3071         * org-exp.el (org-export-htm-get-tag-class-name)
3072         (org-export-htm-get-todo-kwd-class-name): New functions.
3073         (org-export-html-tag-class-prefix)
3074         (org-export-html-todo-kwd-class-prefix): New options.
3075         (org-export-as-html): Call
3076         `org-export-html-get-todo-kwd-class-name'.
3077         (org-html-level-start): Wrap tags into classes.
3078         (org-export-html-get-tag-class-name)
3079         (org-export-html-get-todo-kwd-class-name): New functions.
3081         * org-export-latex.el (org-export-latex-collect-header-macros):
3082         Remove fields that are used anyway.
3083         (org-export-latex-make-header): Insert the options earlier.
3085         * org-agenda.el (org-agenda-get-progress): Fix bug with state
3086         matching.
3088         * org-list.el (org-indent-item): Allow point to be at the end of
3089         the region.
3091         * org.el (org-metaleft, org-metaright): Be more accurate about
3092         detecting a region where commands apply.
3094         * org-compat.el (org-cursor-to-region-beginning): New function.
3096         * org.el (org-priority): Also find invisible heading.
3098         * org-colview-xemacs.el (org-columns-edit-value): No special
3099         treatment for `org-todo' prefix.
3101         * org-colview.el (org-columns-edit-value): No special treatment
3102         for `org-todo' prefix.
3104         * org-remember.el (org-remember-apply-template): Use
3105         `org-completing-read-no-ido'.
3107         * org.el (org-completing-read-no-ido): New function.
3108         (org-make-tags-matcher, org-set-property): Use
3109         `org-completing-read-no-ido'.
3111         * org-export-latex.el (org-export-latex-import-inbuffer-stuff):
3112         New option.
3113         (org-export-as-latex): Import in-buffer settings as TeX macros.
3114         (org-export-latex-make-header): Additional parameter OPT-DEFS.
3115         (org-export-latex-collect-header-macros): New function.
3117         * org.el (org-refile-get-location): Turn off
3118         `partial-completion-mode'.
3120 2009-02-19  Carsten Dominik  <carsten.dominik@gmail.com>
3122         * org.el (org-block-todo-from-checkboxes): Announce that
3123         checkboxes are the culprit.
3124         (org-block-todo-from-children-or-siblings): Call
3125         `org-up-heading-all instead' of `outline-up-heading'.
3127         * org-agenda.el (org-agenda-show-1): Renamed from
3128         `org-agenda-show'.
3129         (org-agenda-show): Re-install the old version for now.
3130         (org-agenda-dim-blocked-tasks): Update docstring.  Scope a
3131         variable into the blokker hook, so that the checkbox checker can
3132         anounce that it caused the blocking.
3134         * org.el (org-track-ordered-property-with-tag): New option.
3135         (org-toggle-ordered-property): Honor
3136         `org-track-ordered-property-with-tag'.
3137         (org-tag-alist): Add newline options.
3138         (org-set-regexps-and-options): Separate option lines imply a
3139         newline.
3140         (org-set-regexps-and-options, org-assign-fast-keys)
3141         (org-fast-todo-selection, org-fast-tag-selection): Handle newline
3142         option.
3143         (org-indent-line-function): Make sure this works even if there is
3144         not `org-drawer-regexp' defined.  This can happen when
3145         orgstruct-mode is used in a non-org buffer.
3147         * org-list.el (org-checkbox-blocked-p): New function.
3148         (org-toggle-checkbox): Check for blocking.
3150         * org.el (org-modules): Add an entry for org-R.el.
3152         * org-agenda.el (org-agenda-todo-ignore-with-date)
3153         (org-agenda-todo-ignore-scheduled)
3154         (org-agenda-todo-ignore-deadlines): Mention the variable
3155         `org-agenda-tags-todo-honor-ignore-options' in the docstring.
3157         * org.el (org-get-wdays): Find the warning period also if it is in
3158         the wrong place.
3159         (org-ido-completing-read): Provide the correct arguments to
3160         ido-completing-read and bind `ido-enter-matching-directory' to
3161         nil.
3163 2009-02-17  Carsten Dominik  <carsten.dominik@gmail.com>
3165         * org.el (org-olpath-completing-read): Never use ido for this
3166         one.
3168         * org-exp.el (org-export-normalize-links): Use new macro.
3170         * org-macs.el (org-if-unprotected-at): New macro.
3172         * org-agenda.el (org-agenda-show): Allow numerical prefix
3173         arguments to specify how much context should be shown.
3174         (org-agenda-cycle-show): New command, could be bound to SPC in
3175         org-agenda-mode-map.
3177         * org-exp.el (org-html-level-start): Space after section number.
3179 2009-02-16  Carsten Dominik  <carsten.dominik@gmail.com>
3181         * org-agenda.el (org-agenda-get-sexps): Add todo state as
3182         property, for sorting.
3183         (org-cmp-todo-state): Get the applicable TODO keywords directly
3184         from the buffer.
3185         (org-run-agenda-series, org-agenda-list, org-search-view)
3186         (org-todo-list, org-tags-view): Only fit agenda window when the
3187         whole series is done.
3189         * org.el (org-scan-tags): Add todo state as property, for sorting.
3191         * org-agenda.el (org-agenda-custom-commands-local-options): Add
3192         `org-agenda-overriding-header' as an option.
3193         (org-agenda-list): Honor org-agenda-overriding-header'.
3195 2009-02-15  Carsten Dominik  <carsten.dominik@gmail.com>
3197         * org-list.el (org-toggle-checkbox): Improve cursor positioning
3198         after removing a checkbox.
3200         * org.el (org-show-entry): Make this work correctly also if it is
3201         the last entry in the file.
3202         (org-end-of-line, org-beginning-of-line): Make prefix arg work, by
3203         falling back to normal, default command.
3204         (org-ctrl-c-ctrl-c): When called with prefix arg at a non-checkbox
3205         item, call the checkbox toggler to get a box.
3207         * org-list.el (org-toggle-checkbox): Make double prefix set the
3208         checkbox to "[-]".
3209         (org-fix-bullet-type): Only replace bullet if it is changed.
3210         (org-renumber-ordered-list): Handle case when first item does not
3211         have a number.
3213         * org.el (org-add-log-setup): Fix positioning when
3214         `org-log-states-order-reversed' is nil.
3216         * org-clock.el (org-clock-in): Fix positioning when
3217         `org-log-states-order-reversed' is nil.
3218         (org-clock-find-position): Fix positioning when
3219         `org-log-states-order-reversed' is nil.
3221 2009-02-14  Carsten Dominik  <carsten.dominik@gmail.com>
3223         * org-clock.el (org-clock-into-drawer): Take default from
3224         `org-log-into-drawer'.
3225         (org-clock-find-position): Look for the correct drawer.
3227         * org.el (org-log-into-drawer): Renamed from
3228         `org-log-state-notes-into-drawer'.
3229         (org-log-state-notes-into-drawer): New variable alias.
3230         (org-add-log-setup): Make drawer name default to LOGBOOK, not
3231         CLOCK.
3232         (org-insert-property-drawer): Also skip LOGBOOK drawers.
3234 2009-02-13  Carsten Dominik  <carsten.dominik@gmail.com>
3236         * org-agenda.el (org-agenda): Fix docstring.
3238         * org.el ("org-plot"): Help loading org-plot.
3239         (org-metaleft-hook, org-metaright-hook, org-metaup-hook)
3240         (org-metadown-hook, org-shiftmetaleft-hook)
3241         (org-shiftmetaright-hook, org-shiftmetaup-hook)
3242         (org-shiftmetadown-hook, org-metareturn-hook): New hooks.
3243         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
3244         (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
3245         (org-metadown, org-ctrl-c-ctrl-c): Call the appropriate hook.
3247         * org-publish.el (org-publish-get-base-files): Allow symbol `any'
3248         for selecting files with any (and even without) extension.
3250         * org.el (org-save-all-org-buffers): Also save id locations.
3251         (org-revert-all-org-buffers): Also load id locations.
3253 2009-02-12  Carsten Dominik  <carsten.dominik@gmail.com>
3254         * org.el (org-drawers): Add LOGBOOK to the default drawers.
3255         (org-log-state-notes-into-drawer): New option.
3256         (org-add-log-setup): Place the sate note marker into the drawer,
3257         create drawer when necessary.
3258         (org-refile-targets): Document special interpretation of LEVEL
3259         when odd-levels are used.
3261 2009-02-12  Carsten Dominik  <carsten.dominik@gmail.com>
3263         * org.el (org-store-log-note): Fix note indentation when adding
3264         notes to end of list.
3266         * org-exp.el (org-export-as-html): Add TODO keyword as extra
3267         class, so that each keyword can get special colors through CSS.
3269         * org-clock.el (org-clock-out): Add another nil for the previous
3270         state into the call to `org-add-log-setup'.
3272         * org.el (org-log-note-previous-state): New variable.
3273         (org-log-note-headings): New %S escape for old state.
3274         (org-todo): Call the note setup with the old state as an
3275         argument.
3276         (org-add-note): Add another nil for the previous state into the
3277         call to `org-add-log-setup'.
3278         (org-add-log-setup): New argument PREV-STATE.
3279         (org-add-log-note): Handle new %S escape.
3280         (org-store-log-note): Handle new %S escape.
3282 2009-02-11  Carsten Dominik  <carsten.dominik@gmail.com>
3284         * org-clock.el (org-clock-find-position): Do not swallow an item
3285         less indented than the CLOCK line itself.
3286         (org-clock-in): Push markers to lin after the clock line.
3287         (org-clock-find-position): Handle values of
3288         `org-clock-into-drawer' smaller than 2.
3290         * org-exp.el (org-html-level-start): Add a CSS class to section
3291         numbers.
3292         (org-export-html-toplevel-hlevel): Better documentation of the
3293         influence of this variables on H levels and css classes in
3294         export.
3296 2009-02-10  Carsten Dominik  <carsten.dominik@gmail.com>
3298         * org-agenda.el (org-agenda-custom-commands-local-options): Add
3299         timestamp and nottimestamp to the chooe menu.
3301         * org.el (org-save-all-org-buffers): Moved here from org-agenda.el.
3302         (org-revert-all-org-buffers): New command.
3304 2009-02-09  Carsten Dominik  <carsten.dominik@gmail.com>
3306         * org.el (org-return): Implement `org-return-follows-link' in the
3307         function org-return.  This is more robust than using the mouse
3308         map, I think.
3309         (org-set-regexps-and-options): Match more general #+TODO lines.
3310         (org-make-options-regexp): New optional argument EXTRA, for an
3311         extra regexp.
3312         (org-tab-follows-link): Mark as deprecated.
3314 2009-02-07  Carsten Dominik  <carsten.dominik@gmail.com>
3316         * org-exp.el (org-export-preprocess-string): Remove clock lines
3317         earlier, so that they cannot cotribute to verbatim snippets.
3319 2009-02-06  Carsten Dominik  <carsten.dominik@gmail.com>
3321         * org-exp.el (org-export-remove-or-extract-drawers): Fix regexp
3322         for finding drawers.
3323         (org-export-as-ascii, org-export-as-html): Count levels relative
3324         to the subtree header.
3325         (org-get-min-level): New optional argument OFFSET.
3326         (org-export): Make sure point is restored after popping up that
3327         window.
3329         * org.el (org-do-sort): Also take an inactive timestamp if no
3330         active one is found.
3332         * org-colview-xemacs.el (org-columns-capture-view): Copy before
3333         deleting duplicates.
3335         * org-colview.el (org-columns-capture-view): Copy before
3336         deleting duplicates.
3338         * org-exp.el (org-export-preprocess-string): Fix bug when skipping
3339         text before first headline.
3341         * org.el (org-format-latex): Do not convert LaTeX fragments in
3342         protected examples.
3344 2009-02-04  Carsten Dominik  <carsten.dominik@gmail.com>
3346         * org-exp.el (org-export-html-style-default): Use color values
3347         instead of names for XHTML validation.
3349         * org.el (org-get-scheduled-time, org-get-deadline-time): New
3350         functions.
3351         (org-return-follows-link): Revert making this the default untile
3352         issues are resolved.
3354         * org-agenda.el (org-agenda-skip-if): New conditions timestamp and
3355         nottimestamp.
3357 2009-02-02  Carsten Dominik  <carsten.dominik@gmail.com>
3359         * org.el (org-mode): Make dependence stuff work more reliably.
3360         (org-update-parent-todo-statistics): Fix bug with updating
3361         statistics cookie.
3363         * org-export-latex.el (org-export-latex-emphasis-alist): Use = and
3364         ~ as verbatim delimiters.
3366         * org-exp.el (org-export-html-format-image): New argument
3367         PAR-OPEN.
3368         (org-export-as-html): Pass par-open to
3369         `org-export-html-format-image'.
3371 2009-02-01  Carsten Dominik  <carsten.dominik@gmail.com>
3373         * org.el (org-yank-adjusted-subtrees, org-return-follows-link)
3374         (org-use-fast-todo-selection, org-tags-column): New default
3375         setting for variables, based on a poll what typical uses use.
3377         * org-agenda.el (org-agenda-sorting-strategy)
3378         (org-agenda-tags-column): New default setting for variables, based
3379         on a poll what typical uses use.
3381 2009-01-31  Carsten Dominik  <carsten.dominik@gmail.com>
3383         * org-agenda.el (org-agenda-dim-blocked-tasks): Keep dimming
3384         blocked entries from setting the blocked tag.
3386         * org-exp.el (org-export-html-footnotes-section): Use a more
3387         consistent id for footnotes.
3389         * org-export-latex.el (org-export-latex-classes): Remove the
3390         a4paper option from the default styles.
3392 2009-01-30  Carsten Dominik  <carsten.dominik@gmail.com>
3394         * org.el (org-enforce-todo-checkbox-dependencies): New option.
3395         (org-block-todo-from-checkboxes): New function.
3396         (org-todo): Make tripple prefix arg circumvent blocking.
3398         * org-timer.el (org-timer): Provide the timer feature.
3400         * org.el (org-require-autoloaded-modules): Add a few more files to
3401         the list of autoloaded modules.
3403         * org-agenda.el (org-agenda-todo): Pass ARG to `org-todo'.
3405 2009-01-29  Carsten Dominik  <carsten.dominik@gmail.com>
3407         * org-exp.el (org-export-remove-or-extract-drawers): Only remove
3408         drawers that are unprotected.
3409         (org-export-html-format-image): Make sure inlined LaTeX fragment
3410         images remain inlined.
3412         * org.el (org-toggle-ordered-property): New function.
3413         (org-mode-map): Add a key for `org-toggle-ordered-property'.
3414         (org-org-menu): Add menu entries for TODO dependencies.
3416 2009-01-28  Carsten Dominik  <carsten.dominik@gmail.com>
3418         * org.el (org-default-properties): Add ORDERED to the default
3419         properties, to get completion support for it.
3421         * org-list.el (org-update-checkbox-count): Update more than one cookie.
3423         * org.el (org-update-parent-todo-statistics): Update more than one
3424         cookie.
3426         * org-agenda.el (org-agenda-get-todos): Start search from correct
3427         position.
3429         * org.el (org-fast-todo-selection): Make sure TODO selection does
3430         not change buffer position.
3432         * org-list.el (org-toggle-checkbox): Implement adding or removing
3433         checkboxes from line or region when called with a prefix
3434         argument.
3436         * org-rmail.el (org-rmail-store-link): Protect the call to
3437         `rmail-narrow-to-non-pruned-header'.
3439         * org-clock.el (org-clock-special-range): Fix week display in
3440         clock tables.
3442         * org-exp.el (org-get-current-options): Fix bug when in indirect
3443         buffer.
3445 2009-01-27  Carsten Dominik  <carsten.dominik@gmail.com>
3447         * org-agenda.el (org-agenda-dim-blocked-tasks): New option.
3448         (org-finalize-agenda): Call `org-agenda-dim-blocked-tasks'.
3449         (org-agenda-dim-blocked-tasks): New function.
3451         * org.el (org-enforce-todo-dependencies): New option.
3452         (org-block-todo-from-children-or-siblings): New function.
3454         * org-faces.el (org-agenda-dimmed-todo-face): New face.
3456         * org.el (org-todo): Return correct state type even if the blocker
3457         throws an error.
3458         (org-modifier-cursor-error): Renamed from
3459         `org-shiftcursor-error'.
3460         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
3461         (org-shiftmetadown): Call `org-modifier-cursor-error'.
3463         * org-agenda.el (org-agenda-todo): Call `org-todo' interactively,
3464         to get real errors from the blocker hook.
3466         * org.el (org-shiftselect-error, org-call-for-shift-select): New
3467         functions.
3468         (org-set-visibility-according-to-property): Turn off the setting
3469         of `org-show-entry-below', to avoid overruling a FOLDED visibility
3470         property.
3472 2009-01-26  Carsten Dominik  <carsten.dominik@gmail.com>
3474         * org.el (org-support-shift-select): New option.
3475         (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft)
3476         (org-shiftcontrolright, org-shiftcontrolleft): Support for shift
3477         selection outside contexts.
3479         * org-list.el (org-at-item-bullet-p): New function.
3481         * org-jsinfo.el (org-infojs-handle-options): Remove unnecessary
3482         variables.
3484         * org-footnote.el (org-footnote-normalize): Remove unnecessary
3485         variable.
3486         (org-insert-footnote-reference-near-definition): Remove
3487         unnecessary let form.
3489         * org-export-latex.el (org-export-latex-first-lines): Add
3490         OPT-PLIST parameter.
3491         (org-export-as-latex): Call `org-export-latex-first-lines' with
3492         opt-plits parameter.
3493         (org-export-latex-preprocess): Remove unnecessary variables.
3495         * org-exp.el (org-infile-export-plist)
3496         (org-export-add-options-to-plist, org-export-kill-licensed-text)
3497         (org-export-remove-headline-metadata)
3498         (org-export-get-title-from-subtree, org-get-min-level)
3499         (org-html-do-expand): Remove innecessary let form.
3501         * org-colview-xemacs.el (org-columns-display-here): Remove
3502         unnecessary variables.
3504         * org-colview.el (org-columns-display-here): Remove unnecessary
3505         variables.
3507         * org-bbdb.el (org-bbdb-anniversaries): Remove unnecessary
3508         variables.
3510         * org-id.el (org-id-alist-to-hash, org-id-find-id-in-file): Remove
3511         unnecessary variables.
3513         * org-agenda.el (org-search-view, org-agenda-get-blocks)
3514         (org-agenda-filter-by-tag, org-agenda-action): Remove unnecessary
3515         variables.
3517         * org.el (org-set-emph-re): Clean-up the STACKED stuff.
3518         (org-compact-display-after-subtree-move): Remove unnecessary
3519         variables.
3520         (org-edit-fixed-width-region): Remove unnecessary variables.
3521         (org-edit-src-find-region-and-lang): Remove unnecessary variables.
3522         (org-olpath-completing-read): Remove unnecessary variable.
3523         (org-auto-repeat-maybe): Remove unnecessary variable.
3524         (org-map-entries): Remove unnecessary variable.
3525         (org-buffer-property-keys, org-imenu-get-tree)
3526         (org-speedbar-set-agenda-restriction): Remove unnecessary variables.
3528 -----------------------------------------------------------------
3530 2009-01-26  Carsten Dominik  <carsten.dominik@gmail.com>
3531         * org-exp.el (org-export-remove-timestamps): Never remove
3532         timestamps from tables.
3534         * org-export-latex.el (org-export-latex-first-lines): Add more
3535         options to the preprocessing of the text before the first
3536         headline.
3538 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
3540         * org-faces.el (org-clock-overlay): Make face compatible with
3541         XEmacs.
3543         * org.el (org-yank): Add property for delete-selection mode.
3545         * org-exp.el (org-export-as-html): Turn \par into a paragraph.
3547         * org.el (org-agenda-tags-todo-honor-ignore-options): Declare
3548         variable.
3550         * org-table.el (org-table-insert-hline): Fix typo in fuction call
3551         to `backward-char'.
3553         * org-exp.el (org-export-as-html): Remove the initial space from
3554         colon examples.
3556         * org.el (org-scan-tags): Call
3557         `org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item'.
3559         * org-agenda.el (org-agenda-todo-list, org-agenda-match-view): New
3560         customization groups.
3561         (org-agenda-tags-todo-honor-ignore-options): New option.
3562         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
3563         New function.
3564         (org-agenda-get-todos): Use
3565         `org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item'.
3567 2009-01-24  Carsten Dominik  <carsten.dominik@gmail.com>
3569         * org-exp.el (org-export-format-source-code-or-example): Escape
3570         HTML characters also in examples that anre not treated with
3571         htmlize.  Also, just switch to EXAMPLE processing if we do not
3572         have a good version of htmlize.
3574         * org-rmail.el: Fix copyright notice.
3576         * org.el (org-activate-footnote-links): Improve footnote link
3577         highlighting.
3579         * org-footnote.el (org-footnote-normalize): Fix finding the end of
3580         a footnote definition at the end of the file.
3582         * org-table.el (org-table-get-specials): Add an imagined hline at
3583         the end of the table.  This can be useful for references that want
3584         to go to the end of the table.  Also fix bug when computing last
3585         row constants, in tables that do not start right at the right
3586         margin.
3587         (org-table-eval-formula): Match and replace remove references.
3588         (org-table-formula-substitute-names): Make sure that names inside
3589         a "remote" call are left alone, the will be replaced later when
3590         the remote call is handled.
3591         (org-table-convert-refs-to-rc): Do not convert things that might
3592         look like a reference, but are really part of an ID or namei n a
3593         remote reference.
3594         (org-table-get-remote-range): New function.
3596 2009-01-22  Carsten Dominik  <carsten.dominik@gmail.com>
3598         * org-faces.el (org-clock-overlay): Fix bug in face definition.
3600         * org-clock.el (org-clock-put-overlay): Use new face instead of
3601         `secondary-selection'.
3603         * org-faces.el (org-clock-overlay): New face.
3605 2009-01-21  Carsten Dominik  <carsten.dominik@gmail.com>
3607         * org-exp.el (org-get-current-options): Include the option for
3608         publishing time stamps.
3610         * org.el (org-toggle-heading): Renamed from
3611         `org-toggel-region-headings'.
3612         No longer needs a region defined, but will use it if there is one.
3613         (org-ctrl-c-star): Simplified, relying more on the internal
3614         workings of `org-toggle-heading'.
3615         (org-toggle-item): Renamed from `org-toggle-region-items'.
3616         No longer needs a region defined, but will use it if there is one.
3617         (org-ctrl-c-minus): Simplified, relying more on the inernal
3618         workings of `org-toggle-item'.
3620         * org-export-latex.el (org-export-latex-preprocess): Fix bug in
3621         environment detection.  Also, do real changes only in unprotected
3622         places.
3624 2009-01-20  Carsten Dominik  <carsten.dominik@gmail.com>
3626         * org-export-latex.el (org-export-latex-quotation-marks): Use
3627         `org-if-unprotected-1'.
3628         (org-export-latex-set-initial-vars): Check for class definition in
3629         property.
3631         * org-macs.el (org-if-unprotected-1): New macro.
3633 2009-01-19  Carsten Dominik  <carsten.dominik@gmail.com>
3635         * org-compat.el (org-count-lines): New function.
3637         * org-exp.el (org-export-format-source-code-or-example): Handle
3638         switches related to text areas.
3640         * org.el (org-activate-footnote-links): Don't allow match inside a
3641         link.
3643         * org-footnote.el (org-footnote-re): Don't allow match inside a link.
3645         * org-export-latex.el (org-export-latex-links): Keep a relative
3646         path relative also after export.
3648         * org-exp.el (org-export-html-scripts): Fix HTML snippet.
3650         * org.el (org-make-tags-matcher): Never use IDO for completing the
3651         tags matcher match string.
3652         (org-completing-read): Also remove the special biding for "?".
3654         * org-attach.el (org-attach-allow-inheritance): New option.
3655         (org-attach-inherited): New variable.
3656         (org-attach-dir): Handle properties related to the attachment
3657         directory.
3658         (org-attach-check-absolute-path): New function.
3659         (org-attach-set-directory, org-attach-set-inherit): New commands.
3660         (org-attach): Accommodate the new commands in the dispatcher.
3662 2009-01-18  Carsten Dominik  <carsten.dominik@gmail.com>
3664         * org-compat.el (org-fit-window-to-buffer): Fix bug with using
3665         `window-full-width-p'.
3667         * org-exp.el (org-export-as-html): Only check for images files
3668         that really can be inlined
3670         * org.el (org-image-file-name-regexp, org-file-image-p): Allow the
3671         list of extensions to be a parameter.
3673         * org-exp.el (org-export-html-inline-image-extensions): New
3674         variable.
3676         * org-agenda.el (org-prepare-agenda): Use
3677         `org-agenda-block-separator'.
3678         (org-agenda-block-separator): New option.
3680 2009-01-17  Carsten Dominik  <carsten.dominik@gmail.com>
3682         * org-export-latex.el (org-export-latex-tables): Call
3683         `org-table-clean-before-export' with the new optional argument.
3685         * org-exp.el (org-table-clean-before-export): New optional
3686         parameter MAYBE-QUOTED, allows for quoted characters like \# in
3687         first column.
3689 2009-01-16  Carsten Dominik  <carsten.dominik@gmail.com>
3691         * org-plot.el (org-plot/gnuplot): Fix text-ind parameter for
3692         histograms.
3694         * org-colview.el (org-colview-construct-allowed-dates): Better
3695         error catching when a date/time property does not have allowed
3696         values defined.
3698         * org-colview-xemacs.el (org-colview-construct-allowed-dates):
3699         Better error catching when a date/time property does not have
3700         allowed values defined.
3702 2009-01-14  Carsten Dominik  <carsten.dominik@gmail.com>
3704         * org.el (org-map-entries): Restore point and restriction after
3705         `org-map-entries'.
3707 2009-01-13  Carsten Dominik  <carsten.dominik@gmail.com>
3709         * org.el (org-time=, org-time<, org-time<=, org-time>)
3710         (org-time>=, org-time<>): Make sure both values are dates.
3712 2009-01-11  Carsten Dominik  <carsten.dominik@gmail.com>
3714         * org-archive.el (org-extract-archive-heading): Allow %s for file
3715         name also in achive location heading.
3717 2009-01-10  Carsten Dominik  <carsten.dominik@gmail.com>
3719         * org-archive.el (org-add-archive-files): Uniquify the list before
3720         returning it.
3722 2009-01-09  Carsten Dominik  <carsten.dominik@gmail.com>
3724         * org-compat.el (org-fit-window-to-buffer): Use
3725         `window-full-width-p'.
3727         * org-export-latex.el (org-export-latex-fixed-width): Enforce the
3728         space after the colon in short examples.
3730         * org-exp.el (org-export-protect-colon-examples): Rewritten, to
3731         enforce a space after the colon.  However, we also allow lines
3732         that are *only* a colon.
3733         (org-export-as-html): Enforce the space after the colon in short
3734         examples.
3735         (org-export-preprocess-string): Do the colon example protection
3736         earlier.
3737         (org-export-remove-timestamps): Do not check for protection at the
3738         end of the line.
3740 2009-01-08  Carsten Dominik  <carsten.dominik@gmail.com>
3742         * org.el (org-format-latex-options): Add new matcher for single
3743         letters between dollars.
3744         (org-get-header): Function removed.
3745         (org-heading-components): New function.
3747         * org-exp.el (org-export-define-heading-targets): Record ID's also
3748         as alternative targets.
3749         (org-export-as-html): Interpret "id:" links to other files by
3750         preserving the relative path.
3752         * org-jsinfo.el (org-infojs-handle-options): Catch the case if v
3753         is nil.
3755         * org-exp.el (org-export-normalize-links): Protect the main link,
3756         to avoid special character processing.
3758         * org-export-latex.el (org-export-latex-special-keyword-regexp):
3759         New variable.
3760         (org-export-latex-special-string-regexps): Variable removed.
3761         (org-export-latex-keywords): Use the new regexp.
3763         * org-exp.el (org-export-handle-include-files): Fetch switches and
3764         put them into the BEGIN statement.
3766         * org-timer.el (org-timer-mode-line-string): New variable.
3768         * org-clock.el (org-clock-mode-line-map): Renamed from
3769         `org-clock-mode-map'.
3770         (org-clock-mode-line-timer): Renamed from `org-mode-line-timer'.
3771         (org-clock-update-mode-line): Renamed from `org-update-mode-line'.
3772         (org-clock-put-overlay): Renamed from `org-put-clock-overlay'.
3773         (org-clock-remove-overlays): Renamed from
3774         `org-remove-clock-overlays'.
3776         * org-timer.el (org-timer-pause-or-continue): Implement stopping
3777         and mode line display.
3778         (org-timer-stop): New command.
3779         (org-timer-seconds): Return correct time when timer is paused.
3780         (org-timer-mode-line-timer): New variable.
3781         (org-timer-set-mode-line, org-timer-update-mode-line): New
3782         functions.
3784         * org.el (org-insert-heading):  Handle new value `auto' for
3785         `org-blank-before-new-entry'.
3786         (org-org-menu): Add new items for timer functions.
3788         * org-list.el (org-insert-item): Handle new value `auto' for
3789         `org-blank-before-new-entry'.
3791         * org.el (org-blank-before-new-entry): New value `auto', made
3792         default.
3794 2009-01-07  Carsten Dominik  <carsten.dominik@gmail.com>
3796         * org-exp.el (org-export-normalize-links): If the link is also
3797         used as the description, protect the description.
3799 2009-01-06  Carsten Dominik  <carsten.dominik@gmail.com>
3801         * org.el (org-closest-date): Fix bug with yearly repeats, in
3802         combination with preference of the past as it is used for deadline
3803         and scheduling search.
3805         * org-exp.el (org-html-handle-time-stamps): No longer check for
3806         the `org-export-with-timestamps' option, because the preprocesser
3807         has taken care of this already.
3809         * org.el (org-entry-properties): Catch the case when this is
3810         called in a non-org-mode file.
3812         * org-export-latex.el (org-export-latex-remove-from-headlines):
3813         Variable made obsolete, also LaTeX export now uses the standard
3814         variables.
3815         (org-export-as-latex): Add the timestamps parameter to the
3816         preprocessor parameter list.
3817         (org-export-latex-content): Export the remaining keywords without
3818         considering to remove them.
3819         (org-export-latex-keywords-maybe): Make the REMOVE-LIST optional.
3820         Use bold font instead of tt font for the keywords.
3821         (org-export-latex-fontify-headline): Format headlines, assuming
3822         that all keywords still present should be published.
3823         (org-export-latex-keywords): Remove argument TIMESTAMPS and just
3824         publish what ever remains of the time stamps.
3825         (org-export-latex-list-parameters): New option.
3826         (org-export-latex-lists): Pass additional parameters to the list
3827         converter.
3829         * org-exp.el (org-export-preprocess-string): Remove clock lines
3830         and timestamps already in the preprocesor.
3831         (org-export-remove-timestamps, org-export-remove-clock-lines): New
3832         functions.
3833         (org-export-as-ascii, org-export-as-html): Add the timestamps
3834         parameter to the preprocessor parameter list.
3836         * org-list.el (org-list-parse-list): Parse for checkboxes.
3837         (org-list-to-generic): Introduce and handle new parameters :cbon
3838         and :cboff.
3839         (org-list-to-latex, org-list-to-html, org-list-to-texinfo): Add
3840         optional parameter PARAMS.
3842         * org-export-latex.el (org-export-latex-special-chars): Fix
3843         problems with interpreting dollar signs.
3844         (org-inside-latex-math-p): New function.
3845         (org-export-latex-preprocess): Protect all the math fragments.
3847         * org.el (org-latex-regexps): Allow a dash after a dollar.
3849         * org-w3m.el (org-w3m-copy-for-org-mode): Always deactivate the
3850         mark after copying.
3852         * org-agenda.el (org-run-agenda-series): Have series options set
3853         when finalizing the agenda.
3855         * org-exp.el (org-export-format-source-code-or-example): Protect
3856         the converted examples.
3858         * org.el (org-set-regexps-and-options): Fix the regexp
3859         `org-complex-heading-regexp'.
3861 2009-01-05  Carsten Dominik  <carsten.dominik@gmail.com>
3863         * org.el (org-edit-src-get-label-format): New function.
3864         (org-coderef-label-format): New option.
3865         (org-edit-src-code, org-edit-src-find-region-and-lang): Parse for
3866         a label format specification and make sure it is used in the edit
3867         buffer.
3868         (org-edit-src-get-label-format): New function.
3869         (org-store-link): Handle new coderef formats.
3870         (org-link-search): Handle new coderef formats.
3872         * org-footnote.el (org-footnote-create-definition)
3873         (org-footnote-goto-local-insertion-point): Make footnote insertion
3874         work correctly when the "Footnotes" headline is the last line in
3875         the buffer.
3877         * org.el (org-goto-marker-or-bmk): Expose context after jumping to
3878         the location.
3880 2009-01-04  Carsten Dominik  <carsten.dominik@gmail.com>
3882         * org-w3m.el (org-w3m): New customization group.
3883         (org-w3m-deactivate-mark): New option.
3884         (org-w3m-copy-for-org-mode): Deactivate region, unless the user
3885         option say not to.
3887 2009-01-02  Carsten Dominik  <carsten.dominik@gmail.com>
3889         * org.el (org-set-font-lock-defaults): Trigger footnote
3890         fontification.
3891         (org-activate-footnote-links): New function.
3892         (org-activate-links): New entry `footnote'.
3894         * org-faces.el (org-footnote): New face.
3896 2009-01-01  Carsten Dominik  <carsten.dominik@gmail.com>
3898         * org-macs.el (org-re): Handle the [:word:] class.
3900         * org-exp.el (org-export-preprocess-string): Call
3901         `org-export-protect-colon-examples'.
3902         (org-export-protect-colon-examples): Renamed from
3903         `org-export-protect-examples', and scope limited to lines starting
3904         with a colon.
3906 2008-12-31  Carsten Dominik  <carsten.dominik@gmail.com>
3908         * org-exp.el (org-export-preprocess-string): Move the preprocess
3909         hook to after turning on Org-mode.
3910         (org-export-preprocess-after-include-files-hook)
3911         (org-export-preprocess-after-tree-selection-hook)
3912         (org-export-preprocess-before-backend-specifics-hook)
3913         (org-export-preprocess-final-hook): New hooks.
3914         (org-export-preprocess-string): Run the new hooks.
3916         * org.el (org-ctrl-c-minus): Fix indentation for new items.
3918         * org-footnote.el: New file.
3920         * org.el (org-footnote): Require footnote code.
3921         (org-startup-options): Add new footnote options.
3922         (org-mode-map): New keybindig for footnotes.
3923         (org-ctrl-c-ctrl-c): Add function at footnotes.
3924         (org-org-menu): New menu entries for footnotes.
3926         * org-export-latex.el (org-export-as-latex): Pass footnote
3927         variable to preprocessor.
3928         (org-export-latex-preprocess): Treat multiple references to a
3929         footnote.
3931         * org-exp.el (org-export-preprocess-string): Call
3932         `org-footnote-normalize'.
3933         (org-export-as-ascii, org-export-as-html): Pass footnote variable
3934         to preprocessor.
3935         (org-export-as-html): Treat multiple references to a footnote.
3937 2008-12-26  Carsten Dominik  <carsten.dominik@gmail.com>
3939         * org-export-latex.el (org-export-latex-links): Handle coderef
3940         links.
3942         * org.el (org-bracket-link-analytic-regexp++): New variable.
3943         (org-make-link-regexps): Initialize
3944         `org-bracket-link-analytic-regexp++'.
3945         (org-store-link): Implement special case in edit-src buffer.
3946         (org-insert-link): No use of ide to insert stored links.
3947         (org-link-search): Implement special case for coderefs.
3949         * org-exp.el (org-export-html-scripts): New constant.
3950         (org-export-html-style-default): Add a new style for highlighted
3951         code.
3952         (org-export-code-refs): New variable.
3953         (org-export-preprocess-string): Initialize `org-export-code-refs'.
3954         Call `org-export-replace-src-segments-and-examples'
3955         No longer call `org-export-protect-examples'.
3956         (org-export-target-internal-links): Take care of coderef targets.
3957         (org-export-last-code-line-counter-value): New variable.
3958         (org-export-replace-src-segments-and-examples): Renamed from
3959         `org-export-replace-src-segments', and modified.
3960         (org-export-format-source-code-or-example): Renamed from
3961         `org-export-format-source-code'.
3962         (org-export-number-lines): New function.
3963         (org-export-as-ascii, org-export-as-html): Handle coderef links.
3965 --------------------------------------------------------------------------
3967 2008-12-23  Carsten Dominik  <carsten.dominik@gmail.com>
3969         * org-remember.el (org-remember-handler): Safer way to get a new
3970         buffer accessing the target file.
3972         * org.el (org-refile-get-location): Handle case of current buffer
3973         not having a file associated with it.
3975 2008-12-22  Carsten Dominik  <carsten.dominik@gmail.com>
3977         * org-table.el (org-table-get-formula): Only ask to overwrite
3978         field formula if there really is one.
3980         * org-id.el (org-id-find): Allow the ID to be a symbol or a
3981         number, by converting these to a string.
3983         * org-colview.el (org-dblock-write:columnview): Allow ID to be
3984         located in a different file.
3986         * org-colview-xemacs.el (org-dblock-write:columnview): Copy from
3987         org-colview.el.
3989 2008-12-21  Carsten Dominik  <carsten.dominik@gmail.com>
3991         * org.el (org-completion-use-ido): Enhance docstring of
3992         `org-completion-use-ido'.
3994         * org-export-latex.el (org-export-latex-make-header): Double the %
3995         in the time stamp format.
3996         (org-export-latex-special-chars): Handle case where there is no
3997         match group 3.
3999 2008-12-20  Carsten Dominik  <carsten.dominik@gmail.com>
4001         * org.el (org-get-refile-targets, org-refile-get-location): Use
4002         expanded file name to improve comparison.
4004 2008-12-19  Carsten Dominik  <carsten.dominik@gmail.com>
4006         * org.el (org-scan-tags): Rescan for tags, to get the correct
4007         upcase/downcase stuff.  This slows things down for now, but it
4008         works.
4009         (org-mode): Make sure the tag-faces regexp is initialized.
4011         * org-export-latex.el (org-export-latex-links): Fix bug with
4012         undefined label.
4014         * org-table.el (org-table-get-specials): Set
4015         `org-table-current-last-data-line'.
4016         (org-table-current-last-data-line): New variable.
4017         (org-table-insert-column, org-table-delete-column)
4018         (org-table-move-column, org-table-fix-formulas): Call
4019         `org-table-fix-formulas' a second time to fix the $LR references.
4020         (org-table-get-specials): Add the $LR references to the tables.
4021         (org-table-get-formula): Do not offer last-row names as LHS of
4022         formulas.
4024         * org.el (org-store-link): Capture link description from
4025         `org-id-store-link'.
4027         * org-exp.el (org-export-html-format-image): Add the / to the end
4028         of the <img> tag.
4029         (org-export-format-source-code): Surround example by empty lines,
4030         to make sure it will not be inside a paragraph.
4032         * org.el (org-ido-switchb): New function.
4034 2008-12-18  Carsten Dominik  <carsten.dominik@gmail.com>
4036         * org-agenda.el (org-agenda-show): New prefix argument
4037         FULL-ENTRY.
4039         * org.el (org-sort-entries-or-items): Add a COMPARE-FUNC
4040         argument.
4042         * org-agenda.el (org-agenda-set-tags): Leave getting the tags to
4043         `org-agenda-change-all-lines'.
4044         (org-agenda-change-all-lines): Removed FORCE-TAGS argument, the
4045         tags are now retrieved locally.
4047 2008-12-17  Carsten Dominik  <carsten.dominik@gmail.com>
4049         * org.el (org-get-outline-path): Fix bug if level is not given.
4050         (org-org-menu): Do not quote function in menu vector.
4052         * org-agenda.el (org-finalize-agenda): Fix typo with variable
4053         name.
4055 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
4057         * org.el (org-refile): Avoid refiling to within the region to be
4058         refiled.
4060         * org-export-latex.el (org-export-latex-special-chars): Replace
4061         special characters also in tables.
4063         * org-agenda.el (org-agenda-change-all-lines): New argument
4064         FORCE-TAGS.
4065         (org-agenda-set-tags): Cet the new tags and pass them to
4066         `org-format-agenda-item'.
4068 2008-12-15  Carsten Dominik  <carsten.dominik@gmail.com>
4070         * org-export-latex.el (org-export-latex-classes): Add longable as
4071         a default package to all classes.
4072         (org-export-latex-tables): Handle the longtable attribute and the
4073         align attribute.
4075         * org-table.el (orgtbl-to-generic): Handle tables that start with
4076         a hline.
4078         * org-export-latex.el (org-export-latex-emphasis-alist): Switch to
4079         \verb for colde-like snippets.
4080         (org-export-as-latex): Fix issues with region export.
4082         * org.el (org-up-heading-safe): Speed up function by using a
4083         direct regexp search.
4084         (org-olpa): New variable.
4085         (org-get-outline-path): Speed-up path constructions in cases where
4086         this is possible because the entire hierarchy is scanned anyway.
4087         (org-refile-get-location): Don't compare the truenames of files,
4088         this is too slow.
4089         (org-goto-max-level): New option.
4090         (org-goto): Use `org-goto-max-level'.
4092 2008-12-12  Tassilo Horn  <tassilo@member.fsf.org>
4094         * org-gnus.el (org-gnus-article-link, org-gnus-article-link):
4095         Strip angle brackets from message-ids in the former and don't do
4096         it in the latter.
4097         (org-gnus-follow-link): Open summary reliable, even if the last
4098         messages were deleted, and handle empty groups, too.
4100 2008-12-12  Carsten Dominik  <carsten.dominik@gmail.com>
4102         * org-export-latex.el (org-export-latex-emphasis-alist): Use \verb
4103         instead of \texttt for the =...= and ~===~ emphasis environments.
4104         (org-export-as-latex): Remove any old :org-license-to-kill text
4105         properties.
4106         (org-export-as-latex): Pass RBEG to `org-export-latex-first-lines'.
4107         (org-export-latex-make-header): Add some hard space after the
4108         table of contents.
4109         (org-export-latex-first-lines): Accept RBEG argument.  Mark
4110         exported text so that it will be excuded in further steps.
4112         * org-table.el (org-table-get-specials): Make @0 reference the
4113         last line in a table.
4114         (org-table-recalculate): Improve docstring.
4116 2008-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
4118         * org.el (org-log-done): Fix docstring.
4120 2008-12-10  Carsten Dominik  <carsten.dominik@gmail.com>
4122         * org-exp.el (org-export-html-format-image): Fix bugs.
4124         * org-export-latex.el (org-export-latex-tables)
4125         (org-export-latex-links): Implement attribute, label, and caption
4126         handling.
4128         * org-exp.el (org-export-html-style-default): Add style
4129         definitions for the figure div.
4130         (org-export-preprocess-string, org-export-as-html): Implement
4131         attribute, label, and caption handling.
4132         (org-export-attach-captions-and-attributes): New function.
4133         (org-export-html-format-image): New function.
4134         (org-format-org-table-html): Implement attribute, label, and
4135         caption handling.
4137         * org.el (org-find-text-property-in-string): New function.
4138         (org-extract-attributes): Use the property org-attr instead of
4139         org-attrobutes, because this property is now set with the #+ATTR
4140         lines.
4142 2008-12-08  Carsten Dominik  <carsten.dominik@gmail.com>
4144         * org-compat.el (org-substring-no-properties): Fix for XEmacs, for
4145         the case that FROM is nil.
4147         * org.el (org-before-first-heading-p): New function.
4149 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
4151         * org-exp.el (org-export-as-html): Do not add a space before
4152         enforces line breaks.
4153         (org-export-as-html): Close paragraph before blockquote and verse
4154         tags.
4156 2008-12-06  Carsten Dominik  <carsten.dominik@gmail.com>
4158         * org-id.el (org-id-locations-file): Wrap file name with
4159         `convert-standard-filename'.
4160         (org-id-files): New variable.
4161         (org-id-use-hash): New option.
4162         (org-id-update-id-locations): Also search in all files current
4163         listed in `org-id-files'.  Convert the resulting alist to a hash
4164         if the user customation says so.
4165         (org-id-locations-save): Handle he case if `org-id-locations' is a
4166         hash.
4167         (org-id-locations-load): Convert the alist to a hash.
4168         (org-id-add-location): Handle the hast case.
4169         (kill-emacs-hook): Make sure id locations are saved when Emacs is
4170         exited.
4171         (org-id-hash-to-alist, org-id-alist-to-hash)
4172         (org-id-paste-tracker): New functions.
4174 -------------------------------------------------------------------------
4176 2008-12-05  Carsten Dominik  <carsten.dominik@gmail.com>
4178         * org-agenda.el (org-agenda-goto-calendar): Remove duplicate let
4179         bindings of calendar variables.
4181         * org-table.el (org-table-find-row-type): Renamed from
4182         `org-find-row-type'.
4183         (org-table-rewrite-old-row-references): Renamed from
4184         `org-rewrite-old-row-references'.
4185         (org-table-shift-refpart): Renamed from `org-shift-refpart'.
4186         (org-table-cleanup-narrow-column-properties): Renamed from
4187         `org-cleanup-narrow-column-properties'.
4189 2008-12-05  Carsten Dominik  <carsten.dominik@gmail.com>
4191         * org-table.el (org-find-row-type): New arguments DESC and CLINE,
4192         for better error messages.
4193         (org-table-get-descriptor-line): Supply the new arguments to
4194         `org-find-row-type'.
4195         (org-table-error-on-row-ref-crossing-hline): New option.
4197         * org.el (org-target-link-regexp): Make buffer-local.
4198         (org-move-subtree-down): Fix bug with trees at beginning of
4199         buffer.
4201 2008-12-04  Carsten Dominik  <carsten.dominik@gmail.com>
4203         * org-faces.el (org-set-tag-faces): New function.
4204         (org-tags-special-faces-re): New variable.
4206         * org.el (org-font-lock-add-tag-faces, org-get-tag-face): New functions.
4208         * org-faces.el (org-tag-faces): New option.
4209         (org-tag): Mention `org-tag-faces' in the docstring.
4211 2008-12-03  Carsten Dominik  <carsten.dominik@gmail.com>
4213         * org-exp.el (org-export-html-style-default): Implement new
4214         quoting.
4216         * org-jsinfo.el (org-infojs-template): Implement new quoting.
4218         * org-w3m.el (w3m-minor-mode-hook): Also add the special copy
4219         command to the `w3m-minor-mode-map'.
4221         * org-archive.el (org-archive-to-archive-sibling): Protect
4222         `this-command' to avoid appending kills during archiving.
4224         * org-exp.el (org-export-with-priority): New variable.
4225         (org-export-add-options-to-plist): Use `org-export-plist-vars'
4226         instead of internal list of strings and properties.
4227         (org-print-icalendar-entries): Retrieve the location property with
4228         inheritance.
4230 2008-12-02  Carsten Dominik  <carsten.dominik@gmail.com>
4232         * org-exp.el (org-export-with-todo-keywords): New option.
4233         (org-export-plist-vars): Include also the keys for the #+OPTIONS
4234         line.
4235         (org-default-export-plist, org-export-add-options-to-plist)
4236         (org-export-as-ascii, org-export-as-html): Use the new structure
4237         of `org-export-plist-vars'.
4239         * org.el (org-map-entries): Return all values.
4241 2008-11-29  Carsten Dominik  <carsten.dominik@gmail.com>
4243         * org.el (org-matcher-time): Recognize more special values.
4245         * org-gnus.el (fboundp): Fix defvaralias for XEmacs.
4247 2008-11-27  Carsten Dominik  <carsten.dominik@gmail.com>
4249         * org.el (org-tags-exclude-from-inheritance): New option.
4250         (org-tag-inherit-p, org-remove-uniherited-tags): Respect
4251         `org-tags-exclude-from-inheritance'.
4253         * org-agenda.el (org-agenda-show-inherited-tags): New option.
4254         (org-format-agenda-item): Add inherited tags to the agenda line
4255         string, and make sure that properties are kept when downcasing the
4256         tags list.
4257         (org-agenda-add-inherited-tags): New function.
4258         (org-downcase-keep-props): New function.
4260         * org.el (org-scan-tags): Mark inherited tags with a text
4261         property.
4262         (org-get-tags-at): Mark inherited tags with a text property.
4263         (org-add-prop-inherited): New function.
4265         * org-agenda.el (org-agenda-add-inherited-tags): New function.
4266         (org-agenda-show-inherited-tags): New option.
4268 2008-11-26  Carsten Dominik  <carsten.dominik@gmail.com>
4270         * org.el (org-modules): Add org-w3m to the default modules.
4272         * org-table.el (orgtbl-self-insert-command): Make S-SPC work in
4273         orgtbl-mode.
4274         (orgtabl-create-or-convert-from-region): New command.
4276         * org-exp.el (org-export-as-ascii): Remove the handling of
4277         targets.
4278         (org-export-ascii-preprocess): Handle targets already in this
4279         function.
4281 2008-11-25  Carsten Dominik  <carsten.dominik@gmail.com>
4283         * org-timer.el (org-timer-start-time): Define this variable.
4284         (org-timer-item): Make argument optional.
4286         * org-list.el (org-insert-item): Automatically insert a timer item
4287         if the current list is a timer list.
4289         * org-timer.el: New file.
4291         * org-publish.el (org-publish-org-index): Only exclude the index
4292         file in the main directory from being added to the site-map.
4293         (org-publish-get-project-from-filename): If the current project is
4294         a component, start publishing from the parent project.
4296 2008-11-24  Carsten Dominik  <carsten.dominik@gmail.com>
4298         * org-table.el (orgtbl-ret): Fix RET at beginning-of-buffer.
4300         * org-publish.el (org-publish-org-index): Improve removal of
4301         temporary buffers.
4303         * org-agenda.el (org-get-closed): Re-apply changes
4304         accidentially overwritten by last commit to Emacs.
4306         * org.el (org-outline-path-complete-in-steps): New option.
4307         (org-refile-get-location): Honor
4308         `org-outline-path-complete-in-steps'.
4309         (org-agenda-change-all-lines, org-tags-sparse-tree)
4310         (org-time-string-to-absolute, org-small-year-to-year)
4311         (org-link-escape): Re-apply changes accidentially overwritten
4312         by last commit to Emacs.
4314 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
4316         * org-clock.el (org-dblock-write:clocktable): Make sure the
4317         clocktable sees the first line.
4318         (org-clock-in): Warn if the clock cannot be resumed.
4320 2008-11-22  Carsten Dominik  <carsten.dominik@gmail.com>
4322         * org.el (org-open-at-point): Fix mixup about interactive and
4323         non-interactive elisp links.
4325 2008-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
4327         * org-exp.el (org-export-preprocess-string): Allow one comment
4328         line before the first headline to always be included.  This is
4329         to not miss a commented target.
4331         * org-mouse.el (org-mouse-insert-item): Call
4332         `org-indent-to-column' instead of `indent-to', for XEmacs
4333         compatibility.
4335         * org.el (org-refile-targets): Fix customize definition so
4336         that it works also in XEmacs.
4337         (org-fixup-indentation): Call `org-indent-to-column' instead
4338         of `indent-to', for XEmacs compatibility.
4340 2008-11-21  Tokuya Kameshima  <kames@fa2.so-net.ne.jp>
4342         * org-mew.el (org-mew-store-link): Get the correct case folder
4343         for refiled messages.
4345 2008-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
4347         * org-exp.el (org-export-as-ascii): Remove the "\\" forced
4348         line break indicators.
4350         * org.el (org-ido-completing-read): Remove the "i:" prefix for
4351         ido-completion propts.
4353 2008-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
4355         * org-remember.el (org-remember-apply-template): Use
4356         `org-substring-no-properties'.
4358         * org-compat.el (org-substring-no-properties): New function.
4360         * org-remember.el (org-remember-apply-template): Use
4361         `org-substring-no-properties' for compatibility.
4363         * org-list.el (org-list-two-spaces-after-bullet-regexp): New
4364         option.
4365         (org-fix-bullet-type): respect
4366         `org-list-two-spaces-after-bullet-regexp'.
4368         * org-clock.el (org-clock-load): Clean up the code.
4370         * org.el (org-adaptive-fill-function): Allow two spaces after
4371         "1." as a list bullet.
4373 2008-11-20  Carsten Dominik  <carsten.dominik@gmail.com>
4375         * org-clock.el (org-clock-save, org-clock-load): Check for
4376         live buffers, existing files, and buffer file names to ensure
4377         consistent information.
4378         (org-clock-persist): Make `clock' a special value of this
4379         variable, and improve docstring.
4381         * org-list.el (org-cycle-list-bullet, org-fix-bullet-type)
4382         (org-get-string-indentation): Adapt indentation when the bullet
4383         width changes.
4385 2008-11-19  Carsten Dominik  <carsten.dominik@gmail.com>
4387         * org-remember.el (org-remember-finalize): Make interactive.
4388         (org-remember-kill): New command.
4389         (org-remember-finish-immediately): Call `org-remember-finalize'
4390         directly.
4391         (org-remember-finalize): Make `org-remember-finalize' an interactive
4392         function.
4394 2008-11-18  Carsten Dominik  <carsten.dominik@gmail.com>
4396         * org-remember.el (org-remember-apply-template): No ido completion
4397         for free prompts in remember templates.
4398         (org-remember-before-finalize-hook): New hook.
4399         (org-remember-mode): New minor mode.
4400         (org-remember-apply-template): Turn on `org-remember-mode'.
4402         * org-id.el (org-id-add-location): Avoid error when no file is
4403         given.
4405         * org-remember.el (org-remember-apply-template): Fix the way how
4406         the list of allowed properties is retrieved from the target file.
4408         * org.el (org-insert-link): Improve file link matching.
4410 2008-11-17  Carsten Dominik  <carsten.dominik@gmail.com>
4412         * org-colview.el (org-columns-display-here): New argument
4413         DATELINE, to trigger using the new face.
4414         (org-agenda-colview-summarize): Call `org-columns-display-here'
4415         with the new argument.
4417         * org-faces.el (org-agenda-column-dateline): New face.
4419         * org-publish.el (org-publish-org-index): Use index-title at page
4420         title, not as section.
4422         * org-exp.el (org-export-html-format-desc): Respect the
4423         org-protect property.
4424         (org-export-as-html): Protect image specifiers that are in the
4425         description part of a link.
4427         * org.el (org-sort-entries-or-items, org-completing-read)
4428         (org-refile-get-location, org-olpath-completing-read, org-todo)
4429         (org-show-todo-tree, org-sparse-tree, org-make-tags-matcher)
4430         (org-set-tags, org-change-tag-in-region, org-fast-tag-selection)
4431         (org-set-property, org-delete-property)
4432         (org-delete-property-globally): Use `org-ido-completing-read'.
4434         * org-remember.el (org-remember-apply-template): Use
4435         `org-ido-completing-read'.
4437         * org-publish.el (org-publish): Use `org-ido-completing-read'.
4439         * org-colview.el (org-columns-edit-value, org-columns-new)
4440         (org-insert-columns-dblock): Use `org-ido-completing-read'.
4442         * org-colview-xemacs.el (org-columns-edit-value)
4443         (org-columns-new, org-insert-columns-dblock): Use
4444         `org-ido-completing-read'.
4446         * org-attach.el (org-attach-delete-one, org-attach-open): Use
4447         `org-ido-completing-read'.
4449         * org-agenda.el (org-todo-list, org-agenda-filter-by-tag): Use
4450         `org-ido-completing-read'.
4452         * org.el (org-time-today): New function.
4453         (org-matcher-time): Use `org-time-today'.  Add special treatment
4454         for "<tomorrow>" and "<yesterday>".
4455         (org-ido-completing-read): New function.
4456         (org-completion-use-ido): New option.
4458         * org-exp.el (org-export-format-source-code): Fix bug in require
4459         htmlize code.
4460         (org-export-target-internal-links): Fix bug in search for text
4461         property.
4463 2008-11-16  Carsten Dominik  <carsten.dominik@gmail.com>
4465         * org-export-latex.el (org-export-latex-subcontent): Interprete
4466         target aliases as additonal labels.
4468         * org-exp.el (org-export-target-aliases): New variable.
4469         (org-export-preprocess-string)
4470         (org-export-handle-invisible-targets): Fill the alias alist.
4471         (org-export-as-html): Remove the &nbsp; from the anchor, and also
4472         assign an id.
4473         (org-html-level-start): Insert the target aliases as additonal
4474         anchors.
4476         * org.el (org-edit-fixed-width-region): Fix bug when starting a new
4477         picture area.
4479 2008-11-15  Carsten Dominik  <carsten.dominik@gmail.com>
4481         * org.el (org-open-at-mouse): Ensure correct link abbreviations
4482         when following a link with the mouse from the agenda.
4484         * org-exp.el (org-export-as-html): Avoid lone </div> when no
4485         headlines are created.
4487 2008-11-14  Carsten Dominik  <carsten.dominik@gmail.com>
4489         * org-exp.el (org-export-preprocess-string): Reorder so that we
4490         can still see ID properties when we collect targets.
4491         (org-export-target-internal-links): Also store targets for ID's.
4493         * org.el (org-link-translation-function): New option.
4494         (org-open-at-point): Call `org-link-translation-function' if
4495         non-nil.
4496         (org-translate-link): New function.
4497         (org-translate-link-from-planner): New function.
4498         (org-open-at-point): Allow interactive commands in elisp links.
4500         * org-exp.el (org-icalendar-cleanup-string): Restore the old
4501         iCalendar quoting.  The new one seems to caus problems with
4502         applications.
4504         * org.el (org-yank): Set `this-command' to `yank', so that
4505         `yank-pop' will work.
4507 2008-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
4509         * org-id.el (org-id-search-archives): New option.
4511         * org.el (org-link-to-org-use-id): New option.
4512         (org-store-link): Use `org-link-to-org-use-id'.
4513         (org-id): Make org-id.el a standard component.
4515 2008-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
4517         * org.el (org-link-expand-abbrev): Implement %h as an escape for a
4518         hexified version of the tag.
4520         * org-exp.el (org-icalendar-cleanup-string): Improve RFC2455
4521         compliance as far as quoting is concerned.
4523         * org-vm.el (org-vm-follow-link): Require `vm-search'.
4525         * org.el (org-up-heading-safe, org-forward-same-level): Always
4526         call `org-back-to-heading' instead of `outline-back-to-heading'.
4527         (org-back-to-heading): New wrapper around outline-back-to-heading,
4528         with a useful error message telling where the error happened.
4530         * org-list.el (org-update-checkbox-count): Always call
4531         `org-back-to-heading' instead of `outline-back-to-heading'.
4533         * org-exp.el (org-export-as-html): Make sure that each <img> tag
4534         has an `alt' attribute, to ensure XHTML validation.
4536 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
4538         * org-publish.el (org-publish-attachment): Allow publishing to
4539         overwrite attachment files.
4541         * org-agenda.el (org-agenda-timerange-leaders): New option.
4542         (org-agenda-get-blocks): Use `org-agenda-timerange-leaders'.
4544         * org.el (org-edit-src-exit): Untabify ASCII image before
4545         returning.
4558 2008-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
4560         * org.el (org-yank): Make any prefix force normal yanking.
4561         Suppress folding if text would be swallowed into a folded
4562         subtree.
4563         (org-yank-folded-subtrees, org-yank): Docstring updates.
4565         * org-agenda.el (org-agenda-compare-effort): Treat no effort
4566         defined as 0.
4568         * org-exp.el (org-export-language-setup): Add Catalan and
4569         Esperanto language entries.
4571 2008-11-10  Carsten Dominik  <carsten.dominik@gmail.com>
4573         * org.el (org-refile): Allow refiling of entire regions.
4575         * org-clock.el (org-clock-time%): New function.
4577         * org.el (org-entry-get, org-entry-delete): Use safer regexps to
4578         retrieve property values.
4580 2008-11-09  Carsten Dominik  <carsten.dominik@gmail.com>
4582         * org-agenda.el (org-agenda-list): Handle the value `only' of
4583         org-agenda-show-log'.
4584         (org-agenda-log-mode): Interpret a double prefix arg.
4586 2008-11-08  Carsten Dominik  <carsten.dominik@gmail.com>
4588         * org-exp.el (org-export-html-footnotes-section): New variable.
4589         (org-export-as-html): Use `org-export-html-footnotes-section' to
4590         insert the footnotes.
4591         (org-export-language-setup): Add "Footnotes" to language words.
4593 2008-11-07  Carsten Dominik  <carsten.dominik@gmail.com>
4595         * org.el (org-yank): Fix bug when not inserting a subtree.
4597 2008-11-06  Carsten Dominik  <carsten.dominik@gmail.com>
4599         * org-vm.el (org-vm-follow-link): Call `vm-preview-current-message'
4600         instead of `vm-beginning-of-message'.
4602         * org.el (org-make-link-regexps): Make sure that links to gnus can
4603         contain brackets.
4605 2008-11-05  Carsten Dominik  <carsten.dominik@gmail.com>
4607         * org-attach.el (org-attach-dir): Remove duplicate ID creation
4608         code.
4610         * org-id.el (org-id-new): Use `org-trim' to extract the uuid from
4611         shell output.
4613         * org.el (org-link-abbrev-alist): Improve customization type.
4615         * org-attach.el (org-attach-expand-link, org-attach-expand): New
4616         functions.
4618         * org-agenda.el (org-agenda-get-progress): Renamed from
4619         `org-get-closed'.  Implement searching for state changes as well.
4620         (org-agenda-log-mode-items): New option.
4621         (org-agenda-log-mode): New option prefix argument, interpreted as
4622         request to show all possible progress info.
4623         (org-agenda-get-day-entries): Call `org-get-progress' instead of
4624         `org-get-closed'.
4625         (org-agenda-set-mode-name): Handle the more complex log mode
4626         settings.
4627         (org-get-closed): New alias, pointing to `org-get-progress'.
4629 2008-11-05  Carsten Dominik  <dominik@science.uva.nl>
4631         * org.el (org-file-apps-defaults-gnu)
4632         (org-file-apps-defaults-macosx)
4633         (org-file-apps-defaults-windowsnt): Add an entry defining the
4634         system command.
4635         (org-file-apps): Allow `system' as key and value.
4636         (org-open-at-point): Explain the effect of a double prefix arg.
4637         (org-open-file): If the argument `in-emacs' is (16),
4638         i.e. corresponding to a double prefix argument, try to open the
4639         file externally.
4641 2008-11-04  Carsten Dominik  <dominik@science.uva.nl>
4643         * org.el (org-insert-link): Abbreviate absolute files names in
4644         links.  Also, fix a bug in which the double C-u prefix would not
4645         be honored.
4647 2008-11-03  Carsten Dominik  <dominik@science.uva.nl>
4649         * org.el (org-insert-heading): If buffer does not end with a
4650         newline, add one if necessary to insert headline correctly.
4652         * org-exp.el (org-export-as-html): Make sure that <hr/> is between
4653         paragraphs, not inside.
4655         * org.el (org-todo): Quote
4656         `org-agenda-headline-snapshot-before-repeat'.
4658         * org-exp.el (org-export-as-html): Fully process link descriptions.
4659         (org-export-html-format-desc): New function.
4660         (org-export-as-html): Collect footnotes into the correct basket.
4661         (org-html-protect): No longer protect quotations marks here, this
4662         goes wrong.
4664         * org-agenda.el (org-agenda-remove-marked-text): Bind variable
4665         BEG.
4667         * org-compat.el (org-fit-window-to-buffer): New function (not
4668         really, a preliminary and incomplete version was present earlier,
4669         but not used).
4671         * org.el (org-fast-todo-selection, org-fast-tag-selection): Use
4672         `org-fit-window-to-buffer'.
4674         * org-exp.el (org-export): Use `org-fit-window-to-buffer'.
4676         * org-agenda.el (org-agenda-get-restriction-and-command)
4677         (org-fit-agenda-window, org-agenda-convert-date): Use
4678         `org-fit-window-to-buffer'.
4680         * org-exp.el (org-export-as-html): Process href links through
4681         `org-export-html-format-href'.
4682         (org-export-html-format-href): New function.
4684         * org-agenda.el (org-agenda-todo): Update only the current
4685         headline if this is a repeated TODO, marked done for today.
4686         (org-agenda-change-all-lines): New argument JUST-THIS, to change
4687         only the current line.
4689         * org.el (org-todo): Take a snapshot of the headline if the
4690         repeater might change it.
4692 2008-11-02  Carsten Dominik  <dominik@science.uva.nl>
4694         * org-publish.el (org-publish-find-title): Remove buffers visited
4695         only for extracting the title.
4697         * org-exp.el (org-export-html-style)
4698         (org-export-html-style-default): Mark style definitions as
4699         unparsed CDATA.
4701         * org-publish.el (org-publish-validate-link): Function
4702         re-introduced.
4704 2008-11-02  Charles Sebold  <csebold@gmail.com>
4706         * org-plot.el (org-plot/add-options-to-plist): Supports timefmt
4707         property.
4708         (org-plot-quote-timestamp-field): New function.
4709         (org-plot-quote-tsv-field): Call timestamp field function when
4710         necessary rather than just quoting as a string.
4711         (org-plot/gnuplot-to-data): Pass in timefmt property.
4712         (org-plot/gnuplot-script): Supports timefmt property.
4713         (org-plot/gnuplot): Checks for timestamp column before checking
4714         for text index column.
4716 2008-11-02  Carsten Dominik  <dominik@science.uva.nl>
4718         * org.el (org-insert-heading): Improve behavior with hidden subtrees.
4720         * org-publish.el (org-publish-org-index): Create a section in the
4721         index file.
4722         (org-publish-org-index): Stop linking to directories.
4724         * org.el (org-emphasis-alist): Use span instead of <u> to
4725         underline text.
4727         * org-exp.el (org-export-as-html): Make sure <p> is closed before
4728         <pre> sections.
4730 2008-11-01  Sebastian Rose  <sebastian_rose@gmx.de>
4732         * org-jsinfo.el (org-infojs-template): Remove language attribute
4733         from script tag.
4735 2008-11-01  Carsten Dominik  <dominik@science.uva.nl>
4737         * org-agenda.el (org-agenda-remove-marked-text): New function.
4738         (org-agenda-mark-filtered-text)
4739         (org-agenda-unmark-filtered-text): New functions.
4740         (org-write-agenda): Remove fltered text.
4742         * org.el (org-make-tags-matcher): Give access to TODO "property"
4743         without speed penalty.
4745 2008-10-29  Carsten Dominik  <dominik@science.uva.nl>
4747         * org.el (org-link-frame-setup): Add `org-gnus-no-new-news' as an
4748         option.
4749         (org-store-link-props): Make sure adding to the plist works
4750         correctly.
4752         * org-gnus.el (org-gnus-no-new-news): New function.
4753         (org-gnus-follow-link): Allow the article ID to be a message-id,
4754         in addition to allowing article numbers.  Message IDs make much
4755         more roubust links.
4756         (org-gnus-store-link): Use message-id to create link.
4758 2008-10-28  Carsten Dominik  <dominik@science.uva.nl>
4760         * org.el (org-emphasize): Reverse the selection array.
4761         (org-emphasis-alist): Set <code> tags for the verbatim
4762         environment.
4764         * org-remember.el (org-remember-handler): Fix bug with
4765         prefix-related changing of the note storage target.
4767         * org-exp.el (org-print-icalendar-entries): Make the exported
4768         priorities compatible with RFC 2445.
4770         * org-clock.el (org-clock-save): Insert time stamp without
4771         dependence on time-stamp.el.
4773 2008-10-27  Carsten Dominik  <dominik@science.uva.nl>
4775         * org.el ("saveplace"): If saveplace puts point into an invisible
4776         location, make it visible.
4777         (org-make-tags-matcher): Allow inactive time stamps in time
4778         comparisons.
4779         (org-yank-adjusted-subtrees): New option.
4780         (org-yank): Incorporate adjusting trees.
4781         (org-paste-subtree): New argument FOR-YANK which will cause
4782         insertion at point without backing up over white lines, and leave
4783         point at the end of the inserted text.  Also if the cursor is
4784         at the beginning of a headline, use the same level or the inserted
4785         tree.
4787         * org-publish.el (org-publish-get-base-files-1): Deal correctly
4788         with broken symlinks
4790 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
4792         * org-exp.el (org-export-select-tags, org-get-current-options):
4793         Fix typo.
4795 2008-10-25  Carsten Dominik  <dominik@science.uva.nl>
4797         * org-agenda.el (org-format-agenda-item)
4798         (org-agenda-filter-make-matcher): Make sure tags are stored and
4799         compared donwcased.
4801 2008-10-23  Carsten Dominik  <dominik@science.uva.nl>
4803         * org.el (org-insert-todo-heading): Fix bug with force-heading
4804         argument.
4806 2008-10-23  James TD Smith  <ahktenzero@mohorovi.cc>
4808         * org-clock.el (org-clock-in-resume): Add a custom option to
4809         toggle starting the clock from an open clock line.
4810         (org-clock-in): When clocking in to an entry, if
4811         `org-clock-in-resume' is set, check if the first clock line is
4812         open and if so, start the clock from the time in the clock line.
4813         (org-clock-persist): Add a custom option to toggle clock
4814         persistence.
4815         (org-clock-persist-query-save): Add a custom option to toggle
4816         asking the user if they want to save the running clock when
4817         exiting.
4818         (org-clock-persist-query-resume): Add a custom option to toggle
4819         asking the user if they want to resume the saved clock when Emacs
4820         is restarted.
4821         (org-clock-save): Add a function to save clock data.
4822         This includes the contents of `org-clock-history' and the buffer
4823         and position of the currently clocked task, if any.
4824         (org-clock-load): Add a function to load clock data.
4825         This populates `org-clock-history', and resumes the saved clocked
4826         task if there is one.
4827         (org-clock-persistence-insinuate): Add a method to set up the
4828         hooks for clock persistence.
4830 2008-10-22  Carsten Dominik  <dominik@science.uva.nl>
4832         * org-exp.el (org-export-as-ascii): Handle the case that we are
4833         publishing from an indirect buffer.
4835         * org-table.el (org-table-copy-down): Fix bug with time stamp
4836         increment.
4838         * org-mouse.el (org-mouse-features): New option.
4839         (org-mode-hook): Turn on features depending on
4840         `org-mouse-features'.
4842         * org.el (org-insert-heading-respect-content): Force heading
4843         creation.
4844         (org-insert-heading): keep the folding state of the heading before
4845         the inserted one.
4847 2008-10-21  Carsten Dominik  <dominik@science.uva.nl>
4849         * org-archive.el (org-archive-to-archive-sibling): Handle top
4850         level headlines better.
4852 2008-10-21  Bastien Guerry  <bzg@altern.org>
4854         * org-export-latex.el (org-export-latex-classes): Added
4855         \usepackage{graphicx} to the default list of packages.
4857 2008-10-21  Carsten Dominik  <dominik@science.uva.nl>
4859         * org-agenda.el (org-agenda-filter): Renamed from
4860         `org-agenda-filter-tags'.
4862 2008-10-20  Carsten Dominik  <dominik@science.uva.nl>
4864         * org.el (org-entry-properties): Add CATEGORY property, iven if it
4865         is not defined as a property in this entry.
4866         (org-add-log-note): Mask prefix argument when immediately storing
4867         the note.
4869         * org-agenda.el (org-agenda-filter-effort-default-operator): New
4870         option.
4872 2008-10-19  James TD Smith  <ahktenzero@mohorovi.cc>
4874         * org.el (org-add-log-setup): Bugfix; code to find insertion point
4875         after drawers was skipping ahead one line too many, so notes were
4876         inserted after the first note instead of before it.
4878 2008-10-18  Carsten Dominik  <dominik@science.uva.nl>
4880         * org-agenda.el (org-agenda-filter-tags,org-agenda-filter-form):
4881         New variables.
4882         (org-prepare-agenda): Reset the filter tags.
4883         (org-agenda-filter-by-tag, org-agenda-filter-by-tag-show-all):
4884         Show filter tags in mode line.
4886         * org-table.el (orgtbl-to-html): Bind `html-table-tag' for the
4887         formatter.
4889         * org-export-latex.el (org-latex-entities-regexp): New constant.
4890         (org-export-as-pdf): Use two calls to `shell-command'.
4892 2008-10-17  Carsten Dominik  <dominik@science.uva.nl>
4894         * org-export-latex.el (org-export-latex-treat-sub-super-char):
4895         Honor the {} value of the subsuperscript setting.  Make sure that
4896         longer subsuperscripts are typeset in a roman font.
4898         * org.el (org-clock-update-time-maybe): Compute negative clock
4899         intervals correctly.
4901 2008-10-16  Carsten Dominik  <dominik@science.uva.nl>
4903         * org.el (org-add-log-setup): Respect
4904         `org-log-state-notes-insert-after-drawers'.
4905         (org-log-state-notes-insert-after-drawers): New option.
4906         (org-todo-trigger-tag-changes): New function.
4907         (org-todo): Call `org-todo-trigger-tag-changes'.
4909 2008-10-15  James TD Smith  <ahktenzero@mohorovi.cc>
4911         * org.el (org-add-log-setup): Only skip drawers if the are
4912         immediately after the scheduling keywords.
4914         * org-clock.el (org-clock-in-switch-to-state): Allow this to be a
4915         function
4916         (org-clock-in): If `org-clock-in-switch-to-state' is a function,
4917         call it with the current todo state to get the state to switch to
4918         when clocking in.
4919         (org-clock-in): Use org-indent-line-function to indent clock lines.
4920         (org-clock-find-position): Fix indentation of empty clock drawers.
4922 2008-10-15  Carsten Dominik  <dominik@science.uva.nl>
4924         * org-publish.el (org-publish-org-to): Handle case when
4925         org-export-to-pdf does return a file name, not a buffer.
4926         (org-publish-org-to-pdf): New function.
4928         * org-export-latex.el (org-export-as-pdf)
4929         (org-export-as-pdf-and-open): New commands.
4931         * org-table.el (org-table-eval-formula): Avoid parsing Calc's HMS
4932         forms as ranges.
4934         * org-export-latex.el (org-export-latex-lists): Ignore lists-like
4935         things in protexted regions.
4937 2008-10-14  Carsten Dominik  <dominik@science.uva.nl>
4939         * org-export-latex.el (org-export-latex-preprocess): Improve
4940         quoting of LaTeX environments.
4942 2008-10-10  Carsten Dominik  <dominik@science.uva.nl>
4944         * org.el (org-edit-fixed-width-region): Exclude final newline from
4945         picture area.
4947         * org-export-latex.el (org-export-latex-subcontent): Add labels to
4948         sections, to make internal links work.
4949         (org-export-latex-fontify-headline): Do not remove all text
4950         properties, to make sure that target properties survive this
4951         process.
4953         * org-exp.el (org-export-preprocess-string): Change sequence of
4954         modifications, to make sure links are prepared before the LaTeX
4955         conversions do happen.
4957 2008-10-09  Carsten Dominik  <dominik@science.uva.nl>
4959         * org-attach.el (org-attach-delete-all): Renamed from
4960         `org-attch-delete'.  Add a security query before deleting the
4961         entire directory.  New optional argument FORCE can overrule the
4962         security query.
4963         (org-attach-delete-one): New command.
4965 2008-10-08  Carsten Dominik  <dominik@science.uva.nl>
4967         * org-attach.el (org-attach-file-list): Fix bug with directory.
4969 2008-10-07  Carsten Dominik  <dominik@science.uva.nl>
4971         * org.el (org-apps-regexp-alist): New function.
4972         (org-file-apps): Add auto-mode to the default value.
4973         (org-open-file): Use the new structure of org-file-apps.
4975         * org-attach.el (org-attach): Support the new keys.
4976         (org-attach-method): New option.
4978 2008-10-06  Carsten Dominik  <dominik@science.uva.nl>
4980         * org-bbdb.el (org-bbdb-anniversaries): Fix but with 29 Feb/1
4981         March.
4983         * org.el (org-remove-uniherited-tags): Fix reverse interpretation
4984         of the list value o `org-use-tag-inheritance'.
4986         * org-attach.el (org-attach-auto-tag): New option.
4987         (org-attach-tag, org-attach-untag): New functions.
4988         (org-attach-attach, org-attach-new, org-attach-sync): Call
4989         `org-attach-tag'.
4990         (org-attach-delete): Call `org-attach-untag'.
4992 2008-10-04  Carsten Dominik  <dominik@science.uva.nl>
4994         * org-table.el (orgtbl-self-insert-command): Make this work for
4995         the keypad as well.
4997 2008-10-02  Carsten Dominik  <dominik@science.uva.nl>
4999         * org.el (org-add-log-setup): Limit searc for drawers to entry
5000         text, not to subtree.
5002         * org-clock.el (org-clock-heading-for-remember): New variable.
5003         (org-clock-in): Set `org-clock-heading-for-remember'.
5005 2008-10-01  James TD Smith  <ahktenzero@mohorovi.cc>
5007         * org-remember.el (org-remember-apply-template): Add new
5008         expansions: %k, %K for currently clocked task and a link to the
5009         currently clocked task, and %< to file notes in the currently
5010         clocked task.
5012 2008-10-01  Carsten Dominik  <dominik@science.uva.nl>
5014         * org-export-latex.el (org-export-latex-make-header): Also insert
5015         the content of the property :latex-header-extra.
5017         * org-exp.el (org-infile-export-plist): Put the content of
5018         #+LATEX_HEADER: into the property :latex-header-extra.
5020         * org-colview.el (org-columns-get-format-and-top-level): Remove
5021         resetting the marker.
5023         * org-colview-xemacs.el (org-columns-get-format-and-top-level):
5024         Remove resetting the marker.
5026         * org.el (org-entry-property-inherited-from): Improve docstring.
5027         (org-entry-get-with-inheritance): Reset marker before starting the
5028         search.
5030         * org-exp.el (org-infile-export-plist): Allow multiple STYLE lines.
5032 2008-09-30  Carsten Dominik  <dominik@science.uva.nl>
5034         * org.el (org-entry-get-multivalued-property)
5035         (org-entry-protect-space, org-entry-restore-space): New
5036         functions.
5037         (org-file-apps-defaults-macosx): Let postscript files be opened by
5038         preview.
5039         (org-time-stamp-inactive): Call `org-time-stamp'.
5040         (org-time-stamp): New argument `inactive'.  Also edit inacive
5041         stamps. Convert time stamp type.
5042         (org-open-file): Interpret the `default' value for the `command'
5043         in `org-file-apps'.
5045         * org-id.el (org-id-int-to-b36-one-digit)
5046         (org-id-b36-to-int-one-digit, org-id-int-to-b36)
5047         (org-id-b36-to-int, org-id-time-to-b36): Modified from b62 to
5048         b36.
5050 2008-09-29  Carsten Dominik  <dominik@science.uva.nl>
5052         * org-id.el (org-id-reverse-string): New function.
5053         (org-id-new): Use `org-id-reverse-string' to make sure the
5054         beginning chars of the ID are mutating fast.  This allows to use a
5055         directory structure to spread things better.
5056         (org-id-prefix): Changed default to nil.
5058         * org-list.el (org-move-item-down, org-move-item-up): Remember and
5059         restore the column of the cursor position.
5061         * org-remember.el (org-remember-apply-template): Remove properties
5062         from `initial'.
5064 2008-09-27  Carsten Dominik  <dominik@science.uva.nl>
5066         * org-wl.el (org-wl-open): Remove useless call to
5067         `wl-thread-open-all'.
5069         * org-remember.el (org-remember-handler): Fix bug with `bottom'
5070         location.
5072 2008-09-26  Carsten Dominik  <dominik@science.uva.nl>
5074         * org-bbdb.el (org-bbdb-anniversaries): Require bbdb in
5075         `org-bbdb-anniversaries'.
5077         * org.el (org-get-next-sibling, org-forward-same-level): New
5078         functions, similar to the outline versions, but invisible headings
5079         are OK.
5081 2008-09-25  Bastien Guerry  <bzg@altern.org>
5083         * org.el (org-auto-repeat-maybe): Insert a space between
5084         the timestamp's type and the timestamp itself.
5086 2008-09-24  Carsten Dominik  <dominik@science.uva.nl>
5088         * org-table.el (org-table-sum): Do not format the result with %g,
5089         it does rounding when there are too many digits.
5091         * org.el (org-map-entries): Protect the keyword-selecting variables.
5093 2008-09-23  Bastien Guerry  <bzg@altern.org>
5095         * org-agenda.el (org-agenda-to-appt): Make sure the function check
5096         against all agenda files.
5098 2008-09-23  Carsten Dominik  <dominik@science.uva.nl>
5100         * org-list.el: New file, aggregating list functions from org.el
5101         and org-export-latex.el.
5103         * org.el (org-edit-src-region-extra): New option.
5105 2008-09-22  Carsten Dominik  <dominik@science.uva.nl>
5107         * org-agenda.el (org-agenda-to-appt): Fix bug with appointment
5108         time before 1am.
5110 2008-09-22  Bastien Guerry  <bzg@altern.org>
5112         * org-export-latex.el (org-export-latex-keywords-maybe): Bug fix.
5114 2008-09-22  James TD Smith  <ahktenzero@mohorovi.cc>
5116         * org-plot.el (org-plot/gnuplot): Make tables starting with a
5117         hline work correctly.
5118         (org-plot/gnuplot-script): Put commas at the end of each script
5119         line.
5121 2008-09-20  James TD Smith  <ahktenzero@mohorovi.cc>
5123         * org.el (org-get-refile-targets): Replace links with their
5124         descriptions
5125         (org-imenu-get-tree): Replace links with their descriptions.
5127         * org-remember.el (org-remember-apply-template): Add a new
5128         expansion for adding properties to remember items.
5130         * org.el (org-add-log-setup): Skip over drawers (properties,
5131         clocks etc) when adding notes.
5133         * org-agenda.el (org-agenda-get-closed): show durations of clocked
5134         items as well as the start and end times.
5136         * org-compat.el (org-get-x-clipboard-compat): Add a compat
5137         function for fetching the X clipboard on XEmacs and GNU Emacs 21.
5139         * org-remember.el (org-get-x-clipboard): Use the compat
5140         function to get clipboard values when x-selection-value is
5141         unavailable. Use substring-no-properties instead of
5142         set-text-properties to remove text properties from the clipboard
5143         value.
5145         * lisp/org-clock.el (org-update-mode-line): Support limiting the
5146         modeline clock string, and display the full todo value in the
5147         tooltip. Set a local keymap so mouse-3 on the clock string goes to
5148         the currently clocked task.
5149         (org-clock-string-limit): Add a custom value for the maximum
5150         length of the clock string in the modeline.
5151         (org-clock-mode-map): Add a keymap for the modeline string
5153 2008-09-21  Carsten Dominik  <dominik@science.uva.nl>
5155         * org-compat.el (org-propertize): New function.
5157 2008-09-20  Bastien Guerry  <bzg@altern.org>
5159         * org-export-latex.el (org-export-latex-tables): protect exported
5160         tables from further special chars conversion.
5161         (org-export-latex-preprocess): Preserve LaTeX environments.
5162         (org-list-parse-list): Parse descriptive lists.
5163         (org-list-to-generic, org-list-to-latex, org-list-to-html)
5164         (org-list-to-texinfo): Export descriptive lists.
5165         (org-quote-chars): Remove.
5166         (org-export-latex-keywords-maybe): Use `replace-regexp-in-string'.
5167         (org-export-latex-list-beginning-re): Rename to
5168         `org-list-beginning-re'
5169         (org-list-item-begin): Rename to `org-list-item-beginning'
5171 2008-09-20  Carsten Dominik  <dominik@science.uva.nl>
5173         * org.el (org-refile): Allow refiling to the last entry in the
5174         buffer.
5175         (org-get-tags-at): Fix bug when inheritance is turned off.
5177 2008-09-19  Carsten Dominik  <dominik@science.uva.nl>
5179         * org.el (org-indent-line-function): No longer check for src
5180         regions, this is too much overhead.
5182         * org-agenda.el (org-agenda-highlight-todo): Fix bugs with keyword
5183         matching.
5185         * org.el (org-scan-tags): Make sure that tags matching is not case
5186         sensitive.  TODO keyword matching is case sensitive, however, to
5187         avoid confusion with similar words that are not meant to be
5188         keywords.
5190 2008-09-18  Carsten Dominik  <dominik@science.uva.nl>
5192         * org.el (org-get-local-tags-at): New function.
5193         (org-get-local-tags): New function.
5195         * org-exp.el (org-export-get-categories): New function.
5197         * org-agenda.el (org-sorting-choice)
5198         (org-agenda-sorting-strategy, org-agenda-get-todos)
5199         (org-agenda-get-timestamps, org-agenda-get-deadlines)
5200         (org-agenda-get-scheduled, org-agenda-get-blocks)
5201         (org-entries-lessp): Implement sorting by TODO state.
5202         (org-cmp-todo-state): New defsubst.
5204         * org-colview.el (org-colview-construct-allowed-dates): New
5205         function.
5206         (org-columns-next-allowed-value): Use
5207         `org-colview-construct-allowed-dates'.
5209         * org-colview-xemacs.el (org-colview-construct-allowed-dates): New
5210         function.
5211         (org-columns-next-allowed-value): Use
5212         `org-colview-construct-allowed-dates'.
5214 2008-09-17  Carsten Dominik  <dominik@science.uva.nl>
5216         * org.el (org-protect-slash): New function.
5217         (org-get-refile-targets): Use `org-protect-slash'.
5219         * org-agenda.el (org-global-tags-completion-table): New variable.
5221         * org-exp.el (org-export-handle-export-tags): New function.
5222         (org-export-preprocess-string): Call
5223         `org-export-handle-export-tags'.
5225         * org-plot.el: New file.
5227         * org-publish.el (org-publish-expand-components): Function removed.
5228         (org-publish-expand-projects): Allow components to have components.
5230 2008-09-13  Carsten Dominik  <dominik@science.uva.nl>
5232         * org.el (org-indent-line-function): Do not indent in regions that
5233         are external source code.
5234         (org-yank-and-fold-if-subtree): New function.
5236         * org-agenda.el (org-agenda-todayp): New function.
5237         (org-agenda-get-deadlines, org-agenda-get-scheduled): Use
5238         `org-agenda-todayp'.
5240         * org.el (org-insert-heading-respect-content)
5241         (org-insert-todo-heading-respect-content): New commands.
5242         (org-insert-heading-respect-content): New option.
5243         (org-insert-heading): Respect `org-insert-heading-respect-content'.
5245         * org-clock.el (org-clock-find-position): Make sure the note after
5246         the clock line gets moved into the new clock drawer.
5248 2008-09-11  Carsten Dominik  <dominik@science.uva.nl>
5250         * org-id.el (org-id-new): New option.
5252 2008-09-08  Carsten Dominik  <dominik@science.uva.nl>
5254         * org-table.el (org-table-copy-down): Avoid overflow during
5255         increment.  Use prefix argument 0 to temporarily disable the
5256         increment.
5258 2008-09-07  Carsten Dominik  <dominik@science.uva.nl>
5260         * org-exp.el (org-export-as-html): Do not turn on the major mode
5261         if the buffer will be killed anyway.
5262         (org-get-current-options): Exclude the #+TEXT field.
5263         (org-export-as-html): Make sure text before the first headline is
5264         a paragraph.
5266         * org-publish.el (org-publish-org-to): Tell the exporter that this
5267         buffer will be killed, so it is not necessary to do major mode
5268         initialization.
5270         * org-archive.el (org-archive-to-archive-sibling): Show empty
5271         lines after folding the archive sibling.
5273         * org.el (org-log-note-extra): New variable.
5275 2008-09-05  Bastien Guerry  <bzg@altern.org>
5277         * org.el (org-additional-option-like-keywords): Added keywords for
5278         the _QUOTE, _VERSE and _SRC environments.
5280         * org-export-latex.el (org-export-latex-preprocess): Fix bug when
5281         exporting _QUOTE and _VERSE environments.
5283 2008-09-05  Carsten Dominik  <dominik@science.uva.nl>
5285         * org-agenda.el (org-agenda-filter-by-tag): New command.
5287         * org-exp.el (org-get-current-options): Remove angular brackets
5288         from the date entry.
5290         * org.el (org-edit-fixed-width-region): New function.
5291         (org-edit-fixed-width-region): Also try
5292         `org-edit-fixed-width-region'.
5293         (org-edit-fixed-width-region-mode): New option.
5294         (org-activate-code): Only interprete lines starting with colon
5295         plus a space as example lines.
5297         * org-remember.el (org-remember-templates): Add nil instead of
5298         empty strings to fix the length of remember templates.
5300         * org-table.el (org-calc-default-modes): Fix the time format for
5301         calc, from 12 hour to 24 hour clock.
5303 2008-09-04  Carsten Dominik  <dominik@science.uva.nl>
5305         * org-agenda.el (org-agenda-get-deadlines)
5306         (org-agenda-get-scheduled): Avoid `time-of-day' extraction for
5307         entries that are pre-warnings of deadlines or reminders.
5309         * org.el (org-sort-entries-or-items): Make numeric and alpha
5310         comparisons ignore any TODO keyword and priority cookie.
5312         * org-remember.el (org-remember-handler): Reinterpretation of the
5313         prefix argument.
5315 2008-09-03  Carsten Dominik  <dominik@science.uva.nl>
5317         * org-agenda.el (org-agenda-get-scheduled): Use new
5318         `org-scheduled' face.
5320         * org-faces.el (org-scheduled): New face.
5322         * org-wl.el (org-wl-open): Remove incorrect declaration.
5324         * org-gnus.el (org-gnus-store-link): Support for :to information
5325         in gnus links.
5327         * org-exp.el (org-export-as-html): Fixed typo in creator
5328         information.
5329         (org-export-protect-examples): New parameter indent.  Insert extra
5330         spaces only when this parameter is specified.
5331         (org-export-preprocess-string): Call `org-export-protect-examples'
5332         with an indentation parameter when exporting to ASCII.
5334         * org-remember.el (org-remember-templates)
5335         (org-remember-apply-template): Allow the file component to be a
5336         function.
5338         * org.el (org-goto-local-search-headings): Renamed from
5339         `org-goto-local-search-forward-headings'.  Added the possibility
5340         to search backwards.
5342 2008-09-02  Carsten Dominik  <dominik@science.uva.nl>
5344         * org-export-latex.el (org-export-latex): New customization
5345         group.
5347         * org-agenda.el (org-write-agenda): Erase buffer for txt export.
5349 2008-09-01  Carsten Dominik  <dominik@science.uva.nl>
5351         * org-exp.el (org-html-do-expand): Allow {} to terminate
5352         tex macro
5354 2008-07-29  Carsten Dominik  <dominik@science.uva.nl>
5356         * org.el (org-buffer-list): Select buffers based on major mode,
5357         not on file name.
5359 2008-07-26  Carsten Dominik  <dominik@science.uva.nl>
5361         * org-agenda.el (org-agenda-align-tags): Fix bug with malformed
5362         face property.
5364         * org-colview.el (org-columns-display-here): Use
5365         `org-columns-modify-value-for-display-function'.
5367         * org-colview-xemacs.el (org-columns-display-here): Use
5368         `org-columns-modify-value-for-display-function'.
5370 2008-07-25  Carsten Dominik  <dominik@science.uva.nl>
5372         * org.el (org-columns-modify-value-for-display-function): New option.
5384         * org-publish.el (org-publish-file): Make sure the directory match
5385         for the publishing directory works correctly.
5387         * org-agenda.el (org-agenda-execute-calendar-command)
5388         (org-agenda-diary-entry): Additional optional argument.
5390 2008-07-24  Carsten Dominik  <dominik@science.uva.nl>
5392         * org-exp.el (org-export-as-html): Add attributes also in mailto
5393         and ftp links.
5395         * org.el (org-autoload): Add `org-dblock-write:columnview'.
5404 2008-07-23  Carsten Dominik  <dominik@science.uva.nl>
5406         * org-exp.el (org-export-region-as-html, org-export-as-html): Make
5407         sure that calls from `org-export-region-as-html' do not do the
5408         special check for a subtree.
5410 2008-07-22  Carsten Dominik  <dominik@science.uva.nl>
5412         * org-agenda.el (org-batch-store-agenda-views): Fix parsing bug.
5414 2008-07-20  Juri Linkov  <juri@jurta.org>
5416         * org.el (narrow-map): Bind `org-narrow-to-subtree' to "s" on the
5417         new keymap `narrow-map' instead of binding "\C-xns".
5419 2008-07-18  Carsten Dominik  <dominik@science.uva.nl>
5421         * org.el (org-open-file): Use
5422         `org-open-directory-means-index-dot-org'.
5423         (org-open-directory-means-index-dot-org): New option.
5425 2008-07-17  Carsten Dominik  <dominik@science.uva.nl>
5427         * org.el (org-make-link-string): Remove link attributes from
5428         description.
5429         (org-open-at-point): Remove link attributes bevore using the path.
5431         * org-exp.el (org-export-as-html): Handle link attributes.
5433         * org.el (org-extract-attributes, org-attributes-to-string): New functions.
5435         * org-table.el (org-table-to-lisp): New function.
5437         * org.el (org-narrow-to-subtree): Do not include the final newline
5438         into the narrowed region.
5440         * org-agenda.el (org-agenda-custom-commands-local-options): Fixed
5441         bug with user-define skipping condition.
5443 2008-07-16  Carsten Dominik  <dominik@science.uva.nl>
5445         * org-agenda.el (org-agenda-get-restriction-and-command): Fixed typo.
5447 2008-07-14  Carsten Dominik  <dominik@science.uva.nl>
5449         * org-exp.el (org-export-html-style-default): Automatic overflow
5450         handling for pre fields.
5451         (org-export-as-ascii, org-export-as-html): Change default format
5452         for time stamp.
5454         * org-table.el (org-table-export): Offer completion for translator
5455         functions, and do not require a heading above the table.
5457         * org.el (org-renumber-ordered-list, org-beginning-of-item-list):
5458         Cater for the case of a list starting in the first line of the
5459         buffer.
5461 2008-07-09  Carsten Dominik  <dominik@science.uva.nl>
5463         * org-publish.el (org-publish-find-title): Bug fix.
5464         (org-publish-org-index): Implement new :index-style option.
5466 2008-07-07  Carsten Dominik  <dominik@science.uva.nl>
5468         * org-publish.el (org-publish-timestamp-filename): Use
5469         SHA1-encoded file names in the timestamp directory.
5471 2008-07-05  Carsten Dominik  <dominik@science.uva.nl>
5473         * org-publish.el (org-publish-needed-p): Be verbose about files
5474         published and files skipped.
5476         * org-exp.el (org-export-preprocess-string): Swap link
5477         normalization and inernal link targeting.
5479         * org-publish.el (org-publish-needed-p): Create timestamp
5480         directory when it does not exist.
5482 2008-07-04  Bastien Guerry  <bzg@altern.org>
5484         * org-clock.el (org-clock-out-when-done): Doc fix.
5486         * org.el (org-agenda-skip-unavailable-files): Doc fix.
5488         * org-exp.el (org-export-remove-comment-blocks-and-subtrees):
5489         Ignore case when searching for the COMMENT cookie at export time.
5491 2008-07-02  Carsten Dominik  <dominik@science.uva.nl>
5493         * org-exp.el (org-get-file-contents)
5494         (org-get-and-remove-property): New functions.
5495         (org-export-handle-include-files): Handle the new prefix options.
5496         (org-export-as-html): Fix the verse environment.
5498 2008-07-01  Carsten Dominik  <dominik@science.uva.nl>
5500         * org.el (org-time=, org-time<, org-time<=, org-time>)
5501         (org-time>=, org-time<>, org-2ft): New functions.
5502         (org-op-to-function): Also provide for the time testing fucntions.
5504 2008-06-30  Carsten Dominik  <dominik@science.uva.nl>
5506         * org-exp.el (org-export-html-style-default): New constant.
5508 2008-06-29  Carsten Dominik  <dominik@science.uva.nl>
5510         * org-exp.el (org-export-html-style-extra): New variable.
5511         (org-export-splice-style): New function.
5513 2008-06-26  Carsten Dominik  <dominik@science.uva.nl>
5515         * org-exp.el (org-export-plist-vars, org-export-as-html):
5516         Implement `org-export-creator-info'.
5517         (org-export-creator-info): New option.
5519 2008-06-25  Carsten Dominik  <dominik@science.uva.nl>
5521         * org.el (org-clock-drawer-start-re, org-clock-drawer-end-re)
5522         (org-property-drawer-re, org-clock-drawer-re): New constants.
5524 2008-06-23  Carsten Dominik  <dominik@science.uva.nl>
5526         * org-exp.el (org-icalendar-use-deadline)
5527         (org-icalendar-use-scheduled): New options.
5528         (org-icalendar-include-todo): Default changed to t.
5529         (org-print-icalendar-entries): Implement better utilization of
5530         scheduling and deadline time stamps.
5531         (org-export-target-internal-links, org-export-as-html): Allow file
5532         lines without the "file:" prefix if the file path is an absolute
5533         path or starts with ".".
5535         * org-clock.el (org-clocktable-shift): Also undertand yesterday,
5536         lastweek etc.
5537         (org-clock-special-range): Also undertand yesterday, lastweek etc.
5539 2008-06-18  Glenn Morris  <rgm@gnu.org>
5540         * org.el (org-map-entries): Let-bind `file'.
5542 2008-06-19  Carsten Dominik  <dominik@science.uva.nl>
5544         * org.el (org-agenda-skip-archived-trees): Docstring now
5545         discourages using this.
5546         (org-scan-tags): Check for org-agenda-archives-mode.
5547         (org-map-entries): Make sure org-agenda-archives-mode is nil.
5548         (org-agenda-files): Functionality of second arg changed.
5550         * org-agenda.el (org-agenda-archives-mode): New variable
5551         (org-write-agenda, org-prepare-agenda, org-agenda-list)
5552         (org-search-view, org-todo-list, org-tags-view)
5553         (org-agenda-list-stuck-projects): Call `org-agenda-files' with
5554         `ifmode' argument.
5555         (org-agenda-quit): Reset the archives mode.
5556         (org-agenda-archives-mode): New command.
5557         (org-agenda-set-mode-name): Include archives info.
5559 2008-06-18  Carsten Dominik  <dominik@science.uva.nl>
5561         * org.el (org-paste-subtree): Make sure the yanked headline is
5562         visible if it was yanked at a visible point.
5563         (org-move-item-up): Fix the bug with moving white space at the end
5564         of the item.
5565         (org-show-empty-lines-in-parent): New function.
5567 2008-06-16  Carsten Dominik  <dominik@science.uva.nl>
5569         * org-colview.el (org-columns-next-allowed-value): Bug fix.
5571         * org-colview-xemacs.el (org-columns-next-allowed-value): Bug fix.
5573         * org-agenda.el (org-agenda-get-closed): Get the end time into the
5574         agenda prefix as well.
5576         * org-publish.el (org-publish-org-index): Make a properly indented
5577         list.
5579         * org.el (org-calendar-agenda-action-key): New option.
5580         (org-get-cursor-date): New function.
5581         (org-mark-entry-for-agenda-action): New command.
5582         (org-overriding-default-time): New variable.
5583         (org-read-date): Respect `org-overriding-default-time'.
5585         * org-remember.el (org-remember-apply-template): Respect the
5586         ovverriding default time.
5588         * org-agenda.el (org-agenda-action-marker): New variable.
5589         (org-agenda-action): New command.
5590         (org-agenda-do-action): New function.
5592 2008-06-15  Carsten Dominik  <dominik@science.uva.nl>
5594         * org.el (org-schedule, org-deadline): Protect scheduled and
5595         deadline tasks against changes that accidently remove the
5596         repeater.  Also show a message with the new date when done.
5598 2008-06-15  Carsten Dominik  <dominik@science.uva.nl>
5600         * org.el (org-beginning-of-line): Cater for the case when there
5601         are tags but no headline text.
5602         (org-align-tags-here): Convert to tabs only when indent-tabs-mode
5603         it set.
5605 2008-06-13  Carsten Dominik  <dominik@science.uva.nl>
5607         * org-mhe.el (org-mhe-get-message-folder-from-index): Make sure
5608         the return value is nil instead of "nil" when there is no match.
5610         * org-exp.el (org-insert-centered): Use fill-column instead of
5611         80.
5612         (org-export-as-ascii): Use string-width to measure the width of
5613         the heading.
5615         * org.el (org-diary-to-ical-string): No longer kill buffer
5616         FROMBUF, this is now done by the caller.
5618         * org-exp.el (org-print-icalendar-entries): Move the call to
5619         `org-diary-to-ical-string' out of the loop, and kill the buffer
5620         afterwords.
5622         * org-remember.el (org-remember-visit-immediately): Position
5623         cursor after moving to the note.
5624         (org-remember-apply-template): Use a text property to record the
5625         cursor position.
5626         (org-remember-handler): Align tags after pasting the note.
5628 2008-06-12  Carsten Dominik  <dominik@science.uva.nl>
5630         * org-bbdb.el (org-bbdb-follow-anniversary-link): New function.
5632         * org-agenda.el (org-agenda-open-link): If there is an
5633         org-bbdb-name property in the current line, jump to that bbdb
5634         entry.
5636         * org-bbdb.el (org-bbdb-anniversaries): Add the bbdb-name as a
5637         text property, so that the agenda knows where this entry comes
5638         from.
5640         * org-agenda.el (org-agenda-clock-in): Fixed bug in the
5641         interaction between clocking-in from the agenda, and  automatic
5642         task state switching.
5644         * org-macs.el (org-with-point-at): Bug fix in macro defintion.
5646         * org.el (org-beginning-of-line, org-end-of-line): Make sure the
5647         zmacs-region stays after this command in XEmacs.
5649 2008-06-11  Carsten Dominik  <dominik@science.uva.nl>
5651         * org.el (org-scan-tags): Allow new values for ACTION parameter.
5653         * org-remember.el (org-remember-templates): Fix bug in
5654         customization type definition.
5656         * org.el (org-map-entries): New function.
5658 2008-06-11  verhuur82  <verhuur82@macbook-van-verhuur82.local>
5660         * org-agenda.el (org-agenda-skip-comment-trees): New option.
5661         (org-agenda-skip): Respect `org-agenda-skip-comment-trees'.
5663 2008-06-10  Carsten Dominik  <dominik@science.uva.nl>
5665         * org-remember.el (org-jump-to-target-location): New variable.
5666         (org-remember-apply-template): Set
5667         `org-remember-apply-template' if requested by template.
5668         (org-remember-handler): Start an idle timer to jump to
5669         remember location.
5671         * org-exp.el (org-get-current-options): Add the FILETAGS setting.
5673         * org.el (org-set-regexps-and-options): Fix bug with parsing of
5674         file tags.
5675         (org-get-tags-at): Add the content of `org-file-tags'.
5677         * org-exp.el (org-export-handle-comments): Fix bug with several
5678         comment lines after each other.
5679         (org-number-to-roman, org-number-to-counter): New functions.
5680         (org-export-section-number-format): New option.
5682 2008-06-09  Carsten Dominik  <dominik@science.uva.nl>
5684         * org-exp.el (org-export-protect-examples): Catch the case of a
5685         missing end_example line.
5687         * org.el (org-set-regexps-and-options): Set `org-file-properties' and
5688         `org-file-tags' to nil.
5690         * org-colview.el (org-columns-next-allowed-value): Handle next
5691         argument NTH to directly select a value.
5693         * org-colview-xemacs.el (org-columns-next-allowed-value): Handle next
5694         argument NTH to directly select a value.
5696 2008-06-08  Carsten Dominik  <dominik@science.uva.nl>
5698         * org-agenda.el (org-agenda-scheduled-leaders): Fix docstring.
5700 2008-05-30  Carsten Dominik  <dominik@science.uva.nl>
5702         * org.el (org-columns-ellipses): New option.
5704 2008-05-29  Carsten Dominik  <dominik@science.uva.nl>
5706         * org-colview.el (org-columns-add-ellipses): New function.
5707         (org-columns-compact-links): New function.
5708         (org-columns-cleanup-item): Call `org-columns-compact-links'.
5709         (org-columns-display-here): Call `org-agenda-columns-cleanup-item'
5710         when in agenda.
5711         (org-columns-edit-value): Fixed bug with editing values from
5712         agenda column view.
5713         (org-columns-redo): Also redo the agenda itself.
5715 2008-05-28  Carsten Dominik  <dominik@science.uva.nl>
5717         * org-agenda.el (org-agenda-columns-remove-prefix-from-item): New
5718         option.
5720         * org-colview.el (org-agenda-columns-cleanup-item): New function.
5722         * org-exp.el (org-export-ascii-preprocess): Renamed from
5723         `org-export-ascii-clean-string'.
5724         (org-export-kill-licensed-text)
5725         (org-export-define-heading-targets)
5726         (org-export-handle-invisible-targets)
5727         (org-export-target-internal-links)
5728         (org-export-remove-or-extract-drawers)
5729         (org-export-remove-archived-trees)
5730         (org-export-protect-quoted-subtrees)
5731         (org-export-protect-verbatim, org-export-protect-examples)
5732         (org-export-select-backend-specific-text)
5733         (org-export-mark-blockquote-and-verse)
5734         (org-export-remove-comment-blocks-and-subtrees)
5735         (org-export-handle-comments, org-export-mark-radio-links)
5736         (org-export-remove-special-table-lines)
5737         (org-export-normalize-links)
5738         (org-export-concatenate-multiline-links)
5739         (org-export-concatenate-multiline-emphasis): New functions,
5740         obtained from spliiting the export preprocessor.
5742         * org-table.el (org-table-recalculate): Improve error message if
5743         the row number is invalid.
5745 2008-05-27  Carsten Dominik  <dominik@science.uva.nl>
5747         * org-archive.el (org-archive-save-context-info): Fix bugs in
5748         customization setup and docstring.
5750         * org-exp.el (org-export-html-style): Changed the size of in the
5751         <pre> element to 90%.
5753 2008-05-26  Carsten Dominik  <dominik@science.uva.nl>
5755         * org.el (org-find-src-example-start): Function removed.
5756         (org-edit-src-find-region-and-lang): New function.
5758 2008-05-25  Carsten Dominik  <dominik@science.uva.nl>
5760         * org.el (org-edit-src-exit): New function.
5761         (org-exit-edit-mode): New minor mode.
5763         * org-exp.el (org-export-preprocess-string): Fix bug with removing
5764         comment-like lines from protected examples.
5766         * org.el (org-edit-src-example, org-find-src-example-start)
5767         (org-protect-source-example, org-edit-special): New functions.
5769 2008-05-24  Carsten Dominik  <dominik@science.uva.nl>
5771         * org-publish.el (org-publish-project-alist): Fix typo in
5772         docstring.
5773         (org-publish-project-alist): Handle :index-title property.
5775 2008-05-21  Carsten Dominik  <dominik@science.uva.nl>
5777         * org-export-latex.el (org-export-as-latex): Make sure region
5778         bounds are correct.  Parse subtree properties relating to export.
5780         * org-exp.el (org-export-add-options-to-plist): New function.
5781         (org-infile-export-plist): Use `org-export-add-options-to-plist'.
5783 2008-05-20  Carsten Dominik  <dominik@science.uva.nl>
5785         * org.el (org-default-properties): Add EXPORT_FILE_NAME and
5786         EXPORT_TITLE.
5788         * org-exp.el (org-export-get-title-from-subtree)
5789         (org-export-as-ascii, org-export-as-html): Make sure the original
5790         region-beginning and region-end are used, even after moving
5791         point.
5792         (org-export-get-title-from-subtree): Also try the EXPORT_TITLE
5793         property.
5795         * org-remember.el (org-remember-last-stored-marker): New variable.
5796         (org-remember-goto-last-stored): Use `org-goto-marker-or-bmk'.
5797         (org-remember-handler): Also use marker to remember
5798         last-stored position.
5800         * org.el (org-goto-marker-or-bmk): New function.
5802 2008-05-19  Carsten Dominik  <dominik@science.uva.nl>
5804         * org.el (org-file-properties): Renamed from `org-local-properties'.
5805         (org-scan-tags): Take file tags into account.
5806         (org-tags-match-list-sublevels): Default changed to t.
5808         * org-exp.el (org-export-as-html): Close paragraph after a
5809         footnote.
5811         * org.el (org-update-parent-todo-statistics): New function.
5813         * org-exp.el (org-icalendar-store-UID): New option.
5814         (org-icalendar-force-UID): Option removed.
5815         (org-print-icalendar-entries): IMplement UIDs.
5817 2008-05-18  Carsten Dominik  <dominik@science.uva.nl>
5819         * org-mhe.el (org-mhe-follow-link): Fix bug in mhe searches.
5821 2008-05-16  Carsten Dominik  <dominik@science.uva.nl>
5823         * org-faces.el (org-column): Document how this face is being used
5824         and why sometimes the background faces shine through.
5826         * org-mhe.el (org-mhe-follow-link): Improve handling of searches.
5828         * org-publish.el (org-publish-attachment): Create publishing
5829         directory if it does not yet exist.
5831         * org-table.el (org-calc-default-modes): Change default number
5832         format to (float 8).
5834         * org.el (org-olpath-completing-read): New function.
5835         (org-time-clocksum-format): New option.
5836         (org-minutes-to-hh:mm-string): Use `org-time-clocksum-format'.
5838         * org-clock.el (org-clock-display, org-clock-out)
5839         (org-update-mode-line): Use `org-time-clocksum-format'.
5841         * org-colview-xemacs.el (org-columns-number-to-string): Use
5842         `org-time-clocksum-format'.
5844         * org-colview.el (org-columns-number-to-string): Use
5845         `org-time-clocksum-format'.
5847 2008-05-15  Carsten Dominik  <dominik@science.uva.nl>
5849         * org-id.el: New file, move from contrib to core.
5851         * org-exp.el (org-icalendar-force-UID): New option.
5853 2008-05-14  Carsten Dominik  <dominik@science.uva.nl>
5855         * org-exp.el (org-print-icalendar-entries): Make sure DTEND is
5856         shifted by one day if theere is a date range without an end
5857         time.
5859         * org.el (org-try-structure-completion): New function.
5861 2008-05-13  Carsten Dominik  <dominik@science.uva.nl>
5863         * org.el (org-set-font-lock-defaults): Improve fontification of
5864         description lists.
5865         (org-insert-item): Handle description lists.
5866         (org-adaptive-fill-function): Improve auto indentation in
5867         description lists.
5869         * org-exp.el (org-export-as-html, org-export-preprocess-string):
5870         Implement VERSE environment.
5871         (org-export-preprocess-string): Implement the COMMENT
5872         environment.
5874         * org-export-latex.el (org-export-latex-preprocess): Implement
5875         VERSE environment.
5877 2008-05-12  Carsten Dominik  <dominik@science.uva.nl>
5879         * org-jsinfo.el (org-infojs-opts-table): Add entry for FIXED_TOC
5880         option.
5882 2008-05-10  Carsten Dominik  <dominik@science.uva.nl>
5884         * org-table.el (orgtbl-to-tsv, orgtbl-to-csv): New functions.
5886         * org.el (org-quote-csv-field): New functions.
5888         * org-table.el (org-table-export-default-format): Remove :splice
5889         from default format, we get the same effect by not specifying
5890         :tstart and :tend.
5891         (org-table-export): Improve setup, distinguish better between
5892         interactive and non-interactive use, allow specifying the format
5893         on the fly, better protection against wrong file names.
5894         (orgtbl-to-generic): Fix documentation.  Do not require :tstart
5895         and :tend when :splice is omitted.
5897 2008-05-09  Bernt Hansen  <bernt@norang.ca>
5899         * org-clock.el (org-clock-select-task): Make sure the selection
5900         letters are 1-9 and A-Z, no special characters.
5902 2008-05-09  Carsten Dominik  <dominik@science.uva.nl>
5904         * org-exp.el (org-export-htmlize): New group.
5905         (org-export-htmlize-output-type)
5906         (org-export-htmlize-css-font-prefix): New options.
5907         (org-export-htmlize-region-for-paste): New function.
5908         (org-export-htmlize-generate-css): New command.
5910 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
5912         * org/org.el (org-modules, org-format-latex-options):
5913         * org/org-archive.el (org-archive-stamp-time)
5914         (org-archive-save-context-info):
5915         * org/org-faces.el (org-hide):
5916         * org/org-irc.el (org-irc-parse-link):
5917         * org/org-macs.el (org-call-with-arg, org-autoload):
5918         * org/org-mew.el (org-mew-store-link):
5919         * org/org-remember.el (org-remember-store-without-prompt)
5920         (org-remember-templates): Fix typos in docstrings.
5922         * org/org-info.el (org-info-store-link): Remove leftover docstring.
5924         * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
5925         (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
5926         (org-bbdb-anniv-split): Fix typos in docstrings.
5928         * org/org-publish.el (org-publish-project-alist): Doc fixes.
5929         (org-publish-use-timestamps-flag): Reflow docstring.
5930         (org-publish-files-alist): Fix typos in docstring.
5932 2008-05-08  Carsten Dominik  <dominik@science.uva.nl>
5934         * org.el (org-set-visibility-according-to-property): New function.
5935         (org-ctrl-c-ctrl-c): Do not restart org-mode, just get the options
5936         and compute the regular expressions, and update font-lock.
5937         (org-property-re): Allow a dash in property names.
5939         * org-archive.el (org-extract-archive-file): Insert the file name
5940         without the path into the format, to allow the location format to
5941         contain a subdirectory.
5943         * org-agenda.el (org-agenda-post-command-hook): If point is at end
5944         of buffer, and the `org-agenda-type' property undefined, use the
5945         value from the character before.
5947         * org.el (org-add-planning-info): Don't let indentation for
5948         would-be timestamp become extra whitespace at the end of headline.
5950 2008-05-07  Carsten Dominik  <dominik@science.uva.nl>
5952         * org.el (org-remove-double-quotes, org-file-contents): New
5953         functions.
5955         * org-exp.el (org-infile-export-plist): Also parse the
5956         contents of #+SETUPFILE files, recursively.
5958         * org.el (org-set-regexps-and-options): Also parse the
5959         contents of #+SETUPFILE files, recursively.
5961         * org-exp.el (org-export-handle-include-files): New function.
5962         (org-export-preprocess-string): Call
5963         `org-export-handle-include-files'.
5965         * org.el (org-delete-property-globally)
5966         (org-delete-property, org-set-property): Ignore case during
5967         completion.
5968         (org-set-property): Use `org-completing-read' instead of
5969         `completing-read'.
5971         * org.el (org-complete-expand-structure-template): New,
5972         experimental function.
5973         (org-structure-template-alist): New, experimental option.
5974         (org-complete): Call `org-complete-expand-structure-template'.
5976 2008-05-06  Bastien Guerry  <bzg@altern.org>
5978         * org-export-latex.el (org-export-latex-preprocess): Added
5979         support for blockquotes.
5981 2008-05-05  Carsten Dominik  <dominik@science.uva.nl>
5983         * org.el (org-read-date-analyze): Catch the case where only a
5984         weekday is given.
5986 2008-05-04  Carsten Dominik  <dominik@science.uva.nl>
5988         * org.el (org-set-font-lock-defaults): Make the description
5989         tag bold.
5991         * org-exp.el (org-export-as-html, org-close-li): Implement
5992         description lists.
5994 2008-05-04  Jason Riedy  <jason@acm.org>
5996         * org-table.el (*orgtbl-default-fmt*): New variable.
5997         (orgtbl-format-line): Use the value of *orgtbl-default-fmt*
5998         when there is no other fmt available.
6000         (orgtbl-to-generic): Allow an explicitly nil :tstart or
6001         :tend to suppress the appropriate string.
6003         (orgtbl-to-orgtbl): New function for translating to another orgtbl
6004         table.
6006 2008-05-02  Carsten Dominik  <dominik@science.uva.nl>
6008         * org.el (org-read-date-analyze): "." as an alias for "+0" in
6009         read date.
6011         * org-clock.el (org-clock-save-markers-for-cut-and-paste):
6012         New function.
6014         * org-agenda.el (org-agenda-save-markers-for-cut-and-paste):
6015         New function.
6017 2008-05-01  Carsten Dominik  <dominik@science.uva.nl>
6019         * org-clock.el (org-clock-find-position): Don't include notes
6020         into clock drawer.
6022         * org-archive.el (org-archive-subtree): No longer remove an
6023         extra line after cutting the subtree.  `org-cut-subtree' already
6024         takes care of this.
6026         * org-remember.el (org-remember-handler): Only kill the target
6027         buffer if it does not contain the running clock.
6029         * org.el (org-markers-to-move): New variable.
6030         (org-save-markers-in-region, org-check-and-save-marker)
6031         (org-reinstall-markers-in-region): New function.
6032         (org-move-subtree-down, org-copy-subtree): Remember relative
6033         marker positions before cutting.
6034         (org-move-subtree-down, org-paste-subtree): Restore relative
6035         marker positions after pasting.
6037         * org-remember.el (org-remember-clock-out-on-exit): New option.
6038         (org-remember-finalize): Clock out only if the setting in
6039         `org-remember-clock-out-on-exit' requires it.
6040         (org-remember-handler): Do the cleanup in the buffer, to make sure
6041         that the clock marker remains in tact.
6043 2008-04-29  Carsten Dominik  <dominik@science.uva.nl>
6045         * org-clock.el (org-clock-goto): Widen buffer if necessary.
6046         (org-clock-in): Make sure that also tasks outside the narrowed
6047         region will be clocked in correctly.
6048         (org-clock-insert-selection-line): Widen the buffer so that we can
6049         find the correct task heading.
6051         * org.el (org-base-buffer): New function.
6053         * org-exp.el (org-icalendar-cleanup-string): Make sure ',"
6054         and ";" are escaped.
6055         (org-print-icalendar-entries): Also apply
6056         `org-icalendar-cleanup-string' to the headline, not only to the
6057         summary property.
6059 2008-04-28  Carsten Dominik  <dominik@science.uva.nl>
6061         * org-exp.el (org-export-preprocess-hook): New hook.
6062         (org-export-preprocess-string): Call
6063         `org-export-preprocess-hook'.
6065         * org.el (org-font-lock-hook): New variable.
6066         (org-font-lock-hook): New function.
6067         (org-set-font-lock-defaults): Call `org-font-lock-hook'.
6069 ;; Local Variables:
6070 ;; coding: utf-8
6071 ;; add-log-time-zone-rule: t
6072 ;; End:
6074     Copyright (C) 2008  Free Software Foundation, Inc.
6076   This file is part of GNU Emacs.
6078   GNU Emacs is free software: you can redistribute it and/or modify
6079   it under the terms of the GNU General Public License as published by
6080   the Free Software Foundation, either version 3 of the License, or
6081   (at your option) any later version.
6083   GNU Emacs is distributed in the hope that it will be useful,
6084   but WITHOUT ANY WARRANTY; without even the implied warranty of
6085   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6086   GNU General Public License for more details.
6088   You should have received a copy of the GNU General Public License
6089   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
6091 ;; arch-tag: a9bdcf06-7c2d-4b5a-bf7a-c5e7b706f67c