Browse Source

Release 5.16

Carsten Dominik 17 years ago
parent
commit
09375a90de
9 changed files with 895 additions and 607 deletions
  1. 17 1
      ChangeLog
  2. 274 217
      org
  3. 1 1
      org-install.el
  4. 535 378
      org.el
  5. BIN
      org.pdf
  6. 66 9
      org.texi
  7. BIN
      orgcard.pdf
  8. 2 1
      orgcard.tex
  9. BIN
      orgcard_letter.pdf

+ 17 - 1
ChangeLog

@@ -1,6 +1,22 @@
+2007-11-30  Carsten Dominik  <dominik@science.uva.nl>
+
+	* org.el (org-imenu-depth): New option.
+	(org-imenu-markers): New variable.
+	(org-imenu-new-marker, org-imenu-get-tree)
+	(org-speedbar-set-agenda-restriction): New functions.
+	(org-agenda-set-restriction-lock)
+	(org-agenda-remove-restriction-lock, org-agenda-maybe-redo): New
+	functions.
+	(org-agenda-restriction-lock): New face.
+	(org-agenda-restriction-lock-overlay)
+	(org-speedbar-restriction-lock-overlay): New variables.
+	(org-open-at-point): Removed obsolete way to do redirection in
+	shell links.
+	(org-imenu-and-speedbar): New customization group.
+
 2007-11-27  Carsten Dominik  <dominik@science.uva.nl>
 2007-11-27  Carsten Dominik  <dominik@science.uva.nl>
 
 
-	* norg.el (org-entry-properties): Return keyword-less time strings.
+	* org.el (org-entry-properties): Return keyword-less time strings.
 	(org-clock-heading-function): New option.
 	(org-clock-heading-function): New option.
 	(org-clock-in): Use `org-clock-heading-function'.
 	(org-clock-in): Use `org-clock-heading-function'.
 
 

+ 274 - 217
org

@@ -5,7 +5,7 @@ START-INFO-DIR-ENTRY
 * Org Mode: (org).      Outline-based notes management and organizer
 * Org Mode: (org).      Outline-based notes management and organizer
 END-INFO-DIR-ENTRY
 END-INFO-DIR-ENTRY
 
 
-   This manual is for Org-mode (version 5.15).
+   This manual is for Org-mode (version 5.16).
 
 
    Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation
    Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation
 
 
@@ -27,7 +27,7 @@ File: org,  Node: Top,  Next: Introduction,  Prev: (dir),  Up: (dir)
 Org Mode Manual
 Org Mode Manual
 ***************
 ***************
 
 
-This manual is for Org-mode (version 5.15).
+This manual is for Org-mode (version 5.16).
 
 
    Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation
    Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation
 
 
@@ -4296,10 +4296,10 @@ File: org,  Node: Agenda files,  Next: Agenda dispatcher,  Prev: Agenda views,
 10.1 Agenda files
 10.1 Agenda files
 =================
 =================
 
 
-The information to be shown is collected from all _agenda files_, the
-files listed in the variable `org-agenda-files'(1). If a directory is
-part of this list, all files with the extension `.org' in this
-directory will be part of the list.
+The information to be shown is normally collected from all _agenda
+files_, the files listed in the variable `org-agenda-files'(1). If a
+directory is part of this list, all files with the extension `.org' in
+this directory will be part of the list.
 
 
    Thus even if you only work with a single Org-mode file, this file
    Thus even if you only work with a single Org-mode file, this file
 should be put into that list(2).  You can customize `org-agenda-files',
 should be put into that list(2).  You can customize `org-agenda-files',
@@ -4320,6 +4320,36 @@ but the easiest way to maintain it is through the following commands
 The Org menu contains the current list of files and can be used to
 The Org menu contains the current list of files and can be used to
 visit any of them.
 visit any of them.
 
 
