aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2006-05-24 07:56:44 +0000
committerCarsten Dominik2006-05-24 07:56:44 +0000
commite8166ad7d27d9c415474bbad3b2b7a2ef9880b26 (patch)
tree2fce3218c0bd437c1dfd350207b4bd80b25307e7
parent8ef8f2e63ced6db89dfc0807d8dc536a2eb780c2 (diff)
downloademacs-e8166ad7d27d9c415474bbad3b2b7a2ef9880b26.tar.gz
emacs-e8166ad7d27d9c415474bbad3b2b7a2ef9880b26.zip
*** empty log message ***
-rw-r--r--etc/ChangeLog7
-rw-r--r--lisp/ChangeLog81
-rw-r--r--man/ChangeLog9
3 files changed, 97 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 5bd5f1099f1..28c29402c75 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,10 @@
12006-05-24 Carsten Dominik <dominik@science.uva.nl>
2
3 * orgcard.tex: (section{Motion}): Added the item navigation
4 commands.
5 (section{Publishing}): New section.
6 (section{Links}): Documented elisp and shell links.
7
12006-05-20 Rodrigo Real <rreal@ucpel.tche.br> 82006-05-20 Rodrigo Real <rreal@ucpel.tche.br>
2 9
3 * pt-br-refcard.tex: Update. 10 * pt-br-refcard.tex: Update.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fa03faa1833..dd9b5169194 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,84 @@
12006-05-24 Carsten Dominik <dominik@science.uva.nl>
2
3 * textmodes/org.el: (org-open-at-point): Use renamed variable
4 `org-confirm-shell-link-function'.
5 (org-confirm-shell-link-function): Renamed from
6 `org-confirm-shell-links'.
7 (org-export-directory): New function.
8 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
9 (org-export-icalendar): Use `org-export-directory'.
10 (org-indent-item): Keep cursor position.
11 (org-link-file-path-type): New option.
12 (org-export-as-html): Fixed bug with plain lists starting in
13 column 0.
14 (org-export-as-html): Removed deadline formatting, this happens
15 now already in `org-html-handle-time-stamps'.
16 (org-export-html-style): Deadline class removed.
17 (org-insert-labeled-timestamps-at-point): New option.
18 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
19 of `hide-sublevels 1', in case the first headline is not level 1.
20 (org-overview, org-content): New fuction.
21 (org-cycle-global-status, org-cycle-subtree-status): Make these
22 variables buffer-local.
23 (org-global-cycle): New command.
24 (org-shifttab): Use `org-global-cycle'.
25 (org-insert-heading, org-insert-item): Go to end of new
26 headline/item after creating it.
27 (org-export-visible): Renames from `org-export-copy-visible'. Now
28 creates a temporary org-file and applies an exporting command to
29 it.
30 (org-table-eval-formula): Support for lisp forms.
31 (org-agenda-todo-ignore-scheduled): New option.
32 (org-agenda-get-todos): Use new option
33 `org-agenda-todo-ignore-scheduled'.
34 (org-export-html-inline-images): New value `maybe'.
35 (org-export-as-html): Inlining of images dependent on link
36 description.
37 (org-archive-subtree): Check for end-of-buffer before trying
38 `kill-line'.
39 (org-agenda-follow-mode): New option.
40 (org-export-with-tags, org-export-with-timestamps): New options.
41 (org-html-handle-time-stamps): New function.
42 (org-keyword-time-regexp): New variable.
43 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
44 (org-agenda-todo-list-sublevels): New option.
45 (org-html-level-start): When TITLE is nil, just close all levels.
46 (org-parse-key-lines, org-parse-export-options): Functions
47 removed, replaced by `org-infile-export-plist'.
48 (org-combine-plists, org-infile-export-plist)
49 (org-default-export-plist): New functions.
50 (org-export-html-preamble, org-export-html-postamble)
51 (org-export-html-auto-preamble, org-export-html-auto-postamble):
52 New variables.
53 (org-export-publishing-directory): New option.
54 (org-export-as-html, org-export-as-ascii): Use the new property
55 lists for settings.
56 (org-export-copy-visible, org-export-as-xoxo): Respect
57 `org-export-publishing-directory'.
58 (org-link-search, org-store-link, org-file-apps): Support for
59 links to BibTeX database entries..
60 (org-get-current-options, org-set-regexps-and-options): Implement
61 logging as a startup option.
62 (org-store-link): Make sure context string is never empty
63 (org-insert-link): Use relative path when possible.
64 (org-at-item-checklet-p): New function.
65 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
66 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
67 (org-metaright, org-metaup, org-metadown, org-shiftup)
68 (org-shiftdown, org-shiftright, org-shiftleft)
69 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
70 Dispatch using `call-interactively'.
71 (org-call-with-arg): New defsubst.
72 (org-tag-alist, org-use-fast-tag-selection): New options.
73 (org-complete): Use `org-tag-alist'.
74 (org-fast-tag-insert, org-fast-tag-selection): New functions.
75 (org-next-item, org-previous-item): New commands.
76 (org-beginning-of-item, org-end-of-item): Added (interactive) to
77 make command.
78 (org-shiftup, org-shiftdown): Accommodate the item-navigation
79 commands.
80
81
12006-05-23 Thien-Thi Nguyen <ttn@gnu.org> 822006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
2 83
3 * emacs-lisp/ewoc.el (ewoc-delete): New function. 84 * emacs-lisp/ewoc.el (ewoc-delete): New function.
diff --git a/man/ChangeLog b/man/ChangeLog
index a20d1bf4356..22b7213dc4a 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,12 @@
12006-05-24 Carsten Dominik <dominik@science.uva.nl>
2
3 * org.texi: (Plain lists): Added new item navigation commands.
4 (External links): Documented elisp and info links.
5 (Custom searches): New section.
6 (Publishing): New chapter.
7 (HTML export): Include a list of supported CSS classes.
8 (Setting tags): Describe the fast-tag-setting interface.
9
12006-05-22 Reiner Steib <Reiner.Steib@gmx.de> 102006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
2 11
3 * frames.texi (Menu Bars, Tool Bars): Add index entries. 12 * frames.texi (Menu Bars, Tool Bars): Add index entries.