Describe new modules in various places.

This commit is contained in:
Carsten Dominik 2008-11-19 17:33:23 +01:00
parent 64254a637d
commit 06ec0e46ad
4 changed files with 13 additions and 6 deletions

View File

@ -16,16 +16,18 @@ org-bookmark.el --- Links to bookmarks
org-depend.el --- TODO dependencies for Org-mode
org-elisp-symbol.el --- Org links to emacs-lisp symbols
org-eval.el --- The <lisp> tag, adapted from Muse
org-expiry.el --- expiry mechanism for Org entries
org-eval-light.el --- Evaluate List code on demand
org-expiry.el --- Expiry mechanism for Org entries
org-exp-blocks --- Pre-process blocks when exporting org files
org-indent.el --- Dynamic outline indentation (does not really work)
org-interactive-query.el --- Interactive modification of tags query
org-mairix.el --- Hook mairix search into Org for different MUAs
org-man.el --- Support for links to manpages in Org-mode
org-mtags.el --- Support for some Muse-like tags in Org-mode
org-panel.el --- Simple routines for us with bad memory
org-registry.el --- a registry for Org links
org-registry.el --- A registry for Org links
org2rem.el --- Convert org appointments into reminders
org-screen.el --- visit screen sessions through Org-mode links
org-screen.el --- Visit screen sessions through Org-mode links
org-toc.el --- Table of contents for Org-mode buffer
orgtbl-sqlinsert.el --- Convert Org-mode tables to SQL insertions.

View File

@ -8982,6 +8982,10 @@ distribution, others are available somewhere on the web.
to include text in a document that is the result of evaluating some
code. Other scripting languages like @code{perl} can be supported with
this package as well.
@item @file{org-eval-light.el} by @i{Eric Schulte}
User-controlled evaluation of Lisp code in an Org buffer.
@item @file{org-exp-blocks.el} by @i{Eric Schulte}
Preprocess user-defined blocks for export.
@item @file{org-expiry.el} by @i{Bastien Guerry}
Expiry mechanism for Org entries.
@item @file{org-indent.el} by @i{Carsten Dominik}
@ -9003,8 +9007,6 @@ distribution, others are available somewhere on the web.
to publish the same file using either org-publish or Muse.
@item @file{org-panel.el} by @i{Lennard Borgman}
Simplified and display-aided access to some Org commands.
@c @item @file{org-plot.el} by @i{Eric Schulte}
@c Plotting Org tables with Gnuplot.
@item @file{org-registry.el} by @i{Bastien Guerry}
A registry for Org links, to find out from where links point to a given
file or location.
@ -9020,7 +9022,6 @@ distribution, others are available somewhere on the web.
be found on the Worg pages.
@end table
@node Other extensions, , Extensions in the contrib directory, Extensions
@section Other extensions

View File

@ -4,6 +4,8 @@
(org-remember-kill): New command.
(org-remember-finish-immediately): Call `org-remember-finalize'
directly.
(org-remember-finalize): Make `org-remember-finalize' an interactive
function.
2008-11-18 Carsten Dominik <carsten.dominik@gmail.com>

View File

@ -180,7 +180,9 @@ to add the symbol `xyz', and the package must have a call to
(const :tag "C depend: TODO dependencies for Org-mode" org-depend)
(const :tag "C elisp-symbol: Org links to emacs-lisp symbols" org-elisp-symbol)
(const :tag "C eval: Include command output as text" org-eval)
(const :tag "C eval-light: Evaluate code on demand" org-eval-light)
(const :tag "C expiry: Expiry mechanism for Org entries" org-expiry)
(const :tag "C exp-blocks: Pre-process blocks for export" org-exp-blocks)
(const :tag "C id: Global id's for identifying entries" org-id)
(const :tag "C interactive-query: Interactive modification of tags query" org-interactive-query)
(const :tag "C mairix: Hook mairix search into Org for different MUAs" org-mairix)