Release 6.32
[org-mode/org-tableheadings.git] / lisp / ChangeLog
blob384dd5227f2001cc06b9eaefdc57eef6efebb80b
1 2009-10-26  Carsten Dominik  <carsten.dominik@gmail.com>
3         * org-agenda.el (org-agenda-add-entry-text): Never add entry text
4         while pushing the mobile agenda.
6 2009-10-25  John Wiegley  <jwiegley@gmail.com>
8         * org-clock.el
9         (org-clock-auto-clock-resolution): Now takes three values: nil, t
10         and `when-no-clock-is-running'.
11         (org-clock-in): Use `org-clock-auto-clock-resolution' to determine
12         whether or not to resolve Org buffers on clock in.
14 2009-10-26  Bastien Guerry  <bzg@altern.org>
16         * org.el (org-mode-hook): Turn `org-mode-hook' into a customizable
17         variable.
19 2009-10-25  Carsten Dominik  <carsten.dominik@gmail.com>
21         * org-clock.el (org-clock-has-been-used): New variable.
22         (org-clock-in): Set `org-clock-has-been-used'.
23         (org-clock-save): Save only if clock data has been used or created
24         during this session.
26 2009-10-24  Carsten Dominik  <carsten.dominik@gmail.com>
28         * org-clock.el (org-clock-persist): New value, to store only the
29         clock history.
30         (org-clock-save): Don't save the clock if only the history should
31         be stored.
32         (org-clock-load): Turn off John Wiegley's auto resolving mechanism
33         when restoring a saved clock.
35 2009-10-24  John Wiegley  <jwiegley@gmail.com>
37         * org-clock.el (org-clock-display, org-clock-put-overlay): Use
38         `org-time-clock-use-fractional'.
40         * org.el (org-time-clocksum-use-fractional)
41         (org-time-clocksum-fractional-format): Two new customizable
42         variables which allow the user to select fractional times (1.25
43         instead of 1:25) in the `org-clock-display' report.
45 2009-10-23  John Wiegley  <jwiegley@gmail.com>
47         * org-habit.el (org-habit-build-graph): None of the arguments
48         should be optional.
49         (org-habit-parse-todo, org-habit-deadline)
50         (org-habit-get-priority, org-habit-get-faces)
51         (org-habit-build-graph): Further simplifications by storing all
52         past, scheduled and deadline dates as a number of days past the
53         epoch, and not as times.
55         * org-habit.el (org-habit-warning-face)
56         (org-habit-warning-future-face): Removed because these are no
57         longer used.
58         (org-habit-deadline, org-habit-deadline-repeat): Now always
59         returns a date; computed if there was a scheduled repeater but no
60         deadline repeater.
61         (org-habit-get-priority): Further improvements to the priority
62         algorithm.  In particular, items past due should always appear
63         before items due or not yet due.
64         (org-habit-get-faces): Greatly simplified the logic, now that
65         `org-habit-deadline' always returns a valid time.
67 2009-10-23  Carsten Dominik  <carsten.dominik@gmail.com>
69         * org-ascii.el (org-export-ascii-table-keep-all-vertical-lines):
70         New option.
72         * org.el (org-tag-alist): Fix customization type.
74 2009-10-22  Carsten Dominik  <carsten.dominik@gmail.com>
76         * org-mobile.el (org-mobile-update-checksum-for-capture-file):
77         Make sure the regexp search can fail without throwing an error.
78         (org-mobile-apply): Save the inbox buffer after removing
79         successfully applied changes.
81 2009-10-22  John Wiegley  <jwiegley@gmail.com>
83         * org-habit.el (org-habit-build-graph): Fix to the graph building
84         when last DONE date is earlier than `org-habit-preceding-days'.
86         * org-clock.el (org-resolve-clocks-if-idle): Fix to the way idle
87         time is reported after the user comes back (but before they
88         resolve time).
90         * org.el (org-get-repeat): Change so that this function can be
91         called with either `org-scheduled-string' or
92         `org-deadline-string'.
94         * org-habit.el (org-habit-parse-todo): Use `org-scheduled-string'
95         to find the scheduled date.
97         * org-clock.el (org-clock-auto-clock-resolution): Renamed
98         `org-clock-disable-clock-resolution', since negatives don't sound
99         good in customization variables.
100         (org-clock-in): Don't use the auto-resolution logic if the user is
101         clocking into a different task while an active clock is running.
102         This then allows the default behavior of clocking out of the open
103         task and then into the new task.
105         * org-habit.el (org-habit-parse-todo): Generate an error if a
106         habit has a scheduled repeat period < 1.
107         (org-habit-get-faces): Fixes to the way that colors are computed.
108         (org-habit-build-graph): The graph wasn't displaying beyond any
109         day that had two completions in it.
111         * org.el (org-modules): Made this variable more consistent, since
112         it was referring to Org, OrgMode and Org-mode, whereas the docs
113         for the variable always refer to Org-mode.
115 2009-10-21  James TD Smith  <ahktenzero@mohorovi.cc>
117         * org.el (org-repeat-re): The changed org-repeat-re no longer
118         matched simple +2d type repeaters. Fix it so it does.
120 2009-10-21  Carsten Dominik  <carsten.dominik@gmail.com>
122         * org-latex.el (org-export-latex-preprocess): Protect the vspace
123         macro in the VERSE environment.
125 2009-10-20  John Wiegley  <jwiegley@gmail.com>
127         * org-habit.el (org-habit-get-priority): A new function that
128         determines the relative priority of a habit, based on how long
129         past its scheduled date it is, and how near the deadline is.
131         * org-agenda.el (org-agenda-get-scheduled): Set habit priority
132         using `org-habit-get-priority'.
134         * org-habit.el (org-habit-build-graph): Start displaying colors
135         from the first scheduled date, if that date is earlier than the
136         first completion date.
138         * org-habit.el: Changed all "color" variables to faces, and made
139         them appropriate for light and dark backgrounds.
141         * org-habit.el (org-habit-duration-to-days): Made this function
142         more general.
143         (org-habit-parse-todo): Parse the new ".+N/N" style repeater.
145         * org-agenda.el (org-agenda-get-deadlines): Removed all mention of
146         habits, since they don't use DEADLINE anymore.
148         * org.el (org-repeat-re, org-display-custom-time)
149         (org-timestamp-change): Extended to support the new ".+N/N"
150         syntax, used for habits.
152         * org-clock.el (org-clock-resolve-clock): Fixed an incorrect
153         variable reference.
155         * org-agenda.el (org-agenda-set-mode-name): Show Habit in the
156         modeline when habits are being displayed (if that module is being
157         loaded).
159 2009-10-21  James TD Smith  <ahktenzero@mohorovi.cc>
161         * org-clock.el (org-x11-idle-seconds): Add a method to get the X11
162         idle time using the xscreensaver extension.
163         (org-user-idle-seconds): Use X11 idle time if available.
165 2009-10-20  Carsten Dominik  <carsten.dominik@gmail.com>
167         * org-agenda.el (org-agenda-next-line): New command.
168         (org-agenda-previous-line): New commands.
169         (org-agenda-show-and-scroll-up, org-agenda-show-scroll-down): New
170         commands.
171         (org-agenda-follow-mode): Do the follow immediately if the mode is
172         turned on here.
173         (previous-line, next-line): Replace keys with the corresponding
174         org functions.
175         (org-agenda-mode-map): Bind backspace and delete to the scrolling
176         command.
178         * org.el (org-icompleting-read): Turn off partial completion mode
179         for the duration of this completion round.
181         * org-latex.el (org-export-latex-fontify-headline): Protect TeX
182         macros in author lines and similar stuff.
184         * org.el (org-file-tags): Fix docstring.
185         (org-get-buffer-tags): Add the #+FILETAGS tags.
186         ("ecb"): Maks ecb show context after jumping into an Org file.
188 2009-10-20  John Wiegley  <johnw@newartisans.com>
190         * org-agenda.el (org-finalize-agenda): Draw habit consistency
191         graphs after everything else in the buffer has been setup.
193 2009-10-19  Carsten Dominik  <carsten.dominik@gmail.com>
195         * org-mobile.el (org-mobile-apply): Count success and failure.
197         * org.el (org-indent-line-function): Fix regexp replace problem.
199 2009-10-19  John Wiegley  <johnw@newartisans.com>
201         * org-clock.el (org-clock-disable-clock-resolution): New
202         customization variable that disable automatic clock resolution on
203         clock in.
204         (org-clock-in): If `org-clock-disable-clock-resolution' is set, do
205         not automatically resolve anything.  This is does not affect
206         idle-time resolution, however, if `org-clock-idle-time' is set.
208 2009-10-19  John Wiegley  <johnw@newartisans.com>
210         * org-habit.el: New file, which implements code to build a "habit
211         consistency graph".
213         * org-agenda.el (org-agenda-get-deadlines)
214         (org-agenda-get-scheduled): Display consistency graphs when
215         outputting habits into the agenda.  The graphs are always relative
216         to the current time.
217         (org-format-agenda-item): Added new parameter `habitp', which
218         indicates whether we are formatting a habit or not.  Do not
219         display "extra" leading information if habitp is true.
221         * org.el (org-repeat-re): Improved regexp to include .+ and ++
222         leaders for repeat strings.
223         (org-get-repeat): Now takes a string parameter `tagline', so the
224         caller can obtain the SCHEDULED repeat, or the DEADLINE repeat.
226 2009-10-19  John Wiegley  <johnw@newartisans.com>
228         * org-agenda.el (org-agenda-auto-exclude-function): New
229         customization variable for allowing the user to create an "auto
230         exclusion" filter for doing context-aware auto tag filtering.
231         (org-agenda-filter-by-tag): Changes to support the use of
232         `org-agenda-auto-exclude-function'.  See the new manual addition,.
234 2009-10-18  John Wiegley  <johnw@newartisans.com>
236         * org.el (org-files-list): Don't attempt to return a file name for
237         Org buffers which have no associated file.
239         * org-agenda.el (org-agenda-do-action): Fixed a typo.
241 2009-10-18  Carsten Dominik  <carsten.dominik@gmail.com>
243         * org-mobile.el (org-mobile-locate-entry): Interpret files
244         relative to org-directory.
245         (org-mobile-inbox-for-pull): Document the best location for this
246         file.
247         (org-mobile-check-setup): Verify `org-directory'.
248         (org-mobile-create-index-file): Sort the files to be listed in
249         index.org.
251 2009-10-17  James TD Smith  <ahktenzero@mohorovi.cc>
253         * org.el (org-fast-tag-selection): Add a way to display a
254         description for a tag group. This is done by adding a string to
255         either the startgroup or endgroup cell.
257 2009-10-17  Carsten Dominik  <carsten.dominik@gmail.com>
259         * org-clock.el (org-clock-resolve, org-resolve-clocks)
260         (org-emacs-idle-seconds): Use `org-float-time' instead of
261         `time-to-seconds'
263 2009-10-17  Carsten Dominik  <carsten.dominik@gmail.com>
265         * org-agenda.el (org-agenda-sorting-strategy): Fix customization
266         type.
268         * org.el (org-pre-cycle-hook): Document that `empty' can also be
269         the value of ARG when doing local cycling.
271 2009-10-17  John Wiegley  <johnw@newartisans.com>
273         * org-clock.el (org-clock-resolve-clock): If keeping or
274         subtracting time results in a clock out at a time in the past, and
275         if the resolution occurred due to idleness or invoking `M-x
276         org-resolve-clocks', remember that past moment in time.  On the
277         next clock in, the user will be prompted to see if they want to
278         back-date their new clock to then.
279         (org-clock-resolve): Do not jump the user to the location of a
280         dangling clock if the resolution is occuring due to an idle
281         timeout.  In that case there is typically only one dangling clock,
282         the active one, and there is no value gained by shuffling their
283         windows around to show it to them.  Being prompted to resolve an
284         idle clock should be as inobtrusive as possible.
285         (org-resolve-clocks-if-idle): New function that resolves only the
286         currently active clock if the user has exceeded the time returned
287         by `org-user-idle-seconds', based on the value of
288         `org-clock-idle-time'.
289         (org-clock-in): If, after resolving clocks,
290         (org-clock-out): Cancel the `org-clock-idle-timer' on clock out.
292         * org-clock.el (org-clock-resolve-clock): New function that
293         resolves a clock to a specific time, closing or resuming as need
294         be, and possibly even starting a new clock.
295         (org-clock-resolve): New function used by `org-resolve-clocks'
296         that sets up for the call to `org-clock-resolve-clock'.  It
297         determines the time to resolve to based on a single-character
298         selection from the user to either keep time, subtract away time or
299         cancel the clock.
300         (org-resolve-clocks): New user command which resolves dangling
301         clocks -- that is, open but not active -- anywhere in the file
302         list returned by `org-files-list'.
303         (org-clock-in): Automatically resolve dangling clocks whenever a
304         user clocks in.
305         (org-clock-cancel): If the user cancels the solely clock in a
306         LOGBOOK, remove the empty drawer.
308         * org-clock.el (org-clock-idle-time): New user customizable option
309         for detecting whether the user has left a clock idle.  Note: it is
310         only used in this commit to test whether it's worthwhile to check
311         OS X to get the Mac user's current idle time.  If the Emacs idle
312         time is less than the value, the user hasn't been away long enough
313         to be worth checking (a more expensive test than just getting
314         Emacs idle time).
315         (org-user-idle-seconds, org-mac-idle-seconds)
316         (org-emacs-idle-seconds): This three functions, in conjunction
317         with the user customization variable `org-clock-idle-time', return
318         the number of seconds (as a floating point) that the user has been
319         away from their Emacs (or, if running on OS X, their computer).
321         * org-clock.el (org-find-open-clocks): New function that returns a
322         list of all open clocks in the given FILE.  Note that each clock
323         it returns is a cons cell of the format (MARKER . START-TIME).
324         This "clock" value is used by several of the new clock module
325         utility functions.
326         (org-is-active-clock): New inline function which tests whether the
327         given clock value is the same as the currently active clock.
328         Returns non-nil if this is the case.
329         (org-with-clock-position): New macro that evaluates FORMS with
330         point in the buffer and at the position of the given clock.
331         Changes to the current clock are global.
332         (org-with-clock): New macro that evaluates FORMS with point in the
333         buffer and at the position of the given clock.  However, changes
334         to the current clock are local and have no effect on the user's
335         active clock.  This allows, for example, far any clock to be
336         cancelled without cancelling the active clock.
337         (org-clock-clock-in): New inline function that switches the active
338         clock to the given clock.  If either the argument RESUME, or the
339         global `org-clock-in-resume', are non-nil, it will resume a clock
340         that was previously left open.
341         (org-clock-clock-out): New inline function that clocks out the
342         given clock value without affecting the currently active clock.
343         (org-clock-clock-cancel): New inline function that cancels the
344         given clock value without affecting the currently active clock.
346         * org-clock.el (org-clock-in): Before creating
347         `org-clock-mode-line-timer', check to make sure an older timer is
348         not currently running.
349         (org-clock-out): Accept new third parameter `at-time', which
350         permits a clock to be clocked out at a specific time.  Note that
351         no attempt is made to verify that the clock out time is later than
352         the clock in time.
354         * org.el (org-files-list): New utility function for returning a
355         list of all open org-mode buffers, plus all files used to build
356         the agenda buffer.  Note that not all the files will necessarily
357         be visited by a buffer at time of call.
358         (org-entry-beginning-position): Like the function
359         `line-beginning-position', this inline function returns the
360         beginning position of the current heading/entry.
361         (org-entry-end-position): Like the function `line-end-position',
362         this inline function returns the end position of the current
363         heading/entry.
365 2009-10-16  Carsten Dominik  <carsten.dominik@gmail.com>
367         * org-agenda.el (org-agenda-list): Mark the all-todo items line as
368         a header line.
370 2009-10-15  Carsten Dominik  <carsten.dominik@gmail.com>
372         * org-exp.el (org-inlinetask-remove-END-maybe): Declare function.
374 2009-10-14  Carsten Dominik  <carsten.dominik@gmail.com>
376         * org-agenda.el (org-agenda-filter-make-matcher): Allow to filter
377         entries that have no tags.
378         (org-agenda-search-view): New customize group.
379         (org-agenda-search-view-search-words-only): New option.
380         (org-search-view): Implement substring search.
382 2009-10-13  Carsten Dominik  <carsten.dominik@gmail.com>
384         * org.el (org-outline-level): Add doc string.
386 2009-10-12  Carsten Dominik  <carsten.dominik@gmail.com>
388         * org-inlinetask.el (org-inlinetask-export): Re-introduce
389         variable.
390         (org-inlinetask-export-handler): Only export inline task if the
391         user option calls for it.
393 2009-10-10  Carsten Dominik  <carsten.dominik@gmail.com>
395         * org-exp.el (org-export-handle-export-tags): Remove inlinetask
396         END if present.
398 2009-10-07  Carsten Dominik  <carsten.dominik@gmail.com>
400         * org-latex.el (org-export-latex-tables): Don't format in
401         protected regions.
403 2009-10-06  Carsten Dominik  <carsten.dominik@gmail.com>
405         * org-src.el (org-edit-src-code)
406         (org-edit-src-find-region-and-lang, org-edit-src-exit): Handle
407         macro editing.
409         * org-agenda.el (org-prefix-category-max-length): New variable.
410         (org-format-agenda-item): Use `org-prefix-category-max-length'.
411         (org-compile-prefix-format): Set `org-prefix-category-max-length'.
413 2009-10-03  Carsten Dominik  <carsten.dominik@gmail.com>
415         * org-mobile.el (org-mobile-create-index-file): Improve the
416         listing of tags and todo keywords.
418         * org-latex.el (org-export-latex-format-image): New function.
419         (org-export-latex-links): Use `org-export-latex-format-image'.
421 2009-10-02  Carsten Dominik  <carsten.dominik@gmail.com>
423         * org-inlinetask.el (org-inlinetask-get-current-indentation)
424         (org-inlinetask-remove-terminator): New functions.
425         (org-inlinetask-export-handler): Terminate the description list.
427         * org-exp.el (org-export-select-backend-specific-text): Remove the
428         region markers.
430         * org-inlinetask.el (org-inlinetask-export-handler): fix bug for
431         tasks without content.
433         * org-clock.el: Make sure the clock-in target position does not
434         move to a different node by widening the buffer.
436         * org-html.el (org-export-html-format-image): Wrap image into
437         figure div only when there is a caption.
439         * org-archive.el (org-archive-mark-done): Change default value to
440         nil.
442 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
444         * org.el (org-context): Call `bobp', not `eobp'.
446         * org-clock.el (org-clock-cancel): Remove quotes from marker
447         variables.
449         * org.el (org-read-date-prefer-future): New allowed value `time'.
450         (org-read-date-analyze): Shift day to tomorrow depending on time
451         entered and value of `org-read-date-prefer-future'.
453 2009-09-30  Carsten Dominik  <carsten.dominik@gmail.com>
455         * org.el (org-set-tags-to): New command.
457         * org-mobile.el (org-mobile-action-alist): Add more options and
458         update the docstring.
459         (org-mobile-apply-flags): Parse for and use the data.
461         * org-latex.el (org-export-latex-set-initial-vars): Also check in
462         the plist.
464         * org.el (org-additional-option-like-keywords): Add LATEX_CLASS
465         keyword.
467         * org-exp.el (org-infile-export-plist): Add LATEX_CLASS keyword.
469 2009-09-29  Carsten Dominik  <carsten.dominik@gmail.com>
471         * org-inlinetask.el (org-inlinetask-export): Option removed.
472         (org-inlinetask-export-handler): Better export.
474         * org-xoxo.el (org-export-xoxo-final-hook): New hook.
475         (org-export-as-xoxo): Run the new hook.
477         * org-html.el (org-export-html-final-hook): New hook.
478         (org-export-as-html): Run the new hook.
480         * org-docbook.el (org-export-docbook-final-hook): New hook.
481         (org-export-as-docbook): Run the new hook.
483         * org-ascii.el (org-export-ascii-final-hook): New hook.
484         (org-export-as-ascii): Run the new hook.
486         * org-mobile.el (org-mobile-create-sumo-agenda): Call
487         `org-sore-agenda-views' instead of `org-batch-store-agenda-views'.
489         * org-latex.el (org-export-latex-treat-sub-super-char): Allow a
490         space character as the character before the ^/_.
491         (org-export-latex-final-hook): New hook.
492         (org-export-as-latex): Run `org-export-latex-final-hook'.
494 2009-09-28  Carsten Dominik  <carsten.dominik@gmail.com>
496         * org-macs.el (org-if-unprotected-at): Fix docstring.
498         * org-agenda.el (org-agenda-change-all-lines): Handle invisible
499         text in the prefix (if category is a link).
501         * org-latex.el (org-export-latex-preprocess): Deal properly with
502         empty lines in verse environments.
504         * org.el (org-format-latex-header): Inline fullpage.sty.
506         * org-footnote.el (org-footnote-create-definition): Reveal context
507         to add a new footnote definition.
509         * org-mobile.el (org-mobile-files-alist): Add the list of tags to
510         the index file.
511         (org-mobile-files): New option.
512         (org-mobile-files-alist, org-mobile-checksum-files): New variable.
513         (org-mobile-prepare-file-lists, org-mobile-files-alist): New
514         functions.
515         (org-mobile-push): Start by creating the files lists.
516         (org-mobile-copy-agenda-files): Move killing the buffer to after
517         the save-excursion has exited.
518         (org-mobile-write-checksums): Write checksums also for files in
519         sub-directories.
521         * org.el (org-ctrl-c-ctrl-c): Pass prefix arg to
522         org-table-recalculate when cursor is in TBLFM line.
524         * org-list.el (org-renumber-ordered-list): Fix cursor position
525         when bullet length has changed.
527 2009-09-26  Carsten Dominik  <carsten.dominik@gmail.com>
529         * org.el (org-format-latex): Mention `org-format-latex-options' in
530         the docstring.
532 2009-09-25  Carsten Dominik  <carsten.dominik@gmail.com>
534         * org.el (org-agenda-get): New function.
536         * org-agenda.el (org-agenda-post-command-hook): No longer move
537         point away from end of line.
538         (org-agenda-add-entry-text, org-agenda-collect-markers)
539         (org-finalize-agenda, org-agenda-mark-clocking-task)
540         (org-agenda-dim-blocked-tasks, org-agenda-entry-text-show-here)
541         (org-agenda-entry-text-show, org-agenda-highlight-todo)
542         (org-agenda-compare-effort, org-agenda-filter-apply)
543         (org-agenda-later, org-agenda-change-time-span)
544         (org-agenda-post-command-hook, org-agenda-show-priority)
545         (org-agenda-show-tags, org-agenda-goto, org-agenda-kill)
546         (org-agenda-archive, org-agenda-archive-to-archive-sibling)
547         (org-remove-subtree-entries-from-agenda, org-agenda-refile)
548         (org-agenda-open-link, org-agenda-copy-local-variable)
549         (org-agenda-switch-to, org-agenda-check-no-diary)
550         (org-agenda-tree-to-indirect-buffer, org-agenda-todo)
551         (org-agenda-add-note, org-agenda-change-all-lines)
552         (org-agenda-priority, org-agenda-set-tags)
553         (org-agenda-set-property, org-agenda-set-effort)
554         (org-agenda-toggle-archive-tag, org-agenda-date-later)
555         (org-agenda-show-new-time, org-agenda-date-prompt)
556         (org-agenda-schedule, org-agenda-deadline, org-agenda-action)
557         (org-agenda-clock-in, org-agenda-bulk-mark)
558         (org-agenda-bulk-unmark, org-agenda-show-the-flagging-note): Use
559         `org-get-at-bol'.
561         * org-colview.el (org-columns-display-here)
562         (org-columns-edit-allowed, org-agenda-columns): Use
563         `org-get-at-bol'.
565 2009-09-25  Carsten Dominik  <carsten.dominik@gmail.com>
567         * org.el (org-special-ctrl-a/e): Improve documentation and
568         customize type.
569         (org-end-of-line): Don't jump to after the ellipsis.
570         (org-mode-map): Bind <home> and <end> as well.
572 2009-09-24  Carsten Dominik  <carsten.dominik@gmail.com>
574         * org.el (org-fontify-meta-lines-and-blocks): Treat lines with a
575         space after #+ as comments.
576         (org-open-at-point): Run `org-follow-link-hook' always.
578         * org-latex.el (org-export-latex-emph-format): Use better commands
579         to insert special characters in verbatim snippets.
581 2009-09-22  Carsten Dominik  <carsten.dominik@gmail.com>
583         * org-faces.el (org-copy-face): New function.  Use it to create
584         various faces formerly created by using `copy-face'.
586         * org-agenda.el (org-prepare-agenda): Don't officially mark this
587         window dedicated.
588         (org-agenda-quit): Kill the frame containing the agenda window if
589         that frame was created for the agenda.
591 2009-09-21  Carsten Dominik  <carsten.dominik@gmail.com>
593         * org-agenda.el (org-agenda-date-prompt): Mark the changed time
594         stamp in the agenda.
596 2009-09-19  Carsten Dominik  <carsten.dominik@gmail.com>
598         * org-mobile.el (org-mobile-create-index-file): Add the list of
599         TODO keywords, and the list of drawers to the index file.
601         * org-agenda.el (org-prepare-agenda): Reset
602         `org-drawers-for-agenda'.
603         (org-prepare-agenda): Uniquify list of drawers.
605         * org.el (org-complex-heading-regexp-format): New variable.
606         (org-set-regexps-and-options): Define
607         `org-complex-heading-regexp-format'.
608         (org-drawers-for-agenda): New variable.
609         (org-map-entries): Bind `org-drawers-for-agenda'.
610         (org-prepare-agenda-buffers): Add to `org-drawers-for-agenda'.
612         * org-remember.el (org-go-to-remember-target)
613         (org-remember-handler): Use `org-complex-heading-regexp-format'.
615 2009-09-18  Carsten Dominik  <carsten.dominik@gmail.com>
617         * org-agenda.el (org-agenda-highlight-todo): Fix text property
618         problem.
620         * org-mobile.el (org-mobile-capture-file): Use `mobileorg.org' as
621         the capture file, and make it non-configurable.
623         * org.el (org-on-heading-p, org-at-heading-p): Make sure these are
624         always with `invisible-ok'.
625         (org-store-link): No error when there is nothing to link to in the
626         agenda.
628         * org-list.el (org-update-checkbox-count): Insert changed cookie
629         before the old, to avoid problems with invisibility at the end of
630         the line.
631         (org-update-checkbox-count): Insert changed cookie before the old,
632         to avoid problems with invisibility at the end of the line.
634         * org.el (org-sort-entries-or-items): Include the final newline.
635         (org-fontify-meta-lines-and-blocks): Add indented dynamic block
636         lines for fontification.
637         (org-dblock-start-re, org-dblock-end-re): Allow indentation.
638         (org-prepare-dblock): Store the current indentation of the BEGIN
639         line.
640         (org-update-dblock): Apply the indentation of the begin line to
641         the rest of the block.
642         (org-ctrl-c-ctrl-c): Also find indented dblock lines.
643         (org-startup-folded): New allowed value `showeverything'.
644         (org-startup-options): Add STARTUP keyword `showeverything'.
645         (org-set-startup-visibility): Respect value `showeverything' in
646         org-startup-folded.
648 2009-09-17  Carsten Dominik  <carsten.dominik@gmail.com>
650         * org.el (org-closest-date): Fix issue with past preference.
652         * org-mobile.el (org-mobile-apply-flags): Require `org-archive'.
654         * org-archive.el (org-archive-set-tag)
655         (org-archive-subtree-default): New commands.
657         * org-mobile.el (org-mobile-create-index-file): Fix link to
658         capture file.
659         (org-mobile-copy-agenda-files): Create the capture file if it does
660         not exist.
662         * org-clock.el (org-clock-clocktable-default-properties): New
663         option.
664         (org-clock-report): Use
665         `org-clock-clocktable-default-properties'.
667 2009-09-16  Carsten Dominik  <carsten.dominik@gmail.com>
669         * org.el (org-iswitchb-completing-read): Fix typo.
671         * org-crypt.el: New file.
673         * org.el: Add an entry for org-crypt.
675 2009-09-15  Carsten Dominik  <carsten.dominik@gmail.com>
677         * org-agenda.el (org-agenda-menu): Reorganize the menu for more
678         consistency.
679         (org-batch-store-agenda-views): New function.
680         (org-mobile-force-id-on-agenda-items): Mention variable.
681         (org-agenda-title-append): Define variable.
682         (org-write-agenda): New export to Org files.
683         (org-agenda-get-some-entry-text): New arguments INDENT and KEEP.
684         (org-agenda): Allow to keep the restricted file list if a special
685         variable is bound to t.
686         (org-agenda): Define a special agenda view for working on flagged
687         entries.
688         (org-agenda-get-restriction-and-command): List the new agenda
689         view.
690         (org-agenda-show-the-flagging-note): New command.
691         (org-agenda-mode-map): New key `?' for looking at the flagging
692         note.
694         * org.el (org-autoload): Autoload org-mobile.el.
695         (org-org-menu): Add menu commands for MobileOrg in the Org menu.
697         * org-id.el (org-id-get): Fix bug with forcing ID on an item.
699 2009-09-15  Carsten Dominik  <carsten.dominik@gmail.com>
701         * org-table.el (orgtbl-line-start-regexp): Match also TBLNAME
702         statements.
703         (org-table-get-remote-range): Match indented #+TBLNAME
704         statements.
706         * org.el (org-convert-to-odd-levels)
707         (org-convert-to-oddeven-levels): Work also correctly if the file
708         is in outline-mode.
710 2009-09-12  Carsten Dominik  <carsten.dominik@gmail.com>
712         * org.el (org-store-link): When in agenda buffer, link to
713         referenced entry.
714         (org-add-planning-info): Remove spaces at eol.
716         * org-macs.el (org-with-point-at): Add a `lisp-indent-function'
717         property.
719 2009-09-10  Carsten Dominik  <carsten.dominik@gmail.com>
721         * org-latex.el (org-export-latex-first-lines): Fix problem with
722         LaTeX export of first line and selected subtree.
724         * org.el (org-shifttab): Interpret arg differently when using only
725         odd levels.
727 2009-09-09  Bastien Guerry  <bzg@altern.org>
729         * org.el (org-check-agenda-file): Use a more explicit message
731 2009-09-08  Carsten Dominik  <carsten.dominik@gmail.com>
733         * org-exp.el (org-export-remove-special-table-lines): Don't remove
734         normal lines.
736 2009-09-08  Bastien Guerry  <bzg@altern.org>
738         * org.el (org-offer-links-in-entry): Don't use "Select link" as a
739         prompt in the temporary window.
741         * org-agenda.el (org-agenda-bulk-mark): Use a slightly soberer
742         prefix for marked entries in the agenda view.
744 2009-09-07  Andreas Burtzlaff <andy13@gmx.net>  (tiny change)
746         * org.el (outline-end-of-subtree): Bugfix: advise this function in
747         a way that prevents any trailing character from being displayed.
749 2009-09-07  Carsten Dominik  <carsten.dominik@gmail.com>
751         * org-agenda.el (org-agenda-menu): Fix bugs in the bulk action
752         menu.
754         * org-exp.el (org-export-remove-special-table-lines): Remove bad
755         slow regexp match.
757 2009-09-06  Carsten Dominik  <carsten.dominik@gmail.com>
759         * org-latex.el (org-export-latex-preprocess): Do not protect in
760         the LaTeX header.
762         * org-src.el (org-edit-src-save): Save window setup while saving.
763         (org-edit-src-code): Use new buffer name construction scheme.
765 2009-09-04  Carsten Dominik  <carsten.dominik@gmail.com>
767         * org-agenda.el (org-agenda-entry-text-exclude-regexps): New
768         variable.
769         (org-agenda-entry-text-cleanup-hook): New hook.
770         (org-agenda-get-some-entry-text): Remove matches of
771         `org-agenda-entry-text-exclude-regexps' and run the hook
772         `org-agenda-entry-text-cleanup-hook'.
774         * org.el (org-offer-links-in-entry): New argument ZERO to
775         implement a link with index zero.
776         (org-cycle-show-empty-lines): Not keep empty line under header
777         hidden.
778         (org-iswitchb-completing-read): Bind `switchb-use-virtual-buffers'
779         to nil for special completion.
780         (org-store-link): Don't error before the first heading.
782         * org-agenda.el (org-agenda-open-link): Pass the prefix to
783         `org-offer-links-in-entry'.
785 2009-09-03  Carsten Dominik  <carsten.dominik@gmail.com>
787         * org-agenda.el (org-agenda-quit): Provide the window argument for
788         `window-dedicated-p', Emacs 22 needs it.
789         (org-format-agenda-item): If the category is a link, arrange for
790         invisible text to replaced with spaces.
791         (org-compile-prefix-format): Add the extra space.
792         (org-prefix-category-length): New variable.
794         * org-exp.el (org-export-cleanup-toc-line): Remove footnote
795         references from TOC lines.
797         * org.el (org-selected-window): New variable.
799         * org-table.el (org-table-edit-formulas): Remember the selected
800         window.
801         (org-table-fedit-finish, org-table-fedit-abort): Select the window
802         that was originally selected.
804         * org-exp.el (org-export-preprocess-apply-macros): Scan the
805         expansion of a macro for more macro definitions.
807         * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure the
808         invisibility overlay starts on the newline.
810 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
812         * org-protocol.el (org-protocol-store-link)
813         (org-protocol-remember, org-protocol-open-source): Add autoloads.
815         * org-compat.el (org-float-time): New function.
817         * org.el (org-clock-update-time-maybe)
818         (org-sort-entries-or-items, org-do-sort)
819         (org-evaluate-time-range, org-time-string-to-seconds)
820         (org-closed-in-range): Use `org-float-time'.
822         * org-timer.el (org-timer-start, org-timer-pause-or-continue)
823         (org-timer-seconds):  Use `org-float-time'.
825         * org-clock.el (org-clock-get-clocked-time, org-clock-out)
826         (org-clock-sum, org-dblock-write:clocktable)
827         (org-clocktable-steps):  Use `org-float-time'.
829         * org-agenda.el (org-agenda-last-marker-time)
830         (org-agenda-new-marker, org-diary):  Use `org-float-time'.
832         * org-compat.el (w32-focus-frame): Declare the w32-focus-frame
833         function.
835         * org-exp.el (org-get-file-contents): Only protect lines that
836         really need it.
838         * org-html.el (require): Require cl for compilation.
840         * org.el:  Avoid using `default-major-mode'.
842         * org-plot.el (require): Require CL only at compile time.
844         * org-exp.el (require): Require CL only at compile time.
846         * org-agenda.el (org-agenda-quit): When the agenda window is
847         dedicated, remove other windows before exiting, so that the frame
848         really will be killed.
850         * org-exp.el (org-export-handle-include-files): Reset START and
851         END for each loop cycle.
853 2009-09-01  Carsten Dominik  <carsten.dominik@gmail.com>
855         * org.el (org-eval-in-calendar): Use
856         `org-select-frame-set-input-focus'.
858         * org-compat.el (org-select-frame-set-input-focus): New function.
860         * org.el (org-update-statistics-cookies): New function.
861         (org-mode-map): Bind `C-c #' to `org-update-statistics-cookies'.
863 2009-08-31  Carsten Dominik  <carsten.dominik@gmail.com>
865         * org-src.el (org-edit-fixed-width-region): Set org-src-mode only
866         after the local variables are set.
868         * org-latex.el (org-export-latex-protect-amp): New function.
869         (org-export-latex-links): Protect link ampersands in tables.
871         * org-exp.el (org-export-select-backend-specific-text): Match in
872         two steps, to avoid regexp problems.
874         * org.el (org-offer-links-in-entry): Improve working with many and
875         duplicate links.
877         * org-agenda.el (org-agenda-show-1): Make more consistent with
878         normal cycling.
879         (org-agenda-cycle-show): Make more consistent with normal cycling.
881         * org-gnus.el (org-gnus-store-link): Restore the linking to a
882         website.
884 2009-08-30  Bastien Guerry  <bzg@altern.org>
886         * org-latex.el (org-export-latex-first-lines): Bugfix.
888 2009-08-29  Carsten Dominik  <carsten.dominik@gmail.com>
890         * org-clock.el (org-clock-modify-effort-estimate): Emit message
891         about new effort.
893         * org.el (org-set-effort): New function.
894         (org-mode-map): New key for effort setting command.
896         * org-agenda.el (org-agenda): Keep window setup when calling
897         agenda from within agenda window.
898         (org-agenda-mode-map): New keys for effort setting commands.
899         (org-agenda-menu): Add effort setting commands to menu.
900         (org-agenda-set-property, org-agenda-set-effort): New functions.
902         * org-latex.el (org-export-latex-tables): Fix
903         `org-table-last-alignment' and `org-table-last-column-widths' if
904         the first column has been removed.
906 2009-08-28  Carsten Dominik  <carsten.dominik@gmail.com>
908         * org.el (org-remove-timestamp-with-keyword): Only remove in
909         entry, not in subtree.
911         * org-src.el (org-src-lang-modes): Add abbreviation elisp for
912         emacs lisp.
914         * org.el (org-open-at-point): When on headline, offer all strings
915         in entry.
917         * org-remember.el (org-remember-templates): Documentation fix.
919         * org.el (org-move-subtree-down): Use `org-get-next-sibling' and
920         `org-get-last-sibling' instead of the outline versions of these
921         functions.
922         (org-get-last-sibling): New function.
923         (org-refile): Use `org-get-next-sibling' instead of the outline
924         version of this function.
925         (org-clean-visibility-after-subtree-move): Use
926         `org-get-next-sibling' and `org-get-last-sibling' instead of the
927         outline versions of these functions.
929 2009-08-27  Carsten Dominik  <carsten.dominik@gmail.com>
931         * org-agenda.el (org-prepare-agenda): When creating a new frame
932         for the agenda, make the window dedicated.
934         * org-agenda.el (org-agenda-mode-map): New keys for time motion.
936         * org-table.el (org-table-align): Change the order of reinsertion
937         and deletion, to avoid problems with overlays following the table.
939         * org.el (org-parse-time-string): Better error message.
940         (org-show-subtree): Use org-end-of-subtree.
942         * org-macs.el (org-goto-line): New defsubst.
944         * org.el (org-open-file, org-change-tag-in-region)
945         (org-fast-tag-show-exit): Don't use `goto-line'.
947         * org-table.el (org-table-align, org-table-insert-column)
948         (org-table-delete-column, org-table-move-column)
949         (org-table-sort-lines, org-table-copy-region)
950         (org-table-paste-rectangle, org-table-wrap-region)
951         (org-table-get-specials, org-table-rotate-recalc-marks)
952         (org-table-get-range, org-table-recalculate)
953         (org-table-edit-formulas, org-table-fedit-convert-buffer)
954         (org-table-show-reference, org-table-highlight-rectangle): Don't
955         use `goto-line'.
957         * org-src.el (org-edit-src-code, org-edit-fixed-width-region)
958         (org-edit-src-exit): Don't use `goto-line'.
960         * org-macs.el (org-preserve-lc): Don't use `goto-line'.
962         * org-list.el (org-renumber-ordered-list, org-fix-bullet-type):
963         Don't use `goto-line'.
965         * org-exp.el (org-export-number-lines): Don't use `goto-line'.
967         * org-colview.el (org-columns, org-columns-redo)
968         (org-agenda-columns): Don't use `goto-line'.
970         * org-colview-xemacs.el (org-columns, org-agenda-columns): Don't
971         use `goto-line'.
973         * org-agenda.el (org-agenda-mode): Force visual line motion off.
974         (org-agenda-add-entry-text-maxlines): Improve docstring.
975         (org-agenda-start-with-entry-text-mode): New option.
976         (org-agenda-entry-text-maxlines): New option.
977         (org-agenda-entry-text-mode): New variable.
978         (org-agenda-mode): Set initial value of
979         `org-agenda-entry-text-mode'.
980         (org-agenda-mode-map): Add the `E' key.
981         (org-agenda-menu): Add entry text mode to the menu.
982         (org-agenda-get-some-entry-text): Fix line count bug.
983         (org-finalize-agenda): Apply entry text mode if appropriate.
984         (org-agenda-entry-text-show-here): New function.
985         (org-agenda-entry-text-show): New function.
986         (org-agenda-entry-text-hide): New function.
987         (org-agenda-view-mode-dispatch): Add entry text mode to the view
988         key menu.
989         (org-agenda-entry-text-mode): New command.
990         (org-agenda-set-mode-name): Add entry text mode to the mode line
991         string.
992         (org-agenda-undo, org-agenda-get-restriction-and-command)
993         (org-agenda-get-some-entry-text, org-agenda-redo): Don't use
994         `goto-line'.
996 2009-08-26  Bernt Hansen  <bernt@norang.ca>
998         * org-clock.el (org-notify): Bugfix.
1000 2009-08-25  Carsten Dominik  <carsten.dominik@gmail.com>
1002         * org-agenda.el (org-agenda-open-link): Handle multiple links and
1003         check for after-string.
1005         * org-gnus.el (org-gnus-store-link): Simplify.
1007         * org.el (org-latex-regexps): Don't add extra empty lines for
1008         display formulas.
1010 2009-08-24  Carsten Dominik  <carsten.dominik@gmail.com>
1012         * org-agenda.el (org-agenda-get-some-entry-text): New function.
1013         (org-agenda-add-entry-text): Use
1014         `org-agenda-get-some-entry-text'.
1016         * org.el (org-cycle-separator-lines): Update docstring.
1017         (org-cycle-show-empty-lines): Handle negative values for
1018         `org-cycle-show-empty-lines'.
1020         * org-exp.el (org-export-protect-sub-super): New function.
1021         (org-export-normalize-links): Protect the url of plain links from
1022         supscript and superscript processing.
1024         * org-remember.el (org-remember-escaped-%): New function.
1025         (org-remember-apply-template): Use `org-remember-escaped-%' to
1026         detect escaped % signs.
1028 2009-08-23  Bastien Guerry  <bzg@altern.org>
1030         * org-timer.el (org-timer-set-timer): Use `org-notify' and play a
1031         sound when showing the notification.
1033         * org-clock.el (org-notify): New function.
1034         (org-clock-notify-once-if-expired): Use `org-notify'.
1036         * org-gnus.el (org-gnus-store-link): Handle `gnus-summary-mode'
1037         and `gnus-article-mode' separately.
1038         (gnus-summary-article-header): Fix the declare-function.
1040 2009-08-23  Carsten Dominik  <carsten.dominik@gmail.com>
1042         * org-exp.el (org-export-format-source-code-or-example): Translate
1043         language.
1045         * org-src.el (org-src-lang-modes): New variable
1046         (org-edit-src-code): Translate language.
1048         * org-exp.el (org-export-format-source-code-or-example): Deal wit
1049         the new structure of the `org-export-latex-listings-langs'
1050         variable.
1052         * org-latex.el (org-export-latex-listings-langs): Change structure
1053         of the variable from plist to alist.
1055 2009-08-21  Carsten Dominik  <carsten.dominik@gmail.com>
1057         * org.el (org-in-commented-line): New function.
1059 2009-08-20  Carsten Dominik  <carsten.dominik@gmail.com>
1061         * org.el (org-hide-block-toggle): Make folded blocks searchable.
1063 2009-08-19  Friedrich Delgado Friedrichs <friedel@nomaden.org>  (tiny change)
1065         * org.el (org-flag-drawer): More useful error.
1067 2009-08-19  Carsten Dominik  <carsten.dominik@gmail.com>
1069         * org-remember.el (org-remember-apply-template): Use
1070         org-icompleting-read.
1072         * org-publish.el (org-publish): Use org-icompleting-read.
1074         * org-colview.el (org-columns-edit-value, org-columns-new)
1075         (org-insert-columns-dblock): Use org-icompleting-read.
1077         * org-colview-xemacs.el (org-columns-edit-value)
1078         (org-columns-new, org-insert-columns-dblock): Use
1079         org-icompleting-read.
1081         * org-attach.el (org-attach-delete-one, org-attach-open): Use
1082         org-icompleting-read.
1084 2009-08-18  Carsten Dominik  <carsten.dominik@gmail.com>
1086         * org.el (org-hierarchical-todo-statistics): Improve docstring.
1087         (org-version): Return the version text.
1088         (org-org-menu): Add a menu entry for the new bug reporter.
1089         (org-submit-bug-report): New command.
1091         * org-list.el (org-hierarchical-checkbox-statistics): Improve
1092         docstring.
1094         * org.el (org-emphasis-regexp-components): Add "`" to set of
1095         pre-emphasis characters.
1097         * org-latex.el (org-export-latex-classes): Always include the soul
1098         package.
1099         (org-export-latex-emphasis-alist): Use \st for strikethough.
1101         * org-exp-blocks.el (org-export-blocks-preprocess): Use
1102         `indent-code-rigidly' to indent.
1104         * org-agenda.el (org-agenda-get-restriction-and-command): Remove
1105         properties only if MATCH really is a string.
1107 2009-08-16  Carsten Dominik  <carsten.dominik@gmail.com>
1109         * org-latex.el (org-export-latex-packages-alist): Fix
1110         customization type.
1112         * org.el (org-create-formula-image): Also use
1113         `org-export-latex-packages-alist'.
1115         * org-html.el (org-export-as-html): Fix bug in footnote regexp.
1116         (org-export-as-html): Format footnotes correctly.
1118 2009-08-14  Carsten Dominik  <carsten.dominik@gmail.com>
1120         * org.el (org-fast-tag-selection): Avoid text properties on tags
1121         in the alist.
1123         * org-agenda.el (org-agenda-get-restriction-and-command): Avoid
1124         text properties on the match element.
1126 2009-08-12  Carsten Dominik  <carsten.dominik@gmail.com>
1128         * org.el (org-set-regexps-and-options): Make sure the list of done
1129         keywords is not invalid.
1131         * org-exp.el (org-export-interpolate-newlines): New function.
1133 2009-08-11  Carsten Dominik  <carsten.dominik@gmail.com>
1135         * org.el (org-format-latex): Avoid nested overlays.
1137         * org-latex.el (org-export-latex-listings-langs): Add a few more
1138         languages.
1140         * org-exp.el (org-export-preprocess-apply-macros): Make sure to
1141         ignore newlines and space before the first macro argument.
1143         * org-latex.el (org-export-latex-tables): Remove save-excursion
1144         around `org-table-align'.
1146 2009-08-10  Carsten Dominik  <carsten.dominik@gmail.com>
1148         * org.el (org-export-html-special-string-regexps): Definition
1149         moved into org.el
1151         * org-exp.el (org-export-preprocess-apply-macros): Allow newlines
1152         in macro calls.
1154 2009-08-09  Carsten Dominik  <carsten.dominik@gmail.com>
1156         * org-latex.el (org-export-latex-listings)
1157         (org-export-latex-listings-langs): New options.
1159         * org-exp.el (org-export-format-source-code-or-example): Use
1160         listing package if requested by the user.
1162 2009-08-08  Bastien Guerry  <bzg@altern.org>
1164         * org.el (org-iswitchb): Fix bug when aborting the `org-iswitchb'
1165         command before actually switching to a buffer.
1167 2009-08-07  Carsten Dominik  <carsten.dominik@gmail.com>
1169         * org-exp.el (org-get-file-contents): Only quote org lines when
1170         the markup is src or example.
1172         * org-agenda.el (org-agenda-skip-scheduled-if-deadline-is-shown):
1173         New option
1174         (org-agenda-get-day-entries): Remember deadline results and pass
1175         them on into the function getting the scheduling information.
1176         (org-agenda-get-scheduled): Accept deadline results as parameters
1177         and maybe skip some entries.
1178         (org-agenda-skip-scheduled-if-deadline-is-shown): New option.
1180         * org.el (org-insert-heading): When respecting content, do not
1181         convert current line to headline.
1183         * org-clock.el (org-clock-save-markers-for-cut-and-paste): Also
1184         cheeeeeck the hd marker
1185         (org-clock-in): Also set the hd marker.
1186         (org-clock-out): Also set the hd marker.
1187         (org-clock-cancel): Reset markers.
1189         * org.el (org-clock-hd-marker): New marker.
1191         * org-faces.el (org-agenda-clocking): New face.
1193         * org-agenda.el (org-agenda-mark-clocking-task): New function.
1194         (org-finalize-agenda): call `org-agenda-mark-clocking-task'.
1196         * org.el (org-modules): Add org-track.el.
1198         * org-agenda.el (org-agenda-bulk-marked-p): New function.
1199         (org-agenda-bulk-mark, org-agenda-bulk-unmark): Use
1200         `org-agenda-bulk-marked-p'.
1201         (org-agenda-bulk-toggle): New command.
1203 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
1205         * org.el (org-move-subtree-down): Hide subtree if it was folded,
1206         not just the body.
1208         * org-remember.el (org-remember-finalize): Avoid buffer-modified
1209         messages.
1211 2009-08-06  James TD Smith  <ahktenzero@mohorovi.cc>
1213         * org-plot.el (org-plot/gnuplot): Stop datafile from being deleted
1214         before gnuplot can read it.
1216 2009-08-05  Carsten Dominik  <carsten.dominik@gmail.com>
1218         * org-latex.el (org-export-latex-first-lines): Fix bug with
1219         finding the end of the first lines.
1221         * org.el (org-create-formula-image): Remove the -E option for
1222         dvipng.
1224         * org-exp.el (org-default-export-plist): Respect #+BIND.
1225         (org-export-confirm-letbind): New function.
1227         * org.el (org-paste-subtree): Test the kill ring entry if it is
1228         going to be used.
1229         (org-copy-subtree): Use `org-forward-same-level'.
1230         (org-forward-same-level): Respect the `invisibe-ok' arg for
1231         back-to-heading.
1233 2009-08-04  Carsten Dominik  <carsten.dominik@gmail.com>
1235         * org.el (org-table-map-tables): Make sure cursor is back at table
1236         beginning after funcall.
1238         * org-agenda.el (org-agenda-bulk-action): Make sure parents are
1239         handled before children, and do not error if an entry is not
1240         found, probably because it hase been remove when the parent was
1241         archived or refiled.
1243         * org.el (org-ido-completing-read): Accept straight lists for
1244         completion as well as alists.
1246         * org-html.el (org-export-as-html): Fix parenthesis error in
1247         footnore code.
1249         * org-timer.el (org-timer-cancel-timers): Renamed from
1250         `org-timer-cancel-timers'.
1252         * org.el (org-cycle-internal-local): Fix problem with finding next
1253         invisible line.
1255 2009-08-03  Carsten Dominik  <carsten.dominik@gmail.com>
1257         * org-list.el (org-list-send-list): Call
1258         `org-list-goto-true-beginning' instead of
1259         `org-list-find-true-beginning', which does not exist.
1261         * org-timer.el (org-timer-reset-timers): Use `mapc'.
1262         (org-timer-set-timer): Do not assign to heading.
1264         * org-id.el (org-id-open): Quote function name.
1266         * org-macs.el (org-unmodified): Turn off recording undo
1267         information while running inside the macro.
1269         * org-indent.el (org-hide-leading-stars-before-indent-mode): New
1270         variable.
1271         (org-indent-mode): Remember and restore value of
1272         org-hide-leading-stars before `org-indent-mode'.
1274         * org-table.el (org-table-export): Also work in file-less
1275         buffers.
1277         * org.el (org-startup-indented): New option.
1278         (org-startup-options): Add new options indent and noindent.
1279         (org-unfontify-region): Remove line-prefix and wrap-prefix
1280         properties.
1281         (org-after-demote-entry-hook, org-after-promote-entry-hook): New
1282         hooks.
1283         (org-promote, org-demote): Run the new hooks.
1285         * org-table.el (org-table-align): Replace leading \n as well.
1287         * org-exp.el (org-export-push-to-kill-ring): Remove `line-prefix'
1288         and `line-wrap' text properties.
1290         * org-compat.el (org-kill-new): New function.
1292         * org-agenda.el (org-format-agenda-item): Remove `line-prefix' and
1293         `line-wrap' text properties.
1295         * org-indent.el: New file.
1297 2009-08-02  Carsten Dominik  <carsten.dominik@gmail.com>
1299         * org.el (org-provide-todo-statistics): Tweak docstring.
1301         * org-id.el (org-id-open): Honor `org-link-frame-setup'.
1303 2009-08-01  Carsten Dominik  <carsten.dominik@gmail.com>
1305         * org-exp.el (org-export-as-org): Insert the "-source" string
1306         before the extension.
1308         * org.el (org-read-date): Make sure the calendar is in the current
1309         frame.
1310         (org-set-emph-re): Remove the ? from the post-match.
1311         (org-emphasis-regexp-components): Add backslash to the
1312         postmatch class.
1313         (org-set-font-lock-defaults): Write \n instead of \xa, and make it
1314         optional so that also lines at the end of the buffers will still
1315         be matched as headlines.
1317         * org-table.el (org-table-error-on-row-ref-crossing-hline):
1318         Variable made obsolete.
1319         (org-table-relative-ref-may-cross-hline): New option.
1320         (org-table-find-row-type): Honow the new option
1321         `org-table-relative-ref-may-cross-hline'.
1323 2009-07-31  Carsten Dominik  <carsten.dominik@gmail.com>
1325         * org-table.el (org-table-cut-region, org-table-copy-region): Work
1326         on single field if no active region.
1328 2009-07-27  Carsten Dominik  <carsten.dominik@gmail.com>
1330         * org-latex.el (org-export-latex-make-header): Only insert title
1331         if one is defined.
1333         * org.el (org-make-options-regexp): Allow empty values.
1335         * org-html.el (org-export-as-html): Move hrule detection to after
1336         plain list handling.
1338 2009-07-26  Carsten Dominik  <carsten.dominik@gmail.com>
1340         * org-html.el (org-format-org-table-html): Fix colgroup tags.
1342 2009-07-23  Carsten Dominik  <carsten.dominik@gmail.com>
1344         * org.el (org-cycle-internal-local): Improved version of finding
1345         next visible line.
1346         (org-cycle-hide-drawers): Only hide drawers if this is really
1347         necessary.
1348         (outline-end-of-subtree): Make `outline-end-of-subtree' use the
1349         org-version of this function in Org-mode.  We use advice to
1350         implement this change, so that future changes to this function in
1351         outline.el wil be handled properly.
1352         (org-forward-same-level, org-backward-same-level): New commands.
1354 2009-07-21  Carsten Dominik  <carsten.dominik@gmail.com>
1356         * org.el (org-remove-empty-overlays-at)
1357         (org-clean-visibility-after-subtree-move): New functons.
1358         (org-move-subtree-down): Simplify cleanup of display.
1360 2009-07-20  Carsten Dominik  <carsten.dominik@gmail.com>
1362         * org-mac-message.el (org-mac-message-get-links): Improve
1363         docstring.  Make argument SELECT-OR-FLAGGED optional, default to
1364         "s".  Fix the return value.
1365         (org-mac-message-insert-flagged): Simplify.
1367         * org.el (org-refile-get-location): Tamper with refile history o
1368         that history contains compete matches instead of the entered
1369         string.
1371 2009-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
1373         * org.el (org-store-link): Never store a link to an inline task.
1375         * org-inlinetask.el (org-inlinetask-insert-task): New command.
1377         * org-footnote.el (org-footnote-goto-local-insertion-point): Skip
1378         inline tasks when positioning footnotes.
1380         * org-inlinetask.el (org-inlinetask-remove-END-maybe): New
1381         function.
1383         * org.el (org-refile): Remove the END line when archiving an
1384         inline task that does have an END line.
1386         * org-archive.el (org-archive-subtree): Remove the END line when
1387         archiving an inline task that does have an END line.
1389         * org-macs.el (org-with-limited-levels): New macro.
1390         (org-get-limited-outline-regexp): New function.
1392         * org-exp.el (org-export-format-source-code-or-example): Fix bug
1393         that did not enumerate first line.
1394         (org-export-mark-radio-links): Skip matches in links.
1396 2009-07-18  Carsten Dominik  <carsten.dominik@gmail.com>
1398         * org.el (org-activate-plain-links): Make single-match.
1399         (org-adapt-indentation): Fix docstring.
1401         * org-macs.el (org-unmodified): Turn of modification hooks while
1402         running this macro.
1404 2009-08-02  Bastien Guerry  <bzg@altern.org>
1406         * org.el (org-adapt-indentation): Slightly improve the docstring.
1407         (org-occur): Sends an error when the user inputs an empty string.
1408         (org-priority): Bugfix: the tag alignement should happen within
1409         save-excursion.
1411 2009-07-31  Bastien Guerry  <bzg@altern.org>
1413         * org.el (org-make-link-regexps): Don't exclude parentheses from
1414         `org-plain-link-re'
1415         (org-cycle-internal-local): When locally cycling, switch directly
1416         from CHILDREN to FOLDED if there is no subtree
1417         (org-cycle): Update the docstring to document the new behavior of
1418         `org-cycle-internal-local'.
1420 2009-07-29  Nicolas Goaziou <n.goaziou@neuf.fr>  (tiny change)
1422         * org-clock.el (org-clock-in): Bugfix: recognize timestamps with
1423         an abbreviated format for days.
1425 2009-07-27  Bastien Guerry  <bzg@altern.org>
1427         * org-protocol.el (org-protocol-default-template-key): New
1428         option.
1430         * org.el (org-refile): Bugfix: save-excursion before reading the
1431         refile target, otherwise cursor moves might confuse `org-refile'.
1433         * org-html.el (org-export-as-html): Bugfix: correctly convert the
1434         footnote reference before the footnote itself.
1436         * org.el (org-toggle-heading): Bugfix: correctly convert list
1437         items before the first headline.
1439         * org-html.el (org-export-html-footnote-format): New option for
1440         formatting the footnote reference.
1441         (org-export-as-html): Use the new option.
1443         * org.el (org-provide-todo-statistics): Allow a list of TODO
1444         keywords to compute statistics against headlines containing a
1445         keyword from this list.
1446         (org-update-parent-todo-statistics): Possibly use the new allowed
1447         value of `org-provide-todo-statistics'.
1449 2009-07-26  Bastien Guerry  <bzg@altern.org>
1451         * org-timer.el: Add autoload cookie.
1453         * org.el (org-occur-link-in-agenda-files): New function.
1455         * org-timer.el (org-timer-last-timer): New variable.
1457         * org-agenda.el (org-agenda-mode-map): New key for
1458         org-timer-set-timer called from the agenda.
1460         * org.el (org-mode-map): New key for org-timer-set-timer.
1462         * org-timer.el (org-timer-reset-timers)
1463         (org-timer-show-remaining-time, org-timer-set-timer): New
1464         functions.
1466         * org-clock.el (org-show-notification): Update the docstring.
1468         * org.el (org-provide-todo-statistics): Allow new value
1469         'all-headlines for this option, which includes entries with no
1470         TODO keywords in the todo statistics.
1471         (org-update-parent-todo-statistics): Possibly use the new
1472         'all-headline value from `org-provide-todo-statistics'.
1474 2009-07-25  Bastien Guerry  <bzg@altern.org>
1476         * org-clock.el (org-dblock-write:clocktable): Add a new option
1477         :timestamp which allows display of timestamps in clock reports.
1479         * org.el (org-mode-map): Define new key `C-c C-*': convert a plain
1480         list to a subtree, preserving the structure of the list.
1481         (org-set-emph-re): Make the last element optional in the regexp.
1482         This regexp now matches an emphasized string at the end of a line.
1484         * org-list.el (org-list-goto-true-beginning)
1485         (org-list-make-subtree, org-list-make-subtrees): New functions.
1487         * org.el (org-eval-in-calendar): Select the right frame.
1488         (org-save-frame-excursion): Remove this macro.
1490 2009-07-24  Bastien Guerry  <bzg@altern.org>
1492         * org-list.el (org-list-beginning-re): Bugfix: don't use * when
1493         trying to find the beginning of a list.
1495         * org-exp.el (org-get-file-contents): Use a new argument: markup.
1496         When present, tell org-get-file-contents not to protect org-like
1497         lines.
1499         * org-id.el (org-id-uuid-program): New option to set the name of
1500         the uuidgen program.
1501         (org-id-method): Use `org-id-uuid-program'.
1502         (org-id-new): Use `org-id-uuid-program'.
1504 2009-07-23  Bastien Guerry  <bzg@altern.org>
1506         * org-exp.el (org-export-number-lines): Allow whitespace in code
1507         references.  Allow the -r switch to remove the references in the
1508         source code even when the lines are not numbered: the labels can
1509         be explicit enough.
1511         * org.el (org-fontify-whole-heading-line): New option.
1512         (org-set-font-lock-defaults): Use the new option.
1514         * org-clock.el (org-show-notification-handler): New option.
1515         (org-show-notification): Use the new option.
1517 2009-07-21  Bastien Guerry  <bzg@altern.org>
1519         * org.el (org-eval-in-calendar): Fix a bug about calendar
1520         navigation when `calendar-setup' value is 'calendar-only.
1522 2009-07-19  Bastien Guerry  <bzg@altern.org>
1524         * org.el (orgstruct++-mode): Fix typo in docstring.
1525         (org-insert-link): Clean up: (or (...)) => (...)
1526         (org-insert-link): Use TAB for stored links completion.
1528 2009-07-18  Bastien Guerry  <bzg@altern.org>
1530         * org.el (org-get-refile-targets): Fix bug: don't ignore case when
1531         building the list of targets.
1533         * org-remember.el (org-remember-delete-empty-lines-at-end): New
1534         option.
1535         (org-remember-handler): Use the new option.
1537 2009-07-17  James TD Smith  <ahktenzero@mohorovi.cc>
1539         * org.el (org-tags-sort-function): New option for sorting tags.
1540         (org-set-tags): Use the new option to sort tags.
1542         * org-plot.el (org-plot/gnuplot): Run with an idle timer to avoid
1543         premature deletion of the data when using org-plot in a script.
1545 2009-07-17  Bastien Guerry  <bzg@altern.org>
1547         * org-clock.el (org-clock-in-prepare-hook): New hook.
1548         (org-clock-in): Use this new hook.
1550 2009-07-16  Bastien Guerry  <bzg@altern.org>
1552         * org.el (org-special-ctrl-a/e): Explicitely bind the value
1553         'reversed for this option to the "true line boundary first"
1554         behavior.
1555         (org-tags-match-list-sublevels): Document the 'indented value for
1556         this variable.
1558         * org-latex.el (org-export-latex-first-lines): Fix problem with
1559         publishing the region.
1561         * org-exp.el (org-export-format-source-code-or-example): Fix
1562         bad line numbering when exporting examples in HTML.
1564 2009-07-12  James TD Smith  <ahktenzero@mohorovi.cc>
1566         * org-colview.el (org-format-time-period): Formats a time in
1567         fractional days as days, hours, mins, seconds.
1568         (org-columns-display-here): Add special handling for SINCE and
1569         SINCE_IA to format for display.
1571         * org.el (org-time-since): Add a function to get the time since an
1572         org timestamp.
1573         (org-entry-properties): Add two new special properties: SINCE and
1574         SINCE_IA. These give the time since any active or inactive
1575         timestamp in an entry.
1576         (org-special-properties): Add SINCE, SINCE_IA.
1577         (org-tags-sort-function): Add custom declaration for tags
1578         sorting function.
1579         (org-set-tags): Sort tags if org-tags-sort-function is set
1581 2009-07-08  Carsten Dominik  <carsten.dominik@gmail.com>
1583         * org-clock.el (org-clock-goto): Find hidden headlines as well.
1585         * org.el (org-narrow-to-subtree): Find hidden headlines as well.
1587         * org-plot.el (org-plot/add-options-to-plist): Add timeind
1588         option.
1590 2009-07-07  Carsten Dominik  <carsten.dominik@gmail.com>
1592         * org-publish.el (org-publish-remove-all-timestamps): New function.
1593         (org-publish-all): Remove all timestamp files if `org-publish-all'
1594         is called with a prefix argument.
1596         * org-list.el (org-indent-item): Fix typo.
1597         (org-item-indent-positions): Normalize ordered bullet.
1599         * org-html.el (org-export-html-home/up-format): New option.
1600         (org-export-as-html): Insert the up and HOME links.
1602 2009-07-06  Carsten Dominik  <carsten.dominik@gmail.com>
1604         * org-html.el (org-export-as-html): Insert the title into the
1605         option plist.
1606         (org-export-html-insert-plist-item): New function.
1607         (org-export-as-html): Call `org-export-html-insert-plist-item'.
1609         * org-macs.el (org-set-local): Make a local variable, do not make
1610         the variable buffer-local!
1612         * org-latex.el (org-export-as-latex): Call `org-install-letbind'.
1614         * org-html.el (org-export-as-html): Call `org-install-letbind'.
1616         * org-docbook.el (org-export-as-docbook): Call
1617         `org-install-letbind'.
1619         * org-ascii.el (org-export-as-ascii): Call `org-install-letbind'.
1621         * org-exp.el (org-infile-export-plist): Read BIND lines.
1622         (org-install-letbind): New function.
1623         (org-export-as-org, org-export-preprocess-string): Call
1624         `org-install-letbind'.
1626         * org-src.el (org-edit-src-exit): Untabify the example before
1627         returning to Org.
1629         * org-list.el (org-list-demote-modify-bullet): New option.
1630         (org-first-list-item-p): Save point.
1631         (org-fix-bullet-type): New optional argument FORCE-BULLET.
1632         (org-indent-item): Honor `org-list-demote-modify-bullet'.
1633         (org-item-indent-positions): Return bullet types along with
1634         indentation.
1636 2009-07-05  Carsten Dominik  <carsten.dominik@gmail.com>
1638         * org.el (org-show-entry): Hide drawers.
1640 2009-07-03  Carsten Dominik  <carsten.dominik@gmail.com>
1642         * org-footnote.el (org-footnote-auto-adjust): New option.
1643         (org-footnote-auto-adjust-maybe): New function.
1644         (org-footnote-new, org-footnote-delete): Call
1645         `org-footnote-auto-adjust-maybe'.
1647         * org.el (org-startup-options): Add new footnote-related
1648         keywords.
1650         * org-publish.el (org-publish-timestamp-filename): Additional
1651         arguments PUB-DIR and PUB-FUNC, which are included in the hash.
1652         (org-publish-needed-p): Additional arguments PUB-DIR PUB-FUNC
1653         TRUE-PUB-DIR.  Pass them through to
1654         `org-publish-timestamp-filename'.
1655         (org-publish-update-timestamp): Additional arguments PUB-DIR and
1656         PUB-FUNC, which are included in the hash.
1657         (org-publish-file): Delay timestamp test until the publishing
1658         function is known.
1660 2009-07-02  Carsten Dominik  <carsten.dominik@gmail.com>
1662         * org-agenda.el (org-agenda-bulk-action): Add scheduling and
1663         setting the deadline.
1665         * org.el (org-read-date-final-answer): New variable.
1666         (org-read-date): Store the final answer string, including the date
1667         from the calendar, for reuse by agenda bulk commands.
1669         * org-publish.el (org-publish-attachment): Fix publishing of
1670         attachments.
1672         * org-latex.el (org-export-latex-quotation-marks): Fix export of
1673         quotation makrs in parenthesis.
1674         (org-remove-initial-hash): New function.
1675         (org-export-latex-preprocess): Fix bug with infinite loop if
1676         environment is not properly closed.
1678         * org-table.el (org-table-get-remote-range): Find #+TBLNAME also
1679         when indented.
1681         * org.el (org-fontify-meta-lines-and-blocks): Make #+TBLNAME
1682         highlight also when indented.
1684 2009-07-01  Carsten Dominik  <carsten.dominik@gmail.com>
1686         * org-footnote.el (org-footnote-renumber-fn:N): New command.
1687         (org-footnote-action): Offer renumbering.
1689         * org.el (org-cycle): Honor the `integrate' value of
1690         org-cycle-include-plain-lists'.
1692         * org-list.el (org-cycle-include-plain-lists): New allowed value
1693         `internal'.  Improve the docstring.
1695         * org.el (org-set-autofill-regexps): Improve the paragraph-start
1696         regexp to work better with LaTeX commands.
1698 2009-06-30  Carsten Dominik  <carsten.dominik@gmail.com>
1700         * org-feed.el (org-feed-update): fix problem with non-existing
1701         buffer.
1702         (org-feed-skip-http-headers): New function.
1703         (org-feed-get-feed): Call `org-feed-skip-http-headers'.
1704         (org-feed-get-feed): Fix command line arguments for curl.
1706 2009-06-28  Carsten Dominik  <carsten.dominik@gmail.com>
1708         * org-latex.el (org-export-latex-inline-image-extensions): Add ps
1709         and eps extensions.
1711 2009-06-27  Carsten Dominik  <carsten.dominik@gmail.com>
1713         * org-agenda.el (org-write-agenda): Make sure org-icalendar is
1714         loaded.
1716         * org.el (org-map-entries): No longer force
1717         `org-tags-match-list-sublevels' to t during a todo-only tags
1718         search.
1720 2009-06-26  Carsten Dominik  <carsten.dominik@gmail.com>
1722         * org-latex.el (org-export-latex-low-levels): Allow user-defined
1723         environment.
1724         (org-export-latex-subcontent): Handle user-defined environment.
1726         * org-agenda.el (org-agenda-view-mode-dispatch): Add more keys to
1727         the View dispatcher.
1729         * org.el (org-hide-block-toggle): Use `org-make-overlay' instead of
1730         `make-overlay'.
1732         * org-latex.el (org-export-as-pdf): Protect match data during call
1733         to shell-quote-argument.
1735         * org-agenda.el (org-agenda-mode-map): Modify bulk action keys.
1736         (org-agenda-view-mode-dispatch): New function.
1738 2009-06-24  Carsten Dominik  <carsten.dominik@gmail.com>
1740         * org-agenda.el (org-agenda-mode): Reset list of marks.
1741         (org-agenda-mode-map): Define new keys for refile and bulk action.
1742         (org-agenda-menu): Add menu itesm for refile and bulk action.
1743         (org-agenda-refile): New function.
1744         (org-agenda-set-tags): Optional arguments TAG and ONOFF.
1745         (org-agenda-marked-entries): New variable.
1746         (org-agenda-bulk-select, org-agenda-remove-bulk-action-overlays)
1747         (org-agenda-remove-all-bulk-action-marks)
1748         (org-agenda-bulk-action): New functions/commands.
1750 2009-06-23  Carsten Dominik  <carsten.dominik@gmail.com>
1752         * org-exp.el (org-get-file-contents): Protect org-like lines in
1753         included files.
1754         (org-export-format-source-code-or-example): Remove newlines.
1756         * org-latex.el (org-export-latex-links): Check for no-description
1757         marking.
1759         * org-exp.el (org-export-preprocess-apply-macros): Switch macro
1760         argument separator back to comma.
1761         (org-export-normalize-links): Mark links without description.
1763 2009-06-22  Carsten Dominik  <carsten.dominik@gmail.com>
1765         * org-exp.el (org-infile-export-plist): Fix bug in macro
1766         processing.
1768         * org-agenda.el (org-agenda-clock-out): Update line after clocking
1769         out.
1770         (org-agenda-highlight-todo): Fix bug with highlighting.
1772 2009-06-21  Carsten Dominik  <carsten.dominik@gmail.com>
1774         * org.el (org-set-font-lock-defaults): Adapt formatting to capture
1775         new alignment strings.
1777         * org-table.el (orgtbl-self-insert-command): Add yas/expand to
1778         command list.
1779         (org-table-align): Check for forced align type.
1781         * org.el (org-self-insert-command): Add yas/expand to command
1782         list.
1784         * org-clock.el (org-clock-in-hook): New hook.
1785         (org-clock-in): Run `org-clock-in-hook.
1786         (org-clock-out-hook): New hook.
1787         (org-clock-out): Run `org-clock-out-hook.
1788         (org-clock-cancel-hook): New hook.
1789         (org-clock-cancel): Run `org-clock-cancel-hook.
1790         (org-clock-goto-hook): New hook.
1791         (org-clock-goto): Run `org-clock-goto-hook.
1793 2009-06-20  Carsten Dominik  <carsten.dominik@gmail.com>
1795         * org.el (org-store-link): Better default description for link to
1796         Org-mode headline.
1798         * org-exp.el (org-export-generic): Autoload the generic exporter
1799         function.
1800         (org-export): Implement the `g' key for the generic exporter.
1802 2009-06-19  Carsten Dominik  <carsten.dominik@gmail.com>
1804         * org-table.el (orgtbl-setup): Add a binding for `S-iso-lefttab',
1805         and for zbacktab'.
1807         * org-exp-blocks.el (org-ditaa-jar-path): Fix default ditaa path.
1809         * org-exp.el (org-infile-export-plist): Get macros also from
1810         #+SETUPFILE.
1812 2009-06-18  Carsten Dominik  <carsten.dominik@gmail.com>
1814         * org-colview.el (org-columns-capture-view): Protect vertical bars
1815         in column values.
1816         (org-columns-capture-view): Exclude comment and archived trees.
1818         * org-colview-xemacs.el (org-columns-capture-view): Protect
1819         vertical bars in column values.
1820         (org-columns-capture-view): Exclude comment and archived trees.
1822         * org.el (org-quote-vert): New function.
1824         * org-latex.el (org-export-latex-verbatim-wrap): New option.
1826         * org-exp.el (org-export-format-source-code-or-example): Use
1827         `org-export-latex-verbatim-wrap'.
1829         * org.el (org-clone-subtree-with-time-shift): Also shift inactive
1830         time stamps.
1832         * org-html.el (org-export-table-row-tags): New option.
1833         (org-format-org-table-html): Rename `nlines' to `nline', use new
1834         option.
1837 2009-06-17  Carsten Dominik  <carsten.dominik@gmail.com>
1839         * org-exp-blocks.el: Declare functions and variables.
1841         * org-remember.el (org-remember-templates): Allow the headline
1842         element to be a function.
1843         (org-remember-apply-template): If the headline is a function, call
1844         it to get the true function.
1846         * org-clock.el (org-clock-menu): New function.
1847         (org-clock-update-mode-line): Update help string.
1848         (org-clock-modify-effort-estimate): New function.
1849         (org-clock-mark-default-task): New function.
1851         * org.el (org-hh:mm-string-to-minutes): Also take just a number of
1852         minutes as input.
1853         (org-org-menu): Add new clocking stuff.
1854         (org-clock-is-active): New function.
1856 2009-06-14  Carsten Dominik  <carsten.dominik@gmail.com>
1858         * org.el (org-open-non-existing-files): Improve docstring.
1860 2009-06-11  Carsten Dominik  <carsten.dominik@gmail.com>
1862         * org-icalendar.el (org-icalendar-include-bbdb-anniversaries): New
1863         option.
1864         (org-export-icalendar): Call `org-bbdb-anniv-export-ical'.
1866         * org-bbdb.el (org-bbdb-anniv-export-ical): New function.
1868         * org-list.el (org-get-checkbox-statistics-face): Use the new
1869         faces.
1871         * org-faces.el (org-checkbox-statistics-todo)
1872         (org-checkbox-statistics-done): New faces.
1874 2009-06-09  Carsten Dominik  <carsten.dominik@gmail.com>
1876         * org-src.el (org-src-mode): Renamed from `org-exit-edit-mode'.
1877         (org-edit-src-exit): Better cursor positioning when returning from
1878         editing.
1880         * org-latex.el (org-export-latex-use-verb): New variable.
1881         (org-export-latex-emph-format): Prefer \texttt over \verb when
1882         org-export-latex-use-verb is set.
1884 2009-06-08  Carsten Dominik  <carsten.dominik@gmail.com>
1886         * org-docbook.el (org-export-docbook-close-lists-maybe): Also look
1887         at normal indentation.
1889         * org-html.el (org-export-html-close-lists-maybe): Also look at
1890         normal indentation.
1892         * org-remember.el (org-remember-handler): Abort remember if the
1893         buffer is empty.
1895         * org-src.el (org-edit-src-content-indentation): New option.
1896         (org-edit-src-exit): Apply extra indentation.
1898         * org-exp.el (org-export-format-source-code-or-example): Run
1899         `org-src-mode-hook'.
1901         * org-src.el (org-src-mode-hook): New variable.
1902         (org-edit-src-code): Run `org-src-mode-hook'.
1904 2009-06-07  Carsten Dominik  <carsten.dominik@gmail.com>
1906         * org.el (org-indent-line-function): Fix indentation of +#end lines.
1908         * org-src.el (org-edit-src-get-indentation): New function.
1909         (org-edit-src-code): Base indentation on the begin line.
1911 2009-06-07  Tassilo Horn  <tassilo@member.fsf.org>
1913         * org-gnus.el (org-gnus-store-link): Require message.el in
1914         org-gnus-store-link.
1916 2009-06-07  Carsten Dominik  <carsten.dominik@gmail.com>
1918         * org-src.el: New file, split out of org.el
1920         * org-docbook.el (org-export-as-docbook): Better indentation
1921         treatment.
1923         * org-macs.el (org-replace-match-keep-properties): New function.
1925         * org-exp.el (org-export-mark-blockquote-verse-center): Better
1926         preprocessing of center and quote and verse blocks.
1928         * org-docbook.el (org-export-docbook-close-lists-maybe): New function.
1929         (org-export-as-docbook): Close lists when original indentation
1930         mandates it.
1932         * org-html.el (org-export-html-close-lists-maybe): New function.
1933         (org-export-as-html): Close lists when original indentation
1934         mandates it.
1936         * org-list.el (org-list-end): Respect the stored "original"
1937         indentation when determining the end of the list.
1939         * org-exp.el (org-export-replace-src-segments-and-examples):
1940         Remember indentation correctly.
1942 2009-06-06  Carsten Dominik  <carsten.dominik@gmail.com>
1944         * org-clock.el (org-clock-update-mode-line): Apply face
1945         org-mode-line-clock.
1947         * org-faces.el (org-mode-line-clock): New face.
1949 2009-06-05  Tassilo Horn  <tassilo@member.fsf.org>
1951         * org-gnus.el (org-gnus-store-link): Fix bug where
1952         `org-gnus-store-link' used wrong subject when called in an article
1953         buffer.  Patch provided by fengli AT gmail DOT com.
1955 2009-06-04  Carsten Dominik  <carsten.dominik@gmail.com>
1957         * org-exp.el (org-export-format-source-code-or-example): Remember
1958         the original indentation of source code snippets and examples.
1960         * org-latex.el (org-export-as-latex): Relocate the table of
1961         contents.
1963         * org.el (org-ctrl-c-ctrl-c): Update clock lines.
1965         * org-agenda.el (org-run-agenda-series): Scope global options also
1966         when creating the agenda buffer.
1968 2009-06-03  Carsten Dominik  <carsten.dominik@gmail.com>
1970         * org.el (org-adapt-indentation): Improve documentation.
1971         (org-insert-property-drawer): Respect org-adapt-indentation when
1972         inserting the drawer.
1973         (org-remove-flyspell-overlays-in): New function.
1974         (org-do-emphasis-faces, org-activate-plain-links)
1975         (org-activate-code, org-fontify-meta-lines-and-blocks)
1976         (org-activate-angle-links, org-activate-footnote-links)
1977         (org-activate-bracket-links, org-activate-dates)
1978         (org-activate-target-links, org-activate-tags): Remove flyspell
1979         overlays.
1981 2009-06-02  Carsten Dominik  <carsten.dominik@gmail.com>
1983         * org.el (org-edit-src-save): New function.
1985         * org-clock.el (org-clock-out-switch-to-state): New option.
1986         (org-clock-out): Honor `org-clock-out-switch-to-state'.
1988         * org-compat.el (org-compatible-face): Improve macro.
1990         * org.el (org-global-properties-fixed): Add default for
1991         CLOCK_MODELINE_TOTAL.
1993         * org-clock.el (org-clock-sum): Accept lists and strigs as tstart
1994         andd tend.
1995         (org-clock-sum-current-item): Optional argument TSTART, pass it to
1996         org-clock-sum.
1997         (org-clock-get-sum-start): New function.
1999         * org.el (org-startup-options): New keywords blockhide and
2000         blockshow.
2001         (org-mode): Add new invisibility spec.
2002         (org-set-startup-visibility): Hide block on startup if so
2003         desired.
2004         (org-hide-block-startup): New option.
2005         (org-block-regexp): New constant.
2006         (org-hide-block-overlays): New variable.
2007         (org-block-map, org-hide-block-toggle-all, org-hide-block-all)
2008         (org-show-block-all, org-hide-block-toggle-maybe)
2009         (org-hide-block-toggle): New functions.
2010         (org-edit-src-exit): Do not quote lines starting with # and no +
2011         behind it.
2012         (org-auto-repeat-maybe): Add LAST_REPEAT properter for a repeating
2013         entry.
2015 2009-05-30  Carsten Dominik  <carsten.dominik@gmail.com>
2017         * org.el (org-buffer-property-keys): Add Effort property for
2018         completion.
2020 2009-05-28  Carsten Dominik  <carsten.dominik@gmail.com>
2022         * org-clock.el (org-clock-sum-current-item): Fix positioning bug
2023         when retrieving total clocked time in the subtree.
2025         * org.el (org-quoting-blocks): New variable.
2027 2009-05-27  Carsten Dominik  <carsten.dominik@gmail.com>
2029         * org-table.el (org-table-store-formulas)
2030         (org-table-get-stored-formulas, org-table-fix-formulas)
2031         (org-table-edit-formulas, orgtbl-ctrl-c-ctrl-c)
2032         (orgtbl-gather-send-defs): Allow indented #+TBLFM line.
2034         * org.el (org-fontify-meta-lines, org-ctrl-c-ctrl-c): Allow
2035         indented #+TBLFM line.
2037         * org-footnote.el (org-footnote-goto-local-insertion-point): Allow
2038         indented #+TBLFM line.
2040         * org-colview.el (org-dblock-write:columnview): Allow indented
2041         #+TBLFM line.
2043         * org-colview-xemacs.el (org-dblock-write:columnview): Allow
2044         indented #+TBLFM line.
2046         * org-clock.el (org-dblock-write:clocktable): Allow indented
2047         #+TBLFM line.
2049 2009-05-26  Carsten Dominik  <carsten.dominik@gmail.com>
2051         * org-exp.el (org-export-format-source-code-or-example): Make
2052         editing indented blocks work correctly.
2054         * org.el (org-edit-src-nindent): New variable.
2055         (org-edit-src-code, org-edit-fixed-width-region)
2056         (org-edit-src-find-region-and-lang, org-edit-src-exit): Make
2057         editing indented blocks work correctly.
2059 2009-05-24  Carsten Dominik  <carsten.dominik@gmail.com>
2061         * org-exp.el (org-export-replace-src-segments-and-examples): FInd
2062         indented blocks.
2063         (org-export-format-source-code-or-example): Fix indentation of
2064         blocks.
2065         (org-export-remove-indentation): New function.
2066         (org-export-select-backend-specific-text): Allow backend-specific
2067         code to be indented.
2068         (org-export-mark-blockquote-verse-center): Allow markers to be
2069         indented.
2071         * org.el (org-fontify-meta-lines): New function.
2072         (org-set-font-lock-defaults): Call the new fontification
2073         function.
2075         * org-faces.el (org-meta-line): New face
2076         (org-block):  New face.
2078 2009-05-27  Carsten Dominik  <carsten.dominik@gmail.com>
2080         * org.el (org-treat-insert-todo-heading-as-state-change)
2081         (org-treat-S-cursor-todo-selection-as-state-change): New
2082         variables.
2083         (org-insert-todo-heading): Honor
2084         `org-treat-insert-todo-heading-as-state-change'.
2085         (org-shiftright, org-shiftleft): Honor
2086         `org-treat-S-cursor-todo-selection-as-state-change'.
2087         (org-inhibit-logging): New variable.
2089 2009-05-23  Carsten Dominik  <carsten.dominik@gmail.com>
2091         * org-agenda.el (org-remove-subtree-entries-from-agenda): Reduce
2092         range for marker position checking.
2094         * org-latex.el (org-export-latex-first-lines): Fix bug when
2095         exporting a region.
2097 2009-05-22  Carsten Dominik  <carsten.dominik@gmail.com>
2099         * org-exp.el (org-export-push-to-kill-ring): Protect using
2100         x-set-selection, because that does not always work.
2102         * org-agenda.el (org-agenda-list): Apply the new face
2103         `org-agenda-date-today'.
2105         * org-faces.el (org-agenda-date-today): New face.
2107 2009-05-21  Carsten Dominik  <carsten.dominik@gmail.com>
2109         * org-agenda.el (org-agenda-to-appt): Turn off restriction when
2110         creating appointments.
2112         * org-latex.el (org-export-latex-low-levels): Fix customization
2113         type.
2115         * org.el (org-priority, org-shiftup, org-shiftdown): Disable
2116         priority commands.
2118         * org-agenda.el (org-agenda-priority): Disable priority commands.
2120         * org.el (org-enable-priority-commands): New option.
2122         * org-colview-xemacs.el (org-columns-compute)
2123         (org-columns-number-to-string): Fix problems with empty fields.
2125         * org-colview.el (org-columns-compute)
2126         (org-columns-number-to-string): Fix problems with empty fields.
2128         * org-exp.el (org-export-push-to-kill-ring): New function.
2129         (org-export-copy-to-kill-ring): New option.
2131         * org-latex.el (org-export-as-latex): Call
2132         `org-export-push-to-kill-ring'.
2134         * org-html.el (org-export-as-html): Call
2135         `org-export-push-to-kill-ring'.
2137         * org-docbook.el (org-export-as-docbook): Call
2138         `org-export-push-to-kill-ring'.
2140         * org-ascii.el (org-export-as-ascii): Call
2141         `org-export-push-to-kill-ring'.
2143         * org-exp.el (org-export-show-temporary-export-buffer): New
2144         option.
2146         * org-latex.el (org-export-as-latex): Use
2147         `org-export-show-temporary-export-buffer'.
2149         * org-html.el (org-export-as-html): Use
2150         `org-export-show-temporary-export-buffer'.
2152         * org-docbook.el (org-export-as-docbook): Use
2153         `org-export-show-temporary-export-buffer'.
2155         * org-ascii.el (org-export-as-ascii-to-buffer): Use
2156         `org-export-show-temporary-export-buffer'.
2158         * org-exp.el (org-export-show-temporary-export-buffer): New
2159         option.
2160         (org-export-push-to-kill-ring): New function.
2162         * org-colview.el (org-columns-compile-map): New variable.
2163         (org-columns-new, org-columns-compute)
2164         (org-columns-number-to-string, org-columns-uncompile-format)
2165         (org-columns-compile-format): Implement new operators.
2167 2009-05-20  Carsten Dominik  <carsten.dominik@gmail.com>
2169         * org-exp.el (org-export-plist-vars): Add :xml-declaration.
2171         * org-html.el (org-export-html-xml-declaration): New option.
2172         (org-export-as-html): Use `org-export-html-xml-declaration'.
2174         * org-list.el (org-update-checkbox-count): Make property
2175         dependent.
2177         * org.el (org-hierarchical-todo-statistics): New option.
2178         (org-update-parent-todo-statistics): Modified to handle recursive
2179         statistics.
2181 2009-05-19  Carsten Dominik  <carsten.dominik@gmail.com>
2183         * org-publish.el (org-publish): Make this function behave
2184         correctly in interactive use when called with a prefix argument.
2186         * org.el (org-todo-statistics-hook): New hook.
2187         (org-update-parent-todo-statistics): Use new hook.
2188         (org-log-into-drawer): New function.
2189         (org-add-log-setup): Use the new `org-log-into-drawer' function to
2190         determine if we should be logging into a drawer.
2191         (org-log-into-drawer): Update docstring.
2192         (org-default-properties): Add LOG_INTO_DRAWER as a property.
2194         * org-list.el (org-checkbox-statistics-hook): New hook.
2195         (org-update-checkbox-count-maybe): Use new hook.
2197         * org-ascii.el (org-export-ascii-copy-to-kill): New option.
2198         (org-export-as-ascii): Hide export buffer, and copy exported ASCII
2199         to kill ring.
2201 2009-05-17  Carsten Dominik  <carsten.dominik@gmail.com>
2203         * org-ascii.el (org-export-as-ascii): Fix bug with match string in
2204         a line.
2206 2009-05-16  Carsten Dominik  <carsten.dominik@gmail.com>
2208         * org.el (org-edit-src-code, org-edit-fixed-width-region): Use a
2209         better bufer-generating mechanism.
2210         (org-edit-src-find-buffer): New function.
2212         * org-icalendar.el (org-print-icalendar-entries): Don't check for
2213         archive tag, this is already done by `org-agenda-skip'.
2214         data while constructing lost of tags.
2216 2009-05-15  Carsten Dominik  <carsten.dominik@gmail.com>
2218         * org-exp.el (org-export-preprocess-apply-macros): Use semicolon
2219         as argument separator in macros.
2221         * org-html.el (org-export-as-html): Add xml declaration.
2223 2009-05-14  Carsten Dominik  <carsten.dominik@gmail.com>
2225         * org.el (org-after-sorting-entries-or-items-hook): New hook.
2226         (org-sort-entries-or-items): Run the new hook.
2227         (org-after-refile-insert-hook): New hook.
2228         (org-refile): Run `org-after-refile-insert-hook'.
2230         * org-agenda.el (org-agenda-get-progress): Never take time of day
2231         from headline when displaying progress.
2233         * org-latex.el (org-export-latex-complex-heading-re): New variable.
2234         (org-export-as-latex): Force the correct regexp in the
2235         preprocessor buffer.
2236         (org-export-latex-set-initial-vars): Set
2237         `org-export-latex-complex-heading-re'.
2239         * org-agenda.el (org-agenda-start-with-log-mode): New option.
2240         (org-agenda-mode): Use `org-agenda-start-with-log-mode'.
2242 2009-05-13  Carsten Dominik  <carsten.dominik@gmail.com>
2244         * org-latex.el (org-export-latex-tables-centered): New option.
2245         (org-export-latex-tables): Use `org-export-latex-tables-centered'.
2247         * org-exp.el (org-export-as-org): New command.
2248         (org-export-as-org): New command.
2250         * org-publish.el (org-publish-org-to-org): New function.
2252 2009-05-12  Carsten Dominik  <carsten.dominik@gmail.com>
2254         * org.el (org-yank): Just call `org-yank-generic'.
2255         (org-yank-generic): New function, containing the formaer
2256         functionality of `org-yank'.
2258         * org-latex.el (org-export-latex-not-done-keywords)
2259         (org-export-latex-done-keywords): New variables.
2260         (org-export-latex-todo-keyword-markup): New option.
2261         (org-export-latex-set-initial-vars): Remember the TODO keywords.
2262         (org-export-latex-keywords-maybe): Apply the TODO markup.
2264 2009-05-11  Carsten Dominik  <carsten.dominik@gmail.com>
2266         * org-exp.el (org-infile-export-plist): Add more default macros.
2267         (org-export-preprocess-apply-macros): Process macro arguments.
2269 2009-05-10  Carsten Dominik  <carsten.dominik@gmail.com>
2271         * org-icalendar.el (org-icalendar-include-todo): New allowedvalue
2272         `unblocked'.
2273         (org-print-icalendar-entries): Respect the new value of
2274         `org-icalendar-include-todo'.
2276         * org.el (org-link-try-special-completion)
2277         (org-file-complete-link): New functions.
2278         (org-insert-link): Add special completion support for some link
2279         types.
2281         * org-bbdb.el (org-bbdb-complete-link): New function.
2283 2009-05-08  Carsten Dominik  <carsten.dominik@gmail.com>
2285         * org-list.el (org-update-checkbox-count): Allow recursive
2286         statistics.
2287         (org-hierarchical-checkbox-statistics): New option.
2289         * org.el (org-cycle): Remove erraneous space character.
2291         * org-icalendar.el (org-icalendar-timezone): Initialize from
2292         environment.
2294         * org-html.el (org-format-org-table-html): Specify the scope.
2295         (org-format-table-table-html): Specify the scope.
2296         (org-export-table-header-tags): Prepare the scope parameter.
2298 2009-05-07  Carsten Dominik  <carsten.dominik@gmail.com>
2300         * org-html.el
2301         (org-export-html-table-use-header-tags-for-first-column): New
2302         option.
2304         * org.el (org-autoload): Fix autoloading of ascii export
2305         functions.
2306         (org-modules): Add org-special-blocks.
2308 2009-05-06  Carsten Dominik  <carsten.dominik@gmail.com>
2310         * org-icalendar.el (org-start-icalendar-file): Use the new option.
2311         (org-ical-timezone): New option.
2313         * org-exp.el (org-export-get-coderef-format): Use the description
2314         is present.
2316         * org.el (org-sort-entries-or-items): Improve docstring, and make
2317         better implementation for time sorting.
2319 2009-05-05  Carsten Dominik  <carsten.dominik@gmail.com>
2321         * org.el (org-edit-src-persistent-message): New option.
2322         (org-edit-src-code, org-edit-fixed-width-region): Use the new
2323         option.
2325         * org-clock.el (org-clock-insert-selection-line): Fix prefious
2326         patch.
2328         * org.el (org-edit-src-code, org-edit-fixed-width-region): Use
2329         separate buffer instead of indirect buffer to edit source code.
2330         (org-edit-src-exit): Make this function work with the new setup.
2332         * org-clock.el (org-clock-insert-selection-line): Make sure tasks
2333         are properly fontified before shown in the selection menu.
2335         * org.el (org-fontify-like-in-org-mode): New function.
2337         * org-latex.el (org-export-latex-links): Use the property list to
2338         retrieve the default image attributes.
2340         * org-exp.el (org-export-plist-vars): Add a new option.
2342 2009-05-04  Carsten Dominik  <carsten.dominik@gmail.com>
2344         * org-exp.el (org-export, org-export-visible): Support ASCII
2345         export to buffer
2346         (org-export-normalize-links): Do not protect the description if it
2347         is explicitly given.
2349         * org-ascii.el (org-export-as-ascii-to-buffer)
2350         (org-replace-region-by-ascii, org-export-region-as-ascii): New
2351         commands.
2352         (org-export-as-ascii): Add all the same parameters that are also
2353         supported by the other export functions.
2355         * org-list.el (org-reset-checkbox-state-subtree): Moved here from
2356         org-checklist.el.
2357         (org-reset-checkbox-state-subtree): Call
2358         `org-reset-checkbox-state-subtree'.
2360         * org-remember.el (org-select-remember-template): For the
2361         selection of a valid template.
2363         * org-latex.el (org-export-region-as-latex): Supply the
2364         force-no-subtree argument.
2365         (org-export-as-latex): Provide better limits when exporting the
2366         first line.  When exporting to string, we still want the first
2367         lines.
2368         (org-export-latex-first-lines): New argument END, to force the end
2369         of the region.
2370         (org-export-region-as-latex): Use the property list.
2371         (org-export-as-latex):
2373         * org-colview-xemacs.el (org-columns-remove-overlays)
2374         (org-columns): Fix call to `local-variable-p'.
2376 2009-05-02  Carsten Dominik  <carsten.dominik@gmail.com>
2378         * org-html.el (org-export-html-after-blockquotes-hook): New hook.
2379         (org-export-as-html): Run the new hook.
2381         * org-latex.el (org-export-latex-after-blockquotes-hook): New hook.
2382         (org-export-latex-preprocess): Run the new hook.
2384         * org-exp.el (org-export-preprocess-after-blockquote-hook): New hook.
2385         (org-export-preprocess-string): Run the new hook.
2387 2009-04-30  Carsten Dominik  <carsten.dominik@gmail.com>
2389         * org-macs.el (org-check-external-command): New defsubst.
2391         * org.el (org-mode-map): New key for reload.
2392         (org-format-latex): Better error message when external programs
2393         are not available.
2395         * org-agenda.el (org-agenda-mode-map): Bind `org-reload'.
2397         * org.el (org-sort-entries-or-items): Explicit sorting function
2398         for priorities, needed for XEmacs compatibility.
2400         * org-remember.el (org-remember-apply-template): Improve auto-save
2401         behavior.
2403 2009-04-29  Carsten Dominik  <carsten.dominik@gmail.com>
2405         * org-latex.el (org-export-latex-preprocess): Also protect
2406         environments ending in a star.
2408         * org-list.el (org-at-item-p): Fix regular expression.
2410 2009-04-24  Carsten Dominik  <carsten.dominik@gmail.com>
2412         * org.el (org-end-of-subtree): Improve speed.
2414         * org-agenda.el (org-agenda-get-timestamps)
2415         (org-agenda-get-progress, org-agenda-get-deadlines)
2416         (org-agenda-get-scheduled, org-agenda-get-blocks): Optimizations,
2417         in particular, wait as long as possible to collect the tags.
2418         (org-stuck-projects): Improve docstring.
2420         * org.el (org-store-link): No errors when getting custom id before
2421         first headline.
2422         (org-get-tags-at): Use `org-up-heading-safe' when getting tags.
2424 2009-04-23  Carsten Dominik  <carsten.dominik@gmail.com>
2426         * org.el (org-prepare-agenda-buffers): Catch a throw to nextfile.
2428         * org-protocol.el: Remove dependency on url.el.
2429         (org-protocol-unhex-compound, org-protocol-open-source): Remove
2430         dependency on url.el.
2432         * org-latex.el (org-export-as-pdf): Use
2433         `org-latex-to-pdf-process'.
2435 2009-04-22  Carsten Dominik  <carsten.dominik@gmail.com>
2437         * org-latex.el (org-latex-to-pdf-process): New option.
2439         * org-agenda.el (org-agenda-skip-additional-timestamps-same-entry):
2440         New option.
2441         (org-agenda-get-timestamps): Honor
2442         `org-agenda-skip-additional-timestamps-same-entry'.
2444         * org-clock.el (org-clock-goto-may-find-recent-task): New option.
2445         (org-clock-goto): Find recent task only if
2446         `org-clock-goto-may-find-recent-task' allows it.
2448         * org-exp.el (org-export-remove-or-extract-drawers): Handle empty
2449         drawers, and drawers that are missing the :END: line.
2451 2009-04-21  Carsten Dominik  <carsten.dominik@gmail.com>
2453         * org-clock.el (org-clock-goto): Go to recently clocked task if no
2454         clock is running.
2456 2009-04-21  Carsten Dominik  <carsten.dominik@gmail.com>
2458         * org.el (org-update-parent-todo-statistics): Check for
2459         STATISTICS_FROM property.
2461         * org-list.el (org-update-checkbox-count): Check for
2462         STATISTICS_FROM property.
2464         * org.el (org-tab-first-hook)
2465         (org-tab-after-check-for-table-hook)
2466         (org-tab-after-check-for-cycling-hook): New hooks.
2467         (org-cycle-internal-global, org-cycle-internal-local): New
2468         functions, split out from `org-cycle'.
2469         (org-cycle): Call the new hooks.
2471 2009-04-19  Carsten Dominik  <carsten.dominik@gmail.com>
2473         * org-exp.el (org-export-preprocess-string): Reset the list of
2474         preferred targets for each run of the preprocessor.
2476         * org.el (org-refile-target-verify-function): Improve
2477         documentation.
2478         (org-get-refile-targets): Respect point being moved by the
2479         verification function.
2481         * org-latex.el (org-export-latex-timestamp-keyword-markup): New
2482         option.
2483         (org-export-latex-keywords): Use new option.
2485         * org.el (org-rear-nonsticky-at): New defsubst.
2486         (org-activate-plain-links, org-activate-angle-links)
2487         (org-activate-footnote-links, org-activate-bracket-links)
2488         (org-activate-dates, org-activate-target-links)
2489         (org-activate-tags): Place the rear-nonsticky properties at the
2490         correct location.
2492 2009-04-18  Carsten Dominik  <carsten.dominik@gmail.com>
2494         * org-protocol.el (server-edit): Declare `server-edit'.
2495         (org-protocol-unhex-string, org-protocol-unhex-compound): New
2496         functions.
2497         (org-protocol-check-filename-for-protocol): Call `server-edit'.
2499         * org.el (org-default-properties): New default properteis for
2500         completion.
2502         * org-exp.el (org-export-add-subtree-options): Add new properties
2503         for subtree export.
2505         * org-docbook.el (org-export-docbook-keywords-markup)
2506         (org-export-docbook-timestamp-markup): New options.
2507         (org-export-docbook-protect-tags): New function.
2509 2009-04-17  Carsten Dominik  <carsten.dominik@gmail.com>
2511         * org-id.el (org-id-get-with-outline-path-completion): Turn off
2512         org-refile-target-verify-function for the duration of the command.
2514         * org.el (org-link-to-org-use-id): New possible value
2515         `create-if-interactive-and-no-custom-id'.
2516         (org-store-link): Use custom IDs.
2517         (org-link-search): Find custom ID properties from #link.
2518         (org-default-properties): Add CUSTOM_ID for property completion.
2519         (org-refile-target-verify-function): New option.
2520         (org-goto): Turn off org-refile-target-verify-function
2521         for the duration of the command.
2523 2009-04-16  Carsten Dominik  <carsten.dominik@gmail.com>
2525         * org-html.el (org-export-as-html): Use custom IDs in the toc.
2527         * org-exp.el (org-export-preferred-target-alist): New variable.
2528         (org-export-define-heading-targets): Find the new CUSTOM_ID
2529         property.
2530         (org-export-target-internal-links): Target the custom ids when
2531         possible.
2533         * org-latex.el (org-export-latex-preprocess): Better regexp for
2534         matching latex macros with arguments.
2536 2009-04-15  Carsten Dominik  <carsten.dominik@gmail.com>
2538         * org-remember.el (org-remember-handler): Allow filing to non-org
2539         files.
2541 2009-04-15  Magnus Henoch <magnus.henoch@gmail.com>
2543         * org-feed.el (org-feed-alist): New keyword options.
2544         (org-feed-update): Use the new options.
2545         (org-feed-parse-rss-feed): Renamed from `org-feed-parse-feed'.
2546         (org-feed-parse-rss-entry): Renamed from `org-feed-parse-entry'.
2547         (org-feed-parse-atom-feed, org-feed-parse-atom-entry): New
2548         functions.
2550         * org-table.el (org-table-fix-formulas): Do not change references
2551         to remote tables.
2552         (org-table-get-remote-range): Convert standard coordinates to RC
2553         format.
2555         * org-latex.el (org-export-latex-keywords): Fix regexp bug.
2557 2009-04-14  Carsten Dominik  <carsten.dominik@gmail.com>
2559         * org-compat.el (org-sha1-string): Function removed.
2561         * org.el (org-refile-allow-creating-parent-nodes): New option.
2562         (org-refile-get-location): New argument NEW-NODES.
2563         (org-refile): Call `org-refile-get-location' with the new
2564         argument.
2565         (org-refile-get-location): Arrange for adding a new child.
2566         (org-refile-new-child): New function.
2568         * org-html.el (org-html-handle-time-stamps): Wrap time stamps into
2569         an additional span element.
2571         * org-clock.el: Fix a number of docstrings.
2572         (org-clock-find-position): New argument
2573         FIND-UNCLOSED to make the function find an unclosed clock in the
2574         entry.
2575         (org-clock-in): Call `org-clock-find-position' with the new
2576         argument if we might be resuming a clock.
2578 2009-04-13  Carsten Dominik  <carsten.dominik@gmail.com>
2580         * org-latex.el (org-export-latex-display-custom-times): New variable.
2581         (org-export-latex-timestamp-markup): New option.
2582         (org-export-latex-set-initial-vars): Remember the local value of
2583         `org-display-custom-times'.
2584         (org-export-latex-content): Process time stamps.
2585         (org-export-latex-time-stamps): New function.
2587         * org-macs.el (org-maybe-intangible): Add intangible property
2588         again to invisible text.
2590 2009-04-12  Carsten Dominik  <carsten.dominik@gmail.com>
2592         * org-exp.el (org-default-export-plist): Handle undefined
2593         variables.
2595 2009-04-11  Carsten Dominik  <carsten.dominik@gmail.com>
2597         * org.el (org-sort-entries-or-items): Match TODO keywrds
2598         case-sensitively, when sorting.
2599         (org-priority): Do not match TODO keywords with wrong case.
2601 2009-04-09  Carsten Dominik  <carsten.dominik@gmail.com>
2603         * org-feed.el (org-feed-update): Bind the variable
2604         `new-formatted'.
2606         * org-html.el (org-export-as-html): Start paragraphs after literal
2607         examples.
2609         * org-docbook.el (org-export-as-docbook): Start paragraphs after
2610         literal examples.
2612 2009-04-08  Carsten Dominik  <carsten.dominik@gmail.com>
2614         * org.el (org-todo): Honor the NOBLOCKING property.
2616         * org-agenda.el (org-agenda-dim-blocked-tasks): Honor the
2617         NOBLOCKING property.
2619         * org.el (org-scan-tags): Fix bug in tag scanner
2621 2009-04-07  Carsten Dominik  <carsten.dominik@gmail.com>
2623         * org.el (org-modules): Mark obsolete packages.
2625         * org-html.el: New file, split out from org-exp.el.
2627         * org-icalendar.el: New file, split out from org-exp.el.
2629         * org-xoxo.el: New file, split out from org-exp.el.
2631         * org-ascii.el: New file, split out from org-exp.el.
2633 2009-04-06  Carsten Dominik  <carsten.dominik@gmail.com>
2635         * org-compat.el (org-find-library-name): New function.
2637         * org.el (org-pre-cycle-hook): New hook.
2638         (org-cycle): Call the new hook in appropriate places.
2639         (org-reload): Only reload files that have been loaded before.
2641 2009-04-05  Carsten Dominik  <carsten.dominik@gmail.com>
2643         * org.el (org-set-font-lock-defaults): Enforxe space or line end
2644         after todo keyword.
2645         (org-todo): When changing TODO state, do matching
2646         case-sensitively.
2647         (org-map-continue-from): New variable.
2648         (org-scan-tags): Respect values in `org-map-continue-from'.
2649         (org-reload): Make XEmacs compatible.
2651 2009-04-04  Carsten Dominik  <carsten.dominik@gmail.com>
2653         * org-protocol.el (org-protocol-flatten-greedy): New function.
2654         (org-protocol-flatten): New function.
2656         * org.el (org-open-link-from-string): Pass reference buffer to
2657         `org-open-at-point'.
2658         (org-open-at-point): New optional argument `reference-buffer'.
2660 2009-04-03  Carsten Dominik  <carsten.dominik@gmail.com>
2662         * org.el (org-scan-tags): Make tag scan find headline in first
2663         line, 2nd attempt.
2664         (org-get-refile-targets): Add the naked file name.
2665         (org-refile): Store as top-level entry when only file name was
2666         given.
2668         * org-agenda.el (org-agenda-get-progress): Fix regexp bug.
2670         * org.el (org-block-todo-from-children-or-siblings-or-parent):
2671         Renamed from org-block-todo-from-children-or-siblings, and
2672         enhanced to look for the parent's status as well.
2674         * org-agenda.el (org-agenda-log-mode-add-notes): New option.
2675         (org-agenda-get-progress): Add first notes line to log entry if so
2676         desired.
2678 2009-04-02  Carsten Dominik  <carsten.dominik@gmail.com>
2680         * org-agenda.el (org-agenda-cleanup-fancy-diary-hook): New hook.
2681         (org-agenda-cleanup-fancy-diary): Call the new hook.
2683         * org-remember.el (org-remember-apply-template): Take the default
2684         for the annotation from the :annotation property.
2686         * org-mac-message.el (org-mac-message-get-link): Remove the
2687         quotes.
2688         (org-mac-message-get-link): Return the result.
2690 2009-04-01  Carsten Dominik  <carsten.dominik@gmail.com>
2692         * org.el (org-refile-get-location): Add file name only if not
2693         already included in outline path.
2695         * org-faces.el (org-n-level-faces): Fix customization type from
2696         number to integer.
2698         * org-exp.el (org-export-headline-levels): Fix customization type
2699         from number to integer.
2701         * org-agenda.el (org-agenda-confirm-kill)
2702         (org-agenda-custom-commands-local-options)
2703         (org-timeline-show-empty-dates, org-agenda-ndays)
2704         (org-agenda-start-on-weekday, org-scheduled-past-days): Fix
2705         customization type from number to integer.
2707 2009-03-31  Carsten Dominik  <carsten.dominik@gmail.com>
2709         * org-protocol.el: Declare some functions.
2711         * org-inlinetask.el (org-inlinetask-export-handler): Fix line
2712         postion before inserting modified headline.
2714         * org-agenda.el (org-agenda-compare-effort): Honor
2715         `org-sort-agenda-noeffort-is-high'.
2716         (org-agenda-filter-by-tag, org-agenda-filter-make-matcher)
2717         (org-agenda-compare-effort): Implement the "?" operator for
2718         finding entries without effort setting.
2720         * org.el (org-extract-attributes-from-string): New function.
2722         * org-exp.el (org-export-splice-attributes): New function.
2724 2009-03-30  Carsten Dominik  <carsten.dominik@gmail.com>
2726         * org-mouse.el: XEmacs compatibility fixes
2728         * org-docbook.el (org-export-as-docbook): Process footnotes like
2729         normal text.
2731         * org.el (org-modules): Add org-inlinetasks.el
2732         (org-cycle): Implement limiting level on cycling.
2733         (org-move-subtree-down): Fix bug with swapping subtrees at end of
2734         buffer.
2736         * org-inlinetask.el: New file.
2738         * org.el (org-emphasis-regexp-components): Allow braces in
2739         emphasis pre and post match.
2741         * org-footnote.el (org-footnote-normalize): When only dorting, do
2742         not insert inline notes at the end.
2744         * org-docbook.el (org-id-find-id-file): Add function declaration.
2746         * org.el (org-require-autoloaded-modules): Add org-docbook.el.
2748         * org-docbook.el: New file.
2750 2009-03-28  Carsten Dominik  <carsten.dominik@gmail.com>
2752         * org.el (org-reftex-citation): New command.
2754 2009-03-27  Carsten Dominik  <carsten.dominik@gmail.com>
2756         * org-agenda.el (org-agenda-cmp-user-defined): New option.
2757         (org-sorting-choice, org-agenda-sorting-strategy): Add the new
2758         sorting options.
2759         (org-entries-lessp): Apply the new sorting option.
2761         * org.el (org-block-todo-from-children-or-siblings): Fix bug in
2762         blocker code, when an older sibling has children.
2764         * org-mac-message.el (org-mac-message-get-link): Improve getting
2765         links from multiple selected messages.
2767 2009-03-26  Carsten Dominik  <carsten.dominik@gmail.com>
2769         * org-remember.el (org-remember-finalize): Do not set buffer file
2770         name to nil.
2771         (org-remember-handler): Mark buffer as unmodified.
2772         (org-remember-handler): Delete backup file and show message about
2773         remaining backup files.
2774         (org-remember-auto-remove-backup-files): New option.
2776         * org.el (org-store-link): Use buffer name as link description in
2777         w3-mode buffers.
2778         (org-ido-switchb): Fix argument bug for completion.
2780         * org-remember.el (org-remember-apply-template): Set local
2781         variable `auto-save-visited-file-name' instead of global one.
2783 2009-03-25  Carsten Dominik  <carsten.dominik@gmail.com>
2785         * org-feed.el: Re-write.
2787         * org-agenda.el (org-agenda-get-todos): Fix bug with match-data.
2788         (org-agenda-get-todos): Mark file tags as inherited.
2789         (org-agenda-list): Always search diary lines for a time.
2791 2009-03-24  Carsten Dominik  <carsten.dominik@gmail.com>
2793         * org-feed.el (org-feed-assume-stable): New option.
2794         (org-feed-before-adding-hook): New hook.
2796         * org-exp.el (org-export-as-html): Close local lists depending on
2797         indentation, also when starting a table.
2799         * org-remember.el (org-remember-backup-directory)
2800         (org-remember-backup-name): New internal variable.
2802 2009-03-23  Carsten Dominik  <carsten.dominik@gmail.com>
2804         * org-clock.el (org-clock-out-if-current): Make buffer detection
2805         work in indirect buffers as well.
2807         * org.el (org-emphasis-regexp-components): Add the exxclamation
2808         mark to the post-emphasis characters.
2810 2009-03-22  Carsten Dominik  <carsten.dominik@gmail.com>
2812         * org.el (org-read-date-minibiffer-septup-hook): New hook.
2813         (org-read-date): Run the new hook.
2815         * org-mac-message.el (org-mac-flagged-mail): New group.
2816         (org-mac-mail-account): New variable.
2817         (org-mac-create-flagged-mail, org-mac-insert-flagged-mail): New
2818         commands.
2820         * org-remember.el (org-remember-backup-directory): New variable.
2821         (org-remember-apply-template): Write file to backup directory.
2823 2009-03-21  Carsten Dominik  <carsten.dominik@gmail.com>
2825         * org-mouse.el (org-mouse-todo-menu): New function.
2826         (org-mouse-todo-keywords): Function removed.
2827         (org-mouse-context-menu): Use `org-mouse-todo-menu'.
2829         * org-table.el (org-table-beginning-of-field)
2830         (org-table-end-of-field): New commands
2831         (org-table-previous-field, org-table-beginning-of-field): Better
2832         error messages.
2833         (orgtbl-setup): Include `M-a' and `M-e'.
2835         * org.el (org-backward-sentence, org-forward-sentence): New
2836         commands.
2838         * org-colview.el (org-colview-initial-truncate-line-value): New
2839         variable.
2840         (org-columns-remove-overlays): Restore the value of `truncate-lines'.
2841         (org-columns): Remember the value of `truncate-lines'.
2843         * org-colview-xemacs.el (org-colview-initial-truncate-line-value):
2844         New variable.
2845         (org-columns-remove-overlays): Restore the value of
2846         `truncate-lines'.
2847         (org-columns): Remember the value of `truncate-lines'.
2849         * org.el (org-columns-skip-arrchived-trees): New option.
2851         * org-agenda.el (org-agenda-export-html-style): Define color for
2852         org-agenda-done face.
2853         (org-search-view, org-agenda-get-todos, org-agenda-get-progress)
2854         (org-agenda-get-deadlines, org-agenda-get-scheduled): Use new face.
2856         * org.el (org-scan-tags): Use the new face.
2858         * org-faces.el (org-agenda-done): New face.
2860         * org.el (org-scan-tags): Test the value org
2861         `org-tags-match-list-sublevels'.
2862         (org-tags-match-list-sublevels): New allowed value: indented.
2864         * org-export-latex.el (org-export-latex-make-header): Apply macros
2865         in header.
2867         * org-exp.el (org-export-apply-macros-in-string): New function.
2869         * org-export-latex.el (org-export-latex-list-parameters): Fix bug
2870         with the definition of a checked box.
2872         * org-clock.el (org-clock-find-position): Fix drawer indentations.
2874         * org-export-latex.el (org-export-latex-low-levels): More options
2875         for how to process lower levels in LaTeX.
2876         (org-export-latex-subcontent): Better treatment for lists as a
2877         means of publishing lower levels.
2879 2009-03-20  Carsten Dominik  <carsten.dominik@gmail.com>
2881         * org.el (org-set-font-lock-defaults): Use new checkbox face.
2883         * org-faces.el (org-checkbox): New face.
2885         * org-exp.el (org-export-html-preprocess): Only create LaTeX
2886         fragement images if there is an export file.
2888 2009-03-19  Carsten Dominik  <carsten.dominik@gmail.com>
2890         * org-agenda.el (org-stuck-projects): Document that the subtree of
2891         projects that are not stuck will now be searched for stuck
2892         sub-projects.
2893         (org-agenda-skip-entry-when-regexp-matches)
2894         (org-agenda-skip-entry-when-regexp-matches-in-subtree): New functions.
2895         (org-agenda-list-stuck-projects): Use
2896         `org-agenda-skip-entry-when-regexp-matches-in-subtree'.
2898         * org-export-latex.el (org-export-latex-preprocess): Improve
2899         export of verses.
2901         * org-exp.el (org-export-as-html): Implement centering as a div
2902         rather than a paragraph.  Do a better job with line-end in verse
2903         environments.
2905 2009-03-17  Carsten Dominik  <carsten.dominik@gmail.com>
2907         * org.el (org-open-at-point): Fix tags searches by mouse click.
2909 2009-03-16  Carsten Dominik  <carsten.dominik@gmail.com>
2911         * org-export-latex.el (org-export-latex-preprocess): Implement the
2912         centering markup.
2914         * org-exp.el (org-export-mark-blockquote-verse-center): Renamed
2915         from `org-export-mark-blockquote-and-verse'.
2916         (org-export-as-html): Implement the centering markup.
2918         * org-export-latex.el (org-export-latex-tables): Fix vertical
2919         lines in tables.
2921 2009-03-15  Carsten Dominik  <carsten.dominik@gmail.com>
2923         * org.el (org-read-date-history): New variable.
2924         (org-read-date): Use new history variable.
2925         (org-toggle-heading): Fix bug when used before first headline.
2926         (org-store-log-note): Remove drawer if empty while note is
2927         aborted.
2928         (org-remove-empty-drawer-at): New function.
2929         (org-check-after-date): New command.
2930         (org-sparse-tree): New sparse tree command "a".
2932         * org-exp.el (org-export-as-ascii): Improve export of plain lists.
2934 2009-03-14  Bastien Guerry  <bzg@altern.org>
2936         * org.el (org-toggle-fixed-width-section): Bug fix: insert a
2937         column and a space, not only a column.
2939 2009-03-14  Carsten Dominik  <carsten.dominik@gmail.com>
2941         * org-export-latex.el (org-export-latex-emphasis-alist): Better
2942         defaults for verbose emphasis.
2943         (org-export-latex-emph-format): New function.
2944         (org-export-latex-fontify): Call `org-export-latex-emph-format'.
2946         * org-agenda.el (org-agenda-menu): Add new commands to menu.
2947         (org-agenda-do-date-later, org-agenda-do-date-earlier)
2948         (org-agenda-date-later-minutes, org-agenda-date-earlier-minutes)
2949         (org-agenda-date-later-hours, org-agenda-date-earlier-hours): New
2950         commands.
2952         * org.el (org-timestamp-change): Move end-time along with start
2953         time.
2955 2009-03-12  Carsten Dominik  <carsten.dominik@gmail.com>
2957         * org-exp.el (org-export-target-internal-links)
2958         (org-export-as-html): Protect links specified as #name.
2960 2009-03-11  Carsten Dominik  <carsten.dominik@gmail.com>
2962         * org.el (org-clone-subtree-with-time-shift): New command.
2964         * org-export-latex.el (org-export-latex-special-chars)
2965         (org-export-latex-treat-sub-super-char): Fix subscript export.
2967         * org-exp.el (org-create-multibrace-regexp): Do not add
2968         backslashes to the class.
2970 2009-03-10  Carsten Dominik  <carsten.dominik@gmail.com>
2972         * org-colview.el (org-columns-map): Better functions for moving up
2973         and down a row, even if `truncate-line' is nil.
2975         * org.el (org-insert-todo-heading): Make sure the keyword is
2976         inserted at the correct position.
2978         * org-publish.el (org-publish-project-alist)
2979         (org-publish-projects, org-publish-org-index): Change default anme
2980         for the index of file names to "sitemap.org".
2982         * org-export-latex.el (org-export-latex-tables): Use
2983         `org-split-string', for Emacs 21 compatibility.
2985 2009-03-09  Carsten Dominik  <carsten.dominik@gmail.com>
2987         * org-agenda.el (org-agenda-log-mode-items): Improve docstring.
2989 2009-03-08  Carsten Dominik  <carsten.dominik@gmail.com>
2991         * org-exp.el (org-export-page-description)
2992         (org-export-page-keywords): New variables.
2993         (org-export-plist-vars): Add entries for :keywords and
2994         :description.
2995         (org-infile-export-plist): Parse for new keywords.
2996         (org-get-current-options): Add new keywords
2997         (org-export-as-html): Publish description and keywords.
2999         * org-agenda.el (org-agenda-add-entry-text-descriptive-links): New
3000         option.
3001         (org-agenda-add-entry-text): Honor
3002         `org-agenda-add-entry-text-descriptive-links'.
3004         * org-export-latex.el (org-export-latex-preprocess): Make all
3005         external preprocess functions use a PARAMETER arg.
3007         * org-exp.el (org-export-preprocess-string)
3008         (org-export-select-backend-specific-text)
3009         (org-export-format-source-code-or-example)
3010         (org-format-org-table-html): Support docbook export.
3011         (org-export-preprocess-string): Make all external preprocess
3012         functions use a PARAMETER arg.
3014 2009-03-07  Carsten Dominik  <carsten.dominik@gmail.com>
3016         * org-exp.el (org-export-html-style-include-scripts): New option.
3017         (org-export-plist-vars): Add new option
3018         `org-export-html-style-include-scripts'.
3019         (org-export-as-html): Honor new option
3020         `org-export-html-style-include-scripts'.
3021         (org-export-html-scripts, org-export-html-style-default): Fix
3022         xml issues with the Safari browser.
3024 2009-03-06  Carsten Dominik  <carsten.dominik@gmail.com>
3026         * org-publish.el (org-publish-attachment): Only copy file when the
3027         directories differ.
3029 2009-03-05  Carsten Dominik  <carsten.dominik@gmail.com>
3031         * org-clock.el (org-clocktable-steps): Use inactive time stamps
3032         for clocktable steps.
3034         * org.el (org-additional-option-like-keywords): Add two more
3035         keywords.
3037 2009-03-04  Carsten Dominik  <carsten.dominik@gmail.com>
3039         * org-exp.el (org-export-format-source-code-or-example): Mark
3040         temporary buffer unmodified, so that it will be killed even if
3041         mode like message mode has decided to assign a file name.
3043         * org.el (org-scan-tags): Improve tag inheritance.
3044         (org-scan-tags, org-make-tags-matcher): Make tag comparison
3045         case-sensitive.
3046         (org-scan-tags): Use the internal tags list instead of creating it
3047         from scratch.
3048         (org-trust-scanner-tags, org-scanner-tags): New variables.
3049         (org-scan-tags): Set `org-scanner-tags'.
3050         (org-get-tags-at): Take advantage of `org-trust-scanner-tags'.
3051         (org-map-entries): Document the possible speedup using scanner
3052         tags.
3054 2009-03-03  Carsten Dominik  <carsten.dominik@gmail.com>
3056         * org.el (org-add-planning-info): Fix bug with looking for keyword
3057         only at column 0.
3059         * org-agenda.el (org-agenda-custom-commands-local-options): Add
3060         option for tags filter preset.
3061         (org-prepare-agenda): Store filter preset as a property on the
3062         filter variable.
3063         (org-finalize-agenda): Call the filter, if there is a preset.
3064         (org-agenda-filter-by-tag): Filter again after clearing the
3065         filter, when there still is a preset.
3066         (org-agenda-filter-make-matcher, org-agenda-set-mode-name):
3067         Include the preset filter.
3068         (org-agenda-redo): Apply the filter again, also the preset filter.
3070         * org-exp.el (org-export-as-html): Use IDs in the correct way.
3072         * org.el (org-uuidgen-p): New funtion.
3074         * org-agenda.el (org-agenda-fontify-priorities): New default value
3075         `cookies'.
3076         (org-agenda-fontify-priorities): Renamed from
3077         org-fontify-priorities.
3079         * org.el (org-set-font-lock-defaults): Call
3080         `org-font-lock-add-priority-faces'.
3081         (org-font-lock-add-priority-faces): New function.
3083         * org-faces.el: (org-set-tag-faces): New option.
3084         (org-priority-faces): New variable.
3086         * org-exp.el (org-export-as-html): Add a "content" div around the
3087         entire content of the body tag.
3088         (org-export-html-get-bibliography): New function.
3089         (org-export-html-validation-link): New variable.
3090         (org-export-as-html): Add validation link to exported page.
3092         * org.el (org-match-sparse-tree): Renamed from
3093         `org-tags-sparse-tree'.
3094         (org-tags-sparse-tree): New alias.
3096 2009-03-02  Carsten Dominik  <carsten.dominik@gmail.com>
3098         * org.el (org-get-valid-level): Catch the case where the level
3099         change is nil.
3101         * org-clock.el (org-clock-find-position): Better indentation of
3102         new clock drawers.
3104 2009-03-01  Carsten Dominik  <carsten.dominik@gmail.com>
3106         * org-agenda.el (org-agenda-quit): Delete window only when the
3107         frame-setup was not `current-window'.
3109         * org.el (org-tag-persistent-alist): New option.
3110         (org-startup-options): Add keyword `noptag'.
3111         (org-fast-todo-selection): Handle :newline correctly.
3112         (org-set-tags): Handle :newline correctly.
3113         (org-fast-tag-selection): Handle :newline correctly.
3115 2009-02-28  Carsten Dominik  <carsten.dominik@gmail.com>
3117         * org-exp.el (org-export-as-ascii): Reverse link buffer before
3118         outputting it.
3119         (org-export-ascii-push-links): Fix bug with pussing links into the
3120         export buffer.
3122 2009-02-27  Carsten Dominik  <carsten.dominik@gmail.com>
3124         * org-archive.el (org-archive-subtree): Do not add 1 to level if
3125         pasting at top level.
3127         * org-bbdb.el: Improve documentation.
3129 2009-02-26  Carsten Dominik  <carsten.dominik@gmail.com>
3131         * org-list.el (org-insert-item): Only consider insert empty lines
3132         is `org-empty-line-terminates-plain-lists' is not nil.
3134         * org.el (org-blank-before-new-entry): Mention the dependence on
3135         `org-empty-line-terminates-plain-lists' in the docstring.
3137         * org-publish.el (org-publish-get-project-from-filename): New
3138         optional argument UP.  Only find the top project if UP is set.
3139         (org-publish-current-project): Find the top encloding project.
3141         * org-agenda.el (org-agenda-before-write-hook)
3142         (org-agenda-add-entry-text-maxlines): New options.
3143         (org-write-agenda): Run the new hook in the temporary buffer.
3144         (org-agenda-add-entry-text): New function.
3145         (org-write-agenda): Implement PDF export, using ps2pdf.
3147         * org.el (org-global-properties-fixed, org-global-properties):
3148         Improve documentation string.
3150         * org-exp.el (org-export-ascii-links-to-notes): New option.
3151         (org-export-as-ascii): Handle links better.
3152         (org-export-ascii-wrap, org-export-ascii-push-links): New
3153         functions.
3155 2009-02-25  Carsten Dominik  <carsten.dominik@gmail.com>
3157         * org-agenda.el (org-agenda): Make prefix arg optional.
3158         (org-agenda-search-headline-for-time): New option.
3159         (org-format-agenda-item): Honor
3160         `org-agenda-search-headline-for-time'.
3162         * org-table.el (orgtbl-self-insert-command): Cluster undo for 20
3163         characters.
3165         * org.el (org-self-insert-cluster-for-undo): New option.
3166         (org-self-insert-command): Cluster undo for 20 characters.
3167         (org-self-insert-command-undo-counter): New variable.
3169 2009-02-24  Carsten Dominik  <carsten.dominik@gmail.com>
3171         * org-exp.el (org-export-as-html): Fix problem with closing colone
3172         example.
3174 2009-02-22  Carsten Dominik  <carsten.dominik@gmail.com>
3176         * org-export-latex.el (org-export-as-latex)
3177         (org-export-latex-first-lines): Avoid modification flag when
3178         adding or removing text properties.
3179         (org-export-latex-fontify): Catch error when org-emph-alist has
3180         entries that are not defined for LaTeX export.
3182         * org.el (orgstruct++-mode): New function.
3183         (turn-on-orgstruct++): Call `orgstruct++-mode'.
3184         (org-context-p): Allow detecting item context after the first line
3185         of an item.
3186         (orgstruct-make-binding): Detect if item-body context should be
3187         seen.
3188         (orgstruct-is-++): New variable.
3189         (org-add-planning-info): Catch the case when there is no planning
3190         info yet and the call does not want to add anything, only maybe
3191         tries to remove something.
3192         (org-special-ctrl-a/e): All value to be a cons cell with separate
3193         settings for `C-a. and `C-e'.
3194         (org-beginning-of-line, org-end-of-line): Honor separate values
3195         for `C-a' and `C-e'.
3197 2009-02-21  Carsten Dominik  <carsten.dominik@gmail.com>
3199         * org.el (org-reload): New command.
3201 2009-02-20  Carsten Dominik  <carsten.dominik@gmail.com>
3203         * org-exp.el (org-export-htm-get-tag-class-name)
3204         (org-export-htm-get-todo-kwd-class-name): New functions.
3205         (org-export-html-tag-class-prefix)
3206         (org-export-html-todo-kwd-class-prefix): New options.
3207         (org-export-as-html): Call
3208         `org-export-html-get-todo-kwd-class-name'.
3209         (org-html-level-start): Wrap tags into classes.
3210         (org-export-html-get-tag-class-name)
3211         (org-export-html-get-todo-kwd-class-name): New functions.
3213         * org-export-latex.el (org-export-latex-collect-header-macros):
3214         Remove fields that are used anyway.
3215         (org-export-latex-make-header): Insert the options earlier.
3217         * org-agenda.el (org-agenda-get-progress): Fix bug with state
3218         matching.
3220         * org-list.el (org-indent-item): Allow point to be at the end of
3221         the region.
3223         * org.el (org-metaleft, org-metaright): Be more accurate about
3224         detecting a region where commands apply.
3226         * org-compat.el (org-cursor-to-region-beginning): New function.
3228         * org.el (org-priority): Also find invisible heading.
3230         * org-colview-xemacs.el (org-columns-edit-value): No special
3231         treatment for `org-todo' prefix.
3233         * org-colview.el (org-columns-edit-value): No special treatment
3234         for `org-todo' prefix.
3236         * org-remember.el (org-remember-apply-template): Use
3237         `org-completing-read-no-ido'.
3239         * org.el (org-completing-read-no-ido): New function.
3240         (org-make-tags-matcher, org-set-property): Use
3241         `org-completing-read-no-ido'.
3243         * org-export-latex.el (org-export-latex-import-inbuffer-stuff):
3244         New option.
3245         (org-export-as-latex): Import in-buffer settings as TeX macros.
3246         (org-export-latex-make-header): Additional parameter OPT-DEFS.
3247         (org-export-latex-collect-header-macros): New function.
3249         * org.el (org-refile-get-location): Turn off
3250         `partial-completion-mode'.
3252 2009-02-19  Carsten Dominik  <carsten.dominik@gmail.com>
3254         * org.el (org-block-todo-from-checkboxes): Announce that
3255         checkboxes are the culprit.
3256         (org-block-todo-from-children-or-siblings): Call
3257         `org-up-heading-all instead' of `outline-up-heading'.
3259         * org-agenda.el (org-agenda-show-1): Renamed from
3260         `org-agenda-show'.
3261         (org-agenda-show): Re-install the old version for now.
3262         (org-agenda-dim-blocked-tasks): Update docstring.  Scope a
3263         variable into the blokker hook, so that the checkbox checker can
3264         anounce that it caused the blocking.
3266         * org.el (org-track-ordered-property-with-tag): New option.
3267         (org-toggle-ordered-property): Honor
3268         `org-track-ordered-property-with-tag'.
3269         (org-tag-alist): Add newline options.
3270         (org-set-regexps-and-options): Separate option lines imply a
3271         newline.
3272         (org-set-regexps-and-options, org-assign-fast-keys)
3273         (org-fast-todo-selection, org-fast-tag-selection): Handle newline
3274         option.
3275         (org-indent-line-function): Make sure this works even if there is
3276         not `org-drawer-regexp' defined.  This can happen when
3277         orgstruct-mode is used in a non-org buffer.
3279         * org-list.el (org-checkbox-blocked-p): New function.
3280         (org-toggle-checkbox): Check for blocking.
3282         * org.el (org-modules): Add an entry for org-R.el.
3284         * org-agenda.el (org-agenda-todo-ignore-with-date)
3285         (org-agenda-todo-ignore-scheduled)
3286         (org-agenda-todo-ignore-deadlines): Mention the variable
3287         `org-agenda-tags-todo-honor-ignore-options' in the docstring.
3289         * org.el (org-get-wdays): Find the warning period also if it is in
3290         the wrong place.
3291         (org-ido-completing-read): Provide the correct arguments to
3292         ido-completing-read and bind `ido-enter-matching-directory' to
3293         nil.
3295 2009-02-17  Carsten Dominik  <carsten.dominik@gmail.com>
3297         * org.el (org-olpath-completing-read): Never use ido for this
3298         one.
3300         * org-exp.el (org-export-normalize-links): Use new macro.
3302         * org-macs.el (org-if-unprotected-at): New macro.
3304         * org-agenda.el (org-agenda-show): Allow numerical prefix
3305         arguments to specify how much context should be shown.
3306         (org-agenda-cycle-show): New command, could be bound to SPC in
3307         org-agenda-mode-map.
3309         * org-exp.el (org-html-level-start): Space after section number.
3311 2009-02-16  Carsten Dominik  <carsten.dominik@gmail.com>
3313         * org-agenda.el (org-agenda-get-sexps): Add todo state as
3314         property, for sorting.
3315         (org-cmp-todo-state): Get the applicable TODO keywords directly
3316         from the buffer.
3317         (org-run-agenda-series, org-agenda-list, org-search-view)
3318         (org-todo-list, org-tags-view): Only fit agenda window when the
3319         whole series is done.
3321         * org.el (org-scan-tags): Add todo state as property, for sorting.
3323         * org-agenda.el (org-agenda-custom-commands-local-options): Add
3324         `org-agenda-overriding-header' as an option.
3325         (org-agenda-list): Honor org-agenda-overriding-header'.
3327 2009-02-15  Carsten Dominik  <carsten.dominik@gmail.com>
3329         * org-list.el (org-toggle-checkbox): Improve cursor positioning
3330         after removing a checkbox.
3332         * org.el (org-show-entry): Make this work correctly also if it is
3333         the last entry in the file.
3334         (org-end-of-line, org-beginning-of-line): Make prefix arg work, by
3335         falling back to normal, default command.
3336         (org-ctrl-c-ctrl-c): When called with prefix arg at a non-checkbox
3337         item, call the checkbox toggler to get a box.
3339         * org-list.el (org-toggle-checkbox): Make double prefix set the
3340         checkbox to "[-]".
3341         (org-fix-bullet-type): Only replace bullet if it is changed.
3342         (org-renumber-ordered-list): Handle case when first item does not
3343         have a number.
3345         * org.el (org-add-log-setup): Fix positioning when
3346         `org-log-states-order-reversed' is nil.
3348         * org-clock.el (org-clock-in): Fix positioning when
3349         `org-log-states-order-reversed' is nil.
3350         (org-clock-find-position): Fix positioning when
3351         `org-log-states-order-reversed' is nil.
3353 2009-02-14  Carsten Dominik  <carsten.dominik@gmail.com>
3355         * org-clock.el (org-clock-into-drawer): Take default from
3356         `org-log-into-drawer'.
3357         (org-clock-find-position): Look for the correct drawer.
3359         * org.el (org-log-into-drawer): Renamed from
3360         `org-log-state-notes-into-drawer'.
3361         (org-log-state-notes-into-drawer): New variable alias.
3362         (org-add-log-setup): Make drawer name default to LOGBOOK, not
3363         CLOCK.
3364         (org-insert-property-drawer): Also skip LOGBOOK drawers.
3366 2009-02-13  Carsten Dominik  <carsten.dominik@gmail.com>
3368         * org-agenda.el (org-agenda): Fix docstring.
3370         * org.el ("org-plot"): Help loading org-plot.
3371         (org-metaleft-hook, org-metaright-hook, org-metaup-hook)
3372         (org-metadown-hook, org-shiftmetaleft-hook)
3373         (org-shiftmetaright-hook, org-shiftmetaup-hook)
3374         (org-shiftmetadown-hook, org-metareturn-hook): New hooks.
3375         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
3376         (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
3377         (org-metadown, org-ctrl-c-ctrl-c): Call the appropriate hook.
3379         * org-publish.el (org-publish-get-base-files): Allow symbol `any'
3380         for selecting files with any (and even without) extension.
3382         * org.el (org-save-all-org-buffers): Also save id locations.
3383         (org-revert-all-org-buffers): Also load id locations.
3385 2009-02-12  Carsten Dominik  <carsten.dominik@gmail.com>
3386         * org.el (org-drawers): Add LOGBOOK to the default drawers.
3387         (org-log-state-notes-into-drawer): New option.
3388         (org-add-log-setup): Place the sate note marker into the drawer,
3389         create drawer when necessary.
3390         (org-refile-targets): Document special interpretation of LEVEL
3391         when odd-levels are used.
3393 2009-02-12  Carsten Dominik  <carsten.dominik@gmail.com>
3395         * org.el (org-store-log-note): Fix note indentation when adding
3396         notes to end of list.
3398         * org-exp.el (org-export-as-html): Add TODO keyword as extra
3399         class, so that each keyword can get special colors through CSS.
3401         * org-clock.el (org-clock-out): Add another nil for the previous
3402         state into the call to `org-add-log-setup'.
3404         * org.el (org-log-note-previous-state): New variable.
3405         (org-log-note-headings): New %S escape for old state.
3406         (org-todo): Call the note setup with the old state as an
3407         argument.
3408         (org-add-note): Add another nil for the previous state into the
3409         call to `org-add-log-setup'.
3410         (org-add-log-setup): New argument PREV-STATE.
3411         (org-add-log-note): Handle new %S escape.
3412         (org-store-log-note): Handle new %S escape.
3414 2009-02-11  Carsten Dominik  <carsten.dominik@gmail.com>
3416         * org-clock.el (org-clock-find-position): Do not swallow an item
3417         less indented than the CLOCK line itself.
3418         (org-clock-in): Push markers to lin after the clock line.
3419         (org-clock-find-position): Handle values of
3420         `org-clock-into-drawer' smaller than 2.
3422         * org-exp.el (org-html-level-start): Add a CSS class to section
3423         numbers.
3424         (org-export-html-toplevel-hlevel): Better documentation of the
3425         influence of this variables on H levels and css classes in
3426         export.
3428 2009-02-10  Carsten Dominik  <carsten.dominik@gmail.com>
3430         * org-agenda.el (org-agenda-custom-commands-local-options): Add
3431         timestamp and nottimestamp to the chooe menu.
3433         * org.el (org-save-all-org-buffers): Moved here from org-agenda.el.
3434         (org-revert-all-org-buffers): New command.
3436 2009-02-09  Carsten Dominik  <carsten.dominik@gmail.com>
3438         * org.el (org-return): Implement `org-return-follows-link' in the
3439         function org-return.  This is more robust than using the mouse
3440         map, I think.
3441         (org-set-regexps-and-options): Match more general #+TODO lines.
3442         (org-make-options-regexp): New optional argument EXTRA, for an
3443         extra regexp.
3444         (org-tab-follows-link): Mark as deprecated.
3446 2009-02-07  Carsten Dominik  <carsten.dominik@gmail.com>
3448         * org-exp.el (org-export-preprocess-string): Remove clock lines
3449         earlier, so that they cannot cotribute to verbatim snippets.
3451 2009-02-06  Carsten Dominik  <carsten.dominik@gmail.com>
3453         * org-exp.el (org-export-remove-or-extract-drawers): Fix regexp
3454         for finding drawers.
3455         (org-export-as-ascii, org-export-as-html): Count levels relative
3456         to the subtree header.
3457         (org-get-min-level): New optional argument OFFSET.
3458         (org-export): Make sure point is restored after popping up that
3459         window.
3461         * org.el (org-do-sort): Also take an inactive timestamp if no
3462         active one is found.
3464         * org-colview-xemacs.el (org-columns-capture-view): Copy before
3465         deleting duplicates.
3467         * org-colview.el (org-columns-capture-view): Copy before
3468         deleting duplicates.
3470         * org-exp.el (org-export-preprocess-string): Fix bug when skipping
3471         text before first headline.
3473         * org.el (org-format-latex): Do not convert LaTeX fragments in
3474         protected examples.
3476 2009-02-04  Carsten Dominik  <carsten.dominik@gmail.com>
3478         * org-exp.el (org-export-html-style-default): Use color values
3479         instead of names for XHTML validation.
3481         * org.el (org-get-scheduled-time, org-get-deadline-time): New
3482         functions.
3483         (org-return-follows-link): Revert making this the default untile
3484         issues are resolved.
3486         * org-agenda.el (org-agenda-skip-if): New conditions timestamp and
3487         nottimestamp.
3489 2009-02-02  Carsten Dominik  <carsten.dominik@gmail.com>
3491         * org.el (org-mode): Make dependence stuff work more reliably.
3492         (org-update-parent-todo-statistics): Fix bug with updating
3493         statistics cookie.
3495         * org-export-latex.el (org-export-latex-emphasis-alist): Use = and
3496         ~ as verbatim delimiters.
3498         * org-exp.el (org-export-html-format-image): New argument
3499         PAR-OPEN.
3500         (org-export-as-html): Pass par-open to
3501         `org-export-html-format-image'.
3503 2009-02-01  Carsten Dominik  <carsten.dominik@gmail.com>
3505         * org.el (org-yank-adjusted-subtrees, org-return-follows-link)
3506         (org-use-fast-todo-selection, org-tags-column): New default
3507         setting for variables, based on a poll what typical uses use.
3509         * org-agenda.el (org-agenda-sorting-strategy)
3510         (org-agenda-tags-column): New default setting for variables, based
3511         on a poll what typical uses use.
3513 2009-01-31  Carsten Dominik  <carsten.dominik@gmail.com>
3515         * org-agenda.el (org-agenda-dim-blocked-tasks): Keep dimming
3516         blocked entries from setting the blocked tag.
3518         * org-exp.el (org-export-html-footnotes-section): Use a more
3519         consistent id for footnotes.
3521         * org-export-latex.el (org-export-latex-classes): Remove the
3522         a4paper option from the default styles.
3524 2009-01-30  Carsten Dominik  <carsten.dominik@gmail.com>
3526         * org.el (org-enforce-todo-checkbox-dependencies): New option.
3527         (org-block-todo-from-checkboxes): New function.
3528         (org-todo): Make tripple prefix arg circumvent blocking.
3530         * org-timer.el (org-timer): Provide the timer feature.
3532         * org.el (org-require-autoloaded-modules): Add a few more files to
3533         the list of autoloaded modules.
3535         * org-agenda.el (org-agenda-todo): Pass ARG to `org-todo'.
3537 2009-01-29  Carsten Dominik  <carsten.dominik@gmail.com>
3539         * org-exp.el (org-export-remove-or-extract-drawers): Only remove
3540         drawers that are unprotected.
3541         (org-export-html-format-image): Make sure inlined LaTeX fragment
3542         images remain inlined.
3544         * org.el (org-toggle-ordered-property): New function.
3545         (org-mode-map): Add a key for `org-toggle-ordered-property'.
3546         (org-org-menu): Add menu entries for TODO dependencies.
3548 2009-01-28  Carsten Dominik  <carsten.dominik@gmail.com>
3550         * org.el (org-default-properties): Add ORDERED to the default
3551         properties, to get completion support for it.
3553         * org-list.el (org-update-checkbox-count): Update more than one cookie.
3555         * org.el (org-update-parent-todo-statistics): Update more than one
3556         cookie.
3558         * org-agenda.el (org-agenda-get-todos): Start search from correct
3559         position.
3561         * org.el (org-fast-todo-selection): Make sure TODO selection does
3562         not change buffer position.
3564         * org-list.el (org-toggle-checkbox): Implement adding or removing
3565         checkboxes from line or region when called with a prefix
3566         argument.
3568         * org-rmail.el (org-rmail-store-link): Protect the call to
3569         `rmail-narrow-to-non-pruned-header'.
3571         * org-clock.el (org-clock-special-range): Fix week display in
3572         clock tables.
3574         * org-exp.el (org-get-current-options): Fix bug when in indirect
3575         buffer.
3577 2009-01-27  Carsten Dominik  <carsten.dominik@gmail.com>
3579         * org-agenda.el (org-agenda-dim-blocked-tasks): New option.
3580         (org-finalize-agenda): Call `org-agenda-dim-blocked-tasks'.
3581         (org-agenda-dim-blocked-tasks): New function.
3583         * org.el (org-enforce-todo-dependencies): New option.
3584         (org-block-todo-from-children-or-siblings): New function.
3586         * org-faces.el (org-agenda-dimmed-todo-face): New face.
3588         * org.el (org-todo): Return correct state type even if the blocker
3589         throws an error.
3590         (org-modifier-cursor-error): Renamed from
3591         `org-shiftcursor-error'.
3592         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
3593         (org-shiftmetadown): Call `org-modifier-cursor-error'.
3595         * org-agenda.el (org-agenda-todo): Call `org-todo' interactively,
3596         to get real errors from the blocker hook.
3598         * org.el (org-shiftselect-error, org-call-for-shift-select): New
3599         functions.
3600         (org-set-visibility-according-to-property): Turn off the setting
3601         of `org-show-entry-below', to avoid overruling a FOLDED visibility
3602         property.
3604 2009-01-26  Carsten Dominik  <carsten.dominik@gmail.com>
3606         * org.el (org-support-shift-select): New option.
3607         (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft)
3608         (org-shiftcontrolright, org-shiftcontrolleft): Support for shift
3609         selection outside contexts.
3611         * org-list.el (org-at-item-bullet-p): New function.
3613         * org-jsinfo.el (org-infojs-handle-options): Remove unnecessary
3614         variables.
3616         * org-footnote.el (org-footnote-normalize): Remove unnecessary
3617         variable.
3618         (org-insert-footnote-reference-near-definition): Remove
3619         unnecessary let form.
3621         * org-export-latex.el (org-export-latex-first-lines): Add
3622         OPT-PLIST parameter.
3623         (org-export-as-latex): Call `org-export-latex-first-lines' with
3624         opt-plits parameter.
3625         (org-export-latex-preprocess): Remove unnecessary variables.
3627         * org-exp.el (org-infile-export-plist)
3628         (org-export-add-options-to-plist, org-export-kill-licensed-text)
3629         (org-export-remove-headline-metadata)
3630         (org-export-get-title-from-subtree, org-get-min-level)
3631         (org-html-do-expand): Remove innecessary let form.
3633         * org-colview-xemacs.el (org-columns-display-here): Remove
3634         unnecessary variables.
3636         * org-colview.el (org-columns-display-here): Remove unnecessary
3637         variables.
3639         * org-bbdb.el (org-bbdb-anniversaries): Remove unnecessary
3640         variables.
3642         * org-id.el (org-id-alist-to-hash, org-id-find-id-in-file): Remove
3643         unnecessary variables.
3645         * org-agenda.el (org-search-view, org-agenda-get-blocks)
3646         (org-agenda-filter-by-tag, org-agenda-action): Remove unnecessary
3647         variables.
3649         * org.el (org-set-emph-re): Clean-up the STACKED stuff.
3650         (org-compact-display-after-subtree-move): Remove unnecessary
3651         variables.
3652         (org-edit-fixed-width-region): Remove unnecessary variables.
3653         (org-edit-src-find-region-and-lang): Remove unnecessary variables.
3654         (org-olpath-completing-read): Remove unnecessary variable.
3655         (org-auto-repeat-maybe): Remove unnecessary variable.
3656         (org-map-entries): Remove unnecessary variable.
3657         (org-buffer-property-keys, org-imenu-get-tree)
3658         (org-speedbar-set-agenda-restriction): Remove unnecessary variables.
3660 -----------------------------------------------------------------
3662 2009-01-26  Carsten Dominik  <carsten.dominik@gmail.com>
3663         * org-exp.el (org-export-remove-timestamps): Never remove
3664         timestamps from tables.
3666         * org-export-latex.el (org-export-latex-first-lines): Add more
3667         options to the preprocessing of the text before the first
3668         headline.
3670 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
3672         * org-faces.el (org-clock-overlay): Make face compatible with
3673         XEmacs.
3675         * org.el (org-yank): Add property for delete-selection mode.
3677         * org-exp.el (org-export-as-html): Turn \par into a paragraph.
3679         * org.el (org-agenda-tags-todo-honor-ignore-options): Declare
3680         variable.
3682         * org-table.el (org-table-insert-hline): Fix typo in fuction call
3683         to `backward-char'.
3685         * org-exp.el (org-export-as-html): Remove the initial space from
3686         colon examples.
3688         * org.el (org-scan-tags): Call
3689         `org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item'.
3691         * org-agenda.el (org-agenda-todo-list, org-agenda-match-view): New
3692         customization groups.
3693         (org-agenda-tags-todo-honor-ignore-options): New option.
3694         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
3695         New function.
3696         (org-agenda-get-todos): Use
3697         `org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item'.
3699 2009-01-24  Carsten Dominik  <carsten.dominik@gmail.com>
3701         * org-exp.el (org-export-format-source-code-or-example): Escape
3702         HTML characters also in examples that anre not treated with
3703         htmlize.  Also, just switch to EXAMPLE processing if we do not
3704         have a good version of htmlize.
3706         * org-rmail.el: Fix copyright notice.
3708         * org.el (org-activate-footnote-links): Improve footnote link
3709         highlighting.
3711         * org-footnote.el (org-footnote-normalize): Fix finding the end of
3712         a footnote definition at the end of the file.
3714         * org-table.el (org-table-get-specials): Add an imagined hline at
3715         the end of the table.  This can be useful for references that want
3716         to go to the end of the table.  Also fix bug when computing last
3717         row constants, in tables that do not start right at the right
3718         margin.
3719         (org-table-eval-formula): Match and replace remove references.
3720         (org-table-formula-substitute-names): Make sure that names inside
3721         a "remote" call are left alone, the will be replaced later when
3722         the remote call is handled.
3723         (org-table-convert-refs-to-rc): Do not convert things that might
3724         look like a reference, but are really part of an ID or namei n a
3725         remote reference.
3726         (org-table-get-remote-range): New function.
3728 2009-01-22  Carsten Dominik  <carsten.dominik@gmail.com>
3730         * org-faces.el (org-clock-overlay): Fix bug in face definition.
3732         * org-clock.el (org-clock-put-overlay): Use new face instead of
3733         `secondary-selection'.
3735         * org-faces.el (org-clock-overlay): New face.
3737 2009-01-21  Carsten Dominik  <carsten.dominik@gmail.com>
3739         * org-exp.el (org-get-current-options): Include the option for
3740         publishing time stamps.
3742         * org.el (org-toggle-heading): Renamed from
3743         `org-toggel-region-headings'.
3744         No longer needs a region defined, but will use it if there is one.
3745         (org-ctrl-c-star): Simplified, relying more on the internal
3746         workings of `org-toggle-heading'.
3747         (org-toggle-item): Renamed from `org-toggle-region-items'.
3748         No longer needs a region defined, but will use it if there is one.
3749         (org-ctrl-c-minus): Simplified, relying more on the inernal
3750         workings of `org-toggle-item'.
3752         * org-export-latex.el (org-export-latex-preprocess): Fix bug in
3753         environment detection.  Also, do real changes only in unprotected
3754         places.
3756 2009-01-20  Carsten Dominik  <carsten.dominik@gmail.com>
3758         * org-export-latex.el (org-export-latex-quotation-marks): Use
3759         `org-if-unprotected-1'.
3760         (org-export-latex-set-initial-vars): Check for class definition in
3761         property.
3763         * org-macs.el (org-if-unprotected-1): New macro.
3765 2009-01-19  Carsten Dominik  <carsten.dominik@gmail.com>
3767         * org-compat.el (org-count-lines): New function.
3769         * org-exp.el (org-export-format-source-code-or-example): Handle
3770         switches related to text areas.
3772         * org.el (org-activate-footnote-links): Don't allow match inside a
3773         link.
3775         * org-footnote.el (org-footnote-re): Don't allow match inside a link.
3777         * org-export-latex.el (org-export-latex-links): Keep a relative
3778         path relative also after export.
3780         * org-exp.el (org-export-html-scripts): Fix HTML snippet.
3782         * org.el (org-make-tags-matcher): Never use IDO for completing the
3783         tags matcher match string.
3784         (org-completing-read): Also remove the special biding for "?".
3786         * org-attach.el (org-attach-allow-inheritance): New option.
3787         (org-attach-inherited): New variable.
3788         (org-attach-dir): Handle properties related to the attachment
3789         directory.
3790         (org-attach-check-absolute-path): New function.
3791         (org-attach-set-directory, org-attach-set-inherit): New commands.
3792         (org-attach): Accommodate the new commands in the dispatcher.
3794 2009-01-18  Carsten Dominik  <carsten.dominik@gmail.com>
3796         * org-compat.el (org-fit-window-to-buffer): Fix bug with using
3797         `window-full-width-p'.
3799         * org-exp.el (org-export-as-html): Only check for images files
3800         that really can be inlined
3802         * org.el (org-image-file-name-regexp, org-file-image-p): Allow the
3803         list of extensions to be a parameter.
3805         * org-exp.el (org-export-html-inline-image-extensions): New
3806         variable.
3808         * org-agenda.el (org-prepare-agenda): Use
3809         `org-agenda-block-separator'.
3810         (org-agenda-block-separator): New option.
3812 2009-01-17  Carsten Dominik  <carsten.dominik@gmail.com>
3814         * org-export-latex.el (org-export-latex-tables): Call
3815         `org-table-clean-before-export' with the new optional argument.
3817         * org-exp.el (org-table-clean-before-export): New optional
3818         parameter MAYBE-QUOTED, allows for quoted characters like \# in
3819         first column.
3821 2009-01-16  Carsten Dominik  <carsten.dominik@gmail.com>
3823         * org-plot.el (org-plot/gnuplot): Fix text-ind parameter for
3824         histograms.
3826         * org-colview.el (org-colview-construct-allowed-dates): Better
3827         error catching when a date/time property does not have allowed
3828         values defined.
3830         * org-colview-xemacs.el (org-colview-construct-allowed-dates):
3831         Better error catching when a date/time property does not have
3832         allowed values defined.
3834 2009-01-14  Carsten Dominik  <carsten.dominik@gmail.com>
3836         * org.el (org-map-entries): Restore point and restriction after
3837         `org-map-entries'.
3839 2009-01-13  Carsten Dominik  <carsten.dominik@gmail.com>
3841         * org.el (org-time=, org-time<, org-time<=, org-time>)
3842         (org-time>=, org-time<>): Make sure both values are dates.
3844 2009-01-11  Carsten Dominik  <carsten.dominik@gmail.com>
3846         * org-archive.el (org-extract-archive-heading): Allow %s for file
3847         name also in achive location heading.
3849 2009-01-10  Carsten Dominik  <carsten.dominik@gmail.com>
3851         * org-archive.el (org-add-archive-files): Uniquify the list before
3852         returning it.
3854 2009-01-09  Carsten Dominik  <carsten.dominik@gmail.com>
3856         * org-compat.el (org-fit-window-to-buffer): Use
3857         `window-full-width-p'.
3859         * org-export-latex.el (org-export-latex-fixed-width): Enforce the
3860         space after the colon in short examples.
3862         * org-exp.el (org-export-protect-colon-examples): Rewritten, to
3863         enforce a space after the colon.  However, we also allow lines
3864         that are *only* a colon.
3865         (org-export-as-html): Enforce the space after the colon in short
3866         examples.
3867         (org-export-preprocess-string): Do the colon example protection
3868         earlier.
3869         (org-export-remove-timestamps): Do not check for protection at the
3870         end of the line.
3872 2009-01-08  Carsten Dominik  <carsten.dominik@gmail.com>
3874         * org.el (org-format-latex-options): Add new matcher for single
3875         letters between dollars.
3876         (org-get-header): Function removed.
3877         (org-heading-components): New function.
3879         * org-exp.el (org-export-define-heading-targets): Record ID's also
3880         as alternative targets.
3881         (org-export-as-html): Interpret "id:" links to other files by
3882         preserving the relative path.
3884         * org-jsinfo.el (org-infojs-handle-options): Catch the case if v
3885         is nil.
3887         * org-exp.el (org-export-normalize-links): Protect the main link,
3888         to avoid special character processing.
3890         * org-export-latex.el (org-export-latex-special-keyword-regexp):
3891         New variable.
3892         (org-export-latex-special-string-regexps): Variable removed.
3893         (org-export-latex-keywords): Use the new regexp.
3895         * org-exp.el (org-export-handle-include-files): Fetch switches and
3896         put them into the BEGIN statement.
3898         * org-timer.el (org-timer-mode-line-string): New variable.
3900         * org-clock.el (org-clock-mode-line-map): Renamed from
3901         `org-clock-mode-map'.
3902         (org-clock-mode-line-timer): Renamed from `org-mode-line-timer'.
3903         (org-clock-update-mode-line): Renamed from `org-update-mode-line'.
3904         (org-clock-put-overlay): Renamed from `org-put-clock-overlay'.
3905         (org-clock-remove-overlays): Renamed from
3906         `org-remove-clock-overlays'.
3908         * org-timer.el (org-timer-pause-or-continue): Implement stopping
3909         and mode line display.
3910         (org-timer-stop): New command.
3911         (org-timer-seconds): Return correct time when timer is paused.
3912         (org-timer-mode-line-timer): New variable.
3913         (org-timer-set-mode-line, org-timer-update-mode-line): New
3914         functions.
3916         * org.el (org-insert-heading):  Handle new value `auto' for
3917         `org-blank-before-new-entry'.
3918         (org-org-menu): Add new items for timer functions.
3920         * org-list.el (org-insert-item): Handle new value `auto' for
3921         `org-blank-before-new-entry'.
3923         * org.el (org-blank-before-new-entry): New value `auto', made
3924         default.
3926 2009-01-07  Carsten Dominik  <carsten.dominik@gmail.com>
3928         * org-exp.el (org-export-normalize-links): If the link is also
3929         used as the description, protect the description.
3931 2009-01-06  Carsten Dominik  <carsten.dominik@gmail.com>
3933         * org.el (org-closest-date): Fix bug with yearly repeats, in
3934         combination with preference of the past as it is used for deadline
3935         and scheduling search.
3937         * org-exp.el (org-html-handle-time-stamps): No longer check for
3938         the `org-export-with-timestamps' option, because the preprocesser
3939         has taken care of this already.
3941         * org.el (org-entry-properties): Catch the case when this is
3942         called in a non-org-mode file.
3944         * org-export-latex.el (org-export-latex-remove-from-headlines):
3945         Variable made obsolete, also LaTeX export now uses the standard
3946         variables.
3947         (org-export-as-latex): Add the timestamps parameter to the
3948         preprocessor parameter list.
3949         (org-export-latex-content): Export the remaining keywords without
3950         considering to remove them.
3951         (org-export-latex-keywords-maybe): Make the REMOVE-LIST optional.
3952         Use bold font instead of tt font for the keywords.
3953         (org-export-latex-fontify-headline): Format headlines, assuming
3954         that all keywords still present should be published.
3955         (org-export-latex-keywords): Remove argument TIMESTAMPS and just
3956         publish what ever remains of the time stamps.
3957         (org-export-latex-list-parameters): New option.
3958         (org-export-latex-lists): Pass additional parameters to the list
3959         converter.
3961         * org-exp.el (org-export-preprocess-string): Remove clock lines
3962         and timestamps already in the preprocesor.
3963         (org-export-remove-timestamps, org-export-remove-clock-lines): New
3964         functions.
3965         (org-export-as-ascii, org-export-as-html): Add the timestamps
3966         parameter to the preprocessor parameter list.
3968         * org-list.el (org-list-parse-list): Parse for checkboxes.
3969         (org-list-to-generic): Introduce and handle new parameters :cbon
3970         and :cboff.
3971         (org-list-to-latex, org-list-to-html, org-list-to-texinfo): Add
3972         optional parameter PARAMS.
3974         * org-export-latex.el (org-export-latex-special-chars): Fix
3975         problems with interpreting dollar signs.
3976         (org-inside-latex-math-p): New function.
3977         (org-export-latex-preprocess): Protect all the math fragments.
3979         * org.el (org-latex-regexps): Allow a dash after a dollar.
3981         * org-w3m.el (org-w3m-copy-for-org-mode): Always deactivate the
3982         mark after copying.
3984         * org-agenda.el (org-run-agenda-series): Have series options set
3985         when finalizing the agenda.
3987         * org-exp.el (org-export-format-source-code-or-example): Protect
3988         the converted examples.
3990         * org.el (org-set-regexps-and-options): Fix the regexp
3991         `org-complex-heading-regexp'.
3993 2009-01-05  Carsten Dominik  <carsten.dominik@gmail.com>
3995         * org.el (org-edit-src-get-label-format): New function.
3996         (org-coderef-label-format): New option.
3997         (org-edit-src-code, org-edit-src-find-region-and-lang): Parse for
3998         a label format specification and make sure it is used in the edit
3999         buffer.
4000         (org-edit-src-get-label-format): New function.
4001         (org-store-link): Handle new coderef formats.
4002         (org-link-search): Handle new coderef formats.
4004         * org-footnote.el (org-footnote-create-definition)
4005         (org-footnote-goto-local-insertion-point): Make footnote insertion
4006         work correctly when the "Footnotes" headline is the last line in
4007         the buffer.
4009         * org.el (org-goto-marker-or-bmk): Expose context after jumping to
4010         the location.
4012 2009-01-04  Carsten Dominik  <carsten.dominik@gmail.com>
4014         * org-w3m.el (org-w3m): New customization group.
4015         (org-w3m-deactivate-mark): New option.
4016         (org-w3m-copy-for-org-mode): Deactivate region, unless the user
4017         option say not to.
4019 2009-01-02  Carsten Dominik  <carsten.dominik@gmail.com>
4021         * org.el (org-set-font-lock-defaults): Trigger footnote
4022         fontification.
4023         (org-activate-footnote-links): New function.
4024         (org-activate-links): New entry `footnote'.
4026         * org-faces.el (org-footnote): New face.
4028 2009-01-01  Carsten Dominik  <carsten.dominik@gmail.com>
4030         * org-macs.el (org-re): Handle the [:word:] class.
4032         * org-exp.el (org-export-preprocess-string): Call
4033         `org-export-protect-colon-examples'.
4034         (org-export-protect-colon-examples): Renamed from
4035         `org-export-protect-examples', and scope limited to lines starting
4036         with a colon.
4038 2008-12-31  Carsten Dominik  <carsten.dominik@gmail.com>
4040         * org-exp.el (org-export-preprocess-string): Move the preprocess
4041         hook to after turning on Org-mode.
4042         (org-export-preprocess-after-include-files-hook)
4043         (org-export-preprocess-after-tree-selection-hook)
4044         (org-export-preprocess-before-backend-specifics-hook)
4045         (org-export-preprocess-final-hook): New hooks.
4046         (org-export-preprocess-string): Run the new hooks.
4048         * org.el (org-ctrl-c-minus): Fix indentation for new items.
4050         * org-footnote.el: New file.
4052         * org.el (org-footnote): Require footnote code.
4053         (org-startup-options): Add new footnote options.
4054         (org-mode-map): New keybindig for footnotes.
4055         (org-ctrl-c-ctrl-c): Add function at footnotes.
4056         (org-org-menu): New menu entries for footnotes.
4058         * org-export-latex.el (org-export-as-latex): Pass footnote
4059         variable to preprocessor.
4060         (org-export-latex-preprocess): Treat multiple references to a
4061         footnote.
4063         * org-exp.el (org-export-preprocess-string): Call
4064         `org-footnote-normalize'.
4065         (org-export-as-ascii, org-export-as-html): Pass footnote variable
4066         to preprocessor.
4067         (org-export-as-html): Treat multiple references to a footnote.
4069 2008-12-26  Carsten Dominik  <carsten.dominik@gmail.com>
4071         * org-export-latex.el (org-export-latex-links): Handle coderef
4072         links.
4074         * org.el (org-bracket-link-analytic-regexp++): New variable.
4075         (org-make-link-regexps): Initialize
4076         `org-bracket-link-analytic-regexp++'.
4077         (org-store-link): Implement special case in edit-src buffer.
4078         (org-insert-link): No use of ide to insert stored links.
4079         (org-link-search): Implement special case for coderefs.
4081         * org-exp.el (org-export-html-scripts): New constant.
4082         (org-export-html-style-default): Add a new style for highlighted
4083         code.
4084         (org-export-code-refs): New variable.
4085         (org-export-preprocess-string): Initialize `org-export-code-refs'.
4086         Call `org-export-replace-src-segments-and-examples'
4087         No longer call `org-export-protect-examples'.
4088         (org-export-target-internal-links): Take care of coderef targets.
4089         (org-export-last-code-line-counter-value): New variable.
4090         (org-export-replace-src-segments-and-examples): Renamed from
4091         `org-export-replace-src-segments', and modified.
4092         (org-export-format-source-code-or-example): Renamed from
4093         `org-export-format-source-code'.
4094         (org-export-number-lines): New function.
4095         (org-export-as-ascii, org-export-as-html): Handle coderef links.
4097 --------------------------------------------------------------------------
4099 2008-12-23  Carsten Dominik  <carsten.dominik@gmail.com>
4101         * org-remember.el (org-remember-handler): Safer way to get a new
4102         buffer accessing the target file.
4104         * org.el (org-refile-get-location): Handle case of current buffer
4105         not having a file associated with it.
4107 2008-12-22  Carsten Dominik  <carsten.dominik@gmail.com>
4109         * org-table.el (org-table-get-formula): Only ask to overwrite
4110         field formula if there really is one.
4112         * org-id.el (org-id-find): Allow the ID to be a symbol or a
4113         number, by converting these to a string.
4115         * org-colview.el (org-dblock-write:columnview): Allow ID to be
4116         located in a different file.
4118         * org-colview-xemacs.el (org-dblock-write:columnview): Copy from
4119         org-colview.el.
4121 2008-12-21  Carsten Dominik  <carsten.dominik@gmail.com>
4123         * org.el (org-completion-use-ido): Enhance docstring of
4124         `org-completion-use-ido'.
4126         * org-export-latex.el (org-export-latex-make-header): Double the %
4127         in the time stamp format.
4128         (org-export-latex-special-chars): Handle case where there is no
4129         match group 3.
4131 2008-12-20  Carsten Dominik  <carsten.dominik@gmail.com>
4133         * org.el (org-get-refile-targets, org-refile-get-location): Use
4134         expanded file name to improve comparison.
4136 2008-12-19  Carsten Dominik  <carsten.dominik@gmail.com>
4138         * org.el (org-scan-tags): Rescan for tags, to get the correct
4139         upcase/downcase stuff.  This slows things down for now, but it
4140         works.
4141         (org-mode): Make sure the tag-faces regexp is initialized.
4143         * org-export-latex.el (org-export-latex-links): Fix bug with
4144         undefined label.
4146         * org-table.el (org-table-get-specials): Set
4147         `org-table-current-last-data-line'.
4148         (org-table-current-last-data-line): New variable.
4149         (org-table-insert-column, org-table-delete-column)
4150         (org-table-move-column, org-table-fix-formulas): Call
4151         `org-table-fix-formulas' a second time to fix the $LR references.
4152         (org-table-get-specials): Add the $LR references to the tables.
4153         (org-table-get-formula): Do not offer last-row names as LHS of
4154         formulas.
4156         * org.el (org-store-link): Capture link description from
4157         `org-id-store-link'.
4159         * org-exp.el (org-export-html-format-image): Add the / to the end
4160         of the <img> tag.
4161         (org-export-format-source-code): Surround example by empty lines,
4162         to make sure it will not be inside a paragraph.
4164         * org.el (org-ido-switchb): New function.
4166 2008-12-18  Carsten Dominik  <carsten.dominik@gmail.com>
4168         * org-agenda.el (org-agenda-show): New prefix argument
4169         FULL-ENTRY.
4171         * org.el (org-sort-entries-or-items): Add a COMPARE-FUNC
4172         argument.
4174         * org-agenda.el (org-agenda-set-tags): Leave getting the tags to
4175         `org-agenda-change-all-lines'.
4176         (org-agenda-change-all-lines): Removed FORCE-TAGS argument, the
4177         tags are now retrieved locally.
4179 2008-12-17  Carsten Dominik  <carsten.dominik@gmail.com>
4181         * org.el (org-get-outline-path): Fix bug if level is not given.
4182         (org-org-menu): Do not quote function in menu vector.
4184         * org-agenda.el (org-finalize-agenda): Fix typo with variable
4185         name.
4187 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
4189         * org.el (org-refile): Avoid refiling to within the region to be
4190         refiled.
4192         * org-export-latex.el (org-export-latex-special-chars): Replace
4193         special characters also in tables.
4195         * org-agenda.el (org-agenda-change-all-lines): New argument
4196         FORCE-TAGS.
4197         (org-agenda-set-tags): Cet the new tags and pass them to
4198         `org-format-agenda-item'.
4200 2008-12-15  Carsten Dominik  <carsten.dominik@gmail.com>
4202         * org-export-latex.el (org-export-latex-classes): Add longable as
4203         a default package to all classes.
4204         (org-export-latex-tables): Handle the longtable attribute and the
4205         align attribute.
4207         * org-table.el (orgtbl-to-generic): Handle tables that start with
4208         a hline.
4210         * org-export-latex.el (org-export-latex-emphasis-alist): Switch to
4211         \verb for colde-like snippets.
4212         (org-export-as-latex): Fix issues with region export.
4214         * org.el (org-up-heading-safe): Speed up function by using a
4215         direct regexp search.
4216         (org-olpa): New variable.
4217         (org-get-outline-path): Speed-up path constructions in cases where
4218         this is possible because the entire hierarchy is scanned anyway.
4219         (org-refile-get-location): Don't compare the truenames of files,
4220         this is too slow.
4221         (org-goto-max-level): New option.
4222         (org-goto): Use `org-goto-max-level'.
4224 2008-12-12  Tassilo Horn  <tassilo@member.fsf.org>
4226         * org-gnus.el (org-gnus-article-link, org-gnus-article-link):
4227         Strip angle brackets from message-ids in the former and don't do
4228         it in the latter.
4229         (org-gnus-follow-link): Open summary reliable, even if the last
4230         messages were deleted, and handle empty groups, too.
4232 2008-12-12  Carsten Dominik  <carsten.dominik@gmail.com>
4234         * org-export-latex.el (org-export-latex-emphasis-alist): Use \verb
4235         instead of \texttt for the =...= and ~===~ emphasis environments.
4236         (org-export-as-latex): Remove any old :org-license-to-kill text
4237         properties.
4238         (org-export-as-latex): Pass RBEG to `org-export-latex-first-lines'.
4239         (org-export-latex-make-header): Add some hard space after the
4240         table of contents.
4241         (org-export-latex-first-lines): Accept RBEG argument.  Mark
4242         exported text so that it will be excuded in further steps.
4244         * org-table.el (org-table-get-specials): Make @0 reference the
4245         last line in a table.
4246         (org-table-recalculate): Improve docstring.
4248 2008-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
4250         * org.el (org-log-done): Fix docstring.
4252 2008-12-10  Carsten Dominik  <carsten.dominik@gmail.com>
4254         * org-exp.el (org-export-html-format-image): Fix bugs.
4256         * org-export-latex.el (org-export-latex-tables)
4257         (org-export-latex-links): Implement attribute, label, and caption
4258         handling.
4260         * org-exp.el (org-export-html-style-default): Add style
4261         definitions for the figure div.
4262         (org-export-preprocess-string, org-export-as-html): Implement
4263         attribute, label, and caption handling.
4264         (org-export-attach-captions-and-attributes): New function.
4265         (org-export-html-format-image): New function.
4266         (org-format-org-table-html): Implement attribute, label, and
4267         caption handling.
4269         * org.el (org-find-text-property-in-string): New function.
4270         (org-extract-attributes): Use the property org-attr instead of
4271         org-attrobutes, because this property is now set with the #+ATTR
4272         lines.
4274 2008-12-08  Carsten Dominik  <carsten.dominik@gmail.com>
4276         * org-compat.el (org-substring-no-properties): Fix for XEmacs, for
4277         the case that FROM is nil.
4279         * org.el (org-before-first-heading-p): New function.
4281 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
4283         * org-exp.el (org-export-as-html): Do not add a space before
4284         enforces line breaks.
4285         (org-export-as-html): Close paragraph before blockquote and verse
4286         tags.
4288 2008-12-06  Carsten Dominik  <carsten.dominik@gmail.com>
4290         * org-id.el (org-id-locations-file): Wrap file name with
4291         `convert-standard-filename'.
4292         (org-id-files): New variable.
4293         (org-id-use-hash): New option.
4294         (org-id-update-id-locations): Also search in all files current
4295         listed in `org-id-files'.  Convert the resulting alist to a hash
4296         if the user customation says so.
4297         (org-id-locations-save): Handle he case if `org-id-locations' is a
4298         hash.
4299         (org-id-locations-load): Convert the alist to a hash.
4300         (org-id-add-location): Handle the hast case.
4301         (kill-emacs-hook): Make sure id locations are saved when Emacs is
4302         exited.
4303         (org-id-hash-to-alist, org-id-alist-to-hash)
4304         (org-id-paste-tracker): New functions.
4306 -------------------------------------------------------------------------
4308 2008-12-05  Carsten Dominik  <carsten.dominik@gmail.com>
4310         * org-agenda.el (org-agenda-goto-calendar): Remove duplicate let
4311         bindings of calendar variables.
4313         * org-table.el (org-table-find-row-type): Renamed from
4314         `org-find-row-type'.
4315         (org-table-rewrite-old-row-references): Renamed from
4316         `org-rewrite-old-row-references'.
4317         (org-table-shift-refpart): Renamed from `org-shift-refpart'.
4318         (org-table-cleanup-narrow-column-properties): Renamed from
4319         `org-cleanup-narrow-column-properties'.
4321 2008-12-05  Carsten Dominik  <carsten.dominik@gmail.com>
4323         * org-table.el (org-find-row-type): New arguments DESC and CLINE,
4324         for better error messages.
4325         (org-table-get-descriptor-line): Supply the new arguments to
4326         `org-find-row-type'.
4327         (org-table-error-on-row-ref-crossing-hline): New option.
4329         * org.el (org-target-link-regexp): Make buffer-local.
4330         (org-move-subtree-down): Fix bug with trees at beginning of
4331         buffer.
4333 2008-12-04  Carsten Dominik  <carsten.dominik@gmail.com>
4335         * org-faces.el (org-set-tag-faces): New function.
4336         (org-tags-special-faces-re): New variable.
4338         * org.el (org-font-lock-add-tag-faces, org-get-tag-face): New functions.
4340         * org-faces.el (org-tag-faces): New option.
4341         (org-tag): Mention `org-tag-faces' in the docstring.
4343 2008-12-03  Carsten Dominik  <carsten.dominik@gmail.com>
4345         * org-exp.el (org-export-html-style-default): Implement new
4346         quoting.
4348         * org-jsinfo.el (org-infojs-template): Implement new quoting.
4350         * org-w3m.el (w3m-minor-mode-hook): Also add the special copy
4351         command to the `w3m-minor-mode-map'.
4353         * org-archive.el (org-archive-to-archive-sibling): Protect
4354         `this-command' to avoid appending kills during archiving.
4356         * org-exp.el (org-export-with-priority): New variable.
4357         (org-export-add-options-to-plist): Use `org-export-plist-vars'
4358         instead of internal list of strings and properties.
4359         (org-print-icalendar-entries): Retrieve the location property with
4360         inheritance.
4362 2008-12-02  Carsten Dominik  <carsten.dominik@gmail.com>
4364         * org-exp.el (org-export-with-todo-keywords): New option.
4365         (org-export-plist-vars): Include also the keys for the #+OPTIONS
4366         line.
4367         (org-default-export-plist, org-export-add-options-to-plist)
4368         (org-export-as-ascii, org-export-as-html): Use the new structure
4369         of `org-export-plist-vars'.
4371         * org.el (org-map-entries): Return all values.
4373 2008-11-29  Carsten Dominik  <carsten.dominik@gmail.com>
4375         * org.el (org-matcher-time): Recognize more special values.
4377         * org-gnus.el (fboundp): Fix defvaralias for XEmacs.
4379 2008-11-27  Carsten Dominik  <carsten.dominik@gmail.com>
4381         * org.el (org-tags-exclude-from-inheritance): New option.
4382         (org-tag-inherit-p, org-remove-uniherited-tags): Respect
4383         `org-tags-exclude-from-inheritance'.
4385         * org-agenda.el (org-agenda-show-inherited-tags): New option.
4386         (org-format-agenda-item): Add inherited tags to the agenda line
4387         string, and make sure that properties are kept when downcasing the
4388         tags list.
4389         (org-agenda-add-inherited-tags): New function.
4390         (org-downcase-keep-props): New function.
4392         * org.el (org-scan-tags): Mark inherited tags with a text
4393         property.
4394         (org-get-tags-at): Mark inherited tags with a text property.
4395         (org-add-prop-inherited): New function.
4397         * org-agenda.el (org-agenda-add-inherited-tags): New function.
4398         (org-agenda-show-inherited-tags): New option.
4400 2008-11-26  Carsten Dominik  <carsten.dominik@gmail.com>
4402         * org.el (org-modules): Add org-w3m to the default modules.
4404         * org-table.el (orgtbl-self-insert-command): Make S-SPC work in
4405         orgtbl-mode.
4406         (orgtabl-create-or-convert-from-region): New command.
4408         * org-exp.el (org-export-as-ascii): Remove the handling of
4409         targets.
4410         (org-export-ascii-preprocess): Handle targets already in this
4411         function.
4413 2008-11-25  Carsten Dominik  <carsten.dominik@gmail.com>
4415         * org-timer.el (org-timer-start-time): Define this variable.
4416         (org-timer-item): Make argument optional.
4418         * org-list.el (org-insert-item): Automatically insert a timer item
4419         if the current list is a timer list.
4421         * org-timer.el: New file.
4423         * org-publish.el (org-publish-org-index): Only exclude the index
4424         file in the main directory from being added to the site-map.
4425         (org-publish-get-project-from-filename): If the current project is
4426         a component, start publishing from the parent project.
4428 2008-11-24  Carsten Dominik  <carsten.dominik@gmail.com>
4430         * org-table.el (orgtbl-ret): Fix RET at beginning-of-buffer.
4432         * org-publish.el (org-publish-org-index): Improve removal of
4433         temporary buffers.
4435         * org-agenda.el (org-get-closed): Re-apply changes
4436         accidentially overwritten by last commit to Emacs.
4438         * org.el (org-outline-path-complete-in-steps): New option.
4439         (org-refile-get-location): Honor
4440         `org-outline-path-complete-in-steps'.
4441         (org-agenda-change-all-lines, org-tags-sparse-tree)
4442         (org-time-string-to-absolute, org-small-year-to-year)
4443         (org-link-escape): Re-apply changes accidentially overwritten
4444         by last commit to Emacs.
4446 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
4448         * org-clock.el (org-dblock-write:clocktable): Make sure the
4449         clocktable sees the first line.
4450         (org-clock-in): Warn if the clock cannot be resumed.
4452 2008-11-22  Carsten Dominik  <carsten.dominik@gmail.com>
4454         * org.el (org-open-at-point): Fix mixup about interactive and
4455         non-interactive elisp links.
4457 2008-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
4459         * org-exp.el (org-export-preprocess-string): Allow one comment
4460         line before the first headline to always be included.  This is
4461         to not miss a commented target.
4463         * org-mouse.el (org-mouse-insert-item): Call
4464         `org-indent-to-column' instead of `indent-to', for XEmacs
4465         compatibility.
4467         * org.el (org-refile-targets): Fix customize definition so
4468         that it works also in XEmacs.
4469         (org-fixup-indentation): Call `org-indent-to-column' instead
4470         of `indent-to', for XEmacs compatibility.
4472 2008-11-21  Tokuya Kameshima  <kames@fa2.so-net.ne.jp>
4474         * org-mew.el (org-mew-store-link): Get the correct case folder
4475         for refiled messages.
4477 2008-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
4479         * org-exp.el (org-export-as-ascii): Remove the "\\" forced
4480         line break indicators.
4482         * org.el (org-ido-completing-read): Remove the "i:" prefix for
4483         ido-completion propts.
4485 2008-11-21  Carsten Dominik  <carsten.dominik@gmail.com>
4487         * org-remember.el (org-remember-apply-template): Use
4488         `org-substring-no-properties'.
4490         * org-compat.el (org-substring-no-properties): New function.
4492         * org-remember.el (org-remember-apply-template): Use
4493         `org-substring-no-properties' for compatibility.
4495         * org-list.el (org-list-two-spaces-after-bullet-regexp): New
4496         option.
4497         (org-fix-bullet-type): respect
4498         `org-list-two-spaces-after-bullet-regexp'.
4500         * org-clock.el (org-clock-load): Clean up the code.
4502         * org.el (org-adaptive-fill-function): Allow two spaces after
4503         "1." as a list bullet.
4505 2008-11-20  Carsten Dominik  <carsten.dominik@gmail.com>
4507         * org-clock.el (org-clock-save, org-clock-load): Check for
4508         live buffers, existing files, and buffer file names to ensure
4509         consistent information.
4510         (org-clock-persist): Make `clock' a special value of this
4511         variable, and improve docstring.
4513         * org-list.el (org-cycle-list-bullet, org-fix-bullet-type)
4514         (org-get-string-indentation): Adapt indentation when the bullet
4515         width changes.
4517 2008-11-19  Carsten Dominik  <carsten.dominik@gmail.com>
4519         * org-remember.el (org-remember-finalize): Make interactive.
4520         (org-remember-kill): New command.
4521         (org-remember-finish-immediately): Call `org-remember-finalize'
4522         directly.
4523         (org-remember-finalize): Make `org-remember-finalize' an interactive
4524         function.
4526 2008-11-18  Carsten Dominik  <carsten.dominik@gmail.com>
4528         * org-remember.el (org-remember-apply-template): No ido completion
4529         for free prompts in remember templates.
4530         (org-remember-before-finalize-hook): New hook.
4531         (org-remember-mode): New minor mode.
4532         (org-remember-apply-template): Turn on `org-remember-mode'.
4534         * org-id.el (org-id-add-location): Avoid error when no file is
4535         given.
4537         * org-remember.el (org-remember-apply-template): Fix the way how
4538         the list of allowed properties is retrieved from the target file.
4540         * org.el (org-insert-link): Improve file link matching.
4542 2008-11-17  Carsten Dominik  <carsten.dominik@gmail.com>
4544         * org-colview.el (org-columns-display-here): New argument
4545         DATELINE, to trigger using the new face.
4546         (org-agenda-colview-summarize): Call `org-columns-display-here'
4547         with the new argument.
4549         * org-faces.el (org-agenda-column-dateline): New face.
4551         * org-publish.el (org-publish-org-index): Use index-title at page
4552         title, not as section.
4554         * org-exp.el (org-export-html-format-desc): Respect the
4555         org-protect property.
4556         (org-export-as-html): Protect image specifiers that are in the
4557         description part of a link.
4559         * org.el (org-sort-entries-or-items, org-completing-read)
4560         (org-refile-get-location, org-olpath-completing-read, org-todo)
4561         (org-show-todo-tree, org-sparse-tree, org-make-tags-matcher)
4562         (org-set-tags, org-change-tag-in-region, org-fast-tag-selection)
4563         (org-set-property, org-delete-property)
4564         (org-delete-property-globally): Use `org-ido-completing-read'.
4566         * org-remember.el (org-remember-apply-template): Use
4567         `org-ido-completing-read'.
4569         * org-publish.el (org-publish): Use `org-ido-completing-read'.
4571         * org-colview.el (org-columns-edit-value, org-columns-new)
4572         (org-insert-columns-dblock): Use `org-ido-completing-read'.
4574         * org-colview-xemacs.el (org-columns-edit-value)
4575         (org-columns-new, org-insert-columns-dblock): Use
4576         `org-ido-completing-read'.
4578         * org-attach.el (org-attach-delete-one, org-attach-open): Use
4579         `org-ido-completing-read'.
4581         * org-agenda.el (org-todo-list, org-agenda-filter-by-tag): Use
4582         `org-ido-completing-read'.
4584         * org.el (org-time-today): New function.
4585         (org-matcher-time): Use `org-time-today'.  Add special treatment
4586         for "<tomorrow>" and "<yesterday>".
4587         (org-ido-completing-read): New function.
4588         (org-completion-use-ido): New option.
4590         * org-exp.el (org-export-format-source-code): Fix bug in require
4591         htmlize code.
4592         (org-export-target-internal-links): Fix bug in search for text
4593         property.
4595 2008-11-16  Carsten Dominik  <carsten.dominik@gmail.com>
4597         * org-export-latex.el (org-export-latex-subcontent): Interprete
4598         target aliases as additonal labels.
4600         * org-exp.el (org-export-target-aliases): New variable.
4601         (org-export-preprocess-string)
4602         (org-export-handle-invisible-targets): Fill the alias alist.
4603         (org-export-as-html): Remove the &nbsp; from the anchor, and also
4604         assign an id.
4605         (org-html-level-start): Insert the target aliases as additonal
4606         anchors.
4608         * org.el (org-edit-fixed-width-region): Fix bug when starting a new
4609         picture area.
4611 2008-11-15  Carsten Dominik  <carsten.dominik@gmail.com>
4613         * org.el (org-open-at-mouse): Ensure correct link abbreviations
4614         when following a link with the mouse from the agenda.
4616         * org-exp.el (org-export-as-html): Avoid lone </div> when no
4617         headlines are created.
4619 2008-11-14  Carsten Dominik  <carsten.dominik@gmail.com>
4621         * org-exp.el (org-export-preprocess-string): Reorder so that we
4622         can still see ID properties when we collect targets.
4623         (org-export-target-internal-links): Also store targets for ID's.
4625         * org.el (org-link-translation-function): New option.
4626         (org-open-at-point): Call `org-link-translation-function' if
4627         non-nil.
4628         (org-translate-link): New function.
4629         (org-translate-link-from-planner): New function.
4630         (org-open-at-point): Allow interactive commands in elisp links.
4632         * org-exp.el (org-icalendar-cleanup-string): Restore the old
4633         iCalendar quoting.  The new one seems to caus problems with
4634         applications.
4636         * org.el (org-yank): Set `this-command' to `yank', so that
4637         `yank-pop' will work.
4639 2008-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
4641         * org-id.el (org-id-search-archives): New option.
4643         * org.el (org-link-to-org-use-id): New option.
4644         (org-store-link): Use `org-link-to-org-use-id'.
4645         (org-id): Make org-id.el a standard component.
4647 2008-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
4649         * org.el (org-link-expand-abbrev): Implement %h as an escape for a
4650         hexified version of the tag.
4652         * org-exp.el (org-icalendar-cleanup-string): Improve RFC2455
4653         compliance as far as quoting is concerned.
4655         * org-vm.el (org-vm-follow-link): Require `vm-search'.
4657         * org.el (org-up-heading-safe, org-forward-same-level): Always
4658         call `org-back-to-heading' instead of `outline-back-to-heading'.
4659         (org-back-to-heading): New wrapper around outline-back-to-heading,
4660         with a useful error message telling where the error happened.
4662         * org-list.el (org-update-checkbox-count): Always call
4663         `org-back-to-heading' instead of `outline-back-to-heading'.
4665         * org-exp.el (org-export-as-html): Make sure that each <img> tag
4666         has an `alt' attribute, to ensure XHTML validation.
4668 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
4670         * org-publish.el (org-publish-attachment): Allow publishing to
4671         overwrite attachment files.
4673         * org-agenda.el (org-agenda-timerange-leaders): New option.
4674         (org-agenda-get-blocks): Use `org-agenda-timerange-leaders'.
4676         * org.el (org-edit-src-exit): Untabify ASCII image before
4677         returning.
4690 2008-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
4692         * org.el (org-yank): Make any prefix force normal yanking.
4693         Suppress folding if text would be swallowed into a folded
4694         subtree.
4695         (org-yank-folded-subtrees, org-yank): Docstring updates.
4697         * org-agenda.el (org-agenda-compare-effort): Treat no effort
4698         defined as 0.
4700         * org-exp.el (org-export-language-setup): Add Catalan and
4701         Esperanto language entries.
4703 2008-11-10  Carsten Dominik  <carsten.dominik@gmail.com>
4705         * org.el (org-refile): Allow refiling of entire regions.
4707         * org-clock.el (org-clock-time%): New function.
4709         * org.el (org-entry-get, org-entry-delete): Use safer regexps to
4710         retrieve property values.
4712 2008-11-09  Carsten Dominik  <carsten.dominik@gmail.com>
4714         * org-agenda.el (org-agenda-list): Handle the value `only' of
4715         org-agenda-show-log'.
4716         (org-agenda-log-mode): Interpret a double prefix arg.
4718 2008-11-08  Carsten Dominik  <carsten.dominik@gmail.com>
4720         * org-exp.el (org-export-html-footnotes-section): New variable.
4721         (org-export-as-html): Use `org-export-html-footnotes-section' to
4722         insert the footnotes.
4723         (org-export-language-setup): Add "Footnotes" to language words.
4725 2008-11-07  Carsten Dominik  <carsten.dominik@gmail.com>
4727         * org.el (org-yank): Fix bug when not inserting a subtree.
4729 2008-11-06  Carsten Dominik  <carsten.dominik@gmail.com>
4731         * org-vm.el (org-vm-follow-link): Call `vm-preview-current-message'
4732         instead of `vm-beginning-of-message'.
4734         * org.el (org-make-link-regexps): Make sure that links to gnus can
4735         contain brackets.
4737 2008-11-05  Carsten Dominik  <carsten.dominik@gmail.com>
4739         * org-attach.el (org-attach-dir): Remove duplicate ID creation
4740         code.
4742         * org-id.el (org-id-new): Use `org-trim' to extract the uuid from
4743         shell output.
4745         * org.el (org-link-abbrev-alist): Improve customization type.
4747         * org-attach.el (org-attach-expand-link, org-attach-expand): New
4748         functions.
4750         * org-agenda.el (org-agenda-get-progress): Renamed from
4751         `org-get-closed'.  Implement searching for state changes as well.
4752         (org-agenda-log-mode-items): New option.
4753         (org-agenda-log-mode): New option prefix argument, interpreted as
4754         request to show all possible progress info.
4755         (org-agenda-get-day-entries): Call `org-get-progress' instead of
4756         `org-get-closed'.
4757         (org-agenda-set-mode-name): Handle the more complex log mode
4758         settings.
4759         (org-get-closed): New alias, pointing to `org-get-progress'.
4761 2008-11-05  Carsten Dominik  <dominik@science.uva.nl>
4763         * org.el (org-file-apps-defaults-gnu)
4764         (org-file-apps-defaults-macosx)
4765         (org-file-apps-defaults-windowsnt): Add an entry defining the
4766         system command.
4767         (org-file-apps): Allow `system' as key and value.
4768         (org-open-at-point): Explain the effect of a double prefix arg.
4769         (org-open-file): If the argument `in-emacs' is (16),
4770         i.e. corresponding to a double prefix argument, try to open the
4771         file externally.
4773 2008-11-04  Carsten Dominik  <dominik@science.uva.nl>
4775         * org.el (org-insert-link): Abbreviate absolute files names in
4776         links.  Also, fix a bug in which the double C-u prefix would not
4777         be honored.
4779 2008-11-03  Carsten Dominik  <dominik@science.uva.nl>
4781         * org.el (org-insert-heading): If buffer does not end with a
4782         newline, add one if necessary to insert headline correctly.
4784         * org-exp.el (org-export-as-html): Make sure that <hr/> is between
4785         paragraphs, not inside.
4787         * org.el (org-todo): Quote
4788         `org-agenda-headline-snapshot-before-repeat'.
4790         * org-exp.el (org-export-as-html): Fully process link descriptions.
4791         (org-export-html-format-desc): New function.
4792         (org-export-as-html): Collect footnotes into the correct basket.
4793         (org-html-protect): No longer protect quotations marks here, this
4794         goes wrong.
4796         * org-agenda.el (org-agenda-remove-marked-text): Bind variable
4797         BEG.
4799         * org-compat.el (org-fit-window-to-buffer): New function (not
4800         really, a preliminary and incomplete version was present earlier,
4801         but not used).
4803         * org.el (org-fast-todo-selection, org-fast-tag-selection): Use
4804         `org-fit-window-to-buffer'.
4806         * org-exp.el (org-export): Use `org-fit-window-to-buffer'.
4808         * org-agenda.el (org-agenda-get-restriction-and-command)
4809         (org-fit-agenda-window, org-agenda-convert-date): Use
4810         `org-fit-window-to-buffer'.
4812         * org-exp.el (org-export-as-html): Process href links through
4813         `org-export-html-format-href'.
4814         (org-export-html-format-href): New function.
4816         * org-agenda.el (org-agenda-todo): Update only the current
4817         headline if this is a repeated TODO, marked done for today.
4818         (org-agenda-change-all-lines): New argument JUST-THIS, to change
4819         only the current line.
4821         * org.el (org-todo): Take a snapshot of the headline if the
4822         repeater might change it.
4824 2008-11-02  Carsten Dominik  <dominik@science.uva.nl>
4826         * org-publish.el (org-publish-find-title): Remove buffers visited
4827         only for extracting the title.
4829         * org-exp.el (org-export-html-style)
4830         (org-export-html-style-default): Mark style definitions as
4831         unparsed CDATA.
4833         * org-publish.el (org-publish-validate-link): Function
4834         re-introduced.
4836 2008-11-02  Charles Sebold  <csebold@gmail.com>
4838         * org-plot.el (org-plot/add-options-to-plist): Supports timefmt
4839         property.
4840         (org-plot-quote-timestamp-field): New function.
4841         (org-plot-quote-tsv-field): Call timestamp field function when
4842         necessary rather than just quoting as a string.
4843         (org-plot/gnuplot-to-data): Pass in timefmt property.
4844         (org-plot/gnuplot-script): Supports timefmt property.
4845         (org-plot/gnuplot): Checks for timestamp column before checking
4846         for text index column.
4848 2008-11-02  Carsten Dominik  <dominik@science.uva.nl>
4850         * org.el (org-insert-heading): Improve behavior with hidden subtrees.
4852         * org-publish.el (org-publish-org-index): Create a section in the
4853         index file.
4854         (org-publish-org-index): Stop linking to directories.
4856         * org.el (org-emphasis-alist): Use span instead of <u> to
4857         underline text.
4859         * org-exp.el (org-export-as-html): Make sure <p> is closed before
4860         <pre> sections.
4862 2008-11-01  Sebastian Rose  <sebastian_rose@gmx.de>
4864         * org-jsinfo.el (org-infojs-template): Remove language attribute
4865         from script tag.
4867 2008-11-01  Carsten Dominik  <dominik@science.uva.nl>
4869         * org-agenda.el (org-agenda-remove-marked-text): New function.
4870         (org-agenda-mark-filtered-text)
4871         (org-agenda-unmark-filtered-text): New functions.
4872         (org-write-agenda): Remove fltered text.
4874         * org.el (org-make-tags-matcher): Give access to TODO "property"
4875         without speed penalty.
4877 2008-10-29  Carsten Dominik  <dominik@science.uva.nl>
4879         * org.el (org-link-frame-setup): Add `org-gnus-no-new-news' as an
4880         option.
4881         (org-store-link-props): Make sure adding to the plist works
4882         correctly.
4884         * org-gnus.el (org-gnus-no-new-news): New function.
4885         (org-gnus-follow-link): Allow the article ID to be a message-id,
4886         in addition to allowing article numbers.  Message IDs make much
4887         more roubust links.
4888         (org-gnus-store-link): Use message-id to create link.
4890 2008-10-28  Carsten Dominik  <dominik@science.uva.nl>
4892         * org.el (org-emphasize): Reverse the selection array.
4893         (org-emphasis-alist): Set <code> tags for the verbatim
4894         environment.
4896         * org-remember.el (org-remember-handler): Fix bug with
4897         prefix-related changing of the note storage target.
4899         * org-exp.el (org-print-icalendar-entries): Make the exported
4900         priorities compatible with RFC 2445.
4902         * org-clock.el (org-clock-save): Insert time stamp without
4903         dependence on time-stamp.el.
4905 2008-10-27  Carsten Dominik  <dominik@science.uva.nl>
4907         * org.el ("saveplace"): If saveplace puts point into an invisible
4908         location, make it visible.
4909         (org-make-tags-matcher): Allow inactive time stamps in time
4910         comparisons.
4911         (org-yank-adjusted-subtrees): New option.
4912         (org-yank): Incorporate adjusting trees.
4913         (org-paste-subtree): New argument FOR-YANK which will cause
4914         insertion at point without backing up over white lines, and leave
4915         point at the end of the inserted text.  Also if the cursor is
4916         at the beginning of a headline, use the same level or the inserted
4917         tree.
4919         * org-publish.el (org-publish-get-base-files-1): Deal correctly
4920         with broken symlinks
4922 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
4924         * org-exp.el (org-export-select-tags, org-get-current-options):
4925         Fix typo.
4927 2008-10-25  Carsten Dominik  <dominik@science.uva.nl>
4929         * org-agenda.el (org-format-agenda-item)
4930         (org-agenda-filter-make-matcher): Make sure tags are stored and
4931         compared donwcased.
4933 2008-10-23  Carsten Dominik  <dominik@science.uva.nl>
4935         * org.el (org-insert-todo-heading): Fix bug with force-heading
4936         argument.
4938 2008-10-23  James TD Smith  <ahktenzero@mohorovi.cc>
4940         * org-clock.el (org-clock-in-resume): Add a custom option to
4941         toggle starting the clock from an open clock line.
4942         (org-clock-in): When clocking in to an entry, if
4943         `org-clock-in-resume' is set, check if the first clock line is
4944         open and if so, start the clock from the time in the clock line.
4945         (org-clock-persist): Add a custom option to toggle clock
4946         persistence.
4947         (org-clock-persist-query-save): Add a custom option to toggle
4948         asking the user if they want to save the running clock when
4949         exiting.
4950         (org-clock-persist-query-resume): Add a custom option to toggle
4951         asking the user if they want to resume the saved clock when Emacs
4952         is restarted.
4953         (org-clock-save): Add a function to save clock data.
4954         This includes the contents of `org-clock-history' and the buffer
4955         and position of the currently clocked task, if any.
4956         (org-clock-load): Add a function to load clock data.
4957         This populates `org-clock-history', and resumes the saved clocked
4958         task if there is one.
4959         (org-clock-persistence-insinuate): Add a method to set up the
4960         hooks for clock persistence.
4962 2008-10-22  Carsten Dominik  <dominik@science.uva.nl>
4964         * org-exp.el (org-export-as-ascii): Handle the case that we are
4965         publishing from an indirect buffer.
4967         * org-table.el (org-table-copy-down): Fix bug with time stamp
4968         increment.
4970         * org-mouse.el (org-mouse-features): New option.
4971         (org-mode-hook): Turn on features depending on
4972         `org-mouse-features'.
4974         * org.el (org-insert-heading-respect-content): Force heading
4975         creation.
4976         (org-insert-heading): keep the folding state of the heading before
4977         the inserted one.
4979 2008-10-21  Carsten Dominik  <dominik@science.uva.nl>
4981         * org-archive.el (org-archive-to-archive-sibling): Handle top
4982         level headlines better.
4984 2008-10-21  Bastien Guerry  <bzg@altern.org>
4986         * org-export-latex.el (org-export-latex-classes): Added
4987         \usepackage{graphicx} to the default list of packages.
4989 2008-10-21  Carsten Dominik  <dominik@science.uva.nl>
4991         * org-agenda.el (org-agenda-filter): Renamed from
4992         `org-agenda-filter-tags'.
4994 2008-10-20  Carsten Dominik  <dominik@science.uva.nl>
4996         * org.el (org-entry-properties): Add CATEGORY property, iven if it
4997         is not defined as a property in this entry.
4998         (org-add-log-note): Mask prefix argument when immediately storing
4999         the note.
5001         * org-agenda.el (org-agenda-filter-effort-default-operator): New
5002         option.
5004 2008-10-19  James TD Smith  <ahktenzero@mohorovi.cc>
5006         * org.el (org-add-log-setup): Bugfix; code to find insertion point
5007         after drawers was skipping ahead one line too many, so notes were
5008         inserted after the first note instead of before it.
5010 2008-10-18  Carsten Dominik  <dominik@science.uva.nl>
5012         * org-agenda.el (org-agenda-filter-tags,org-agenda-filter-form):
5013         New variables.
5014         (org-prepare-agenda): Reset the filter tags.
5015         (org-agenda-filter-by-tag, org-agenda-filter-by-tag-show-all):
5016         Show filter tags in mode line.
5018         * org-table.el (orgtbl-to-html): Bind `html-table-tag' for the
5019         formatter.
5021         * org-export-latex.el (org-latex-entities-regexp): New constant.
5022         (org-export-as-pdf): Use two calls to `shell-command'.
5024 2008-10-17  Carsten Dominik  <dominik@science.uva.nl>
5026         * org-export-latex.el (org-export-latex-treat-sub-super-char):
5027         Honor the {} value of the subsuperscript setting.  Make sure that
5028         longer subsuperscripts are typeset in a roman font.
5030         * org.el (org-clock-update-time-maybe): Compute negative clock
5031         intervals correctly.
5033 2008-10-16  Carsten Dominik  <dominik@science.uva.nl>
5035         * org.el (org-add-log-setup): Respect
5036         `org-log-state-notes-insert-after-drawers'.
5037         (org-log-state-notes-insert-after-drawers): New option.
5038         (org-todo-trigger-tag-changes): New function.
5039         (org-todo): Call `org-todo-trigger-tag-changes'.
5041 2008-10-15  James TD Smith  <ahktenzero@mohorovi.cc>
5043         * org.el (org-add-log-setup): Only skip drawers if the are
5044         immediately after the scheduling keywords.
5046         * org-clock.el (org-clock-in-switch-to-state): Allow this to be a
5047         function
5048         (org-clock-in): If `org-clock-in-switch-to-state' is a function,
5049         call it with the current todo state to get the state to switch to
5050         when clocking in.
5051         (org-clock-in): Use org-indent-line-function to indent clock lines.
5052         (org-clock-find-position): Fix indentation of empty clock drawers.
5054 2008-10-15  Carsten Dominik  <dominik@science.uva.nl>
5056         * org-publish.el (org-publish-org-to): Handle case when
5057         org-export-to-pdf does return a file name, not a buffer.
5058         (org-publish-org-to-pdf): New function.
5060         * org-export-latex.el (org-export-as-pdf)
5061         (org-export-as-pdf-and-open): New commands.
5063         * org-table.el (org-table-eval-formula): Avoid parsing Calc's HMS
5064         forms as ranges.
5066         * org-export-latex.el (org-export-latex-lists): Ignore lists-like
5067         things in protexted regions.
5069 2008-10-14  Carsten Dominik  <dominik@science.uva.nl>
5071         * org-export-latex.el (org-export-latex-preprocess): Improve
5072         quoting of LaTeX environments.
5074 2008-10-10  Carsten Dominik  <dominik@science.uva.nl>
5076         * org.el (org-edit-fixed-width-region): Exclude final newline from
5077         picture area.
5079         * org-export-latex.el (org-export-latex-subcontent): Add labels to
5080         sections, to make internal links work.
5081         (org-export-latex-fontify-headline): Do not remove all text
5082         properties, to make sure that target properties survive this
5083         process.
5085         * org-exp.el (org-export-preprocess-string): Change sequence of
5086         modifications, to make sure links are prepared before the LaTeX
5087         conversions do happen.
5089 2008-10-09  Carsten Dominik  <dominik@science.uva.nl>
5091         * org-attach.el (org-attach-delete-all): Renamed from
5092         `org-attch-delete'.  Add a security query before deleting the
5093         entire directory.  New optional argument FORCE can overrule the
5094         security query.
5095         (org-attach-delete-one): New command.
5097 2008-10-08  Carsten Dominik  <dominik@science.uva.nl>
5099         * org-attach.el (org-attach-file-list): Fix bug with directory.
5101 2008-10-07  Carsten Dominik  <dominik@science.uva.nl>
5103         * org.el (org-apps-regexp-alist): New function.
5104         (org-file-apps): Add auto-mode to the default value.
5105         (org-open-file): Use the new structure of org-file-apps.
5107         * org-attach.el (org-attach): Support the new keys.
5108         (org-attach-method): New option.
5110 2008-10-06  Carsten Dominik  <dominik@science.uva.nl>
5112         * org-bbdb.el (org-bbdb-anniversaries): Fix but with 29 Feb/1
5113         March.
5115         * org.el (org-remove-uniherited-tags): Fix reverse interpretation
5116         of the list value o `org-use-tag-inheritance'.
5118         * org-attach.el (org-attach-auto-tag): New option.
5119         (org-attach-tag, org-attach-untag): New functions.
5120         (org-attach-attach, org-attach-new, org-attach-sync): Call
5121         `org-attach-tag'.
5122         (org-attach-delete): Call `org-attach-untag'.
5124 2008-10-04  Carsten Dominik  <dominik@science.uva.nl>
5126         * org-table.el (orgtbl-self-insert-command): Make this work for
5127         the keypad as well.
5129 2008-10-02  Carsten Dominik  <dominik@science.uva.nl>
5131         * org.el (org-add-log-setup): Limit searc for drawers to entry
5132         text, not to subtree.
5134         * org-clock.el (org-clock-heading-for-remember): New variable.
5135         (org-clock-in): Set `org-clock-heading-for-remember'.
5137 2008-10-01  James TD Smith  <ahktenzero@mohorovi.cc>
5139         * org-remember.el (org-remember-apply-template): Add new
5140         expansions: %k, %K for currently clocked task and a link to the
5141         currently clocked task, and %< to file notes in the currently
5142         clocked task.
5144 2008-10-01  Carsten Dominik  <dominik@science.uva.nl>
5146         * org-export-latex.el (org-export-latex-make-header): Also insert
5147         the content of the property :latex-header-extra.
5149         * org-exp.el (org-infile-export-plist): Put the content of
5150         #+LATEX_HEADER: into the property :latex-header-extra.
5152         * org-colview.el (org-columns-get-format-and-top-level): Remove
5153         resetting the marker.
5155         * org-colview-xemacs.el (org-columns-get-format-and-top-level):
5156         Remove resetting the marker.
5158         * org.el (org-entry-property-inherited-from): Improve docstring.
5159         (org-entry-get-with-inheritance): Reset marker before starting the
5160         search.
5162         * org-exp.el (org-infile-export-plist): Allow multiple STYLE lines.
5164 2008-09-30  Carsten Dominik  <dominik@science.uva.nl>
5166         * org.el (org-entry-get-multivalued-property)
5167         (org-entry-protect-space, org-entry-restore-space): New
5168         functions.
5169         (org-file-apps-defaults-macosx): Let postscript files be opened by
5170         preview.
5171         (org-time-stamp-inactive): Call `org-time-stamp'.
5172         (org-time-stamp): New argument `inactive'.  Also edit inacive
5173         stamps. Convert time stamp type.
5174         (org-open-file): Interpret the `default' value for the `command'
5175         in `org-file-apps'.
5177         * org-id.el (org-id-int-to-b36-one-digit)
5178         (org-id-b36-to-int-one-digit, org-id-int-to-b36)
5179         (org-id-b36-to-int, org-id-time-to-b36): Modified from b62 to
5180         b36.
5182 2008-09-29  Carsten Dominik  <dominik@science.uva.nl>
5184         * org-id.el (org-id-reverse-string): New function.
5185         (org-id-new): Use `org-id-reverse-string' to make sure the
5186         beginning chars of the ID are mutating fast.  This allows to use a
5187         directory structure to spread things better.
5188         (org-id-prefix): Changed default to nil.
5190         * org-list.el (org-move-item-down, org-move-item-up): Remember and
5191         restore the column of the cursor position.
5193         * org-remember.el (org-remember-apply-template): Remove properties
5194         from `initial'.
5196 2008-09-27  Carsten Dominik  <dominik@science.uva.nl>
5198         * org-wl.el (org-wl-open): Remove useless call to
5199         `wl-thread-open-all'.
5201         * org-remember.el (org-remember-handler): Fix bug with `bottom'
5202         location.
5204 2008-09-26  Carsten Dominik  <dominik@science.uva.nl>
5206         * org-bbdb.el (org-bbdb-anniversaries): Require bbdb in
5207         `org-bbdb-anniversaries'.
5209         * org.el (org-get-next-sibling, org-forward-same-level): New
5210         functions, similar to the outline versions, but invisible headings
5211         are OK.
5213 2008-09-25  Bastien Guerry  <bzg@altern.org>
5215         * org.el (org-auto-repeat-maybe): Insert a space between
5216         the timestamp's type and the timestamp itself.
5218 2008-09-24  Carsten Dominik  <dominik@science.uva.nl>
5220         * org-table.el (org-table-sum): Do not format the result with %g,
5221         it does rounding when there are too many digits.
5223         * org.el (org-map-entries): Protect the keyword-selecting variables.
5225 2008-09-23  Bastien Guerry  <bzg@altern.org>
5227         * org-agenda.el (org-agenda-to-appt): Make sure the function check
5228         against all agenda files.
5230 2008-09-23  Carsten Dominik  <dominik@science.uva.nl>
5232         * org-list.el: New file, aggregating list functions from org.el
5233         and org-export-latex.el.
5235         * org.el (org-edit-src-region-extra): New option.
5237 2008-09-22  Carsten Dominik  <dominik@science.uva.nl>
5239         * org-agenda.el (org-agenda-to-appt): Fix bug with appointment
5240         time before 1am.
5242 2008-09-22  Bastien Guerry  <bzg@altern.org>
5244         * org-export-latex.el (org-export-latex-keywords-maybe): Bug fix.
5246 2008-09-22  James TD Smith  <ahktenzero@mohorovi.cc>
5248         * org-plot.el (org-plot/gnuplot): Make tables starting with a
5249         hline work correctly.
5250         (org-plot/gnuplot-script): Put commas at the end of each script
5251         line.
5253 2008-09-20  James TD Smith  <ahktenzero@mohorovi.cc>
5255         * org.el (org-get-refile-targets): Replace links with their
5256         descriptions
5257         (org-imenu-get-tree): Replace links with their descriptions.
5259         * org-remember.el (org-remember-apply-template): Add a new
5260         expansion for adding properties to remember items.
5262         * org.el (org-add-log-setup): Skip over drawers (properties,
5263         clocks etc) when adding notes.
5265         * org-agenda.el (org-agenda-get-closed): show durations of clocked
5266         items as well as the start and end times.
5268         * org-compat.el (org-get-x-clipboard-compat): Add a compat
5269         function for fetching the X clipboard on XEmacs and GNU Emacs 21.
5271         * org-remember.el (org-get-x-clipboard): Use the compat
5272         function to get clipboard values when x-selection-value is
5273         unavailable. Use substring-no-properties instead of
5274         set-text-properties to remove text properties from the clipboard
5275         value.
5277         * lisp/org-clock.el (org-update-mode-line): Support limiting the
5278         modeline clock string, and display the full todo value in the
5279         tooltip. Set a local keymap so mouse-3 on the clock string goes to
5280         the currently clocked task.
5281         (org-clock-string-limit): Add a custom value for the maximum
5282         length of the clock string in the modeline.
5283         (org-clock-mode-map): Add a keymap for the modeline string
5285 2008-09-21  Carsten Dominik  <dominik@science.uva.nl>
5287         * org-compat.el (org-propertize): New function.
5289 2008-09-20  Bastien Guerry  <bzg@altern.org>
5291         * org-export-latex.el (org-export-latex-tables): protect exported
5292         tables from further special chars conversion.
5293         (org-export-latex-preprocess): Preserve LaTeX environments.
5294         (org-list-parse-list): Parse descriptive lists.
5295         (org-list-to-generic, org-list-to-latex, org-list-to-html)
5296         (org-list-to-texinfo): Export descriptive lists.
5297         (org-quote-chars): Remove.
5298         (org-export-latex-keywords-maybe): Use `replace-regexp-in-string'.
5299         (org-export-latex-list-beginning-re): Rename to
5300         `org-list-beginning-re'
5301         (org-list-item-begin): Rename to `org-list-item-beginning'
5303 2008-09-20  Carsten Dominik  <dominik@science.uva.nl>
5305         * org.el (org-refile): Allow refiling to the last entry in the
5306         buffer.
5307         (org-get-tags-at): Fix bug when inheritance is turned off.
5309 2008-09-19  Carsten Dominik  <dominik@science.uva.nl>
5311         * org.el (org-indent-line-function): No longer check for src
5312         regions, this is too much overhead.
5314         * org-agenda.el (org-agenda-highlight-todo): Fix bugs with keyword
5315         matching.
5317         * org.el (org-scan-tags): Make sure that tags matching is not case
5318         sensitive.  TODO keyword matching is case sensitive, however, to
5319         avoid confusion with similar words that are not meant to be
5320         keywords.
5322 2008-09-18  Carsten Dominik  <dominik@science.uva.nl>
5324         * org.el (org-get-local-tags-at): New function.
5325         (org-get-local-tags): New function.
5327         * org-exp.el (org-export-get-categories): New function.
5329         * org-agenda.el (org-sorting-choice)
5330         (org-agenda-sorting-strategy, org-agenda-get-todos)
5331         (org-agenda-get-timestamps, org-agenda-get-deadlines)
5332         (org-agenda-get-scheduled, org-agenda-get-blocks)
5333         (org-entries-lessp): Implement sorting by TODO state.
5334         (org-cmp-todo-state): New defsubst.
5336         * org-colview.el (org-colview-construct-allowed-dates): New
5337         function.
5338         (org-columns-next-allowed-value): Use
5339         `org-colview-construct-allowed-dates'.
5341         * org-colview-xemacs.el (org-colview-construct-allowed-dates): New
5342         function.
5343         (org-columns-next-allowed-value): Use
5344         `org-colview-construct-allowed-dates'.
5346 2008-09-17  Carsten Dominik  <dominik@science.uva.nl>
5348         * org.el (org-protect-slash): New function.
5349         (org-get-refile-targets): Use `org-protect-slash'.
5351         * org-agenda.el (org-global-tags-completion-table): New variable.
5353         * org-exp.el (org-export-handle-export-tags): New function.
5354         (org-export-preprocess-string): Call
5355         `org-export-handle-export-tags'.
5357         * org-plot.el: New file.
5359         * org-publish.el (org-publish-expand-components): Function removed.
5360         (org-publish-expand-projects): Allow components to have components.
5362 2008-09-13  Carsten Dominik  <dominik@science.uva.nl>
5364         * org.el (org-indent-line-function): Do not indent in regions that
5365         are external source code.
5366         (org-yank-and-fold-if-subtree): New function.
5368         * org-agenda.el (org-agenda-todayp): New function.
5369         (org-agenda-get-deadlines, org-agenda-get-scheduled): Use
5370         `org-agenda-todayp'.
5372         * org.el (org-insert-heading-respect-content)
5373         (org-insert-todo-heading-respect-content): New commands.
5374         (org-insert-heading-respect-content): New option.
5375         (org-insert-heading): Respect `org-insert-heading-respect-content'.
5377         * org-clock.el (org-clock-find-position): Make sure the note after
5378         the clock line gets moved into the new clock drawer.
5380 2008-09-11  Carsten Dominik  <dominik@science.uva.nl>
5382         * org-id.el (org-id-new): New option.
5384 2008-09-08  Carsten Dominik  <dominik@science.uva.nl>
5386         * org-table.el (org-table-copy-down): Avoid overflow during
5387         increment.  Use prefix argument 0 to temporarily disable the
5388         increment.
5390 2008-09-07  Carsten Dominik  <dominik@science.uva.nl>
5392         * org-exp.el (org-export-as-html): Do not turn on the major mode
5393         if the buffer will be killed anyway.
5394         (org-get-current-options): Exclude the #+TEXT field.
5395         (org-export-as-html): Make sure text before the first headline is
5396         a paragraph.
5398         * org-publish.el (org-publish-org-to): Tell the exporter that this
5399         buffer will be killed, so it is not necessary to do major mode
5400         initialization.
5402         * org-archive.el (org-archive-to-archive-sibling): Show empty
5403         lines after folding the archive sibling.
5405         * org.el (org-log-note-extra): New variable.
5407 2008-09-05  Bastien Guerry  <bzg@altern.org>
5409         * org.el (org-additional-option-like-keywords): Added keywords for
5410         the _QUOTE, _VERSE and _SRC environments.
5412         * org-export-latex.el (org-export-latex-preprocess): Fix bug when
5413         exporting _QUOTE and _VERSE environments.
5415 2008-09-05  Carsten Dominik  <dominik@science.uva.nl>
5417         * org-agenda.el (org-agenda-filter-by-tag): New command.
5419         * org-exp.el (org-get-current-options): Remove angular brackets
5420         from the date entry.
5422         * org.el (org-edit-fixed-width-region): New function.
5423         (org-edit-fixed-width-region): Also try
5424         `org-edit-fixed-width-region'.
5425         (org-edit-fixed-width-region-mode): New option.
5426         (org-activate-code): Only interprete lines starting with colon
5427         plus a space as example lines.
5429         * org-remember.el (org-remember-templates): Add nil instead of
5430         empty strings to fix the length of remember templates.
5432         * org-table.el (org-calc-default-modes): Fix the time format for
5433         calc, from 12 hour to 24 hour clock.
5435 2008-09-04  Carsten Dominik  <dominik@science.uva.nl>
5437         * org-agenda.el (org-agenda-get-deadlines)
5438         (org-agenda-get-scheduled): Avoid `time-of-day' extraction for
5439         entries that are pre-warnings of deadlines or reminders.
5441         * org.el (org-sort-entries-or-items): Make numeric and alpha
5442         comparisons ignore any TODO keyword and priority cookie.
5444         * org-remember.el (org-remember-handler): Reinterpretation of the
5445         prefix argument.
5447 2008-09-03  Carsten Dominik  <dominik@science.uva.nl>
5449         * org-agenda.el (org-agenda-get-scheduled): Use new
5450         `org-scheduled' face.
5452         * org-faces.el (org-scheduled): New face.
5454         * org-wl.el (org-wl-open): Remove incorrect declaration.
5456         * org-gnus.el (org-gnus-store-link): Support for :to information
5457         in gnus links.
5459         * org-exp.el (org-export-as-html): Fixed typo in creator
5460         information.
5461         (org-export-protect-examples): New parameter indent.  Insert extra
5462         spaces only when this parameter is specified.
5463         (org-export-preprocess-string): Call `org-export-protect-examples'
5464         with an indentation parameter when exporting to ASCII.
5466         * org-remember.el (org-remember-templates)
5467         (org-remember-apply-template): Allow the file component to be a
5468         function.
5470         * org.el (org-goto-local-search-headings): Renamed from
5471         `org-goto-local-search-forward-headings'.  Added the possibility
5472         to search backwards.
5474 2008-09-02  Carsten Dominik  <dominik@science.uva.nl>
5476         * org-export-latex.el (org-export-latex): New customization
5477         group.
5479         * org-agenda.el (org-write-agenda): Erase buffer for txt export.
5481 2008-09-01  Carsten Dominik  <dominik@science.uva.nl>
5483         * org-exp.el (org-html-do-expand): Allow {} to terminate
5484         tex macro
5486 2008-07-29  Carsten Dominik  <dominik@science.uva.nl>
5488         * org.el (org-buffer-list): Select buffers based on major mode,
5489         not on file name.
5491 2008-07-26  Carsten Dominik  <dominik@science.uva.nl>
5493         * org-agenda.el (org-agenda-align-tags): Fix bug with malformed
5494         face property.
5496         * org-colview.el (org-columns-display-here): Use
5497         `org-columns-modify-value-for-display-function'.
5499         * org-colview-xemacs.el (org-columns-display-here): Use
5500         `org-columns-modify-value-for-display-function'.
5502 2008-07-25  Carsten Dominik  <dominik@science.uva.nl>
5504         * org.el (org-columns-modify-value-for-display-function): New option.
5516         * org-publish.el (org-publish-file): Make sure the directory match
5517         for the publishing directory works correctly.
5519         * org-agenda.el (org-agenda-execute-calendar-command)
5520         (org-agenda-diary-entry): Additional optional argument.
5522 2008-07-24  Carsten Dominik  <dominik@science.uva.nl>
5524         * org-exp.el (org-export-as-html): Add attributes also in mailto
5525         and ftp links.
5527         * org.el (org-autoload): Add `org-dblock-write:columnview'.
5536 2008-07-23  Carsten Dominik  <dominik@science.uva.nl>
5538         * org-exp.el (org-export-region-as-html, org-export-as-html): Make
5539         sure that calls from `org-export-region-as-html' do not do the
5540         special check for a subtree.
5542 2008-07-22  Carsten Dominik  <dominik@science.uva.nl>
5544         * org-agenda.el (org-batch-store-agenda-views): Fix parsing bug.
5546 2008-07-20  Juri Linkov  <juri@jurta.org>
5548         * org.el (narrow-map): Bind `org-narrow-to-subtree' to "s" on the
5549         new keymap `narrow-map' instead of binding "\C-xns".
5551 2008-07-18  Carsten Dominik  <dominik@science.uva.nl>
5553         * org.el (org-open-file): Use
5554         `org-open-directory-means-index-dot-org'.
5555         (org-open-directory-means-index-dot-org): New option.
5557 2008-07-17  Carsten Dominik  <dominik@science.uva.nl>
5559         * org.el (org-make-link-string): Remove link attributes from
5560         description.
5561         (org-open-at-point): Remove link attributes bevore using the path.
5563         * org-exp.el (org-export-as-html): Handle link attributes.
5565         * org.el (org-extract-attributes, org-attributes-to-string): New functions.
5567         * org-table.el (org-table-to-lisp): New function.
5569         * org.el (org-narrow-to-subtree): Do not include the final newline
5570         into the narrowed region.
5572         * org-agenda.el (org-agenda-custom-commands-local-options): Fixed
5573         bug with user-define skipping condition.
5575 2008-07-16  Carsten Dominik  <dominik@science.uva.nl>
5577         * org-agenda.el (org-agenda-get-restriction-and-command): Fixed typo.
5579 2008-07-14  Carsten Dominik  <dominik@science.uva.nl>
5581         * org-exp.el (org-export-html-style-default): Automatic overflow
5582         handling for pre fields.
5583         (org-export-as-ascii, org-export-as-html): Change default format
5584         for time stamp.
5586         * org-table.el (org-table-export): Offer completion for translator
5587         functions, and do not require a heading above the table.
5589         * org.el (org-renumber-ordered-list, org-beginning-of-item-list):
5590         Cater for the case of a list starting in the first line of the
5591         buffer.
5593 2008-07-09  Carsten Dominik  <dominik@science.uva.nl>
5595         * org-publish.el (org-publish-find-title): Bug fix.
5596         (org-publish-org-index): Implement new :index-style option.
5598 2008-07-07  Carsten Dominik  <dominik@science.uva.nl>
5600         * org-publish.el (org-publish-timestamp-filename): Use
5601         SHA1-encoded file names in the timestamp directory.
5603 2008-07-05  Carsten Dominik  <dominik@science.uva.nl>
5605         * org-publish.el (org-publish-needed-p): Be verbose about files
5606         published and files skipped.
5608         * org-exp.el (org-export-preprocess-string): Swap link
5609         normalization and inernal link targeting.
5611         * org-publish.el (org-publish-needed-p): Create timestamp
5612         directory when it does not exist.
5614 2008-07-04  Bastien Guerry  <bzg@altern.org>
5616         * org-clock.el (org-clock-out-when-done): Doc fix.
5618         * org.el (org-agenda-skip-unavailable-files): Doc fix.
5620         * org-exp.el (org-export-remove-comment-blocks-and-subtrees):
5621         Ignore case when searching for the COMMENT cookie at export time.
5623 2008-07-02  Carsten Dominik  <dominik@science.uva.nl>
5625         * org-exp.el (org-get-file-contents)
5626         (org-get-and-remove-property): New functions.
5627         (org-export-handle-include-files): Handle the new prefix options.
5628         (org-export-as-html): Fix the verse environment.
5630 2008-07-01  Carsten Dominik  <dominik@science.uva.nl>
5632         * org.el (org-time=, org-time<, org-time<=, org-time>)
5633         (org-time>=, org-time<>, org-2ft): New functions.
5634         (org-op-to-function): Also provide for the time testing fucntions.
5636 2008-06-30  Carsten Dominik  <dominik@science.uva.nl>
5638         * org-exp.el (org-export-html-style-default): New constant.
5640 2008-06-29  Carsten Dominik  <dominik@science.uva.nl>
5642         * org-exp.el (org-export-html-style-extra): New variable.
5643         (org-export-splice-style): New function.
5645 2008-06-26  Carsten Dominik  <dominik@science.uva.nl>
5647         * org-exp.el (org-export-plist-vars, org-export-as-html):
5648         Implement `org-export-creator-info'.
5649         (org-export-creator-info): New option.
5651 2008-06-25  Carsten Dominik  <dominik@science.uva.nl>
5653         * org.el (org-clock-drawer-start-re, org-clock-drawer-end-re)
5654         (org-property-drawer-re, org-clock-drawer-re): New constants.
5656 2008-06-23  Carsten Dominik  <dominik@science.uva.nl>
5658         * org-exp.el (org-icalendar-use-deadline)
5659         (org-icalendar-use-scheduled): New options.
5660         (org-icalendar-include-todo): Default changed to t.
5661         (org-print-icalendar-entries): Implement better utilization of
5662         scheduling and deadline time stamps.
5663         (org-export-target-internal-links, org-export-as-html): Allow file
5664         lines without the "file:" prefix if the file path is an absolute
5665         path or starts with ".".
5667         * org-clock.el (org-clocktable-shift): Also undertand yesterday,
5668         lastweek etc.
5669         (org-clock-special-range): Also undertand yesterday, lastweek etc.
5671 2008-06-18  Glenn Morris  <rgm@gnu.org>
5672         * org.el (org-map-entries): Let-bind `file'.
5674 2008-06-19  Carsten Dominik  <dominik@science.uva.nl>
5676         * org.el (org-agenda-skip-archived-trees): Docstring now
5677         discourages using this.
5678         (org-scan-tags): Check for org-agenda-archives-mode.
5679         (org-map-entries): Make sure org-agenda-archives-mode is nil.
5680         (org-agenda-files): Functionality of second arg changed.
5682         * org-agenda.el (org-agenda-archives-mode): New variable
5683         (org-write-agenda, org-prepare-agenda, org-agenda-list)
5684         (org-search-view, org-todo-list, org-tags-view)
5685         (org-agenda-list-stuck-projects): Call `org-agenda-files' with
5686         `ifmode' argument.
5687         (org-agenda-quit): Reset the archives mode.
5688         (org-agenda-archives-mode): New command.
5689         (org-agenda-set-mode-name): Include archives info.
5691 2008-06-18  Carsten Dominik  <dominik@science.uva.nl>
5693         * org.el (org-paste-subtree): Make sure the yanked headline is
5694         visible if it was yanked at a visible point.
5695         (org-move-item-up): Fix the bug with moving white space at the end
5696         of the item.
5697         (org-show-empty-lines-in-parent): New function.
5699 2008-06-16  Carsten Dominik  <dominik@science.uva.nl>
5701         * org-colview.el (org-columns-next-allowed-value): Bug fix.
5703         * org-colview-xemacs.el (org-columns-next-allowed-value): Bug fix.
5705         * org-agenda.el (org-agenda-get-closed): Get the end time into the
5706         agenda prefix as well.
5708         * org-publish.el (org-publish-org-index): Make a properly indented
5709         list.
5711         * org.el (org-calendar-agenda-action-key): New option.
5712         (org-get-cursor-date): New function.
5713         (org-mark-entry-for-agenda-action): New command.
5714         (org-overriding-default-time): New variable.
5715         (org-read-date): Respect `org-overriding-default-time'.
5717         * org-remember.el (org-remember-apply-template): Respect the
5718         ovverriding default time.
5720         * org-agenda.el (org-agenda-action-marker): New variable.
5721         (org-agenda-action): New command.
5722         (org-agenda-do-action): New function.
5724 2008-06-15  Carsten Dominik  <dominik@science.uva.nl>
5726         * org.el (org-schedule, org-deadline): Protect scheduled and
5727         deadline tasks against changes that accidently remove the
5728         repeater.  Also show a message with the new date when done.
5730 2008-06-15  Carsten Dominik  <dominik@science.uva.nl>
5732         * org.el (org-beginning-of-line): Cater for the case when there
5733         are tags but no headline text.
5734         (org-align-tags-here): Convert to tabs only when indent-tabs-mode
5735         it set.
5737 2008-06-13  Carsten Dominik  <dominik@science.uva.nl>
5739         * org-mhe.el (org-mhe-get-message-folder-from-index): Make sure
5740         the return value is nil instead of "nil" when there is no match.
5742         * org-exp.el (org-insert-centered): Use fill-column instead of
5743         80.
5744         (org-export-as-ascii): Use string-width to measure the width of
5745         the heading.
5747         * org.el (org-diary-to-ical-string): No longer kill buffer
5748         FROMBUF, this is now done by the caller.
5750         * org-exp.el (org-print-icalendar-entries): Move the call to
5751         `org-diary-to-ical-string' out of the loop, and kill the buffer
5752         afterwords.
5754         * org-remember.el (org-remember-visit-immediately): Position
5755         cursor after moving to the note.
5756         (org-remember-apply-template): Use a text property to record the
5757         cursor position.
5758         (org-remember-handler): Align tags after pasting the note.
5760 2008-06-12  Carsten Dominik  <dominik@science.uva.nl>
5762         * org-bbdb.el (org-bbdb-follow-anniversary-link): New function.
5764         * org-agenda.el (org-agenda-open-link): If there is an
5765         org-bbdb-name property in the current line, jump to that bbdb
5766         entry.
5768         * org-bbdb.el (org-bbdb-anniversaries): Add the bbdb-name as a
5769         text property, so that the agenda knows where this entry comes
5770         from.
5772         * org-agenda.el (org-agenda-clock-in): Fixed bug in the
5773         interaction between clocking-in from the agenda, and  automatic
5774         task state switching.
5776         * org-macs.el (org-with-point-at): Bug fix in macro defintion.
5778         * org.el (org-beginning-of-line, org-end-of-line): Make sure the
5779         zmacs-region stays after this command in XEmacs.
5781 2008-06-11  Carsten Dominik  <dominik@science.uva.nl>
5783         * org.el (org-scan-tags): Allow new values for ACTION parameter.
5785         * org-remember.el (org-remember-templates): Fix bug in
5786         customization type definition.
5788         * org.el (org-map-entries): New function.
5790 2008-06-11  verhuur82  <verhuur82@macbook-van-verhuur82.local>
5792         * org-agenda.el (org-agenda-skip-comment-trees): New option.
5793         (org-agenda-skip): Respect `org-agenda-skip-comment-trees'.
5795 2008-06-10  Carsten Dominik  <dominik@science.uva.nl>
5797         * org-remember.el (org-jump-to-target-location): New variable.
5798         (org-remember-apply-template): Set
5799         `org-remember-apply-template' if requested by template.
5800         (org-remember-handler): Start an idle timer to jump to
5801         remember location.
5803         * org-exp.el (org-get-current-options): Add the FILETAGS setting.
5805         * org.el (org-set-regexps-and-options): Fix bug with parsing of
5806         file tags.
5807         (org-get-tags-at): Add the content of `org-file-tags'.
5809         * org-exp.el (org-export-handle-comments): Fix bug with several
5810         comment lines after each other.
5811         (org-number-to-roman, org-number-to-counter): New functions.
5812         (org-export-section-number-format): New option.
5814 2008-06-09  Carsten Dominik  <dominik@science.uva.nl>
5816         * org-exp.el (org-export-protect-examples): Catch the case of a
5817         missing end_example line.
5819         * org.el (org-set-regexps-and-options): Set `org-file-properties' and
5820         `org-file-tags' to nil.
5822         * org-colview.el (org-columns-next-allowed-value): Handle next
5823         argument NTH to directly select a value.
5825         * org-colview-xemacs.el (org-columns-next-allowed-value): Handle next
5826         argument NTH to directly select a value.
5828 2008-06-08  Carsten Dominik  <dominik@science.uva.nl>
5830         * org-agenda.el (org-agenda-scheduled-leaders): Fix docstring.
5832 2008-05-30  Carsten Dominik  <dominik@science.uva.nl>
5834         * org.el (org-columns-ellipses): New option.
5836 2008-05-29  Carsten Dominik  <dominik@science.uva.nl>
5838         * org-colview.el (org-columns-add-ellipses): New function.
5839         (org-columns-compact-links): New function.
5840         (org-columns-cleanup-item): Call `org-columns-compact-links'.
5841         (org-columns-display-here): Call `org-agenda-columns-cleanup-item'
5842         when in agenda.
5843         (org-columns-edit-value): Fixed bug with editing values from
5844         agenda column view.
5845         (org-columns-redo): Also redo the agenda itself.
5847 2008-05-28  Carsten Dominik  <dominik@science.uva.nl>
5849         * org-agenda.el (org-agenda-columns-remove-prefix-from-item): New
5850         option.
5852         * org-colview.el (org-agenda-columns-cleanup-item): New function.
5854         * org-exp.el (org-export-ascii-preprocess): Renamed from
5855         `org-export-ascii-clean-string'.
5856         (org-export-kill-licensed-text)
5857         (org-export-define-heading-targets)
5858         (org-export-handle-invisible-targets)
5859         (org-export-target-internal-links)
5860         (org-export-remove-or-extract-drawers)
5861         (org-export-remove-archived-trees)
5862         (org-export-protect-quoted-subtrees)
5863         (org-export-protect-verbatim, org-export-protect-examples)
5864         (org-export-select-backend-specific-text)
5865         (org-export-mark-blockquote-and-verse)
5866         (org-export-remove-comment-blocks-and-subtrees)
5867         (org-export-handle-comments, org-export-mark-radio-links)
5868         (org-export-remove-special-table-lines)
5869         (org-export-normalize-links)
5870         (org-export-concatenate-multiline-links)
5871         (org-export-concatenate-multiline-emphasis): New functions,
5872         obtained from spliiting the export preprocessor.
5874         * org-table.el (org-table-recalculate): Improve error message if
5875         the row number is invalid.
5877 2008-05-27  Carsten Dominik  <dominik@science.uva.nl>
5879         * org-archive.el (org-archive-save-context-info): Fix bugs in
5880         customization setup and docstring.
5882         * org-exp.el (org-export-html-style): Changed the size of in the
5883         <pre> element to 90%.
5885 2008-05-26  Carsten Dominik  <dominik@science.uva.nl>
5887         * org.el (org-find-src-example-start): Function removed.
5888         (org-edit-src-find-region-and-lang): New function.
5890 2008-05-25  Carsten Dominik  <dominik@science.uva.nl>
5892         * org.el (org-edit-src-exit): New function.
5893         (org-exit-edit-mode): New minor mode.
5895         * org-exp.el (org-export-preprocess-string): Fix bug with removing
5896         comment-like lines from protected examples.
5898         * org.el (org-edit-src-example, org-find-src-example-start)
5899         (org-protect-source-example, org-edit-special): New functions.
5901 2008-05-24  Carsten Dominik  <dominik@science.uva.nl>
5903         * org-publish.el (org-publish-project-alist): Fix typo in
5904         docstring.
5905         (org-publish-project-alist): Handle :index-title property.
5907 2008-05-21  Carsten Dominik  <dominik@science.uva.nl>
5909         * org-export-latex.el (org-export-as-latex): Make sure region
5910         bounds are correct.  Parse subtree properties relating to export.
5912         * org-exp.el (org-export-add-options-to-plist): New function.
5913         (org-infile-export-plist): Use `org-export-add-options-to-plist'.
5915 2008-05-20  Carsten Dominik  <dominik@science.uva.nl>
5917         * org.el (org-default-properties): Add EXPORT_FILE_NAME and
5918         EXPORT_TITLE.
5920         * org-exp.el (org-export-get-title-from-subtree)
5921         (org-export-as-ascii, org-export-as-html): Make sure the original
5922         region-beginning and region-end are used, even after moving
5923         point.
5924         (org-export-get-title-from-subtree): Also try the EXPORT_TITLE
5925         property.
5927         * org-remember.el (org-remember-last-stored-marker): New variable.
5928         (org-remember-goto-last-stored): Use `org-goto-marker-or-bmk'.
5929         (org-remember-handler): Also use marker to remember
5930         last-stored position.
5932         * org.el (org-goto-marker-or-bmk): New function.
5934 2008-05-19  Carsten Dominik  <dominik@science.uva.nl>
5936         * org.el (org-file-properties): Renamed from `org-local-properties'.
5937         (org-scan-tags): Take file tags into account.
5938         (org-tags-match-list-sublevels): Default changed to t.
5940         * org-exp.el (org-export-as-html): Close paragraph after a
5941         footnote.
5943         * org.el (org-update-parent-todo-statistics): New function.
5945         * org-exp.el (org-icalendar-store-UID): New option.
5946         (org-icalendar-force-UID): Option removed.
5947         (org-print-icalendar-entries): IMplement UIDs.
5949 2008-05-18  Carsten Dominik  <dominik@science.uva.nl>
5951         * org-mhe.el (org-mhe-follow-link): Fix bug in mhe searches.
5953 2008-05-16  Carsten Dominik  <dominik@science.uva.nl>
5955         * org-faces.el (org-column): Document how this face is being used
5956         and why sometimes the background faces shine through.
5958         * org-mhe.el (org-mhe-follow-link): Improve handling of searches.
5960         * org-publish.el (org-publish-attachment): Create publishing
5961         directory if it does not yet exist.
5963         * org-table.el (org-calc-default-modes): Change default number
5964         format to (float 8).
5966         * org.el (org-olpath-completing-read): New function.
5967         (org-time-clocksum-format): New option.
5968         (org-minutes-to-hh:mm-string): Use `org-time-clocksum-format'.
5970         * org-clock.el (org-clock-display, org-clock-out)
5971         (org-update-mode-line): Use `org-time-clocksum-format'.
5973         * org-colview-xemacs.el (org-columns-number-to-string): Use
5974         `org-time-clocksum-format'.
5976         * org-colview.el (org-columns-number-to-string): Use
5977         `org-time-clocksum-format'.
5979 2008-05-15  Carsten Dominik  <dominik@science.uva.nl>
5981         * org-id.el: New file, move from contrib to core.
5983         * org-exp.el (org-icalendar-force-UID): New option.
5985 2008-05-14  Carsten Dominik  <dominik@science.uva.nl>
5987         * org-exp.el (org-print-icalendar-entries): Make sure DTEND is
5988         shifted by one day if theere is a date range without an end
5989         time.
5991         * org.el (org-try-structure-completion): New function.
5993 2008-05-13  Carsten Dominik  <dominik@science.uva.nl>
5995         * org.el (org-set-font-lock-defaults): Improve fontification of
5996         description lists.
5997         (org-insert-item): Handle description lists.
5998         (org-adaptive-fill-function): Improve auto indentation in
5999         description lists.
6001         * org-exp.el (org-export-as-html, org-export-preprocess-string):
6002         Implement VERSE environment.
6003         (org-export-preprocess-string): Implement the COMMENT
6004         environment.
6006         * org-export-latex.el (org-export-latex-preprocess): Implement
6007         VERSE environment.
6009 2008-05-12  Carsten Dominik  <dominik@science.uva.nl>
6011         * org-jsinfo.el (org-infojs-opts-table): Add entry for FIXED_TOC
6012         option.
6014 2008-05-10  Carsten Dominik  <dominik@science.uva.nl>
6016         * org-table.el (orgtbl-to-tsv, orgtbl-to-csv): New functions.
6018         * org.el (org-quote-csv-field): New functions.
6020         * org-table.el (org-table-export-default-format): Remove :splice
6021         from default format, we get the same effect by not specifying
6022         :tstart and :tend.
6023         (org-table-export): Improve setup, distinguish better between
6024         interactive and non-interactive use, allow specifying the format
6025         on the fly, better protection against wrong file names.
6026         (orgtbl-to-generic): Fix documentation.  Do not require :tstart
6027         and :tend when :splice is omitted.
6029 2008-05-09  Bernt Hansen  <bernt@norang.ca>
6031         * org-clock.el (org-clock-select-task): Make sure the selection
6032         letters are 1-9 and A-Z, no special characters.
6034 2008-05-09  Carsten Dominik  <dominik@science.uva.nl>
6036         * org-exp.el (org-export-htmlize): New group.
6037         (org-export-htmlize-output-type)
6038         (org-export-htmlize-css-font-prefix): New options.
6039         (org-export-htmlize-region-for-paste): New function.
6040         (org-export-htmlize-generate-css): New command.
6042 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
6044         * org/org.el (org-modules, org-format-latex-options):
6045         * org/org-archive.el (org-archive-stamp-time)
6046         (org-archive-save-context-info):
6047         * org/org-faces.el (org-hide):
6048         * org/org-irc.el (org-irc-parse-link):
6049         * org/org-macs.el (org-call-with-arg, org-autoload):
6050         * org/org-mew.el (org-mew-store-link):
6051         * org/org-remember.el (org-remember-store-without-prompt)
6052         (org-remember-templates): Fix typos in docstrings.
6054         * org/org-info.el (org-info-store-link): Remove leftover docstring.
6056         * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
6057         (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
6058         (org-bbdb-anniv-split): Fix typos in docstrings.
6060         * org/org-publish.el (org-publish-project-alist): Doc fixes.
6061         (org-publish-use-timestamps-flag): Reflow docstring.
6062         (org-publish-files-alist): Fix typos in docstring.
6064 2008-05-08  Carsten Dominik  <dominik@science.uva.nl>
6066         * org.el (org-set-visibility-according-to-property): New function.
6067         (org-ctrl-c-ctrl-c): Do not restart org-mode, just get the options
6068         and compute the regular expressions, and update font-lock.
6069         (org-property-re): Allow a dash in property names.
6071         * org-archive.el (org-extract-archive-file): Insert the file name
6072         without the path into the format, to allow the location format to
6073         contain a subdirectory.
6075         * org-agenda.el (org-agenda-post-command-hook): If point is at end
6076         of buffer, and the `org-agenda-type' property undefined, use the
6077         value from the character before.
6079         * org.el (org-add-planning-info): Don't let indentation for
6080         would-be timestamp become extra whitespace at the end of headline.
6082 2008-05-07  Carsten Dominik  <dominik@science.uva.nl>
6084         * org.el (org-remove-double-quotes, org-file-contents): New
6085         functions.
6087         * org-exp.el (org-infile-export-plist): Also parse the
6088         contents of #+SETUPFILE files, recursively.
6090         * org.el (org-set-regexps-and-options): Also parse the
6091         contents of #+SETUPFILE files, recursively.
6093         * org-exp.el (org-export-handle-include-files): New function.
6094         (org-export-preprocess-string): Call
6095         `org-export-handle-include-files'.
6097         * org.el (org-delete-property-globally)
6098         (org-delete-property, org-set-property): Ignore case during
6099         completion.
6100         (org-set-property): Use `org-completing-read' instead of
6101         `completing-read'.
6103         * org.el (org-complete-expand-structure-template): New,
6104         experimental function.
6105         (org-structure-template-alist): New, experimental option.
6106         (org-complete): Call `org-complete-expand-structure-template'.
6108 2008-05-06  Bastien Guerry  <bzg@altern.org>
6110         * org-export-latex.el (org-export-latex-preprocess): Added
6111         support for blockquotes.
6113 2008-05-05  Carsten Dominik  <dominik@science.uva.nl>
6115         * org.el (org-read-date-analyze): Catch the case where only a
6116         weekday is given.
6118 2008-05-04  Carsten Dominik  <dominik@science.uva.nl>
6120         * org.el (org-set-font-lock-defaults): Make the description
6121         tag bold.
6123         * org-exp.el (org-export-as-html, org-close-li): Implement
6124         description lists.
6126 2008-05-04  Jason Riedy  <jason@acm.org>
6128         * org-table.el (*orgtbl-default-fmt*): New variable.
6129         (orgtbl-format-line): Use the value of *orgtbl-default-fmt*
6130         when there is no other fmt available.
6132         (orgtbl-to-generic): Allow an explicitly nil :tstart or
6133         :tend to suppress the appropriate string.
6135         (orgtbl-to-orgtbl): New function for translating to another orgtbl
6136         table.
6138 2008-05-02  Carsten Dominik  <dominik@science.uva.nl>
6140         * org.el (org-read-date-analyze): "." as an alias for "+0" in
6141         read date.
6143         * org-clock.el (org-clock-save-markers-for-cut-and-paste):
6144         New function.
6146         * org-agenda.el (org-agenda-save-markers-for-cut-and-paste):
6147         New function.
6149 2008-05-01  Carsten Dominik  <dominik@science.uva.nl>
6151         * org-clock.el (org-clock-find-position): Don't include notes
6152         into clock drawer.
6154         * org-archive.el (org-archive-subtree): No longer remove an
6155         extra line after cutting the subtree.  `org-cut-subtree' already
6156         takes care of this.
6158         * org-remember.el (org-remember-handler): Only kill the target
6159         buffer if it does not contain the running clock.
6161         * org.el (org-markers-to-move): New variable.
6162         (org-save-markers-in-region, org-check-and-save-marker)
6163         (org-reinstall-markers-in-region): New function.
6164         (org-move-subtree-down, org-copy-subtree): Remember relative
6165         marker positions before cutting.
6166         (org-move-subtree-down, org-paste-subtree): Restore relative
6167         marker positions after pasting.
6169         * org-remember.el (org-remember-clock-out-on-exit): New option.
6170         (org-remember-finalize): Clock out only if the setting in
6171         `org-remember-clock-out-on-exit' requires it.
6172         (org-remember-handler): Do the cleanup in the buffer, to make sure
6173         that the clock marker remains in tact.
6175 2008-04-29  Carsten Dominik  <dominik@science.uva.nl>
6177         * org-clock.el (org-clock-goto): Widen buffer if necessary.
6178         (org-clock-in): Make sure that also tasks outside the narrowed
6179         region will be clocked in correctly.
6180         (org-clock-insert-selection-line): Widen the buffer so that we can
6181         find the correct task heading.
6183         * org.el (org-base-buffer): New function.
6185         * org-exp.el (org-icalendar-cleanup-string): Make sure ',"
6186         and ";" are escaped.
6187         (org-print-icalendar-entries): Also apply
6188         `org-icalendar-cleanup-string' to the headline, not only to the
6189         summary property.
6191 2008-04-28  Carsten Dominik  <dominik@science.uva.nl>
6193         * org-exp.el (org-export-preprocess-hook): New hook.
6194         (org-export-preprocess-string): Call
6195         `org-export-preprocess-hook'.
6197         * org.el (org-font-lock-hook): New variable.
6198         (org-font-lock-hook): New function.
6199         (org-set-font-lock-defaults): Call `org-font-lock-hook'.
6201 ;; Local Variables:
6202 ;; coding: utf-8
6203 ;; add-log-time-zone-rule: t
6204 ;; End:
6206     Copyright (C) 2008  Free Software Foundation, Inc.
6208   This file is part of GNU Emacs.
6210   GNU Emacs is free software: you can redistribute it and/or modify
6211   it under the terms of the GNU General Public License as published by
6212   the Free Software Foundation, either version 3 of the License, or
6213   (at your option) any later version.
6215   GNU Emacs is distributed in the hope that it will be useful,
6216   but WITHOUT ANY WARRANTY; without even the implied warranty of
6217   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6218   GNU General Public License for more details.
6220   You should have received a copy of the GNU General Public License
6221   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
6223 ;; arch-tag: a9bdcf06-7c2d-4b5a-bf7a-c5e7b706f67c