Improve documentation for MobileOrg

This commit is contained in:
Carsten Dominik 2009-09-19 18:27:34 +01:00
parent 32b1aebb37
commit d5f8d47192
2 changed files with 14 additions and 12 deletions

View file

@ -11725,9 +11725,11 @@ and operates on the pointers to flagged entries. Here is how it works:
@enumerate @enumerate
@item @item
Org moves all entries found in @file{mobileorg.org} and appends them to Org moves all entries found in
the file pointed to by the variable @code{org-mobile-inbox-for-pull}. Each @file{mobileorg.org}@footnote{@file{mobileorg.org} will be empty after this
captured entry will be a top-level entry in the inbox file. operation.} and appends them to the file pointed to by the variable
@code{org-mobile-inbox-for-pull}. Each captured entry will be a top-level
entry in the inbox file.
@item @item
After moving the entries, Org will attempt to act on the flags. Some flags After moving the entries, Org will attempt to act on the flags. Some flags
specify simple operations that will be executed directly and without user specify simple operations that will be executed directly and without user

View file

@ -94,23 +94,23 @@ they may accumulate.")
(defvar org-mobile-post-push-hook nil (defvar org-mobile-post-push-hook nil
"Hook run after running `org-mobile-push'. "Hook run after running `org-mobile-push'.
If Emacs does not have direct write access to the WebDAV directory used If Emacs does not have direct write access to the WebDAV directory used
by the mobile device, this hook could be used to copy all files from the by the mobile device, this hook should be used to copy all files from the
local `org-mobile-directory' to the WebDAV directory, for example using local staging directory `org-mobile-directory' to the WebDAV directory,
`rsync' or `scp'.") for example using `rsync' or `scp'.")
(defvar org-mobile-pre-pull-hook nil (defvar org-mobile-pre-pull-hook nil
"Hook run before executing `org-mobile-pull'. "Hook run before executing `org-mobile-pull'.
If Emacs does not have direct write access to the WebDAV directory used If Emacs does not have direct write access to the WebDAV directory used
by the mobile device, this hook could be used to copy all files from the by the mobile device, this hook should be used to copy the capture file
WebDAV location to the local staging directory `org-mobile-directory'.") `mobileorg.org' from the WebDAV location to the local staging
directory `org-mobile-directory'.")
(defvar org-mobile-post-pull-hook nil (defvar org-mobile-post-pull-hook nil
"Hook run after running `org-mobile-pull'. "Hook run after running `org-mobile-pull'.
If Emacs does not have direct write access to the WebDAV directory used If Emacs does not have direct write access to the WebDAV directory used
by the mobile device, this hook could be used to copy all files from the by the mobile device, this hook should be used to copy the emptied
local `org-mobile-directory' to the WebDAV directory, for example using capture file `mobileorg.org' back to the WebDAV directory, for example
`rsync' or `scp'. The only file that will be changed after a pull is using `rsync' or `scp'.")
`org-mobile-capture-file'.")
(defvar org-mobile-last-flagged-files nil (defvar org-mobile-last-flagged-files nil
"List of files containing entreis flagged in the latest pull.") "List of files containing entreis flagged in the latest pull.")