From d357e9d3ac7fee0708e42e0502d174d2161f8b38 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Mon, 10 Mar 2008 22:53:59 +0100 Subject: [PATCH] Update version numbers. --- ORGWEBPAGE/faq.html | 555 ------------ ORGWEBPAGE/index.html | 403 --------- ORGWEBPAGE/index.org | 6 +- ORGWEBPAGE/index.txt | 151 ---- ORGWEBPAGE/survey.html | 2195 --------------------------------------------- ORGWEBPAGE/todo.html | 920 ------------------- ORGWEBPAGE/tutorials.html | 21 - org-publish.el | 2 +- org.el | 4 +- 9 files changed, 6 insertions(+), 4251 deletions(-) delete mode 100644 ORGWEBPAGE/faq.html delete mode 100644 ORGWEBPAGE/index.html delete mode 100644 ORGWEBPAGE/index.txt delete mode 100644 ORGWEBPAGE/survey.html delete mode 100644 ORGWEBPAGE/todo.html delete mode 100644 ORGWEBPAGE/tutorials.html diff --git a/ORGWEBPAGE/faq.html b/ORGWEBPAGE/faq.html deleted file mode 100644 index eb293c8b9..000000000 --- a/ORGWEBPAGE/faq.html +++ /dev/null @@ -1,555 +0,0 @@ - - - -Org-mode Frequently Asked Questions - - - - - - -

Org-mode Frequently Asked Questions

-

Table of Contents

- - -

1 General

- - -

1.1 Use features in other modes

- -

I would like to use editing features of org-mode in other modes, is this possible? -

-

-Not really. For tables there is orgtbl-mode which implements the -table editor as a minor mode. For other features you need to switch to -Org-mode temporarily, or prepare text in a different buffer. -

- - -

1.2 Visibility cycling in Outline-mode and Outline-minor-mode

- - -

-Can I get the visibility-cycling features in outline-mode and outline-minor-mode? -

-

-Yes, these functions are written in a way that they are independent of -the outline setup. The following setup provides standard Org-mode -functionality in outline-mode on TAB and S-TAB. For -outline-minor-mode, we use C-TAB instead of TAB, -because TAB usually has mode-specific tasks. -

-

-