+   If you would like to focus the agenda temporarily onto a file not in
+this list, or onto just one file in the list or even only a subtree in a
+file, this can be done in different ways.  For a single agenda command,
+you may press `<' once or several times in the dispatcher (*note Agenda
+dispatcher::).  To restrict the agenda scope for an extended period,
+use the following commands:
+
+`C-c C-x <'
+     Permanently restrict the agenda to the current subtree.  When with
+     a prefix argument, or with the cursor before the first headline in
+     a file, the agenda scope is set to the entire file.  This
+     restriction remains in effect until removed with `C-c C-x >', or
+     by typing either `<' or `>' in the agenda dispatcher.  If there is
+     a window displaying an agenda view, the new restriction takes
+     effect immediately.  
+
+`C-c C-x <'
+     Remove the permanent restriction created by `C-c C-x <'.
+
+When working with `Speedbar', you can use the following commands in the
+speedbar frame:
+`< in the speedbar frame'
+     Permanently restrict the agenda to the item at the cursor in the
+     speedbar frame, either an Org-mode file or a subtree in such a
+     file.  If there is a window displaying an agenda view, the new
+     restriction takes effect immediately.  
+
+`> in the speedbar frame'
+     Lift the restriction again.
+
    ---------- Footnotes ----------
    ---------- Footnotes ----------
 
 
    (1) If the value of that variable is not a list, but a single file
    (1) If the value of that variable is not a list, but a single file
@@ -6935,9 +6965,26 @@ File: org,  Node: Cooperation,  Next: Conflicts,  Prev: Interaction,  Up: Intera
      Org-mode can make use of the cdlatex package to efficiently enter
      Org-mode can make use of the cdlatex package to efficiently enter
      LaTeX fragments into Org-mode files. See *Note CDLaTeX mode::.
      LaTeX fragments into Org-mode files. See *Note CDLaTeX mode::.
 
 
+`imenu.el' by Ake Stenhoff and Lars Lindberg
+     Imenu allows menu access to an index of items in a file.  Org-mode
+     supports imenu - all you need to do to get the index is the
+     following:
+          (add-hook 'org-mode-hook
+                    (lambda () 'imenu-add-to-menubar "Imenu"))
+     By default the index is two levels deep - you can modify the depth
+     using the option `org-imenu-depth'.
+
 `remember.el' by John Wiegley
 `remember.el' by John Wiegley
      Org mode cooperates with remember, see *Note Remember::.
      Org mode cooperates with remember, see *Note Remember::.
-     `Remember.el' is not part of Emacs, find it on the web.  
+     `Remember.el' is not part of Emacs, find it on the web.
+
+`speedbar.el' by Eric M. Ludlam
+     Speedbar is a package that creates a special frame displaying
+     files and index items in files.  Org-mode supports speedbar and
+     allows you to drill into Org-mode files directly from the
+     speedbar.  It also allows to restrict the scope of agenda commands
+     to a file or a subtree by using the command `<' in the speedbar
+     frame.  
 
 
 `table.el' by Takaaki Ota
 `table.el' by Takaaki Ota
      Complex ASCII tables with automatic line wrapping, column- and
      Complex ASCII tables with automatic line wrapping, column- and
@@ -7755,13 +7802,16 @@ if I have forgotten someone, please accept my apologies and let me know.
 
 
    * Jason F. McBrayer suggested agenda export to CSV format.
    * Jason F. McBrayer suggested agenda export to CSV format.
 
 
+   * Max Mikhanosha came up with the idea of refiling.
+
    * Dmitri Minaev sent a patch to set priority limits on a per-file
    * Dmitri Minaev sent a patch to set priority limits on a per-file
      basis.
      basis.
 
 
    * Stefan Monnier provided a patch to keep the Emacs-Lisp compiler
    * Stefan Monnier provided a patch to keep the Emacs-Lisp compiler
      happy.
      happy.
 
 
-   * Rick Moynihan proposed to allow multiple TODO sequences in a file.
+   * Rick Moynihan proposed to allow multiple TODO sequences in a file
+     and to be able to quickly restrict the agenda to a subtree.
 
 
    * Todd Neal provided patches for links to Info files and elisp forms.
    * Todd Neal provided patches for links to Info files and elisp forms.
 
 
@@ -7851,21 +7901,23 @@ Index
                                                               (line   6)
                                                               (line   6)
 * action, for publishing:                Publishing action.   (line   6)
 * action, for publishing:                Publishing action.   (line   6)
 * activation:                            Activation.          (line   6)
 * activation:                            Activation.          (line   6)
-* active region <1>:                     Structure editing.   (line  74)
+* active region <1>:                     Built-in table editor.
+                                                              (line 143)
 * active region <2>:                     HTML Export commands.
 * active region <2>:                     HTML Export commands.
                                                               (line   6)
                                                               (line   6)
-* active region <3>:                     ASCII export.        (line   9)
-* active region:                         Built-in table editor.
-                                                              (line 143)
+* active region <3>:                     Structure editing.   (line  74)
+* active region:                         ASCII export.        (line   9)
 * agenda:                                Weekly/Daily agenda. (line   6)
 * agenda:                                Weekly/Daily agenda. (line   6)
 * agenda dispatcher:                     Agenda dispatcher.   (line   6)
 * agenda dispatcher:                     Agenda dispatcher.   (line   6)
 * agenda files:                          Agenda files.        (line   6)
 * agenda files:                          Agenda files.        (line   6)
 * agenda files, removing buffers:        Agenda commands.     (line 244)
 * agenda files, removing buffers:        Agenda commands.     (line 244)
 * agenda views:                          Agenda views.        (line   6)
 * agenda views:                          Agenda views.        (line   6)
 * agenda views, custom:                  Custom agenda views. (line   6)
 * agenda views, custom:                  Custom agenda views. (line   6)
-* agenda views, exporting <1>:           Agenda commands.     (line 233)
-* agenda views, exporting:               Exporting Agenda Views.
+* agenda views, exporting <1>:           Exporting Agenda Views.
                                                               (line   6)
                                                               (line   6)
+* agenda views, exporting <2>:           Agenda commands.     (line 233)
+* agenda views, exporting:               Exporting Agenda Views.
+                                                              (line  12)
 * agenda views, user-defined:            Special agenda views.
 * agenda views, user-defined:            Special agenda views.
                                                               (line   6)
                                                               (line   6)
 * agenda, pipe:                          Extracting Agenda Information for other programs.
 * agenda, pipe:                          Extracting Agenda Information for other programs.
@@ -7874,9 +7926,9 @@ Index
 * align, STARTUP keyword:                In-buffer settings.  (line  72)
 * align, STARTUP keyword:                In-buffer settings.  (line  72)
 * allout.el:                             Conflicts.           (line   6)
 * allout.el:                             Conflicts.           (line   6)
 * angular brackets, around links:        External links.      (line  43)
 * angular brackets, around links:        External links.      (line  43)
-* API, for properties <1>:               Property API.        (line   6)
-* API, for properties:                   Using the property API.
+* API, for properties <1>:               Using the property API.
                                                               (line   6)
                                                               (line   6)
+* API, for properties:                   Property API.        (line   6)
 * appointment reminders:                 Weekly/Daily agenda. (line  65)
 * appointment reminders:                 Weekly/Daily agenda. (line  65)
 * appt.el:                               Weekly/Daily agenda. (line  65)
 * appt.el:                               Weekly/Daily agenda. (line  65)
 * archive locations:                     Moving subtrees.     (line  23)
 * archive locations:                     Moving subtrees.     (line  23)
@@ -7897,9 +7949,9 @@ Index
                                                               (line   6)
                                                               (line   6)
 * calc package:                          The spreadsheet.     (line   6)
 * calc package:                          The spreadsheet.     (line   6)
 * calc.el:                               Cooperation.         (line   6)
 * calc.el:                               Cooperation.         (line   6)
-* calculations, in tables <1>:           Built-in table editor.
+* calculations, in tables <1>:           The spreadsheet.     (line   6)
+* calculations, in tables:               Built-in table editor.
                                                               (line 143)
                                                               (line 143)
-* calculations, in tables:               The spreadsheet.     (line   6)
 * calendar commands, from agenda:        Agenda commands.     (line 196)
 * calendar commands, from agenda:        Agenda commands.     (line 196)
 * calendar integration:                  Weekly/Daily agenda. (line  23)
 * calendar integration:                  Weekly/Daily agenda. (line  23)
 * calendar, for selecting date:          The date/time prompt.
 * calendar, for selecting date:          The date/time prompt.
@@ -7920,15 +7972,15 @@ Index
 * completion, of file names:             Handling links.      (line  44)
 * completion, of file names:             Handling links.      (line  44)
 * completion, of link abbreviations:     Completion.          (line   6)
 * completion, of link abbreviations:     Completion.          (line   6)
 * completion, of links:                  Handling links.      (line  25)
 * completion, of links:                  Handling links.      (line  25)
-* completion, of option keywords <1>:    Per file keywords.   (line  23)
-* completion, of option keywords <2>:    Completion.          (line   6)
+* completion, of option keywords <1>:    Completion.          (line   6)
+* completion, of option keywords <2>:    Per file keywords.   (line  23)
 * completion, of option keywords:        Export options.      (line   6)
 * completion, of option keywords:        Export options.      (line   6)
 * completion, of property keys:          Completion.          (line   6)
 * completion, of property keys:          Completion.          (line   6)
-* completion, of tags <1>:               Setting tags.        (line  11)
-* completion, of tags:                   Completion.          (line   6)
+* completion, of tags <1>:               Completion.          (line   6)
+* completion, of tags:                   Setting tags.        (line  11)
 * completion, of TeX symbols:            Completion.          (line   6)
 * completion, of TeX symbols:            Completion.          (line   6)
-* completion, of TODO keywords <1>:      Completion.          (line   6)
-* completion, of TODO keywords:          Workflow states.     (line  15)
+* completion, of TODO keywords <1>:      Workflow states.     (line  15)
+* completion, of TODO keywords:          Completion.          (line   6)
 * constants, in calculations:            References.          (line  82)
 * constants, in calculations:            References.          (line  82)
 * constants.el:                          Cooperation.         (line  14)
 * constants.el:                          Cooperation.         (line  14)
 * constcgs, STARTUP keyword:             In-buffer settings.  (line  98)
 * constcgs, STARTUP keyword:             In-buffer settings.  (line  98)
@@ -7949,8 +8001,8 @@ Index
 * daily agenda:                          Weekly/Daily agenda. (line   6)
 * daily agenda:                          Weekly/Daily agenda. (line   6)
 * date format, custom:                   Custom time format.  (line   6)
 * date format, custom:                   Custom time format.  (line   6)
 * date range:                            Time stamps.         (line  40)
 * date range:                            Time stamps.         (line  40)
-* date stamps <1>:                       Dates and times.     (line   6)
-* date stamps:                           Time stamps.         (line   6)
+* date stamps <1>:                       Time stamps.         (line   6)
+* date stamps:                           Dates and times.     (line   6)
 * date, reading in minibuffer:           The date/time prompt.
 * date, reading in minibuffer:           The date/time prompt.
                                                               (line   6)
                                                               (line   6)
 * dates:                                 Dates and times.     (line   6)
 * dates:                                 Dates and times.     (line   6)
@@ -8009,8 +8061,8 @@ Index
 * folded, subtree visibility state:      Visibility cycling.  (line  10)
 * folded, subtree visibility state:      Visibility cycling.  (line  10)
 * folding, sparse trees:                 Sparse trees.        (line   6)
 * folding, sparse trees:                 Sparse trees.        (line   6)
 * following links:                       Handling links.      (line  59)
 * following links:                       Handling links.      (line  59)
-* footnote.el <1>:                       Cooperation.         (line  56)
-* footnote.el <2>:                       Footnotes.           (line   6)
+* footnote.el <1>:                       Footnotes.           (line   6)
+* footnote.el <2>:                       Cooperation.         (line  73)
 * footnote.el:                           Conflicts.           (line  35)
 * footnote.el:                           Conflicts.           (line  35)
 * footnotes <1>:                         Footnotes.           (line   6)
 * footnotes <1>:                         Footnotes.           (line   6)
 * footnotes:                             Export options.      (line  26)
 * footnotes:                             Export options.      (line  26)
@@ -8059,6 +8111,7 @@ Index
                                                               (line   6)
                                                               (line   6)
 * iCalendar export:                      iCalendar export.    (line   6)
 * iCalendar export:                      iCalendar export.    (line   6)
 * images, inline in HTML:                Images.              (line   6)
 * images, inline in HTML:                Images.              (line   6)
+* imenu.el:                              Cooperation.         (line  33)
 * in-buffer settings:                    In-buffer settings.  (line   6)
 * in-buffer settings:                    In-buffer settings.  (line   6)
 * inactive timestamp:                    Time stamps.         (line  49)
 * inactive timestamp:                    Time stamps.         (line  49)
 * index, of published pages:             Project page index.  (line   6)
 * index, of published pages:             Project page index.  (line   6)
@@ -8180,9 +8233,9 @@ Index
 * promotion, of subtrees:                Structure editing.   (line   6)
 * promotion, of subtrees:                Structure editing.   (line   6)
 * properties:                            Properties and columns.
 * properties:                            Properties and columns.
                                                               (line   6)
                                                               (line   6)
-* properties, API <1>:                   Property API.        (line   6)
-* properties, API:                       Using the property API.
+* properties, API <1>:                   Using the property API.
                                                               (line   6)
                                                               (line   6)
+* properties, API:                       Property API.        (line   6)
 * properties, column view:               Defining columns.    (line   6)
 * properties, column view:               Defining columns.    (line   6)
 * properties, inheritance:               Property searches.   (line   6)
 * properties, inheritance:               Property searches.   (line   6)
 * properties, searching:                 Property searches.   (line   6)
 * properties, searching:                 Property searches.   (line   6)
@@ -8202,15 +8255,15 @@ Index
 * references, to fields:                 References.          (line  15)
 * references, to fields:                 References.          (line  15)
 * references, to ranges:                 References.          (line  60)
 * references, to ranges:                 References.          (line  60)
 * refiling notes:                        Refiling notes.      (line   6)
 * refiling notes:                        Refiling notes.      (line   6)
-* region, active <1>:                    Built-in table editor.
-                                                              (line 143)
-* region, active <2>:                    Structure editing.   (line  74)
-* region, active <3>:                    HTML Export commands.
+* region, active <1>:                    HTML Export commands.
                                                               (line   6)
                                                               (line   6)
-* region, active:                        ASCII export.        (line   9)
+* region, active <2>:                    Built-in table editor.
+                                                              (line 143)
+* region, active <3>:                    ASCII export.        (line   9)
+* region, active:                        Structure editing.   (line  74)
 * regular expressions, with tags search: Tag searches.        (line  64)
 * regular expressions, with tags search: Tag searches.        (line  64)
 * remember.el <1>:                       Remember.            (line   6)
 * remember.el <1>:                       Remember.            (line   6)
-* remember.el:                           Cooperation.         (line  33)
+* remember.el:                           Cooperation.         (line  42)
 * remote editing, from agenda:           Agenda commands.     (line 107)
 * remote editing, from agenda:           Agenda commands.     (line 107)
 * remote editing, undo:                  Agenda commands.     (line 108)
 * remote editing, undo:                  Agenda commands.     (line 108)
 * richer text:                           Enhancing text.      (line   6)
 * richer text:                           Enhancing text.      (line   6)
@@ -8241,6 +8294,7 @@ Index
 * sparse trees:                          Sparse trees.        (line   6)
 * sparse trees:                          Sparse trees.        (line   6)
 * special keywords:                      In-buffer settings.  (line   6)
 * special keywords:                      In-buffer settings.  (line   6)
 * special strings:                       Export options.      (line  26)
 * special strings:                       Export options.      (line  26)
+* speedbar.el:                           Cooperation.         (line  46)
 * spreadsheet capabilities:              The spreadsheet.     (line   6)
 * spreadsheet capabilities:              The spreadsheet.     (line   6)
 * statistics, for checkboxes:            Checkboxes.          (line  23)
 * statistics, for checkboxes:            Checkboxes.          (line  23)
 * storing links:                         Handling links.      (line   9)
 * storing links:                         Handling links.      (line   9)
@@ -8262,11 +8316,11 @@ Index
                                                               (line   6)
                                                               (line   6)
 * table editor, built-in:                Built-in table editor.
 * table editor, built-in:                Built-in table editor.
                                                               (line   6)
                                                               (line   6)
-* table editor, table.el:                Cooperation.         (line  37)
+* table editor, table.el:                Cooperation.         (line  54)
 * table of contents:                     Export options.      (line  26)
 * table of contents:                     Export options.      (line  26)
-* table.el:                              Cooperation.         (line  34)
-* tables <1>:                            Export options.      (line  26)
-* tables:                                Tables.              (line   6)
+* table.el:                              Cooperation.         (line  51)
+* tables <1>:                            Tables.              (line   6)
+* tables:                                Export options.      (line  26)
 * tables, export:                        Enhancing text.      (line  26)
 * tables, export:                        Enhancing text.      (line  26)
 * tables, in other modes:                Tables in arbitrary syntax.
 * tables, in other modes:                Tables in arbitrary syntax.
                                                               (line   6)
                                                               (line   6)
@@ -8317,12 +8371,12 @@ Index
 * TODO list, global:                     Global TODO list.    (line   6)
 * TODO list, global:                     Global TODO list.    (line   6)
 * TODO types:                            TODO types.          (line   6)
 * TODO types:                            TODO types.          (line   6)
 * TODO workflow:                         Workflow states.     (line   6)
 * TODO workflow:                         Workflow states.     (line   6)
-* transient-mark-mode <1>:               ASCII export.        (line   9)
-* transient-mark-mode <2>:               Built-in table editor.
+* transient-mark-mode <1>:               Built-in table editor.
                                                               (line 143)
                                                               (line 143)
-* transient-mark-mode <3>:               Structure editing.   (line  74)
-* transient-mark-mode:                   HTML Export commands.
+* transient-mark-mode <2>:               HTML Export commands.
                                                               (line   6)
                                                               (line   6)
+* transient-mark-mode <3>:               Structure editing.   (line  74)
+* transient-mark-mode:                   ASCII export.        (line   9)
 * translator function:                   Translator functions.
 * translator function:                   Translator functions.
                                                               (line   6)
                                                               (line   6)
 * trees, sparse:                         Sparse trees.        (line   6)
 * trees, sparse:                         Sparse trees.        (line   6)
@@ -8367,45 +8421,46 @@ Key Index
 * ::                                     Agenda commands.     (line 130)
 * ::                                     Agenda commands.     (line 130)
 * < <1>:                                 The date/time prompt.
 * < <1>:                                 The date/time prompt.
                                                               (line  59)
                                                               (line  59)
+* < <2>:                                 Agenda files.        (line  51)
 * <:                                     Using column view.   (line  57)
 * <:                                     Using column view.   (line  57)
 * <left>:                                Agenda commands.     (line  96)
 * <left>:                                Agenda commands.     (line  96)
-* <RET> <1>:                             The date/time prompt.
-                                                              (line  59)
-* <RET> <2>:                             Setting tags.        (line  76)
-* <RET> <3>:                             Agenda commands.     (line  39)
-* <RET>:                                 Built-in table editor.
+* <RET> <1>:                             Setting tags.        (line  76)
+* <RET> <2>:                             Built-in table editor.
                                                               (line  64)
                                                               (line  64)
+* <RET> <3>:                             The date/time prompt.
+                                                              (line  59)
+* <RET>:                                 Agenda commands.     (line  39)
 * <right>:                               Agenda commands.     (line  91)
 * <right>:                               Agenda commands.     (line  91)
-* <SPC> <1>:                             Agenda commands.     (line  28)
-* <SPC>:                                 Setting tags.        (line  73)
-* <TAB> <1>:                             Visibility cycling.  (line  10)
-* <TAB> <2>:                             Editing and debugging formulas.
+* <SPC> <1>:                             Setting tags.        (line  73)
+* <SPC>:                                 Agenda commands.     (line  28)
+* <TAB> <1>:                             Editing and debugging formulas.
                                                               (line  57)
                                                               (line  57)
-* <TAB> <3>:                             Built-in table editor.
+* <TAB> <2>:                             Visibility cycling.  (line  10)
+* <TAB> <3>:                             Plain lists.         (line  41)
+* <TAB> <4>:                             Agenda commands.     (line  33)
+* <TAB> <5>:                             Setting tags.        (line  68)
+* <TAB> <6>:                             Built-in table editor.
                                                               (line  57)
                                                               (line  57)
-* <TAB> <4>:                             Plain lists.         (line  41)
-* <TAB> <5>:                             Agenda commands.     (line  33)
-* <TAB> <6>:                             CDLaTeX mode.        (line  23)
-* <TAB>:                                 Setting tags.        (line  68)
-* > <1>:                                 Using column view.   (line  57)
-* > <2>:                                 Agenda commands.     (line 173)
-* >:                                     The date/time prompt.
+* <TAB>:                                 CDLaTeX mode.        (line  23)
+* > <1>:                                 Agenda commands.     (line 173)
+* > <2>:                                 The date/time prompt.
                                                               (line  59)
                                                               (line  59)
+* >:                                     Using column view.   (line  57)
 * ^:                                     CDLaTeX mode.        (line  33)
 * ^:                                     CDLaTeX mode.        (line  33)
 * _:                                     CDLaTeX mode.        (line  33)
 * _:                                     CDLaTeX mode.        (line  33)
 * `:                                     CDLaTeX mode.        (line  39)
 * `:                                     CDLaTeX mode.        (line  39)
 * a <1>:                                 Using column view.   (line  46)
 * a <1>:                                 Using column view.   (line  46)
 * a:                                     Agenda commands.     (line 134)
 * a:                                     Agenda commands.     (line 134)
 * b:                                     Agenda commands.     (line  49)
 * b:                                     Agenda commands.     (line  49)
-* C:                                     Agenda commands.     (line 216)
 * c:                                     Agenda commands.     (line 196)
 * c:                                     Agenda commands.     (line 196)
+* C:                                     Agenda commands.     (line 216)
 * C-#:                                   Advanced features.   (line   9)
 * C-#:                                   Advanced features.   (line   9)
 * C-':                                   Agenda files.        (line  21)
 * C-':                                   Agenda files.        (line  21)
 * C-,:                                   Agenda files.        (line  21)
 * C-,:                                   Agenda files.        (line  21)
 * C-<RET>:                               Structure editing.   (line  18)
 * C-<RET>:                               Structure editing.   (line  18)
 * C-_:                                   Agenda commands.     (line 108)
 * C-_:                                   Agenda commands.     (line 108)
-* C-c ! <1>:                             Footnotes.           (line  14)
-* C-c !:                                 Creating timestamps. (line  19)
+* C-c ! <1>:                             Creating timestamps. (line  19)
+* C-c !:                                 Footnotes.           (line  14)
 * C-c #:                                 Checkboxes.          (line  57)
 * C-c #:                                 Checkboxes.          (line  57)
 * C-c %:                                 Handling links.      (line  82)
 * C-c %:                                 Handling links.      (line  82)
 * C-c &:                                 Handling links.      (line  86)
 * C-c &:                                 Handling links.      (line  86)
@@ -8426,8 +8481,8 @@ Key Index
 * C-c / r:                               Sparse trees.        (line  17)
 * C-c / r:                               Sparse trees.        (line  17)
 * C-c / T:                               Tag searches.        (line   9)
 * C-c / T:                               Tag searches.        (line   9)
 * C-c / t:                               TODO basics.         (line  38)
 * C-c / t:                               TODO basics.         (line  38)
-* C-c : <1>:                             Quoted examples.     (line  15)
-* C-c ::                                 Enhancing text.      (line  34)
+* C-c : <1>:                             Enhancing text.      (line  34)
+* C-c ::                                 Quoted examples.     (line  15)
 * C-c ;:                                 Comment lines.       (line  10)
 * C-c ;:                                 Comment lines.       (line  10)
 * C-c <:                                 Creating timestamps. (line  23)
 * C-c <:                                 Creating timestamps. (line  23)
 * C-c <TAB>:                             Built-in table editor.
 * C-c <TAB>:                             Built-in table editor.
@@ -8441,9 +8496,9 @@ Key Index
 * C-c [:                                 Agenda files.        (line  15)
 * C-c [:                                 Agenda files.        (line  15)
 * C-c \:                                 Tag searches.        (line   9)
 * C-c \:                                 Tag searches.        (line   9)
 * C-c ]:                                 Agenda files.        (line  18)
 * C-c ]:                                 Agenda files.        (line  18)
-* C-c ^ <1>:                             Structure editing.   (line  61)
-* C-c ^:                                 Built-in table editor.
+* C-c ^ <1>:                             Built-in table editor.
                                                               (line  96)
                                                               (line  96)
+* C-c ^:                                 Structure editing.   (line  61)
 * C-c `:                                 Built-in table editor.
 * C-c `:                                 Built-in table editor.
                                                               (line 159)
                                                               (line 159)
 * C-c a !:                               Stuck projects.      (line  14)
 * C-c a !:                               Stuck projects.      (line  14)
@@ -8453,10 +8508,10 @@ Key Index
 * C-c a e:                               Exporting Agenda Views.
 * C-c a e:                               Exporting Agenda Views.
                                                               (line  57)
                                                               (line  57)
 * C-c a L:                               Timeline.            (line  10)
 * C-c a L:                               Timeline.            (line  10)
-* C-c a M <1>:                           Tag searches.        (line  17)
-* C-c a M:                               Matching tags and properties.
+* C-c a m:                               Tag searches.        (line  13)
+* C-c a M <1>:                           Matching tags and properties.
                                                               (line  15)
                                                               (line  15)
-* C-c a m <1>:                           Tag searches.        (line  13)
+* C-c a M:                               Tag searches.        (line  17)
 * C-c a m:                               Matching tags and properties.
 * C-c a m:                               Matching tags and properties.
                                                               (line  10)
                                                               (line  10)
 * C-c a t <1>:                           Global TODO list.    (line   9)
 * C-c a t <1>:                           Global TODO list.    (line   9)
@@ -8464,29 +8519,30 @@ Key Index
 * C-c a T:                               Global TODO list.    (line  14)
 * C-c a T:                               Global TODO list.    (line  14)
 * C-c C-a:                               Visibility cycling.  (line  33)
 * C-c C-a:                               Visibility cycling.  (line  33)
 * C-c C-b:                               Motion.              (line  15)
 * C-c C-b:                               Motion.              (line  15)
-* C-c C-c <1>:                           TODO basics.         (line  30)
-* C-c C-c <2>:                           Cooperation.         (line  37)
-* C-c C-c <3>:                           The very busy C-c C-c key.
-                                                              (line   6)
+* C-c C-c <1>:                           Built-in table editor.
+                                                              (line  56)
+* C-c C-c <2>:                           Property syntax.     (line  58)
+* C-c C-c <3>:                           Plain lists.         (line  81)
 * C-c C-c <4>:                           Processing LaTeX fragments.
 * C-c C-c <4>:                           Processing LaTeX fragments.
                                                               (line  15)
                                                               (line  15)
-* C-c C-c <5>:                           Plain lists.         (line  81)
-* C-c C-c <6>:                           Built-in table editor.
-                                                              (line  56)
-* C-c C-c <7>:                           Clocking work time.  (line  89)
-* C-c C-c <8>:                           Editing and debugging formulas.
+* C-c C-c <5>:                           Cooperation.         (line  63)
+* C-c C-c <6>:                           Checkboxes.          (line  37)
+* C-c C-c <7>:                           Cooperation.         (line  54)
+* C-c C-c <8>:                           The very busy C-c C-c key.
+                                                              (line   6)
+* C-c C-c <9>:                           TODO basics.         (line  30)
+* C-c C-c <10>:                          Setting tags.        (line  10)
+* C-c C-c <11>:                          Editing and debugging formulas.
                                                               (line  46)
                                                               (line  46)
-* C-c C-c <9>:                           Capturing Column View.
+* C-c C-c <12>:                          Capturing Column View.
                                                               (line  39)
                                                               (line  39)
-* C-c C-c <10>:                          Using column view.   (line  39)
-* C-c C-c <11>:                          Editing and debugging formulas.
+* C-c C-c <13>:                          Clocking work time.  (line  89)
+* C-c C-c <14>:                          Using column view.   (line  39)
+* C-c C-c:                               Editing and debugging formulas.
                                                               (line  90)
                                                               (line  90)
-* C-c C-c <12>:                          Property syntax.     (line  58)
-* C-c C-c <13>:                          Setting tags.        (line  10)
-* C-c C-c:                               Checkboxes.          (line  37)
-* C-c C-d <1>:                           Inserting deadline/schedule.
+* C-c C-d <1>:                           Agenda commands.     (line 158)
+* C-c C-d:                               Inserting deadline/schedule.
                                                               (line   9)
                                                               (line   9)
-* C-c C-d:                               Agenda commands.     (line 158)
 * C-c C-e:                               Exporting.           (line  20)
 * C-c C-e:                               Exporting.           (line  20)
 * C-c C-e a:                             ASCII export.        (line   9)
 * C-c C-e a:                             ASCII export.        (line   9)
 * C-c C-e b:                             HTML Export commands.
 * C-c C-e b:                             HTML Export commands.
@@ -8496,12 +8552,12 @@ Key Index
                                                               (line   6)
                                                               (line   6)
 * C-c C-e H:                             HTML Export commands.
 * C-c C-e H:                             HTML Export commands.
                                                               (line  16)
                                                               (line  16)
-* C-c C-e i:                             iCalendar export.    (line  14)
 * C-c C-e I:                             iCalendar export.    (line  16)
 * C-c C-e I:                             iCalendar export.    (line  16)
-* C-c C-e L:                             LaTeX export commands.
-                                                              (line   7)
+* C-c C-e i:                             iCalendar export.    (line  14)
 * C-c C-e l:                             LaTeX export commands.
 * C-c C-e l:                             LaTeX export commands.
                                                               (line   6)
                                                               (line   6)
+* C-c C-e L:                             LaTeX export commands.
+                                                              (line   7)
 * C-c C-e R:                             HTML Export commands.
 * C-c C-e R:                             HTML Export commands.
                                                               (line  19)
                                                               (line  19)
 * C-c C-e t:                             Export options.      (line  13)
 * C-c C-e t:                             Export options.      (line  13)
@@ -8510,14 +8566,14 @@ Key Index
 * C-c C-e v a:                           ASCII export.        (line  16)
 * C-c C-e v a:                           ASCII export.        (line  16)
 * C-c C-e v b:                           HTML Export commands.
 * C-c C-e v b:                           HTML Export commands.
                                                               (line  24)
                                                               (line  24)
-* C-c C-e v H:                           HTML Export commands.
-                                                              (line  24)
 * C-c C-e v h:                           HTML Export commands.
 * C-c C-e v h:                           HTML Export commands.
                                                               (line  24)
                                                               (line  24)
-* C-c C-e v l:                           LaTeX export commands.
-                                                              (line  10)
+* C-c C-e v H:                           HTML Export commands.
+                                                              (line  24)
 * C-c C-e v L:                           LaTeX export commands.
 * C-c C-e v L:                           LaTeX export commands.
                                                               (line  10)
                                                               (line  10)
+* C-c C-e v l:                           LaTeX export commands.
+                                                              (line  10)
 * C-c C-e v R:                           HTML Export commands.
 * C-c C-e v R:                           HTML Export commands.
                                                               (line  24)
                                                               (line  24)
 * C-c C-e x:                             XOXO export.         (line  10)
 * C-c C-e x:                             XOXO export.         (line  10)
@@ -8535,20 +8591,21 @@ Key Index
 * C-c C-r <1>:                           Visibility cycling.  (line  34)
 * C-c C-r <1>:                           Visibility cycling.  (line  34)
 * C-c C-r:                               Editing and debugging formulas.
 * C-c C-r:                               Editing and debugging formulas.
                                                               (line  53)
                                                               (line  53)
-* C-c C-s <1>:                           Inserting deadline/schedule.
+* C-c C-s <1>:                           Agenda commands.     (line 155)
+* C-c C-s:                               Inserting deadline/schedule.
                                                               (line  20)
                                                               (line  20)
-* C-c C-s:                               Agenda commands.     (line 155)
-* C-c C-t <1>:                           Clocking work time.  (line  30)
-* C-c C-t:                               TODO basics.         (line  13)
+* C-c C-t <1>:                           TODO basics.         (line  13)
+* C-c C-t:                               Clocking work time.  (line  30)
 * C-c C-u:                               Motion.              (line  18)
 * C-c C-u:                               Motion.              (line  18)
 * C-c C-v:                               TODO basics.         (line  38)
 * C-c C-v:                               TODO basics.         (line  38)
-* C-c C-w <1>:                           Structure editing.   (line  58)
-* C-c C-w:                               Refiling notes.      (line  13)
+* C-c C-w <1>:                           Refiling notes.      (line  13)
+* C-c C-w:                               Structure editing.   (line  58)
+* C-c C-x <:                             Agenda files.        (line  37)
 * C-c C-x b:                             Visibility cycling.  (line  41)
 * C-c C-x b:                             Visibility cycling.  (line  41)
 * C-c C-x C-a:                           ARCHIVE tag.         (line  28)
 * C-c C-x C-a:                           ARCHIVE tag.         (line  28)
 * C-c C-x C-b:                           Checkboxes.          (line  39)
 * C-c C-x C-b:                           Checkboxes.          (line  39)
-* C-c C-x C-c <1>:                       Agenda commands.     (line 223)
-* C-c C-x C-c:                           Using column view.   (line   9)
+* C-c C-x C-c <1>:                       Using column view.   (line   9)
+* C-c C-x C-c:                           Agenda commands.     (line 223)
 * C-c C-x C-d:                           Clocking work time.  (line  42)
 * C-c C-x C-d:                           Clocking work time.  (line  42)
 * C-c C-x C-i:                           Clocking work time.  (line  12)
 * C-c C-x C-i:                           Clocking work time.  (line  12)
 * C-c C-x C-j:                           Clocking work time.  (line  38)
 * C-c C-x C-j:                           Clocking work time.  (line  38)
@@ -8561,25 +8618,25 @@ Key Index
 * C-c C-x C-r:                           Clocking work time.  (line  50)
 * C-c C-x C-r:                           Clocking work time.  (line  50)
 * C-c C-x C-s:                           Moving subtrees.     (line  10)
 * C-c C-x C-s:                           Moving subtrees.     (line  10)
 * C-c C-x C-t:                           Custom time format.  (line  12)
 * C-c C-x C-t:                           Custom time format.  (line  12)
-* C-c C-x C-u <1>:                       Clocking work time.  (line  91)
-* C-c C-x C-u <2>:                       Dynamic blocks.      (line  21)
-* C-c C-x C-u:                           Capturing Column View.
+* C-c C-x C-u <1>:                       Capturing Column View.
                                                               (line  42)
                                                               (line  42)
-* C-c C-x C-w <1>:                       Built-in table editor.
+* C-c C-x C-u <2>:                       Clocking work time.  (line  91)
+* C-c C-x C-u:                           Dynamic blocks.      (line  21)
+* C-c C-x C-w <1>:                       Structure editing.   (line  43)
+* C-c C-x C-w:                           Built-in table editor.
                                                               (line 116)
                                                               (line 116)
-* C-c C-x C-w:                           Structure editing.   (line  43)
 * C-c C-x C-x:                           Clocking work time.  (line  34)
 * C-c C-x C-x:                           Clocking work time.  (line  34)
 * C-c C-x C-y <1>:                       Built-in table editor.
 * C-c C-x C-y <1>:                       Built-in table editor.
                                                               (line 120)
                                                               (line 120)
 * C-c C-x C-y:                           Structure editing.   (line  52)
 * C-c C-x C-y:                           Structure editing.   (line  52)
-* C-c C-x M-w <1>:                       Structure editing.   (line  48)
-* C-c C-x M-w:                           Built-in table editor.
+* C-c C-x M-w <1>:                       Built-in table editor.
                                                               (line 113)
                                                               (line 113)
+* C-c C-x M-w:                           Structure editing.   (line  48)
 * C-c C-x p:                             Property syntax.     (line  49)
 * C-c C-x p:                             Property syntax.     (line  49)
 * C-c C-x r:                             Capturing Column View.
 * C-c C-x r:                             Capturing Column View.
                                                               (line  37)
                                                               (line  37)
-* C-c C-y <1>:                           Creating timestamps. (line  48)
-* C-c C-y:                               Clocking work time.  (line  25)
+* C-c C-y <1>:                           Clocking work time.  (line  25)
+* C-c C-y:                               Creating timestamps. (line  48)
 * C-c l:                                 Handling links.      (line   9)
 * C-c l:                                 Handling links.      (line   9)
 * C-c { <1>:                             CDLaTeX mode.        (line  21)
 * C-c { <1>:                             CDLaTeX mode.        (line  21)
 * C-c {:                                 Editing and debugging formulas.
 * C-c {:                                 Editing and debugging formulas.
@@ -8588,7 +8645,7 @@ Key Index
                                                               (line  40)
                                                               (line  40)
 * C-c }:                                 Editing and debugging formulas.
 * C-c }:                                 Editing and debugging formulas.
                                                               (line  79)
                                                               (line  79)
-* C-c ~:                                 Cooperation.         (line  48)
+* C-c ~:                                 Cooperation.         (line  65)
 * C-k:                                   Agenda commands.     (line 116)
 * C-k:                                   Agenda commands.     (line 116)
 * C-S-<left>:                            Multiple sets in one file.
 * C-S-<left>:                            Multiple sets in one file.
                                                               (line  25)
                                                               (line  25)
@@ -8889,109 +8946,109 @@ Ref: Storing notes-Footnote-1173883
 Node: Refiling notes173985
 Node: Refiling notes173985
 Node: Agenda views175250
 Node: Agenda views175250
 Node: Agenda files177201
 Node: Agenda files177201
-Ref: Agenda files-Footnote-1178289
-Ref: Agenda files-Footnote-2178438
-Node: Agenda dispatcher178631
-Ref: Agenda dispatcher-Footnote-1180685
-Ref: Agenda dispatcher-Footnote-2180779
-Node: Built-in agenda views180873
-Node: Weekly/Daily agenda181455
-Ref: Weekly/Daily agenda-Footnote-1184753
-Node: Global TODO list184957
-Node: Matching tags and properties187237
-Node: Timeline188328
-Node: Stuck projects189002
-Node: Presentation and sorting190855
-Node: Categories191648
-Ref: Categories-Footnote-1192359
-Node: Time-of-day specifications192796
-Node: Sorting of agenda items194769
-Node: Agenda commands196053
-Node: Custom agenda views203516
-Node: Storing searches204237
-Ref: Storing searches-Footnote-1206771
-Node: Block agenda206888
-Node: Setting Options208120
-Node: Exporting Agenda Views210861
-Ref: Exporting Agenda Views-Footnote-1215218
-Ref: Exporting Agenda Views-Footnote-2215275
-Node: Extracting Agenda Information for other programs215461
-Node: Embedded LaTeX219589
-Ref: Embedded LaTeX-Footnote-1220683
-Node: Math symbols220873
-Node: Subscripts and Superscripts221640
-Node: LaTeX fragments222486
-Ref: LaTeX fragments-Footnote-1224719
-Ref: LaTeX fragments-Footnote-2224980
-Node: Processing LaTeX fragments225114
-Node: CDLaTeX mode226062
-Ref: CDLaTeX mode-Footnote-1228548
-Node: Exporting228696
-Node: ASCII export230163
-Node: HTML export231664
-Node: HTML Export commands232290
-Node: Quoting HTML tags234077
-Node: Links234712
-Node: Images235409
-Ref: Images-Footnote-1236280
-Node: CSS support236341
-Ref: CSS support-Footnote-1237660
-Node: LaTeX export237773
-Node: LaTeX export commands238122
-Node: Quoting LaTeX code239284
-Node: Sectioning structure239818
-Node: XOXO export240319
-Node: iCalendar export240759
-Node: Text interpretation242228
-Node: Comment lines242883
-Node: Initial text243278
-Node: Footnotes244947
-Node: Quoted examples245739
-Node: Enhancing text246514
-Node: Export options248963
-Node: Publishing251424
-Ref: Publishing-Footnote-1252385
-Ref: Publishing-Footnote-2252529
-Node: Configuration252680
-Node: Project alist253398
-Node: Sources and destinations254464
-Node: Selecting files255194
-Node: Publishing action255942
-Node: Publishing options257276
-Node: Publishing links259782
-Node: Project page index261297
-Node: Sample configuration262075
-Node: Simple example262567
-Node: Complex example263240
-Node: Triggering publication265316
-Node: Miscellaneous266001
-Node: Completion266635
-Node: Customization268305
-Node: In-buffer settings268888
-Node: The very busy C-c C-c key274558
-Node: Clean view276413
-Node: TTY keys278990
-Node: Interaction280600
-Node: Cooperation280997
-Node: Conflicts283873
-Node: Bugs285883
-Node: Extensions and Hacking287379
-Node: Extensions288104
-Node: Adding hyperlink types290366
-Node: Tables in arbitrary syntax294028
-Node: Radio tables295420
-Node: A LaTeX example297923
-Ref: A LaTeX example-Footnote-1301601
-Ref: A LaTeX example-Footnote-2301749
-Node: Translator functions302184
-Ref: Translator functions-Footnote-1305313
-Node: Radio lists305401
-Ref: Radio lists-Footnote-1306523
-Node: Dynamic blocks306643
-Node: Special agenda views308615
-Node: Using the property API311860
-Node: History and Acknowledgments313458
-Node: Index320019
-Node: Key Index356451
+Ref: Agenda files-Footnote-1179642
+Ref: Agenda files-Footnote-2179791
+Node: Agenda dispatcher179984
+Ref: Agenda dispatcher-Footnote-1182038
+Ref: Agenda dispatcher-Footnote-2182132
+Node: Built-in agenda views182226
+Node: Weekly/Daily agenda182808
+Ref: Weekly/Daily agenda-Footnote-1186106
+Node: Global TODO list186310
+Node: Matching tags and properties188590
+Node: Timeline189681
+Node: Stuck projects190355
+Node: Presentation and sorting192208
+Node: Categories193001
+Ref: Categories-Footnote-1193712
+Node: Time-of-day specifications194149
+Node: Sorting of agenda items196122
+Node: Agenda commands197406
+Node: Custom agenda views204869
+Node: Storing searches205590
+Ref: Storing searches-Footnote-1208124
+Node: Block agenda208241
+Node: Setting Options209473
+Node: Exporting Agenda Views212214
+Ref: Exporting Agenda Views-Footnote-1216571
+Ref: Exporting Agenda Views-Footnote-2216628
+Node: Extracting Agenda Information for other programs216814
+Node: Embedded LaTeX220942
+Ref: Embedded LaTeX-Footnote-1222036
+Node: Math symbols222226
+Node: Subscripts and Superscripts222993
+Node: LaTeX fragments223839
+Ref: LaTeX fragments-Footnote-1226072
+Ref: LaTeX fragments-Footnote-2226333
+Node: Processing LaTeX fragments226467
+Node: CDLaTeX mode227415
+Ref: CDLaTeX mode-Footnote-1229901
+Node: Exporting230049
+Node: ASCII export231516
+Node: HTML export233017
+Node: HTML Export commands233643
+Node: Quoting HTML tags235430
+Node: Links236065
+Node: Images236762
+Ref: Images-Footnote-1237633
+Node: CSS support237694
+Ref: CSS support-Footnote-1239013
+Node: LaTeX export239126
+Node: LaTeX export commands239475
+Node: Quoting LaTeX code240637
+Node: Sectioning structure241171
+Node: XOXO export241672
+Node: iCalendar export242112
+Node: Text interpretation243581
+Node: Comment lines244236
+Node: Initial text244631
+Node: Footnotes246300
+Node: Quoted examples247092
+Node: Enhancing text247867
+Node: Export options250316
+Node: Publishing252777
+Ref: Publishing-Footnote-1253738
+Ref: Publishing-Footnote-2253882
+Node: Configuration254033
+Node: Project alist254751
+Node: Sources and destinations255817
+Node: Selecting files256547
+Node: Publishing action257295
+Node: Publishing options258629
+Node: Publishing links261135
+Node: Project page index262650
+Node: Sample configuration263428
+Node: Simple example263920
+Node: Complex example264593
+Node: Triggering publication266669
+Node: Miscellaneous267354
+Node: Completion267988
+Node: Customization269658
+Node: In-buffer settings270241
+Node: The very busy C-c C-c key275911
+Node: Clean view277766
+Node: TTY keys280343
+Node: Interaction281953
+Node: Cooperation282350
+Node: Conflicts286021
+Node: Bugs288031
+Node: Extensions and Hacking289527
+Node: Extensions290252
+Node: Adding hyperlink types292514
+Node: Tables in arbitrary syntax296176
+Node: Radio tables297568
+Node: A LaTeX example300071
+Ref: A LaTeX example-Footnote-1303749
+Ref: A LaTeX example-Footnote-2303897
+Node: Translator functions304332
+Ref: Translator functions-Footnote-1307461
+Node: Radio lists307549
+Ref: Radio lists-Footnote-1308671
+Node: Dynamic blocks308791
+Node: Special agenda views310763
+Node: Using the property API314008
+Node: History and Acknowledgments315606
+Node: Index322287
+Node: Key Index359003
 
 
 End Tag Table
 End Tag Table

+ 1 - 1
org-install.el

@@ -8,7 +8,7 @@
 ;;;;;;  org-remember-insinuate org-open-at-point-global org-insert-link-global
 ;;;;;;  org-remember-insinuate org-open-at-point-global org-insert-link-global
 ;;;;;;  org-store-link orgtbl-mode turn-on-orgtbl org-run-like-in-org-mode
 ;;;;;;  org-store-link orgtbl-mode turn-on-orgtbl org-run-like-in-org-mode
 ;;;;;;  turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle
 ;;;;;;  turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle
-;;;;;;  org-cycle org-mode) "org" "org.el" (18255 54993))
+;;;;;;  org-cycle org-mode) "org" "org.el" (18256 20334))
 ;;; Generated autoloads from org.el
 ;;; Generated autoloads from org.el
 
 
 (autoload (quote org-mode) "org" "\
 (autoload (quote org-mode) "org" "\

File diff suppressed because it is too large
+ 535 - 378
org.el


BIN
org.pdf


+ 66 - 9
org.texi

@@ -1,9 +1,9 @@
-\input texinfo
+]\input texinfo
 @c %**start of header
 @c %**start of header
 @setfilename ../../info/org
 @setfilename ../../info/org
 @settitle Org Mode Manual
 @settitle Org Mode Manual
 
 
-@set VERSION 5.15
+@set VERSION 5.16
 @set DATE December 2007
 @set DATE December 2007
 
 
 @dircategory Emacs
 @dircategory Emacs
@@ -4642,12 +4642,13 @@ window configuration is restored when the agenda exits:
 @cindex agenda files
 @cindex agenda files
 @cindex files for agenda
 @cindex files for agenda
 
 
-The information to be shown is collected from all @emph{agenda files},
-the files listed in the variable @code{org-agenda-files}@footnote{If the
-value of that variable is not a list, but a single file name, then the
-list of agenda files will be maintained in that external file.}. If a
-directory is part of this list, all files with the extension @file{.org}
-in this directory will be part of the list.
+The information to be shown is normally collected from all @emph{agenda
+files}, the files listed in the variable
+@code{org-agenda-files}@footnote{If the value of that variable is not a
+list, but a single file name, then the list of agenda files will be
+maintained in that external file.}. If a directory is part of this list,
+all files with the extension @file{.org} in this directory will be part
+of the list.
 
 
 Thus even if you only work with a single Org-mode file, this file should
 Thus even if you only work with a single Org-mode file, this file should
 be put into that list@footnote{When using the dispatcher, pressing
 be put into that list@footnote{When using the dispatcher, pressing
@@ -4677,6 +4678,42 @@ Cycle through agenda file list, visiting one file after the other.
 The Org menu contains the current list of files and can be used
 The Org menu contains the current list of files and can be used
 to visit any of them.
 to visit any of them.
 
 
+If you would like to focus the agenda temporarily onto a file not in
+this list, or onto just one file in the list or even only a subtree in a
+file, this can be done in different ways.  For a single agenda command,
+you may press @kbd{<} once or several times in the dispatcher
+(@pxref{Agenda dispatcher}).  To restrict the agenda scope for an
+extended period, use the following commands:
+
+@table @kbd
+@kindex C-c C-x <
+@item C-c C-x <
+Permanently restrict the agenda to the current subtree.  When with a
+prefix argument, or with the cursor before the first headline in a file,
+the agenda scope is set to the entire file.  This restriction remains in
+effect until removed with @kbd{C-c C-x >}, or by typing either @kbd{<}
+or @kbd{>} in the agenda dispatcher.  If there is a window displaying an
+agenda view, the new restriction takes effect immediately.
+@kindex C-c C-x <
+@item C-c C-x <
+Remove the permanent restriction created by @kbd{C-c C-x <}.
+@end table
+
+@noindent
+When working with @file{Speedbar}, you can use the following commands in
+the speedbar frame:
+@table @kbd
+@kindex <
+@item < @r{in the speedbar frame}
+Permanently restrict the agenda to the item at the cursor in the
+speedbar frame, either an Org-mode file or a subtree in such a file.
+If there is a window displaying an agenda view, the new restriction takes
+effect immediately.
+@kindex <
+@item > @r{in the speedbar frame}
+Lift the restriction again.
+@end table
+
 @node Agenda dispatcher, Built-in agenda views, Agenda files, Agenda views
 @node Agenda dispatcher, Built-in agenda views, Agenda files, Agenda views
 @section The agenda dispatcher
 @section The agenda dispatcher
 @cindex agenda dispatcher
 @cindex agenda dispatcher
@@ -7514,10 +7551,27 @@ setup.  See the installation instructions in the file
 @cindex @file{cdlatex.el}
 @cindex @file{cdlatex.el}
 Org-mode can make use of the cdlatex package to efficiently enter
 Org-mode can make use of the cdlatex package to efficiently enter
 La@TeX{} fragments into Org-mode files. See @ref{CDLaTeX mode}.
 La@TeX{} fragments into Org-mode files. See @ref{CDLaTeX mode}.
+@item @file{imenu.el} by Ake Stenhoff and Lars Lindberg
+@cindex @file{imenu.el}
+Imenu allows menu access to an index of items in a file.  Org-mode
+supports imenu - all you need to do to get the index is the following:
+@lisp
+(add-hook 'org-mode-hook 
+          (lambda () 'imenu-add-to-menubar "Imenu"))
+@end lisp
+By default the index is two levels deep - you can modify the depth using
+the option @code{org-imenu-depth}.
 @item @file{remember.el} by John Wiegley
 @item @file{remember.el} by John Wiegley
 @cindex @file{remember.el}
 @cindex @file{remember.el}
 Org mode cooperates with remember, see @ref{Remember}.
 Org mode cooperates with remember, see @ref{Remember}.
 @file{Remember.el} is not part of Emacs, find it on the web.
 @file{Remember.el} is not part of Emacs, find it on the web.
+@item @file{speedbar.el} by Eric M. Ludlam
+@cindex @file{speedbar.el}
+Speedbar is a package that creates a special frame displaying files and
+index items in files.  Org-mode supports speedbar and allows you to
+drill into Org-mode files directly from the speedbar.  It also allows to
+restrict the scope of agenda commands to a file or a subtree by using
+the command @kbd{<} in the speedbar frame.
 @cindex @file{table.el}
 @cindex @file{table.el}
 @item @file{table.el} by Takaaki Ota
 @item @file{table.el} by Takaaki Ota
 @kindex C-c C-c
 @kindex C-c C-c
@@ -8391,13 +8445,16 @@ provided frequent feedback and some patches.
 @item
 @item
 @i{Jason F. McBrayer} suggested agenda export to CSV format.
 @i{Jason F. McBrayer} suggested agenda export to CSV format.
 @item
 @item
+@i{Max Mikhanosha} came up with the idea of refiling.
+@item
 @i{Dmitri Minaev} sent a patch to set priority limits on a per-file
 @i{Dmitri Minaev} sent a patch to set priority limits on a per-file
 basis.
 basis.
 @item
 @item
 @i{Stefan Monnier} provided a patch to keep the Emacs-Lisp compiler
 @i{Stefan Monnier} provided a patch to keep the Emacs-Lisp compiler
 happy.
 happy.
 @item
 @item
-@i{Rick Moynihan} proposed to allow multiple TODO sequences in a file.
+@i{Rick Moynihan} proposed to allow multiple TODO sequences in a file
+and to be able to quickly restrict the agenda to a subtree.
 @item
 @item
 @i{Todd Neal} provided patches for links to Info files and elisp forms.
 @i{Todd Neal} provided patches for links to Info files and elisp forms.
 @item
 @item

BIN
orgcard.pdf


+ 2 - 1
orgcard.tex

@@ -1,5 +1,5 @@
 % Reference Card for Org Mode
 % Reference Card for Org Mode
-\def\orgversionnumber{5.15}
+\def\orgversionnumber{5.16}
 \def\versionyear{2007}          % latest update
 \def\versionyear{2007}          % latest update
 \def\year{2007}                 % latest copyright year
 \def\year{2007}                 % latest copyright year
 
 
@@ -604,6 +604,7 @@ after  ``{\tt :}'', and dictionary words elsewhere.
 \key{add/move current file to front of agenda}{C-c [}
 \key{add/move current file to front of agenda}{C-c [}
 \key{remove current file from your agenda}{C-c ]}
 \key{remove current file from your agenda}{C-c ]}
 \key{cycle through agenda file list}{C-'}
 \key{cycle through agenda file list}{C-'}
+\key{set/remove restriction lock}{C-c C-x </>}
 
 
 \key{compile agenda for the current week}{C-c a a$^1$}
 \key{compile agenda for the current week}{C-c a a$^1$}
 \key{compile global TODO list}{C-c a t$^1$}
 \key{compile global TODO list}{C-c a t$^1$}

BIN
orgcard_letter.pdf


Some files were not shown because too many files changed in this diff