-(add-hook 'outline-minor-mode-hook
-  (lambda ()
-    (define-key outline-minor-mode-map [(control tab)] 'org-cycle)
-    (define-key outline-minor-mode-map [(shift tab)] 'org-global-cycle)))
-(add-hook 'outline-mode-hook
-  (lambda ()
-    (define-key outline-mode-map [(tab)] 'org-cycle)
-    (define-key outline-mode-map [(shift tab)] 'org-global-cycle)))
-
-

-

-Or check out outline-magic.el, which does this and also provides -promotion and demotion functionality. outline-magic.el is -available at Outline Magic. -

- -

2 Errors

- - -

2.1 (wrong-type-argument keymapp nil)

- -

When I try to use Org-mode, I always get the error message @code{(wrong-type-argument keymapp nil)} -

-

-This is a conflict with an outdated version of the allout.el, see -the Conflicts section in the manual -

- -

2.2 CUA mode does not work with Org-mode

- - -

-Org-mode takes over the S-cursor keys. I also want to use CUA-mode, is there a way to fix this conflict? -

-

-Yes, see the Conflicts section of the manual. -

- -

2.3 winddmove.el does not work with Org-mode.

- - -

-Org-mode takes over the S-cursor keys. I also want to use windmove.el, is there a way to fix this conflict? -

-

-Yes, see the Conflicts section of the manual. -

- -

3 Setup and Structure

- - -

3.1 Org-mode as default mode

- - -

-Org-mode seems to be a useful default mode for the various README files I have scattered through my directories. How do I turn it on for all README files? -

-

-Add the following to your .emacs file: -

-

-

- (add-to-list 'auto-mode-alist '("README$" . org-mode))
-
-

-

-You can even make it the default mode for any files with unspecified -mode using -

-

-

- (setq default-major-mode 'org-mode)
-
-

- -

3.2 Get rid of extra stars in outline

- - -

-All these stars are driving me mad, I just find the Emacs outlines unreadable. Can't you just put white space and a single star as a starter for headlines? -

-

-See the section Clean outline view in the manual. -

- -

3.3 Two windows on same Org-mode file

- -

I would like to have two windows on the same Org-mode file, but with different outline visibility. Is that possible? -

-

-You may use indirect buffers which do exactly this. See the -documentation on the command make-indirect-buffer. -

- -

3.4 Insert empty lines before new headings and plain list items

- - -

-I would like to have an empty line before each newly inserted headline, but not before each newly inserted plain-list item. -

-

-

- (setq org-blank-before-new-entry
-       '((heading . t) (plain-list-item . nil))
-
-

- - -

3.5 Amount of context in sparse trees

- - -

-*Sparse tree show the headline hierarchy above each match, and also -the headline following a match. I'd like to construct more compact -trees, with less context.* -

-

-Take a look at the variables org-show-hierarchy-above and -org-show-following-headline. -

- -

3.6 Stacking calls to org-occur

- - -

-Each call to org-occur starts again from OVERVIEW and exposes only the matches of the current call. I'd like to combine the effect of several calls. -

-

-You can construct a regular expression that matches all targets you -want. Alternatively, use a C-u prefix with the second and any -further calls to org-occur to keep the current visibility and -highlighting in addition to the new ones. -

- -

4 Hyperlinks

- - - -

4.1 Confirmation for shell and elisp links

- - -

-When I am executing shell/elisp links I always get a confirmation prompt and need to type "yes RET", that's 4 key presses! Can I get rid of this? -

-

-The confirmation is there to protect you from unwantingly execute -potentially dangerous commands. For example, imagine a link -

-[[shell:rm -rf ~/*][ Google Search]]
-
-

-

-In an Org-mode buffer, this command would look like Google Search, -but really it would remove your home directory. If you wish, you can -make it easier to respond to the query by setting -

-

-

- (setq org-confirm-shell-link-function 'y-or-n-p
-       org-confirm-elisp-link-function 'y-or-n-p).
-
-

-

-Then a single keypress will be enough to confirm those links. It is -also possible to turn off this check entirely, but I strongly recommend -against this. Be warned. -

- -

4.2 Use RET or TAB to follow a link

- - -

-From other packages like Emacs-wiki, I am used to follow links with RET when the cursor is on the link. Is this also possible in org-mode? -

-

-Yes, and you may also use TAB. -

-

-

- (setq org-return-follows-link t)
- (setq org-tab-follows-link t)
-
-

- -

4.3 Clicking on a link without activating it

- - -

-Each time I click inside a link in order to set point to this location, Org-mode actually follows the link -

-

-Activating links with mouse-1 is a new feature in Emacs 22, to make -link behavior similar to other applications like web browsers. If you -hold the mouse button down a bit longer, the cursor will be set -without following the link. If you cannot get used to this behavior, -you can (as in Emacs 21) use mouse-2 to follow links and turn off -link activation for mouse-1 with -

-

-

- (setq org-mouse-1-follows-link nil)
-
-

- - -

5 Export

- - -

5.1 Make TODO entries items, not headlines in HTML export

- - -

-When I export my TODO list, every TODO item becomes a separate section. How do I enforce these items to be exported as an itemized list? -

-

-If you plan to use ASCII or HTML export, make sure things you want to -be exported as item lists are level 4 at least, even if that does mean -there is a level jump. For example: -

-

-

- * Todays top priorities
- **** TODO write a letter to xyz
- **** TODO Finish the paper
- **** Pick up kids at the school
-
-

-

-Alternatively, if you need a specific value for the heading/item -transition in a particular file, use the #+OPTIONS line to -configure the H switch. -

-

-

- #+OPTIONS:   H:2; ...
-
-

- -

5.2 Export only a subtree

- - -

-I would like to export only a subtree of my file to HTML. How? -

-

-If you want to export a subtree, mark the subtree as region and then -export. Marking can be done with C-c @ C-x C-x, for example. -

- -

5.3 How to import org-mode calendar data into Mac OSX ical

- - -

-I would like my iCal program on Mac OSX to import the iCalendar file produced by Org-mode. How? -

-

-This is for OSX 10.3, see below for 10.4: When using iCal under -Apple MacOS X, you can create a new calendar OrgMode (the default -name for the calendar created by C-c C-e c, see the variables -org-icalendar-combined-name and -org-combined-agenda-icalendar-file). Then set Org-mode to overwrite -the corresponding file ~/Library/Calendars/OrgMode.ics. You may -even use AppleScript to make iCal re-read the calendar files each time -a new version of OrgMode.ics is produced. Here is the setup needed -for this: -

-

-

- (setq org-combined-agenda-icalendar-file
-     "~/Library/Calendars/OrgMode.ics")
- (add-hook 'org-after-save-iCalendar-file-hook
-  (lambda ()
-   (shell-command
-    "osascript -e 'tell application \"iCal\" to reload calendars'")))
-
-

- -

-For Mac OS X 10.4, you need to write the ics file to -/Library/WebServer/Documents/ and then subscribe iCalendar to -http: //localhost/orgmode.ics -

- -

6 Tables

- - -

6.1 #ERROR fields in tables

- - -

-One of my table columns has started to fill up with #ERROR. What is going on? -

-

-Org-mode tried to compute the column from other fields using a -formula stored in the #+TBLFM: line just below the table, and -the evaluation of the formula fails. Fix the fields used in the -formula, or fix the formula, or remove it! -

- -

6.2 Unwanted new lines in table

- - -

-When I am in the last column of a table and just above a horizontal line in the table, pressing TAB creates a new table line before the horizontal line. How can I quickly move to the line below the horizontal line instead? -

-

-Press down (to get on the separator line) and then TAB. -Or configure the variable -

-

-

- (setq org-table-tab-jumps-over-hlines t)
-
-

- -

6.3 Automatic detection of formulas

- -

I need to use fields in my table that start with "=", and each time I enter such a field, Org-mode thinks this is a formula. -

-

-With the setting -

-

-

- (setq org-table-formula-evaluate-inline nil)
-
-

-

-this will no longer happen. You can still use formulas using the -commands C-c = and C-u C-c = -

- - -

6.4 Change indentation of a table

- -

How can I change the indentation of an entire table without fixing every line by hand? -

-

-The indentation of a table is set by the first line. So just fix the -indentation of the first line and realign with TAB. -

- -

6.5 Performance issues with table alignment

- -

I have a huge table in a file, and the automatic realign of tables is just taking too long. What can I do? -

-

-Either split the table into several by inserting an empty line every -100 lines or so. Or turn off the automatic re-align with -

-

-

- (setq org-table-automatic-realign nil)
-
-

-

-After this the only way to realign a table is to press C-c C-c. It -will no longer happen automatically, removing the corresponding delays -during editing. -

- -

6.6 Performance issues with table calculation

- -

I have a complex table with lots of formulas, and recomputing the table takes rather long. What can I do? -

-

-Nothing, really. The spreadsheet in org is mostly done to make -calculations possible, not so much to make them fast. Since Org-mode -is firmly committed to the ASCII format, nothing is stopping you from -editing the table by hand. Therefore, there is no internal -representation of the data. Each time Org-mode starts a computation, -it must scan the table for special lines, find the fields etc. This -is slow. Furthermore, Calc is slow compared to hardware computations. -To make this work with normal editing, recalculation is not happening -automatically, or only for the current line, so that the long wait for -a full table iteration only happens when you ask for it. -

-

-So for really complex tables, moving to a "real" spreadsheet may still -be the best option. -

-

-That said, there are some ways to optimize things in Org-mode, and I -have been thinking about moving a bit further down this line. -However, for my applications this has so far not been an issue at all. -If you have a good case,you could try to convince me. -

- -

6.7 Incrementing numbers

- -

When I press S-RET in a table field to copy its value down, the content is not copied as is, but it is increased by one. Is that a bug or a feature -

-

-Well, it is supposed to be a feature, to make it easy to create a -column with increasing numbers. If this gets into your way, turn it -off with -

-

-

- (setq org-org-table-copy-increment nil)
-
-

- -

7 Agenda

- - -

7.1 Include Org-mode agenda into Emacs diary

- -

Is it possible to include entries from org-mode files into my emacs diary? -

-

-Since the org-mode agenda is much more powerful and can contain the -diary, you should think twice before deciding to do this. If you -insist, however, integrating Org-mode information into the diary is -possible. You need to turn on fancy diary display by setting in -.emacs: -

-

-

- (add-hook 'diary-display-hook 'fancy-diary-display)
-
-

-

-Then include the following line into your ~/diary file, in -order to get the entries from all files listed in the variable -org-agenda-files -

-

-

- &%%(org-diary)
-
-You may also select specific files with -

-

-

- &%%(org-diary) ~/path/to/some/org-file.org
- &%%(org-diary) ~/path/to/another/org-file.org
-
-

-

-If you now launch the calendar and press d to display a diary, the -headlines of entries containing a timestamp, date range, schedule, or -deadline referring to the selected date will be listed. Just like -Org-mode's agenda view, the diary for today contains additional -entries for overdue deadlines and scheduled items. See also the -documentation of the org-diary function. Under XEmacs, it is -not possible to jump back from the diary to the org, this works only in -the agenda buffer. -

- -

Author: Carsten Dominik -<carsten.dominik@gmail.com> -

-

Date: 2007/09/10 07:06:01

- - diff --git a/ORGWEBPAGE/index.html b/ORGWEBPAGE/index.html deleted file mode 100644 index ea618eb85..000000000 --- a/ORGWEBPAGE/index.html +++ /dev/null @@ -1,403 +0,0 @@ - - - -Org-Mode Homepage - - - - - - -

Org-Mode Homepage

-
-

Table of Contents

- -
- -
-

Org - an Emacs Mode for Notes and Project Planning

- - - - - - -

-Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing -project planning with a fast and effective plain-text system. -

-

-Org-mode develops organizational tasks around NOTES files that contain -information about projects as plain text. Org-mode is implemented on -top of outline-mode, which makes it possible to keep the content of -large files well structured. Visibility cycling and structure editing -help to work with the tree. Tables are easily created with a built-in -table editor. Org-mode supports ToDo items, deadlines, time stamps, -and scheduling. It dynamically compiles entries into an agenda. -Plain text URL-like links connect to websites, emails, Usenet -messages, BBDB entries, and any files related to the projects. For -printing and sharing of notes, an Org-mode file can be exported as a -structured ASCII file, HTML, and LaTeX. -

-
- -
-

Current Version (5.19) and Compatibility

- - -

-The current version is 5.19. To see what has changed in recent -releases, check this list of user-visible changes. These descriptions -are extensive, to avoid that people will be printing the manual after -each incremental release. If you have an older version of the manual, -just check the release notes and you will be up-to-date. -

-

-This package works on Emacs 22, and (with minor restrictions) on Emacs -21 and XEmacs 21 (where you must also use noutline.el shipped with -Org-mode). The Emacs 22.1 release ships with Org-mode version 4.67c. -The latest CVS emacs trunk usually contains a fairly recent version, -but may lag a bit behind the website release. -

-
- -
-

Downloads

- - - -
- -
-

Documentation

- - -
-

Manual and Reference card

- -
    -
  • -Read the documentation online. This is a version consisting of many -small files, to save bandwidth. If you really need it, you can also -have the entire manual in a single monolithic file. -
  • -
  • -Download the documentation in other formats: PDF, Info, or TeXInfo. -
  • -
  • -Download the Refcard for org-mode, and Kyle Sherman hast created a -text version of the reference card -
  • -
  • -There is also a Japanese translation of the manual (version 4.60), -produced by Takeshi Okano. -
  • -
  • -The FAQ is not very up-to-date, but may still answer some of your -questions. Please have a look before posting to emacs-orgmode@gnu.org. - -
  • -
-
- -
-

Links

- - - -
-

Mailing list

- - -

-There is a mailing list for discussion about org-mode. -

-
    -
  • -Subscribe to it at this webpage. -
  • -
  • -Directly send mail to it. If you are not subscribed, a moderator -will look at the message before passing it through to the -list. If that has happened once, future messages from your email -address will get through immediately, even if you remain -unsubscribed. -
  • -
  • -Read the list on Gmane through a web interface or with a -newsreader. -
  • - - - -
    - -
  • -
- -
-

Tutorials

- - -

-Tutorials and screencasts are listed on a separate page. -

-
- -
-

Org-mode, GTD and other task management systems

- -

Org-mode is flexible enough to implement many different ways of -organizing your projects. A frequently discusses scheme is David Allen's strategy for Getting Things Done. But it is clearly not -the only way to us Org-mode for planning. Here are a couple of -links related to this topic. -

-
    -
  • -John Wiegley has written an excellent document describing his -way of using Org-mode as a day planner. See also some later -messages for enhancements of his setup: -emacs-orgmode-2962, emacs-orgmode-3629 - -
  • -
  • -Charles Cave has written an article/tutorial about the basic -elements of GTD and how he implements them in Org-mode. - -
  • -
  • -There have been several threads on emacs-orgmode@gnu.org related -to GTD, the most important ones are: -
      -
    • -Another GTD question, which contains a discussion about basic -GTD aspects. It also contains this -
    • -
    • -Post by Carsten summarizing several options for implementing -GTD in org-mode. -
    • -
    • -GTD, Projects and Next Actions in org-mode is a thread where -several people describe their personal setup is -
    • -
    • -The SOMEDAY/MAYBE vs. low priorities thread contains a -discussion about priorities that is quite instructive. -
    • -
    • -Here is a very instructive post by Pete Phillips explaining -why David Allens book is where you should start to learn GTD, -and that the Internet and Org-mode only come into the game -later, when thinking about the implementation. And since -doing GTD the right way will give you lots of free time, don't -forget to listen to Pete's music! -
    • -
  • -
  • -Also on the web you can find information about how people are -setting up Org-mode to fit their habits. A few examples: - -
      -
    • -This blog post shows a very simple and clear GTD setup. - -
    • -
  • -
- -
-

Add-Ons

- - -
    -
  • -Piotr Zielinski wrote org-mouse.el which is now distributed with -Org-mode. It implements great mouse support for many functions in -org-mode. - -
  • -
  • -David O'Toole is the author of org-publish.el. While this is -now part of the Org-mode distribution, you might find the newest -bug fixes and developments at his Org-mode page, along with -several other projects like org-blog.el and -org-publish-escript.el. - -
  • -
  • -Bastien Guerry has been really prolific in writing interesting -add-ons, all available at his org-mode page: -
      -
    • -a package for using Org-mode as the basis for blogging -
    • -
    • -a LaTeX exporter that is now distributed together with -org-mode -
    • -
    • -a special table-of-contents buffer that simplifies navigation -
    • -
    • -a registry to find locations that link a specific document. - -
    • -
  • -
  • -George C.F. Greve wrote org-mairix.el to add links that trigger a -mairix search. - -
  • -
- -
-

Translators

- - -

-I know about the following attempts to translate from and to -Org-mode files: -

- -
-

Org-mode to XXX

- - -
- -
-

XXX to Org-mode

- - -
- -
-

Bi-directional

- - -

-Unfortunately nothing so far. -

-
-
- -
-

Alternative distributions

- - -
- -
-

Contributing to Org-mode

- - -

-You can always contribute with ideas and bug reports on the mailing -list. If you want to contribute a patch, code snippets, or a full -add-on, this is very welcome too! However, I can only make it an -official part of Org-mode if you have signed the papers with the -Free Software Foundation. Org-mode is distributed as part of Emacs -and must therefore adhere to strict rules about the copyright of -all included material. If this is what you want to do, here is the -form that you have to fill in and send to the FSF. After you -received the final copy with signatures, please scan it and send -the scan to the maintainer. -

-
- -
-

Future Development

- - -

-Org-mode is still developing fast. The best way to stay up-to-date -is to join the mailing list where the changes are developed and -discusssed. -

-

-Here is a loose list of ideas that are still to be processed -somehow, when I get to it… -

-
-
-

Author: Carsten Dominik -<carsten at orgmode dot org> -

-

Date: 2008/01/18 12:46:32

-
- diff --git a/ORGWEBPAGE/index.org b/ORGWEBPAGE/index.org index a2d283ee8..bb3d272a0 100644 --- a/ORGWEBPAGE/index.org +++ b/ORGWEBPAGE/index.org @@ -22,9 +22,9 @@ messages, BBDB entries, and any files related to the projects. For printing and sharing of notes, an Org-mode file can be exported as a structured ASCII file, HTML, and LaTeX. -* Current Version (5.22a) and Compatibility +* Current Version (5.23a) and Compatibility -The current version is 5.22a. To see what has changed in recent +The current version is 5.23a. To see what has changed in recent releases, check this [[file:Changes.html][list of user-visible changes]]. These descriptions are extensive, to avoid that people will be printing the manual after each incremental release. If you have an older version of the manual, @@ -39,7 +39,7 @@ but may lag a bit behind the website release. * Downloads **** Distribution -Download as [[file:org-5.22a.zip][zip file]] or [[file:org-5.22a.tar.gz][gzipped tar archive]]. These archives contain +Download as [[file:org-5.23a.zip][zip file]] or [[file:org-5.23a.tar.gz][gzipped tar archive]]. These archives contain both the Lisp file org.el and the documentation in PDF and (TeX)Info formats. A shell script to simplify upgrading to the newest release has been posted [[http://www.philfam.co.uk/pete/GTD/org-mode/update-org.sh][here]]. diff --git a/ORGWEBPAGE/index.txt b/ORGWEBPAGE/index.txt deleted file mode 100644 index f9366d37b..000000000 --- a/ORGWEBPAGE/index.txt +++ /dev/null @@ -1,151 +0,0 @@ - Org-Mode Homepage - ================= - -Author: Carsten Dominik -Date: 2007/05/13 09:31:34 - - -Table of Contents -================= -Org - an Emacs Mode for Notes and Project Planning - Current Version - Compatibility - Downloads - Frequently Asked Questions - Mailing list - Links - Tutorials - Org-mode and GTD - Add-Ons - Future Development - - -Org - an Emacs Mode for Notes and Project Planning -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing -project planning with a fast and effective plain-text system. - -Org-mode develops organizational tasks around NOTES files that contain -information about projects as plain text. Org-mode is implemented on -top of outline-mode, which makes it possible to keep the content of -large files well structured. Visibility cycling and structure editing -help to work with the tree. Tables are easily created with a built-in -table editor. Org-mode supports ToDo items, deadlines, time stamps, -and scheduling. It dynamically compiles entries into an agenda. -Plain text URL-like links connect to websites, emails, Usenet -messages, BBDB entries, and any files related to the projects. For -printing and sharing of notes, an Org-mode file can be exported as a -structured ASCII file, or as HTML. - -Current Version -=============== - -The current version is 4.74. To see what has changed in recent -releases, check this [list of user-visible changes]. - -Compatibility -============= - -This package works on Emacs 21 and (with minor restrictions) on -XEmacs 21. Version 4.67c will be part of the Emacs 22.1 release. - - *Attention XEmacs users*: Starting with Org-mode 4.38, Org-mode will -only work correctly with XEmacs if you use [noutline.el], a new -implementation of outline-mode. Until this package becomes part of -XEmacs, you can find it in the xemacs subdirectory of the Org-mode -distribution. Just compile it and place it onto you load path, -Org-mode will load it automatically. - -Downloads -========= - -* Distribution - Download as [zip file] or [gzipped tar archive]. These archives - contain both the Lisp file org.el and the documentation in PDF - and (TeX)Info formats. - -* Documentation - - Read the documentation [online]. - - Download the documentation in [PDF], [Info], or [TeXInfo] format. - - Download the [Refcard] for org-mode. - - There is also a [Japanese translation] of the manual (version 4.60), produced by Takeshi Okano. - - -Frequently Asked Questions -========================== - -The [FAQ] used to be part of the manual but this is no longer the case. - -Mailing list -============ - -There is a mailing list for discussion about org-mode. You can -subscribe to it at [this webpage] or directly [send mail to it] (which -will make it to the list after the moderator has accepted it. -Furthermore you can access the mailing list on [Gmane] through a -[web interface] or with a -[newsreader]. - -Links -===== - -Tutorials ---------- - - There is a very nice introductory [OrgMode tutorial] by [David O'Toole] covering the basics of TODO lists and the agenda. It - has been translated into [French], [Japanese], [Chinese], and [Korean]. - -Org-mode and GTD ----------------- - Org-mode is flexible enough to implement many different ways of - organizing your projects. A frequently discusses scheme is [David Allen's] strategy for [Getting Things Done]. Here are a couple of - links related to this topic. - - - [Charles Cave] has written an [article/tutorial] about the basic - elements of GTD and how he implements them in Org-mode. - - - There have been several threads on emacs-orgmode@gnu.org related - to GTD, the most important ones are: - - [Another GTD question], which contains a discussion about basic - GTD aspects. It also contains this - - [Post by Carsten] summarising several options for implementing - GTD in org-mode. - - [GTD, Projects and Next Actions in org-mode] is a thread where - several people describe their personal setup is - - - Also on the web you can find information about how people are - setting up Org-mode to fit their habits. A few examples: - - - This [blog post] shows a very simple and clear GTD setup. - -Add-Ons -------- - - - [Piotr Zielinski] wrote [org-mouse.el] which is now distributed with - Org-mode. It implements very interesting mouse support for many - functions in org-mode. - - - [David O'Toole] is the author of [org-publish.el]. While this is - now part of the Org-mode distribution, you might find the newest - bug fixes and developments at his [Org-mode page], along with - several other projects like /org-blog.el/ and - /org-publish-escript.el/. - - - [Bastien Guerry] has a package for using Org-mode as the basis for - blogging, it is available at [this page]. - - + Translators - - I know about the following attempts to translate from and to - Org-mode files: - - - [From Palm TODO database to Orgmode]. This Translator was - written by [Olaf Dietsche]. - - - [From Org-mode to remind] by [Bastien Guerry]. - - -Future Development ------------------- - - Here is a [list of ideas] that are still to be processed somehow, - when I get to it. diff --git a/ORGWEBPAGE/survey.html b/ORGWEBPAGE/survey.html deleted file mode 100644 index fab186d6a..000000000 --- a/ORGWEBPAGE/survey.html +++ /dev/null @@ -1,2195 +0,0 @@ - - - -Org-Mode Survey Results - - - - - - -

Org-Mode Survey Results

-Some descriptive text to be emitted. Several lines OK. - - - - -
-

Survey introduction

- - -

-A survey was conducted of org-mode users duing November 2007. An -invitation was sent to the org-mode users list as well as announced on -the http://orgmode.org web site. About 80 people resonded. This file -contains a complete list of the answers, as the base of further -discussion. -

-

-Survey created and summarised by Charles Cave -mailto:charlesweb@optusnet.com.au -

-
- -
-

1. Which operating system, version and Linux distribution?

- - -- - - - - - - - -
OSNbar
Windows31*******************************
Linux55*******************************************************
Mac OS X12************
- - -

-The different Linux distributions: -

- -- - - - - - - - - - - - - - - - - - - -
DistributionNbar
Arch Linux1*
Centos1*
Debian14**************
Fedora7*******
FreeBSD1*
Gentoo7*******
Kununtu1*
MagicLinux1*
OpenBSD1*
RedHat2**
Solarus2**
Suse7*******
Ubuntu9*********
Unspecified2**
- - -
- -
-

2. Which Emacs are you using (GNU/Xemacs, etc) and which version? Paste the result of M-x version.

- - -

-Summary: -

-- - - - - - - - - - -
Emacs/XEmacsNumber of answers
XEmacs7
Emacs total73
Emacs 214
Emacs 2247
Emacs 2318
- - -

-The raw replies can be found here. -

-
- -
-

3. When did you first start using org-mode and how did you find out about it?

- - -
    -
  • -Org 5.04, Aug 2007 - Searching around the Web -
  • -
  • -2007, December found about in in emacs wiki -
  • -
  • -November 2006, found it while googling GTD tools -
  • -
  • -moved from planner about 6 months ago -
  • -
  • -2005, probably read about it on Sacha Chua's blog. -
  • -
  • -August 2007? Heard of it a long time ago, maybe by following links -from johnh's notebook mode. Finally switched from planner after a -friend did the same. -
  • -
  • -October 2007 -
  • -
  • -about the begining of 2007. Heard about it on the internet I guess. -
  • -
  • -I found it by way of emacswiki.org. I was an avid user of outline -mode, and found somebody's screencast (Scott Jaderholm's, I think) -showing off org mode. I've been using it for probably about six -months. -
  • -
  • -Oct. 2007. I think I was looking for an alternative to planner.el. -
  • -
  • -august 27, 2006. I found it while looking for an alternative to -planner. -
  • -
  • -Roughly 2005/6, through a friend. -
  • -
  • -2007-Nov. Google. -
  • -
  • -July 2007 after I saw the entry in Emacswiki -
  • -
  • -april 2007 -
  • -
  • -2007-06 thrrough Sacha Chua's blog -
  • -
  • -Oldest entry in my archive file is June 2005, but I think I was -using org for a while before that. I don't remember when I heard -about it. -
  • -
  • -Around version 4.76, don't remember when. Found about it on the -Emacs Wiki. -
  • -
  • -10/2006 by chance looking for pim tools for Emacs -
  • -
  • -One month ago, found a link on a web site -
  • -
  • -11/2005 -
  • -
  • -02/2007 After getting annoyed with Muse-mode interaction with -outline-mode, I googled and found org-mode and never went back. -
  • -
  • -Using for about 2 years. Found org-mode after searching for a better -version of outline-mode -
  • -
  • -Sometime around Jan. 2005. Someone mentioned it on the 43folders.com -message board (probably Jason F. McBrayer) and I decided I'd check -it out. -
  • -
  • -August 2007. I heard it about it on the planner mode mailing list. -
  • -
  • -6-12 months ago! -
  • -
  • -I read about org-mail from an email of a maillist … dnon't know -which one -
  • -
  • -A year ago because someone mentioned it in #emacs on freenode as a -better planner-el solution -
  • -
  • -2 months ago when I started using Emacs. I was also looking for a -way to organize and found org-mode via blogs etc. -
  • -
  • -3 month ago. I was looking forward some emacs "PIM". -
  • -
  • -2007 September -
  • -
  • -Can't remember; at least two years ago? I think I would have first -heard about it from the Emacs Wiki. -
  • -
  • -Around May 2007. I don't recall. -
  • -
  • -No idea 6 months back probably; on the wiki site I think -
  • -
  • -2007-08 First heard mention in a GTD mailing list, but realised it -was going to be great after seeing screencast at -http://jaderholm.com/screencasts.html -
  • -
  • -2007 -
  • -
  • -almost 2 years emacs newsgroups -
  • -
  • -2006-08 (version 4.50) -
  • -
  • -approx. March 2006. I don't recall how I found out about it. -
  • -
  • -I think I began using it in 2005. I found out about it on the -planner list. -
  • -
  • -it's been about a year, I can't remember how I found out about it, -maybe on the #emacs channel IRC. -
  • -
  • -2007-03 www.emacswiki.org -
  • -
  • -1/2007 emacs NEWS -
  • -
  • -In 2005, I found out about org-mode while googling for some kind of -outliner software. My search must have hit upon a listserv post. My -first try at using it was in June 2005, but I didn't like -it. Carsten made many improvements and in December 2005, he emailed -me to ask me what I thought. It thought it was pretty good, and I've -been using it almost every day since. -
  • -
  • -October 2006. Saw orgmode mentioned in comments on 43folders.com -
  • -
  • -2007 july, emacs wiki -
  • -
  • -Around September 2007. I first knew it from planner-mode mailing -list. I used to use planner-mode. -
  • -
  • -Oct 2007 -
  • -
  • -2007-09 NEWS in Gnu Emacs 22 -
  • -
  • -21 april 2006 (was the oldest .org file I could find on my -system). Found out through… #emacs I think. dto was talking about -it. -
  • -
  • -I have a "org version 3.05" in my .emacs So it should be from spring -2005 (March? May?) I read an article in the web, a blog I think. so -I began using Emacs to use org (uh! :-) -
  • -
  • -August 2007 Slashdot article on GTD Wired article on GTD Google -search for GTD found org-mode tutorial. -
  • -
  • -Sep 2005 -
  • -
  • -June 2007. At may I started learning Emacs for the first time, and -together all its related modes. At #emacs at irc.freenode.org and at -EmacsWiki it was mentioned org-mode. -
  • -
  • -2007-04 I was into emacs learning and stumbled upon org-mode I don't -remember where. -
  • -
  • -2007 February, emacswiki.org and discussions on the planner.el -mailing list -
  • -
  • -Sometime before April 2006 -
  • -
  • -About 1 year ago. -
  • -
  • -April 2006 (ca org-mode 4.25) Switching from Planner after numerous -mentions of org on the planner mailing list. -
  • -
  • -October 2006 -
  • -
  • -In june 2006. By reading the tutorial here: -http://dto.freeshell.org/notebook/OrgTutorial.html -
  • -
  • -Aug 2005 After trying out Sacha's planning mode i knew it was close, -but not quite right for me. Googling around I found org mode. -
  • -
  • -Probably 2004, before it had texinfo documentation or even before -the agenda view -
  • -
  • -2007/10 -
  • -
  • -2007-01 I think I've read a blog about it or I've stumbled across it -at emacswiki.org. -
  • -
  • -I started to use org-mode a year ago. I found org-mode on the emacs -wiki -
  • -
  • -2007, September, read about it on the pages explaining how it was -part of emacs-22 -
  • -
  • -November-December 2006, after googling for "emacs pim". Or, -probably, there was an article (linux.com?). -
  • -
  • -5/2006, after emacswiki or web tutorial -
  • -
  • -at least as long as the newsgroup has been gmane, as I submitted it -there. I must have found out on emacs wiki? -
  • -
  • -~March 2007. I was using planner and I think I saw references to it -there and checked it out. -
  • -
  • -I subscribed to the list in 8/06. Maybe a month or two before that. -
  • -
  • -2007-01-01 -
  • -
  • -2007/01, by a org-mode tutorial. -
  • -
  • -I can't remember that. I used to use planner-mode. When someone -mentioned org-mode on that mailing list, I decided to have a try. -
  • -
  • -2006-03 – via your (Charles Cave) posting of 2006-03-10 to Getting Things Done -yahoogroup. -
  • -
  • -Around march 2006? -
  • -
  • -Dunno. A while ago. -
  • -
  • -2006 found out indirectly from the Planner mode or maybe Emacs Wiki -
  • -
  • -2006/06 Emacs Wiki - -
  • -
- -
-

4. What are your main uses of org-mode?

- - -
    -
  • -daily task planing, private and at work documenting know-hows, -collecting informations (web searches etc.), contacts -
  • -
  • -i plan to use it for GTD and (maybe) as replacement for LyX as -general writing tool (via LaTeX export) -
  • -
  • -Project planning, task management -
  • -
  • -todo list / scheduler -
  • -
  • -TODO list management -
  • -
  • -Task list and note taking -
  • -
  • -Todo-list administration - Time tracking - Creating outlines -
  • -
  • -write lists to keep track of projects and infomation -
  • -
  • -I mostly use it as an extended version of outline mode, as well as -the agenda mode. Managing TODO lists and the like. I also really -like the integration with remember mode. -
  • -
  • -TODO list, calendar/appointment app, note-taking, "digital junk -drawer" a la Yojimbo, minor mode for drafting documents, -org-publish.el, org-blog.el -
  • -
  • -Planning and taking notes (with remember mode.) -
  • -
  • -TODO lists (GTD methodology) and diary -
  • -
  • -Planning, project, time and task tracking. -
  • -
  • -GTD system at home -
  • -
  • -planning -
  • -
  • -todo-lists -
  • -
  • -Maintaining a GTD system for personal organization, tracking time -for work reporting and billing. -
  • -
  • -Organizing my tasks and plans at work. Trying to implement GTD with -it. -
  • -
  • -Reporting (org-outline/exporter!), GTD -
  • -
  • -GTD, weekly planner -
  • -
  • -Managing software development todo lists -
  • -
  • -Agenda, todo tracking, lecture notes, blogging -
  • -
  • -TODO list -
  • -
  • -1) Maintaining my personal lists of projects and tasks 2) -Maintaining a "wiki" of reference material (org-mode doc that links -to external files and URLs) 3) Maintaining an archive of completed -projects 4) Keeping track of my agenda 5) Outlining and -brainstorming 6) Organizing journal entries -
  • -
  • -Personal task lists. -
  • -
  • -daily planning -
  • -
  • -Organizing and managing projects -
  • -
  • -gtd - project management - generating htmls - minutes, documentation -
  • -
  • -notes, todo-lists, planner -
  • -
  • -Agenda (GTD) Notes keeping Publishing tool -
  • -
  • -Slowly it is becoming my desktop. I write, use it for email -composition, technical documentation. Slowly getting into planning, -agenda etc. -
  • -
  • -Project planning and task tracking. -
  • -
  • -keeping track of things to do. -
  • -
  • -TODO and org-table -
  • -
  • -Running my work and home todo lists and notes, but progressively -more and more using it for everything. -
  • -
  • -TODO list and meeting minutes -
  • -
  • -Task/Todo List information list some local hacks for finance -
  • -
  • -todo lists and knowledge base -
  • -
  • -Task management (TODO lists) * Note taking * Export/Publish (e.g., -publish notes to website) * Personal web pages (via org-publish) -
  • -
  • -I use orgtbl-mode most of the time in muse files, that's how I came -into contact with org-mode. I use it for writing (software) -documentation, (work related) project planning, and measuring the -time I work on projects. -
  • -
  • -planning my TODO list and more recently my agenda GTD style -
  • -
  • -Timeplanning, Timekeeping, Todo/Reminder -
  • -
  • -replacement for time management system (todos, project organisation, -schedules) replacement for spreadsheet helper in LaTeX modes -(orgtbl-mode) - -
  • -
  • -1.) Note taking: web links, links to lines of code I'm working on, -bibtex entries. 2.) Brainstorming. When I'm trying to figure out how -to do something, I often fire up org-mode, dump a bunch of random -thoughts into it, and then organize it into something that makes -sense. 3.) Experiment logging. I use table node to store pretty much -all the results I've accumulated for my PhD thesis. 4.) TODO -lists. I thought I'd use the GTD capabilities on org-mode but can't -force myself to do it. But still, for little projects, I use the -TODO lists. -
  • -
  • -Action items Notes and lists Tables of passwords Publishing website -
  • -
  • -maintain my thoughts, experimental results and agenda -
  • -
  • -As a GTD tool to keep all aspects of my life organized. -
  • -
  • -Lists GTD -
  • -
  • -Just getting used to it. Try to organize primarily work stuff, maybe -later will get into private things. -
  • -
  • -note taking, managing todo's, keeping track of time spent on a -project and making tables. -
  • -
  • -Everything! :-) + keeping notes, + maintaining TODO lists + -exploiting the Agenda facilities (wow!) + doing project planning + -writing text and exporting in HTML + a 'database' for experiments -data (I'm "implementing" it (wow, wow!) -
  • -
  • -Task list/agenda/calendar some "filing" of data, storage of links to -file system and web -
  • -
  • -Note taking for courses -
  • -
  • -Learn more about organizing tasks - Trying to substitute little -papers with appointments - Publish works (thesis, articles, web -pages, …) - Support a bit the process of writing an article -(TODOs, deadlines, sections, …) -
  • -
  • -documentation todo list management complete daily work organisation -private and at work planing of schedules for church and sports -cr�éate customer visit protocols (html for colleagues) I have access -to my org files via svn world-wide -
  • -
  • -all aspects of GTD except calendar -
  • -
  • -Outlining and Organising. -
  • -
  • -Day to day planning. Constantly switching between gtd and John -Wiegly's setup to find out what suits me best. -
  • -
  • -Todo List management. Task Scheduling. Note taking. Blogging -(Blorg). Simple Bug Tracking. -
  • -
  • -Organizing my work. -
  • -
  • -Managing all my projects and todo lists using GTD, and managing my -diary/calendar. Basically, I use it to manage my life - home, work, -social etc. Also use it for hierarchical editing of files etc, but -that is secondary. -
  • -
  • -day planner (in agenda view) - generation of hipsterPDA - easy -folding documentation tool (write text docu, use folding to hide -sections I'm not working on currently, and finally generate html or -LaTeX -
  • -
  • -GTD / Agenda -
  • -
  • -I organize all my projects and appointments with org. -
  • -
  • -Mainly todos/tasks planning and follow up -
  • -
  • -I use it to keep track of articles I have to write for clients (I'm -a journalist). I keep a page per client. I also use it to keep notes -on personal stuff, such as sport activities, todo things around the -house, garden and so on -
  • -
  • -advanced todo list, reading diary, simple HTML authoring. -
  • -
  • -Project management -
  • -
  • -note taking, task management, document creation, webpage publishing -
  • -
  • -task management, notes about work and home projects, regular -journaling – the list of things is expanding as I spend more and -more time in emacs/org. -
  • -
  • -Project planning, scheduling. Information -gathering. Wishlists. Outlines. Todo lists (checkboxes). Data -munging (tables) Review planning (outline w/ links) -
  • -
  • -For GTD and basic word processing -
  • -
  • -Projects, Notes, Memorial days etc. -
  • -
  • -single file for everything -
  • -
  • -Amassing and sorting to-dos and reference information. (Recovering -from mild brain injury in 2005 that affected ability to categorize -and prioritize, need mechanical aids!) -
  • -
  • -Handling notes. Displaying the calendar. Use the agenda view to -display notes. -
  • -
  • -Outlining and providing group TODO lists with explanations. -
  • -
  • -To Do List and Project Tracking Writing articles for export to HTML -
  • -
  • -Note taking, task management - -
  • -
- -
-

5. New features and product maturity?

- - -

-Original question: -

-

-What new features (if any) would you like to see in org-mode or do you -think the product has reached maturity? -

-
    -
  • -case sensitive search in tag completition - multilingual day name -input product has reached maturity in my opinion -
  • -
  • -nothing (for now) -
  • -
  • -A way to make it more Gnome friendly would be nice. In the case that -you don't have emacs started, you lose your ideas until you can note -them down. -
  • -
  • -I still haven't learnt enough to fully customize my environment. -
  • -
  • -Nothing specific, but I love the current state of development. -
  • -
  • -Syncing todos to other devices such as cellphones and palms, I know -it would not be very easy to do but would be extremely useful -
  • -
  • -No idea, sorry. I think it has enough features at present that seems -a bit intimidating, really. (Minor quibble – I changed some of the -keybindings. I prefer M-left/right to hide/show subtrees, rather -than cycling with tab, and use # instead of * for outline -levels. This is mostly habits from a "todo-mode" used on emacs -in-house where I work.) -
  • -
  • -I'm on the lookout for a cell phone that runs Emacs, but… I haven't -found any mechanisms for remotely adding/editing timestamps, -changing the state of TODO items, etc. Neither have I found a way to -trigger reminder sounds, e-mails, phone calls, or IM messages. I'm -not sure about the best way to approach "mobile org-mode"… A -web-interface like Webjimbo? More robust import/export/sync to iCal -or GData? If we can find a way to usefully sync org-mode with mobile -devices, it'll be just about perfect. -
  • -
  • -Current features are enough for me. -
  • -
  • -It is certainly mature. However I would also like to be able to use -it as a wiki and general-purpose document authoring/publishing -tool. In an ideal (and possibly unrealistic) world I would love to -see unification with muse-mode. To what extent is this possible? -
  • -
  • -I am still too new to it to comment on this. -
  • -
  • -It's quite mature and I surely don't master it. What I'd like to see -is easier manipulation of the agenda export. -
  • -
  • -Compatibility with other wiki syntax (importer or exporter) -
  • -
  • -too soon to know -
  • -
  • -Basically mature; I'd like to see refinement within the current -feature set. -
  • -
  • -You can always add new features! I would like to see an easy way to -tell how old my entries are. I would like to be able to derive a -task order based on importance and age (for tasks that don't have a -deadline but must be completed eventually). Also I would like to see -it integrated with other tools. I think a MindMap converter (for -FreeMind) would be cool - although it probably could be an external -script. -
  • -
  • -Export to WordprocessingML would be perfect. Currently I export to -HTML and read the reports into Word, saving them as *.doc. But you -loose some features and details doing this. -
  • -
  • -Integration out-of-the-box with remote calendar systems like Google -Calendar -
  • -
  • -Close to maturity. Some new features would be nice, but not terribly -important: Keeping root to leaf tree structure when archiving part -of a subtree. Simple dependent todos (i.e. dependent todo moves into -"NEXT" state when previous todo is marked "DONE"). Exporting entries -in HTML in monospaced font by default (i.e. without specially -marking individual entries). Auto-sorting of entries within a single -parent node (e.g. when a node is marked "DONE", move it lower in the -parent's list of todos). Integration with project management -software. -
  • -
  • -Some kind of resolution to the line wrapping issue with headlines. -
  • -
  • -Simpler ways of doing things (perhaps with mouse commands) -
  • -
  • -I'd say it's pretty close to maturity. I haven't used most of the -more recently-added advanced features. -
  • -
  • -I'd like easier customization of "workflow" steps that would make it -easier to update states and record notes related to state changes -(and skip these notes when the state transitions are obvious in -nature). -
  • -
  • -No immediate demands. I do not think the project has reached -maturity. -
  • -
  • -This product has reached maturity since long! In my point of view -this is. Excellent work! -
  • -
  • -depending tasks - integrated pdf-generation (especially for -windows) - visualisation for tasks (like gantt) - a minor mode for -contacts like vcard.el -
  • -
  • -I think it reached maturity. It would be nice to have some minor -things, like a posibility to insert todo's right inside your project -source code and then have them added in agenda automatically. -
  • -
  • -Instead of new features, I'd much prefer keeping XEmacs -compatibility -
  • -
  • -Wishlist - Adding arbitrary (user specified) relations between nodes -with a specific relation name. for example, x <part of> y; where x -and y are two nodes. - Making the above functionality work between -files - making the above work between nodes published on a -distributed server In the GNU project GNOWSYS, we do this, where it -is a web application. We are now exploring how org mode can be used -as a client to manage the data published in GNOWSYS. Out team would -be more than willing to collaborate, but our team members are all -Python hackers, and use Emacs only for coding -
  • -
  • -I am having trouble keeping up with the many new features of the -last few months! -
  • -
  • -I think it is mature enough for me -
  • -
  • -automatic reminders in Emacs as pop ups? -
  • -
  • -I'm quite content as it is. I guess I could probably think of one or -two things, but I wouldn't want to spoil its power/simplicity -balance. -
  • -
  • - planing times for tasks and compare them to actuel used times (and -also give out a warning if to many hours are planed for one day) - -agenda export to latex - simple project management -
  • -
  • -a gtd framework would be a killer feature!! more visual effects with -overlays However, it's "d�éj�à" a very good work. Thanks. -
  • -
  • -very mature -
  • -
  • -Nearing maturity, but then again, maybe I'm just out of ideas. -
  • -
  • -I would like org-mode (or other parts of it like orgtbl) to become a -minor mode so I can turn it on/off in other buffers (mainly -muse). For example I would love to use todo list editing features in -emails. -
  • -
  • -I don't understant all the features yet :) -
  • -
  • -export facilitie -
  • -
  • -New features, in order of importance to me: 1.) A way to select a -chunk of text in firefox and paste it into org-mode, along with a -nicely formatted URL link. I would use this many times a day. MS -OneNote does this well. 2.) A way to link to email in an IMAP -folder. Preferably, this link would point directly to the email on -the IMAP server. The link should look like all the other links, and -you should be able to just drag it from, say, Thunderbird, into -org-mode, although a Thunderbird keyboard shortcut would be nice. I -would use this every day. 3.) More flexible outline prefixes. You -should be able to make headlines of this type: I. asdlfk i. asdfj -ii. asdlfkj II. … Or 1. Introduction 1.1 asdfkj 1.2 -asdfkl 2. Background … Emacs hyperbole: -http://directory.fsf.org/project/hyperbole/ did this -beautifully. 4.) Internal links search in a way consistent with -emacs search (Ctrl-s). When you click on a link, it should go -towards the end of the buffer for the next match. When there's -nothing towards the end, it should wrap to the top. 5.) Fix the -underline/bold/italic stuff (if that is a new feature) 6.) Better -formatted html table export -
  • -
  • -Better support for working with others. -
  • -
  • -I would like to see different way to view or summarize ageda. Like -progress, next possible todo -
  • -
  • -I think org-mode is quite mature now except there may be still some -bugs in it and some features may need more polish -
  • -
  • -Too novice a user yet to comment -
  • -
  • -can't tell yet. -
  • -
  • -I like to be surprised more than wishing -
  • -
  • -I'd like better integration with calendar mode of -emacs. Specifically, when using the calendar, the command 'i d' to -insert an appointment, the diary file is used. I'd like to set a -headline in my orgmode buffer for that insert, for consistency with -the calendar entries I make by hand while processing my inbox Also, -navigation from agenda to org-file is easy. navigating back is -harder. -
  • -
  • -possibly nested numbered lists: 1. head 1 1.1 sub-head 1 1.2 -sub-head 2 Also lettered lists: a. point a b. point b but I'm -already quite satisfied -
  • -
  • - implement all features of muse-mode. Ex: list of pages, backlinks, -following links with Enter, … - consistent and clear syntax for -formatting text, which doesn't require memorizing use cases or -exceptions (ex: a isn't bold) -
  • -
  • -syncing with my palm would be the greatest need. (syncing with -outlook would do the job as outlook is snced with the palm) -
  • -
  • -mostly small things like an isearch mode that only matches headlines -(and doesn't auto expand), an allout-copy-exposed-to-buffer -equivalent, hipster pda publishing -
  • -
  • -I've too many ideas to write here. The only thing i can think of is -not quite org related. A published bison or antlr grammar, so people -can write org parsers/processors in other languages, and extend its -integration into other systems. -
  • -
  • -Org mode is fairly mature. Only the remaining inconsistencies should -be straightened out. -
  • -
  • -Hard to say, every so often I think of a feature that might be nice -to have. I have a feeling that alternate views (like the agenda) to -allow other ways of exploring your information would be handy, but I -have no concrete ideas yet as to what they might be. -
  • -
  • -Better exporting (for example better LaTeX export). -
  • -
  • -The only thing I need is better integration with mh-e (I suspect it -is already there - just need to find the time to sort it out). Other -than that I am very content! -
  • -
  • - I always wanted to be able to schedule a task for a specific week -(as oposed to a date) - I would like to improve the hipsterPDA -generation (export the agenda view as nice LaTeX, improve the -cal-tex output, etc) -
  • -
  • -Org grows faster than I can learn all those nice features. One -feature I'd love to see was that the HTML export created docs that -could be outlined like in an org buffer. I guess that's possible -with some CSS. -
  • -
  • -Task dependency for project planing -
  • -
  • -At the moment, I'm still on the learning curve. Org-mode has -soooooooooo many features I have not even discovered yet. I almost -daily open the manual pages to see I there is something I can use. -
  • -
  • -Probably, customization of built-in agenda view. But I'd rather see -org-mode streamlined and cleaned of unnecessary -complications. Properties should be either integrated more tightly -to replace tags/priorities/etc, or removed. -
  • -
  • -Looking forward to some of the dependency ideas. -
  • -
  • -Import tasks from .ics files, include .ics files in agenda, -eventually include remote .ics files in agenda. Would like an -updated blogging tool that takes advantage of recent developments. -
  • -
  • -I'm working on integration with my email client and web browser -- -it's a slow process because I'm not a programmer, but I'm learning -bits and pieces about bash shell scripts and grabbing what I can -from experts already using org. -
  • -
  • -I'd like a way to set project (outline item) dependencies and to -easily list those projects in dependency order. I could do it now -with properties, a dynamic block and some elisp. I'd use markup more -if it were more reliable in the emacs buffer. It might be nice to -have a mode where rigid outline style indenting is enforced while -editing outlines and lists. Perhaps as a buffer option or subtree -property. None of this is necessary or worth calling org-mode -immature. -
  • -
  • -Not new features. But perhaps splitting org.el into different -modules: one for outlining, one for doc format (Wiki engine), one -for GTD -
  • -
  • -block quote text support. like wiki {{{ This is quote text }}} -Currently only putting ':' at beginning of text or heading. -
  • -
  • -I hope a better archive mechanism using C-c C-x C-c, which could -keep the structure in my org file. -
  • -
  • -Seems mature; new features always interesting but can add a layer of -too-many-choices distraction. (See prioritizing problems above ;) ) -
  • -
  • -New summary type {%} for progress status. Real comment syntax. -
  • -
  • -I use only a fraction of its features. -
  • -
  • -Mature - -
  • -
- -
-

6. Additional tutorials, documentation and screencasts would you like?

- - -

-Original question: -Which topics or "how-to" guides would you like to see in the -documentation or as a tutorial or screencast? -

-
    -
  • -none. documentation is excellent -
  • -
  • -how to prepare/export/print GTD file to A7(index cards hPDA (hipster -PDA) forms -
  • -
  • -Everything should be a screencast for new users. -
  • -
  • -I'd love to see more examples (with code) of how people use org, -especially for implementing GTD. -
  • -
  • -More detailed information about blogging would be great, especially -motivation for using org. -
  • -
  • -The manual and refcard usually have me covered. An in-depth -screencast on table/calc might be nice. -
  • -
  • -More stuff about methodology to use it. -
  • -
  • -Screencasts are most helpful to me. I would like to see material on -publishing and blogging in particular -
  • -
  • -Project lifecycle. Timesheet reports. -
  • -
  • -Exporting to other formats and customizing that -
  • -
  • -lot of screencast showing new features of org (such as one already -done) -
  • -
  • -The documentation is actually rather good as it is, haven't found -anything lacking yet. -
  • -
  • -Integration with remember -
  • -
  • -Integrating org-mode with pine/alpine mailer. -
  • -
  • -Not sure who you want to target. Advanced users are your bread and -butter and probably are OK. Beginners should get some screencasts -that describe a common problem and just focuses an how org mode can -help them. A good example is something like when someone's todo list -gets too long and complex and they want to split it, but maintain -connections between items on various lists, or perhaps view a -chronological list of all items in one location. Org mode is the -only program I know of the handles this kind of complexity -gracefully. -
  • -
  • -In depth explanation of using the agenda to its fullest -
  • -
  • -I'd love to see one on setting up column views. A tutorial on -publishing files would be great. And one about creating custom -agenda views. -
  • -
  • -Changing the keybindings to make specific state transitions easier -to enter -
  • -
  • -don't know as of yet … -
  • -
  • -using the spreadsheet with merged cells, calculation for rows and -columns - showing the true meaning of the properties stuff - over -all there should be examples - i really dislike the manual form -orgmode.org because it is technical oriented not for the simple -user - more howtos for gtd -> learning from each other -
  • -
  • -Different usages of org-mode. From GTD to other ways … -
  • -
  • -I find the manual well written and sufficient. -
  • -
  • -Use of drawers and properties. -
  • -
  • -HOw to organize multiple projects; auto-archival. -
  • -
  • -org spreadsheet -
  • -
  • -Since Org-mode is (to me) a collection of "orthogonal" features, but -doesn't much impose structure, I'd be interested in seeing how -others organise their data and "bring it to life" with the Org-mode -features. -
  • -
  • -none -
  • -
  • -more documentation for org's lisp functions (in fact more examples -with org's lisp funtions!!) -
  • -
  • -remember mode integration -
  • -
  • -I prefer the documentation and experimentation. Need drives my -learning. -
  • -
  • -I don't have any preferences. -
  • -
  • -Can't think of any -
  • -
  • -I think a new user would benefit from a screencast showing basic -hierarchy creation and navigation -
  • -
  • -Remember Practical uses of properties -
  • -
  • -I would like to see more people to share their ways of using org -model -
  • -
  • -The documentation is already very good and it seems the manual is -never out of sync from the latest org-mode version. I found the -mailing list is the best source of "how-to" as people's individual -situations are so much different. -
  • -
  • -more of org for gtd -
  • -
  • -how to deal with the calendar and insert dates quickly - two-way -backends for groupware-like behavior - calender functionality for -scheduled events (receive popups or emails or sms or the like) - -probably more but it's too early to say -
  • -
  • -drawers + table calculations -
  • -
  • -Using org-mode as a calendar/planner. Perhaps a best practice around -where date- and time-stamps belong (in the headline? in a SCHEDULED: -property? DEADLINE: property?) Also, it would be helpful to be shown -the best practices around Categories (since they show up so -prominently in the agenda) I wanted them to be like David Allen's -"Contexts", but that's hard for me to manage. -
  • -
  • -All the variables that you must configure to be able to write and -export an article successfully and without unexpected results - How -to move from {muse,kwiki,reST,planner,…} to org-mode: how to adapt -the syntax, … -
  • -
  • -examples of how to columns view -
  • -
  • -real examples of different ways of using org-mode -
  • -
  • -Scope projects? integrate Org into a software development -process/project? Handle <not at computer> org interactions? -
  • -
  • -Daily use of agenda -
  • -
  • -I'm still not familiar with the more advanced features of org-mode, -so I'm keen to see these areas explored in tutorials and guides. -
  • -
  • -The spreadsheet. -
  • -
  • -None that I would be interested in, although I accept that new users -would benefit from them. -
  • -
  • -I think column-view is a great feature. Bastiens tutorial is good, -but I'm thinking a tutorial focused more on the use case as opposed -to the config option might be better. If I find time :-) -
  • -
  • -I don't know if it's just me, but currently I make no use of -tags. So any how-to or screencasts of how to use categories and tags -together in a senseful way would be nice. Most usages of tags I've -seen so far where tags like :phonecall: or :appoitment:, but when I -have a TODO "Call Jim" or "Meet Jim" those are superluous… -
  • -
  • -I would welcome such how-to's and offer to help. The drawback of -screencasts is they take a long time, and there is no way a viewer -can tell it will be usefull to sit it all out. A guide giving -examples (and using short screencasts, if necessary) gives the -reader an overview, he/she can skip sections and browse to a -chapter/paragraph deemed usefull. I would like to learn howto tweak -my custom built todo-lists so that some of the statuses show up in -the agenda, and others don't. Example WRITE should be on the agenda, -but INVOICE not really. But the intermediate VERIFY should. -
  • -
  • -More on GTD. Agenda customization. -
  • -
  • -More on column mode and new uses of properties. -
  • -
  • -I know there are books and howtos about lisp, but it would be great -to see some smaller howtos that are specific to org applications, -and code samples. -
  • -
  • -The remember mode stuff scares me. I need to take some time learn -it. I also know agenda can do a lot more than I do with it. I'd like -to see screen shots of of column mode to drool over since I'm not -running emacs 22 yet. -
  • -
  • -can't thing of any -
  • -
  • -Spreadsheet examples. -
  • -
  • -how-to setup a gtd style system is always my favorite. -
  • -
  • -Some experienced users' detailed explication of pros and cons of the -newer TMTOWTDI (There's More Than One Way To Do It) choices like -archiving methods, task states, etc. leading to – you -guessed it – prioritizing problems -
  • -
  • -Building complex agenda views. -
  • -
  • -Dunno. -
  • -
  • -Setting up a publishing/blog environment - -
  • -
- -
-

7. Which features of org-mode do you use? (Spreadsheet, LaTeX, HTML, Remember, etc)

- - -
    -
  • -Document Structure, Tables, Spreadsheet, Hyperlinks, TODO items, -Tags, Properties and Columns, Dates and Times, (Custom) Agenda Views -
  • -
  • -LaTeX, Remember -
  • -
  • -Use the agenda/tags views heavily. Tables, but not really -spreadsheets. -
  • -
  • -Rememeber -
  • -
  • -remember, agenda views. -
  • -
  • -I'm sure I will use everything at some point. I've finally started -using remember recently, about to start using HTML for blogging I -think, and can imaging using LaTeX to print index cards even. -
  • -
  • -Todo-list, agenda - remember -
  • -
  • -Remember, agenda, I learned to use the tags / priorities, but they -don't seem to fit my style of use. -
  • -
  • -Publish to HTML and LaTeX (although I'd prefer ConTeXt), dynamic -blocks, orgstruct minor mode, and hyperlinks. I'm not sure if they -count as a "feature", but I use deadlines, scheduling, and repeated -tasks a lot. -
  • -
  • -remember, clock summary. -
  • -
  • -TODO keywords, tags, timestamps (inc. deadlines/scheduling), -priorities, export to HTML/ics, tables, archiving, remember, custom -agenda commands -
  • -
  • -Still exploring.. starting out with fundamentals as described in -John Weigly's excellent write-up. -
  • -
  • -HTML, Remember -
  • -
  • -Basic planning, some html export, Wannt to use more features of org -but lack of time -
  • -
  • -Remember, html -
  • -
  • -Much use of Remember, agenda, agenda todo lists. Some use of HTML -and LaTeX. A little use of spreadsheet. -
  • -
  • -Starting to use spreadsheets and tables. I use the [/] feature to -keep track of task counts a lot. I like the "radio" links too. Don't -use the others much. -
  • -
  • -Export2HTML, Remember, Agenda -
  • -
  • -Remember, LaTex, ical export, Agenda and Diary integration -
  • -
  • -HTML. My usage is pretty basic. -
  • -
  • -LaTeX, HTML, Agenda, diary integration, Todo, outlining like crazy -
  • -
  • -Spreadsheet (for tables) -
  • -
  • -I use Remember, HTML, agenda views, hyperlinks, time-tracking, -timestamps, and tags. I occasionally use tables, and plan on using -the PROPERTIES drawer in the future. I don't currently use any -advanced table formulas or column view, but I'm glad they're there. -
  • -
  • -Remember, basic task lists, and mostly the Agenda views. -
  • -
  • -LaTex, HTML, Remember, Cal, diary -
  • -
  • -all -
  • -
  • -agenda - html - spreadsheet -
  • -
  • -Spreadsheet, remember, time logger and outlines. -
  • -
  • -Document structure + hyperlinks, agenda + remember, exporting and -publishing -
  • -
  • -writing documents, LaTeX, HTML. -
  • -
  • -Remember; tables. -
  • -
  • -Remember, and the todo features. -
  • -
  • -simple to do listing -
  • -
  • -A lot: Outlines, Tables, Spreadsheets, TODOs, Links, Tags, -Timestamps, Clocking Time. A little: Agenda views, Properties and -Columns Not at all: LaTeX, HTML, Remember I plan to increase my -usage of all the above, apart from LaTeX, which I'll probably never -use. -
  • -
  • -Remember -
  • -
  • -Remember, Latex, spreadsheet (with calc) -
  • -
  • -just to basic features -
  • -
  • - * TODO's, including ** Scheduling ** Deadlines ** Archiving (both -tag and function) * Remember * LaTeX * export/HTML * Tables * -org-publish * Agendas -
  • -
  • -spreadsheet, HTML -
  • -
  • -remember, agenda, priority -
  • -
  • -Remember -
  • -
  • -all -
  • -
  • -Basic outlining with tons of links of most types allowed. * Tables * -HTML export * TODO's -
  • -
  • -Tables, HTML, Remember -
  • -
  • -table, agenda, remember -
  • -
  • -Probably the question is bettered asked with "which features of -org-mode do you not use?" :-) It seems I have almost used everything -except properties and drawers. Although I did not go into depth of -many of them, like I never used a formula in the built in org-mode -table. -
  • -
  • -tags, todos, links, timestamps -
  • -
  • -remember, agenda -
  • -
  • -tables, HTML, ToDo stuff/agenda, column mode, clock features, -categories -
  • -
  • -Agenda, time tracking, HTML, latex, spreadsheet -agenda export to ics (iCalendar) file TODO proper- ty drawers -
  • -
  • -headings, tags, links, drawers & properties, table (& occasionally -spreadsheet), remember, todo's -
  • -
  • -outlining - basic spreadsheet - org-export-as-latex - HTML - -org-publish - marking TODO/DONE (or equivalents) - agenda -
  • -
  • -Remember HTML -
  • -
  • -HTML, Remember, custom agenda views, tags matches, custom keyword -states, diary integration, recurring tasks, scheduling and -deadlines, org-nnml, hyperlinks, categories -
  • -
  • -Agenda, Remember, Tags, Ascii Export, Tables, Outlining -
  • -
  • -Spreadsheet -
  • -
  • -sometimes Spreadsheet remember extensively LaTeX/Html export -
  • -
  • -Remember, Blorg, org-publish, Tables, Lists, Checkboxes, TODO -sequences. -
  • -
  • -LaTeX, html, remember, spreadsheet -
  • -
  • -Tags, Remember, Diary integration, Logging, sometimes spreadsheet -usage. -
  • -
  • -folding, TODOs, Agenda view, HTML generation, column-view -
  • -
  • -Spreadsheet, HTML, Remember, fast selection of TODO keywords, links -to everywhere, extended timestamps and intervals -
  • -
  • -Spreadsheet, HTML -
  • -
  • -I use remember very often. I have not really touched the -spreadsheet, don't need to. I use the deadline feature all the time -and the [/] todo list type. I have experimented with export to html, -in order to transport stuff to a very smart smart phone (iphone) but -that requires more tweaking on my side. -
  • -
  • -todo and logging state changes, tags, priorities, hyperlinks, -remember, timestamps, agenda, export to HTML. -
  • -
  • -Folding, spreadsheet, column mode, properties, schedule/agenda, -org-remember, html export, todo, tags -
  • -
  • -I use everything except radio stuff and dynamic blocks, and I think -I will use those soon. Don't use XOXO export either, I guess. -
  • -
  • -remember, tables, tasks, tags, archiving, calendar, html export, and -I'm learning a bit about LaTeX. -
  • -
  • -In no particular order: tables, plain list folding, checkboxes and -checkbox counting [/], multiple todo sequences, tags, properties, -inactive dates, elisp formulas, html export, text export, in-buffer -markups (*/_), subtree in indirect buffer, links -
  • -
  • -latex, html, remember -
  • -
  • -spreadsheet, remember, agenda, outline, property, column view -
  • -
  • -remember, archive, appointment, diary, timeclock -
  • -
  • -Remember for fast to-do adds; use tables occasionally but mostly use -dedicated spreadsheet s/w for such functions. Hope to learn LaTeX at -some point. -
  • -
  • -Agenda views Table editing Properties drawers HTML export LaTeX -export -
  • -
  • -HTML. Remember. Tables. -
  • -
  • -Mainly time stamps, agendas and HTML export -
  • -
  • -LaTeX, Spreadsheet, Remember - -
  • -
- -
-

8. Your age

- - - -- - - - - - - - - - - - - - -
Age rangeNbar
16 - 200
21 - 255*****
26 - 3015***************
31 - 3521*********************
36 - 4011***********
41 - 4513*************
46 - 503***
51 - 553***
56 - 600
- - -
- -
-

9. Which country do you live in?

- - - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CountryNbar
Australia3***
Canada2**
China2**
Croatia2*
France5*****
Germany17*****************
Hungary1*
Iceland1*
India4****
Italy2**
Netherlands3***
New Zealand1*
Norway1*
Pakistan1*
Romania1*
Russia1*
Scotland1*
Slovenia1*
Spain1*
Sweden1*
Switzerland1*
UK7*******
USA23***********************
- - -
- -
-

10. Are there any other comments you would like to make about org-mode?

- - -
    -
  • -Thanks for this great software, I've waited for years for such a -tool. I've wrote some tools around org in Perl, hopefully I'll find -some time to contribute. Thanx a lot -
  • -
  • -Great tool to stay even longer in emacs OS :-) -
  • -
  • -Thanks! -
  • -
  • -Great App, Great Support, Great Community -
  • -
  • -org-mode is all-the-way cool. -
  • -
  • -With the possible exception of Emacs itself, org-mode is my very -favorite bit of software. It has inspired me to learn LISP, so I'm -looking forward to contributing in the near future. -
  • -
  • -It's fantastic and the maintainership and community are both second -to none! -
  • -
  • -Later. :) -
  • -
  • -Great mode and very useful. Thanks a lot for your effort and time! -
  • -
  • -Great Work ! Felicitation to its author -
  • -
  • -It's indispensable for my current work and lifestyle. -
  • -
  • -It is a great package, thanks for making it available and keeping -it alive! -
  • -
  • -Thanks for the org-mode. I just love it! Do all my personal and job -planning with it! -
  • -
  • -Great tool, thanks thanks thanks :) -
  • -
  • -It's fantastic – thanks for the great tool. I'm getting older and -it's the only way I can "remember" everything. It's not just a great -todo list manager, but I use it to document almost everything about -my job (e.g. my original intentions about a -project/implementation). I can bury a TODO right down in the place -where I have most of the surrounding documentation. -
  • -
  • -I cannot overstate how valuable this mode is. It single handedly has -the potential to make laypeople aware of Emacs. Thanks so much for -working on it! -
  • -
  • -Love it. Love it. Love it. Carsten is awesome. -
  • -
  • -It's changing very fast, and I'm worried that my muscle memory will -start to fight against the changes. Still, it's good to see an Emacs -package with such active interest and support. -
  • -
  • -I'm a happy user. Thanks to Carten and all contributors -
  • -
  • -great guys on the mailinglist, great spirit, excellent product :-) -
  • -
  • -Carsten, many thanks for this great piece of software! Keep it -simple and usuable - not everybody follows the power user discussion -in gmane -
  • -
  • -Keep up the great work! :) -
  • -
  • -Thanks to Carsten and to people on emacs-orgmode !! -
  • -
  • -Been a user of GNU Emacs for the last 18years, never seen such a -fascinating major mode. I like this kind of apps since I work in -knowledge organization, and would like to contribute in some -way. Our lab gnowledge.org would like to develop a java applet that -provides org mode kind of editing. The buffer thus produced will be -converted into html when the page is being served in the -background. This will encourage the community to do structured -documentation. Our lab is now engaged in developing -beta.selfplatform.eu, where in we would like to provide this -feature. Do you think, orgmode developers would like to help us or -contribute in this endeavor. Orgmode can be very useful for -furthering semantic computing. -
  • -
  • -It is a great product. I does not need to grow. It might risk -feature creep. -
  • -
  • -Excellent package -
  • -
  • -Thank you, Carsten! -
  • -
  • -Has increased my productivity a lot! -
  • -
  • -Really a great thank to the author "Carsten Dominik", "chapeau" as -they say in France!!!! -
  • -
  • -Org-mode was relatively immature when I started using it, and I have -kept with it for 2 simple reasons: 1. The maintainer (Carsten) is -friendly, fast, accurate, and thorough 2. It works – it does what -it claims to do, and does it well -
  • -
  • -Org mode keeps me organized, it's outstanding! -
  • -
  • -hmmh, org-mode is the first thing I start in the morning and the -last I close in the evening, I guess this tells it all. -
  • -
  • -Org mode has been an incredibly useful tool that is fun to use. I -think a main reason for its utility is that basic use requires -little thought. When I'm using it for brainstorming, it's almost -like I'm not aware that I'm using any program – I'm just -thinking. Any changes to org-mode should preserve this -simplicity. Thanks a ton to Carsten and all the others who have -contributed to this great project! -
  • -
  • -Thank you Carsten! -
  • -
  • -Maybe we should consider a separate package or maintainer for -xemacs…. -
  • -
  • -Thanks, thanks and thanks. -
  • -
  • -Good stuff. thanks -
  • -
  • -It's Fun. ASCII is usually the only interface I can get used to, -because it's so fast. -
  • -
  • -org-mode makes me look organised (though a bit quirky). That's -enough reason to use it. -
  • -
  • -Amazing!!!!!!!!!!!!!!!! :-) -
  • -
  • -Even if org-mode stands right where it is, it has been enormously -helpful. Thank you very, very much. -
  • -
  • -Well done -
  • -
  • -Yes: org-mode progresses very well and improves with each version -
  • -
  • -for me its the greatest found treasure since I "dicovered" Emacs. -
  • -
  • -Great work! Wish I had time to contribute more. -
  • -
  • -Keep up the good work :) -
  • -
  • -It's a great software project and community. Thanks again to -everyone involved! -
  • -
  • -Excellent piece of software! -
  • -
  • -I'm very very happy with it. -
  • -
  • -org-mode is fantastic :-) -
  • -
  • -The best feature of Org are its two maintainers Carsten and Bastien -and its helpful community. -
  • -
  • -Great mode for emacs. I wish I was using it more -
  • -
  • -It is great tool. Uncluttered. Thanks to Carsten et al. -
  • -
  • -Rock on! -
  • -
  • -favorite piece of software I use. -
  • -
  • -I'm continually amazed by what org can do, and also by how intuitive -it is. It's not at all unusual that I find myself thinking that it -would be great if org/emacs did "x", trying what seems to me to be -the way that it would do "x" if it could, and discovering that it -functions just as I expect. And when it doesn't, there are ways to -figure it out. (And Carsten is a great developer who shines at -hearing what his users are doing, responding to expressed needs, and -even being clear if/when he decides not to do what someone would -like him to do. Other heavy users and scripters are great as well. -
  • -
  • -I started using Org-mode as an outliner. It is the best outliner -I've used an much more. The community is valuable but Carsten's -skill and judgment has made org-mode what it is. -
  • -
  • -It's a killer tool that I could not live without. -
  • -
  • -org-mode is great, I hope it can keep clean text file when adding -functions. -
  • -
  • -I forced myself to learn emacs after 25+ years in the vi camp in -order to use org-mode. Loving it. Carsten's enthusiasm and support -are a joy, and the mailing list is always refreshing. -
  • -
  • -I plan to run a website where users could share Org files and edit -them together. I plan to write a better exporter (and more formats!) -I think the Org syntax is mature enough to get more programs -interacting with it outside Emacs. Org is great :) -
  • -
  • -It's wonderful. Thanks! -
  • -
  • -org-mode is a fantastic program, supported by a lively helpful email -list. Carsten is very responsive to feature requests and helping. - - -
  • -
-

-end- -

-
- -
-

Appendix: Raw data for some questions:

- - - -
-

Raw Emacs versions

- -

Here are the detailed responses, for reference. -

-

-

-GNU Emacs 22.1.1 (powerpc-unknown-linux-gnu, GTK+ Version 2.10.13) of 2007-07-08 on malo, modified by Debian 2. GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE      
-21.3.1 and 22.1.1       
-22.0.96.1 on Windows CVS from the unicode2 branch on Linux     
-Emacs 22.1 GNU Emacs 22.1.1 (i686-pc-linux-gnu, GTK+ Version 2.10.11) of 2007-09-16 on zen     
-Emacs 22.1. Where I happen to be sitting, M-x version says: GNU Emacs 22.1.1 (sparc-sun-solaris2.8, X toolkit) of 2007-06-15 on sa
-Emacs 23        
-Emacs from CVS GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.12.0) of 2007-10-31 on samarium   
-Emacs22         
-GNU 22.0.98.1   
-GNU Emacs 21.3.1        
-GNU Emacs 22.0.50.1 (i386-mingw-nt5.1.2600) of 2006-03-21 on YAMALOK   
-GNU Emacs 22.0.91.1    
-GNU Emacs 22.0.95.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2007-03-02 on pacem, modified by Debian       
-GNU Emacs 22.0.96.1 (i386-mingw-nt5.1.2600) of 2007-03-24 on NEUTRINO   
-GNU Emacs 22.0.990.1 (i386-mingw-nt5.1.2600) of 2007-05-23 on LENNART-69DE564 (patched)
-GNU Emacs 22.1 
-GNU Emacs 22.1 
-GNU Emacs 22.1.1       
-GNU Emacs 22.1.1       
-GNU Emacs 22.1.1       
-GNU Emacs 22.1.1 (i386-apple-darwin9, Carbon Version 1.6.0)     
-GNU Emacs 22.1.1 (i386-apple-darwin9.0.0, X toolkit) of 2007-11-05 on selenium. dmg    
-GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE
-GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE      
-GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE      
-GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE      
-GNU Emacs 22.1.1 (i486-pc-linux-gnu, GTK+ Version 2.8.20) of 2007-07-22 on nautilus, modified by Debian"        
-GNU Emacs 22.1.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2007-08-22 on raven, modified by Debian   
-GNU Emacs 22.1.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2007-11-03 on pacem, modified by Debian  
-GNU Emacs 22.1.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2007-11-03 on pacem, modified by Debian - Gnu Emacs 22.1 windows version
-GNU Emacs 22.1.1 (i586-suse-linux-gnu, GTK+ Version 2.12.0) of 2007-11-06 on balada      
-GNU Emacs 22.1.1 (i686-pc-linux-gnu) of 2007-09-27      
-GNU Emacs 22.1.1 (i686-pc-linux-gnu, GTK+ Version 2.10.4)
-GNU Emacs 22.1.1 (i686-pc-linux-gnu, GTK+ Version 2.10.6) of 2007-09-14, in an Eterm
-GNU Emacs 22.1.1 (powerpc-apple-darwin7.9.0, Carbon Version 1.6.0) of 2007-07-22 on applecore.inf.ed.ac.uk - Aquamacs Distribution 1.
-GNU Emacs 22.1.1 (powerpc-apple-darwin8.10.0, Carbon Version 1.6.0) of 2007-10-04 on malibu.local       
-GNU Emacs 22.1.1 (x86_64-pc-linux-gnu, GTK+ Version 2.12.0) of 2007-11-06 on king, modified by Ubuntu   
-GNU Emacs 22.1.2 (i386-unknown-openbsd4.1, X toolkit) of 2007-06-10 on lucien.my.domain        
-GNU Emacs 22.1.50.1     
-GNU Emacs 22.1.50.1 (i386-apple-darwin8.10.1, Carbon Version 1.6.0) of 2007-10-02 on plume.sr.unh.edu - Aquamacs Distribution 1.2a      
-GNU Emacs 22.1.50.1 (i386-mingw-nt5.1.2600) of 2007-07-07 on NEUTRINO   
-GNU Emacs 22.1.50.1 (i686-pc-linux-gnu, X toolkit) of 2007-06-18 on ...         
-GNU Emacs 23.0.0.1 (i386-mingw-nt5.1.2600) of 2007-07-10 on BREP        
-GNU Emacs 23.0.0.1 (i386-mingw-nt5.1.2600) of 2007-08-18 on TPAD        
-GNU Emacs 23.0.0.1 (i686-pc-linux-gnu, GTK+ Version 2.8.20) of 2007-03-18       
-GNU Emacs 23.0.0.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2007-08-13 on cera" (emacs-unicode2), Emacs 22.1 under Windows.         
-GNU Emacs 23.0.50.1 (i386-mingw-nt5.1.2600) of 2007-11-13 (via CVS, compiled with GnuWin32 native tools rather than cygwin)     
-GNU Emacs 23.0.50.1 (i486-pc-linux-gnu, GTK+ Version 2.12.1) of 2007-11-11 on elegiac, modified by Debian      
-GNU Emacs 23.0.50.1 (i486-pc-linux-gnu, GTK+ Version 2.8.20) of 2007-10-14 on elegiac, modified by Debian"     
-GNU Emacs 23.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.12.1) of 2007-11-15 on baldur   
-GNU Emacs 23.0.60.1
-GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.12.0) of 2007-10-31 on samarium  
-GNU Emacs 23.0.60.1 (i686-pc-linux-gnu, GTK+ Version 2.10.14) of 2007-10-29     
-GNU Emacs 23.0.60.1 (i686-suse-linux-gnu, GTK+ Version 2.12.0)  
-GNU Emacs 23.0.60.1 (i686-suse-linux-gnu, GTK+ Version 2.12.0)  
-GNU Emacs 23.0.60.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.12.1)
-GNU Emacs CVS (~23.0.50.1)     
-GNU Emacs CVS 20071101  
-GNU Emacs CVS 23.0.0    
-GNU Emacs On Windows XP: GNU Emacs 22.0.990.1 (i386-mingw-nt5.1.2600) of 2007-05-23 on LENNART-69DE564 (patched) On Linux: GNU Emacs 22.1.50.1 (armv5tel-unknown-linux-gnu) of 2007-06-22 on homehub    
-GNU Emacs and Carbon Emacs, both 22.1   
-GNU. On Debian: GNU Emacs 23.0.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.12.1) of 2007-11-11 on elegiac, modified by Debian The other isn't available right now.        
-Gnu Emacs 22.1.1 and 21.4 (patch 20) "Double Solitaire" XEmacs Lucid    
-Gnu Emacs v22.1.50.1   
-Gnu/Emacs GNU Emacs 23.0.60.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.12.0) of 2007-11-11
-Carbon Emacs, an OS X distro of GNU Emacs 22.1.50       
-XEmacs 21.4 (patch 19) "Constant Variable" [Lucid] (i486-linux-gnu, Mule) of Fri Nov 3 2006 on penell  
-XEmacs 21.4 (patch 20) "Double Solitaire" [Lucid] (i486-linux-gnu) of Fri Oct 19 2007 on penell          
-XEmacs 21.4 (patch 20) "Double Solitaire" [Lucid] (i686-pc-cygwin, Mule) of Fri Dec 15 2006 on vzell-de         
-XEmacs 21.4 (patch 20) \"Double Solitaire\" [Lucid] (i686-pc-cygwin, Mule) of Fri Dec 15 2006 on vzell-d
-XEmacs 21.4.20 (distributed with Cygwin)       
-XEmacs 21.5 (beta28) "fuki" [Lucid] (i686-pc-linux, Mule) of Wed Jun 13 2007 on n2      
-XEmacs Lucid 21.4 (patch 19) "Constant Variable" - on Windows, Similar on linux (not at machine)        
-Emacs  
-Emacs 21.4.1 emacs 21.?.? (at work, I'm not certain)    
-GNU     
-GNU 22.1.1      
-GNU emacs       
-GNU emacs 22.1.50.1 (snapshot)
-GNU emacs GNU Emacs 22.0.97.1 (i686-pc-linux-gnu, GTK+ Version 2.4.13)
-
-

-
- -
-

Raw ages

- - -

-

-22      Sun, 11/25/07 6:38 PM 
-22      Thu, 11/15/07 11:55 PM 
-24      Fri, 11/16/07 4:15 AM 
-25      Sun, 11/18/07 10:05 PM 
-25      Sun, 11/25/07 12:04 PM 
-
-26      Mon, 11/19/07 10:29 AM 
-26      Sat, 11/24/07 4:38 AM 
-26      Thu, 11/15/07 2:45 PM 
-26      Thu, 11/15/07 7:22 PM 
-27      Fri, 11/16/07 9:20 AM 
-27      Wed, 11/28/07 3:20 AM 
-28      Sun, 12/2/07 5:32 AM 
-28      Thu, 11/15/07 10:06 PM 
-28      Thu, 11/15/07 12:04 PM 
-28      Thu, 11/15/07 12:17 PM 
-29      Mon, 11/19/07 8:06 PM 
-29      Thu, 11/15/07 11:27 AM 
-30      Fri, 11/16/07 3:26 AM 
-30      Thu, 11/15/07 10:07 PM 
-30      Thu, 11/15/07 3:01 PM 
-
-31      Fri, 11/16/07 2:30 AM 
-31      Sun, 11/18/07 3:14 PM 
-31 yrs.         Fri, 11/23/07 7:04 PM 
-32      Fri, 11/23/07 10:11 PM 
-32      Thu, 11/15/07 12:02 PM 
-33      Fri, 11/16/07 12:54 PM 
-33      Sat, 11/17/07 4:41 AM 
-33      Sat, 11/24/07 2:28 AM 
-33      Thu, 11/15/07 11:23 AM 
-33      Thu, 11/15/07 11:34 PM 
-33      Thu, 11/15/07 12:27 PM 
-33      Wed, 11/21/07 11:57 PM 
-34      Fri, 11/16/07 1:24 AM 
-34      Mon, 11/19/07 7:31 PM 
-34      Thu, 11/22/07 6:59 AM 
-35      Fri, 11/16/07 3:23 AM 
-35      Fri, 11/16/07 7:53 AM 
-35      Mon, 11/19/07 10:03 AM 
-35      Sun, 12/9/07 2:40 AM 
-35      Thu, 11/22/07 6:47 PM 
-35      Tue, 11/27/07 11:04 AM 
-
-36      Fri, 11/16/07 3:19 AM 
-37      Fri, 11/16/07 12:11 PM 
-37      Fri, 11/16/07 12:36 AM 
-37      Fri, 11/23/07 1:13 AM 
-37      Thu, 11/15/07 9:09 PM 
-37      Thu, 11/22/07 3:39 AM 
-37      Tue, 11/20/07 10:55 PM 
-38      Sun, 12/23/07 1:43 AM 
-39      Sun, 11/18/07 9:52 PM 
-39      Thu, 11/15/07 4:53 PM 
-40      Thu, 11/15/07 6:00 PM 
-
-41      Fri, 11/16/07 7:36 AM 
-41      Sat, 11/17/07 9:27 AM 
-42      Fri, 11/23/07 7:58 AM 
-42      Mon, 11/19/07 9:18 AM 
-42      Sat, 11/17/07 2:31 AM 
-42      Sat, 11/17/07 4:32 AM 
-42      Thu, 11/15/07 11:45 PM 
-42      Thu, 11/15/07 8:23 PM 
-43      Mon, 12/10/07 12:58 AM 
-45      Fri, 11/16/07 3:21 AM 
-45      Fri, 11/16/07 4:40 AM 
-45      Fri, 11/16/07 4:40 AM 
-45      Sun, 11/18/07 7:39 PM 
-
-46      Fri, 11/16/07 4:18 AM 
-47      Thu, 11/15/07 8:42 PM 
-49      Thu, 11/15/07 11:15 AM 
-
-

-

-52 Mon, 11/19/07 12:40 AM -54 Thu, 11/15/07 11:38 AM -54 Thu, 11/15/07 12:27 PM -

-
-
-

Author: Charles Cave -<charles.cave@gmail.com> -

-

Date: 2008/01/27 22:10:13

-
- diff --git a/ORGWEBPAGE/todo.html b/ORGWEBPAGE/todo.html deleted file mode 100644 index a93978524..000000000 --- a/ORGWEBPAGE/todo.html +++ /dev/null @@ -1,920 +0,0 @@ - - - -The Org-mode TODO list - - - - - - -

The Org-mode TODO list

-

Table of Contents

- - -

1 Introduction

- - -

-This is a loose collection of ideas and TODO items for the future -development of Org-mode. These ideas come from various sources, -mostly from emacs-orgmode@gnu.org, from direct emails to me, or from -my own day-dreaming. I don't always mention the source of an idea, -out of laziness. However, when I implement a good idea, I try to -mention the origin of this idea in the Acknowledgments section of -the manual - let me know if I forgot to give you credit for -something. -

- -

1.1 Nomenclature

- -

On this page, I am using TODO keywords in the following way: -

-- - - - - - - - - - - - - - -
KeywordIntention
TODOA development that is going to happen, once I have time or once I figure out how to do it.
IDEAA new idea, I have not yet decided what if anything I will do about it.
WISHA wish, probably voiced by someone on emacs-orgmode@gnu.org. This is less than a new idea, more a change in existing behavior.
QUESTIONA question someone asked, that needs some thinking before it can be answered
DECLINEDI have decided not to implement this feature, but I am keeping it in the list so that people can see it, complain, or still try to convince me.
INCONSISTENCYSome behavior in Org-mode that is not as clean and consistent as I would like it to be.
BUGThis needs to be fixed, as soon as possible.
DONEWell, done is done.
NEWThis is a tag, indicating recently added entries
- - - - -

2 Tasks

- - -

2.1 Structure

- - - -

2.2 Agenda issues

- - - -

2.3 Links

- - - -

2.4 DECLINED Fast update for external editing

- -

Could I use a dynamic block for this? -

- -

2.5 Tables

- - - -

2.6 Properties and Column View

- - - -

2.7 Compatibility issues

- - - -

2.8 Exporting

- - - -

2.9 Miscellaneous Stuff

- - - -

3 Archive

- - -

3.1 Archived Tasks

- - - -

Author: Carsten Dominik -<carsten.dominik@gmail.com> -

-

Date: 2007/07/10 10:35:08

- - diff --git a/ORGWEBPAGE/tutorials.html b/ORGWEBPAGE/tutorials.html deleted file mode 100644 index 9f7feda93..000000000 --- a/ORGWEBPAGE/tutorials.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - Tutorials now listed on Worg - - - - -

Org-mode tutorials are now maintained by the Worg project.

- -The page listing Org-mode tutorials and Screencasts is now maintained -by the Worg project, please update your book marks to -the new - page. - - - diff --git a/org-publish.el b/org-publish.el index d2628c7ed..aa75a60d3 100644 --- a/org-publish.el +++ b/org-publish.el @@ -5,7 +5,7 @@ ;; Author: David O'Toole ;; Maintainer: Bastien Guerry ;; Keywords: hypermedia, outlines, wp -;; Version: 5.23 +;; Version: 5.23a ;; This file is part of GNU Emacs. ;; diff --git a/org.el b/org.el index bba99c280..0aa74c37e 100644 --- a/org.el +++ b/org.el @@ -5,7 +5,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 5.23 +;; Version: 5.23a ;; ;; This file is part of GNU Emacs. ;; @@ -84,7 +84,7 @@ ;;; Version -(defconst org-version "5.23" +(defconst org-version "5.23a" "The version number of the file org.el.") (defun org-version (&optional here) -- 2.11.4.GIT