diff --git a/ORGWEBPAGE/Changes.org b/ORGWEBPAGE/Changes.org index 5fde1ad94..71646465b 100644 --- a/ORGWEBPAGE/Changes.org +++ b/ORGWEBPAGE/Changes.org @@ -55,6 +55,10 @@ The variable =org-agenda-dim-blocked-tasks= controls how blocked entries should appear in the agenda, where they can be dimmed or even made invisible. +Furthermore, you can use the variable +=org-enforce-todo-checkbox-dependencies= to block TODO entries +from switching to DONE while any checkboxes are unchecked in the entry. + *** Support for shift-selection in Emacs 23 Customize the variable =org-support-shift-select= to use S-cursor diff --git a/ORGWEBPAGE/index.org b/ORGWEBPAGE/index.org index 20f222e5f..5c39d58e7 100644 --- a/ORGWEBPAGE/index.org +++ b/ORGWEBPAGE/index.org @@ -54,14 +54,14 @@ a look at our [[http://orgmode.org/worg/org-quotes.php][collected quotes about O - <2009-01-21 Wed>: Release 6.18c - <2009-01-20 Tue>: Release 6.18 -* Current Version (6.20g) +* Current Version (6.20h) -The current version is 6.20g. To see what has changed in recent +The current version is 6.20h. To see what has changed in recent releases, check this detailed list of [[file:Changes.html][user-visible changes]]. This package works on Emacs 23 and 22, and (with minor restrictions) on Emacs 21 and XEmacs 21. Emacs 22.2 ships with Org-mode version -4.67d. Emacs 23.1 release is expected to ship with 6.20c. The latest +4.67d. Emacs 23.1 release is expected to ship with 6.20h. The latest CVS Emacs trunk usually contains a fairly recent version, but may lag a bit behind the website release. @@ -69,7 +69,7 @@ a bit behind the website release. ** The standard distribution -Download as [[file:org-6.20g.zip][zip file]] or [[file:org-6.20g.tar.gz][gzipped tar archive]]. These archives contain +Download as [[file:org-6.20h.zip][zip file]] or [[file:org-6.20h.tar.gz][gzipped tar archive]]. These archives contain both the Lisp file org.el and the documentation in PDF and (TeX)Info formats. Follow the instructions for [[http://orgmode.org/manual/Installation.html#Installation][Installation]] and [[http://orgmode.org/manual/Activation.html#Activation][Activation]]. diff --git a/README_DIST b/README_DIST index 9ef93c0ba..9c222b7a3 100644 --- a/README_DIST +++ b/README_DIST @@ -1,7 +1,7 @@ The is a distribution of Org, a plain text notes and project planning tool for Emacs. -The version of this release is: 6.20g +The version of this release is: 6.20h The homepage of Org is at http://orgmode.org diff --git a/doc/org.texi b/doc/org.texi index 00055aec3..9f951bb7f 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -3,7 +3,7 @@ @setfilename ../../info/org @settitle The Org Manual -@set VERSION 6.20g +@set VERSION 6.20h @set DATE January 2009 @dircategory Emacs @@ -3319,9 +3319,10 @@ all subtasks (defined as children tasks) are marked as DONE. And sometimes there is a logical sequence to a number of (sub)tasks, so that one task cannot be acted upon before all siblings above it are done. If you customize the variable @code{org-enforce-todo-dependencies}, Org will block entries -from changing state while they have children that are not DONE. Furthermore, -if an entry has a property @code{ORDERED}, each of its children will be -blocked until all earlier siblings are marked DONE. Here is an example: +from changing state to DONE while they have children that are not DONE. +Furthermore, if an entry has a property @code{ORDERED}, each of its children +will be blocked until all earlier siblings are marked DONE. Here is an +example: @example * TODO Blocked until (two) is done diff --git a/doc/orgcard.tex b/doc/orgcard.tex index c9e8fc329..14dbbd177 100644 --- a/doc/orgcard.tex +++ b/doc/orgcard.tex @@ -1,5 +1,5 @@ % Reference Card for Org Mode -\def\orgversionnumber{6.20g} +\def\orgversionnumber{6.20h} \def\versionyear{2009} % latest update \def\year{2009} % latest copyright year diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index c84c7a72f..268218031 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-archive.el b/lisp/org-archive.el index bee2fa09f..680d17102 100644 --- a/lisp/org-archive.el +++ b/lisp/org-archive.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-attach.el b/lisp/org-attach.el index 2d4229b09..28c1df021 100644 --- a/lisp/org-attach.el +++ b/lisp/org-attach.el @@ -4,7 +4,7 @@ ;; Author: John Wiegley ;; Keywords: org data task -;; Version: 6.20g +;; Version: 6.20h ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-bbdb.el b/lisp/org-bbdb.el index 58fc0dd01..5a816d34c 100644 --- a/lisp/org-bbdb.el +++ b/lisp/org-bbdb.el @@ -7,7 +7,7 @@ ;; Thomas Baumann ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-bibtex.el b/lisp/org-bibtex.el index 0392cfeaa..7f63b839d 100644 --- a/lisp/org-bibtex.el +++ b/lisp/org-bibtex.el @@ -5,7 +5,7 @@ ;; Author: Bastien Guerry ;; Carsten Dominik ;; Keywords: org, wp, remember -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-clock.el b/lisp/org-clock.el index 170cb53a1..e1decc08b 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-colview-xemacs.el b/lisp/org-colview-xemacs.el index 54dd6fa67..f25a7ba18 100644 --- a/lisp/org-colview-xemacs.el +++ b/lisp/org-colview-xemacs.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-colview.el b/lisp/org-colview.el index 94785ce77..e60fd8cd6 100644 --- a/lisp/org-colview.el +++ b/lisp/org-colview.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-compat.el b/lisp/org-compat.el index 6c5acbbec..09ee0ee23 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-exp.el b/lisp/org-exp.el index a9fb6ecda..47406fd35 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-export-latex.el b/lisp/org-export-latex.el index 7e0c929ca..eef75c5b6 100644 --- a/lisp/org-export-latex.el +++ b/lisp/org-export-latex.el @@ -4,7 +4,7 @@ ;; ;; Emacs Lisp Archive Entry ;; Filename: org-export-latex.el -;; Version: 6.20g +;; Version: 6.20h ;; Author: Bastien Guerry ;; Maintainer: Bastien Guerry ;; Keywords: org, wp, tex diff --git a/lisp/org-faces.el b/lisp/org-faces.el index f6548d035..64bc55906 100644 --- a/lisp/org-faces.el +++ b/lisp/org-faces.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-footnote.el b/lisp/org-footnote.el index 7ea076db4..89bc2ea64 100644 --- a/lisp/org-footnote.el +++ b/lisp/org-footnote.el @@ -5,7 +5,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-gnus.el b/lisp/org-gnus.el index 2a6aa0f34..61fa15cff 100644 --- a/lisp/org-gnus.el +++ b/lisp/org-gnus.el @@ -7,7 +7,7 @@ ;; Tassilo Horn ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-id.el b/lisp/org-id.el index 6ab4a5462..16ffe8cf7 100644 --- a/lisp/org-id.el +++ b/lisp/org-id.el @@ -5,7 +5,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-info.el b/lisp/org-info.el index 025145942..32699314a 100644 --- a/lisp/org-info.el +++ b/lisp/org-info.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-irc.el b/lisp/org-irc.el index cd3b02fd9..0d4fc4e9b 100644 --- a/lisp/org-irc.el +++ b/lisp/org-irc.el @@ -4,7 +4,7 @@ ;; ;; Author: Philip Jackson ;; Keywords: erc, irc, link, org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-jsinfo.el b/lisp/org-jsinfo.el index 172592be4..748e54ca1 100644 --- a/lisp/org-jsinfo.el +++ b/lisp/org-jsinfo.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-list.el b/lisp/org-list.el index 13f54dc83..49606cc9f 100644 --- a/lisp/org-list.el +++ b/lisp/org-list.el @@ -7,7 +7,7 @@ ;; Bastien Guerry ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-mac-message.el b/lisp/org-mac-message.el index 6b068382e..5e05899f3 100644 --- a/lisp/org-mac-message.el +++ b/lisp/org-mac-message.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2008, 2009 Free Software Foundation, Inc. ;; Author: John Wiegley -;; Version: 6.20g +;; Version: 6.20h ;; Keywords: outlines, hypermedia, calendar, wp ;; This file is part of GNU Emacs. diff --git a/lisp/org-macs.el b/lisp/org-macs.el index 87f44c6b0..1042a88f8 100644 --- a/lisp/org-macs.el +++ b/lisp/org-macs.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-mew.el b/lisp/org-mew.el index 329a47f84..79a127949 100644 --- a/lisp/org-mew.el +++ b/lisp/org-mew.el @@ -5,7 +5,7 @@ ;; Author: Tokuya Kameshima ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; This file is part of GNU Emacs. diff --git a/lisp/org-mhe.el b/lisp/org-mhe.el index b8faeb347..a654fb576 100644 --- a/lisp/org-mhe.el +++ b/lisp/org-mhe.el @@ -6,7 +6,7 @@ ;; Author: Thomas Baumann ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-mouse.el b/lisp/org-mouse.el index c291fa36a..4927fff42 100644 --- a/lisp/org-mouse.el +++ b/lisp/org-mouse.el @@ -4,7 +4,7 @@ ;; ;; Author: Piotr Zielinski ;; Maintainer: Carsten Dominik -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-plot.el b/lisp/org-plot.el index 392f0b2ea..5da3bcaaa 100644 --- a/lisp/org-plot.el +++ b/lisp/org-plot.el @@ -5,7 +5,7 @@ ;; Author: Eric Schulte ;; Keywords: tables, plotting ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-publish.el b/lisp/org-publish.el index 8d44521eb..2a70e1062 100644 --- a/lisp/org-publish.el +++ b/lisp/org-publish.el @@ -4,7 +4,7 @@ ;; Author: David O'Toole ;; Maintainer: Bastien Guerry ;; Keywords: hypermedia, outlines, wp -;; Version: 6.20g +;; Version: 6.20h ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-remember.el b/lisp/org-remember.el index f6d07691e..13f746cdf 100644 --- a/lisp/org-remember.el +++ b/lisp/org-remember.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-rmail.el b/lisp/org-rmail.el index 068f4fe97..e57114f4c 100644 --- a/lisp/org-rmail.el +++ b/lisp/org-rmail.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-table.el b/lisp/org-table.el index ddd56d994..12f370554 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-timer.el b/lisp/org-timer.el index a06a157dc..c70563762 100644 --- a/lisp/org-timer.el +++ b/lisp/org-timer.el @@ -5,7 +5,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-vm.el b/lisp/org-vm.el index 191e40066..74c42fc8f 100644 --- a/lisp/org-vm.el +++ b/lisp/org-vm.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-w3m.el b/lisp/org-w3m.el index d6ab9185b..beded70fd 100644 --- a/lisp/org-w3m.el +++ b/lisp/org-w3m.el @@ -5,7 +5,7 @@ ;; Author: Andy Stewart ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org-wl.el b/lisp/org-wl.el index 1de5c3a62..83b4ef54e 100644 --- a/lisp/org-wl.el +++ b/lisp/org-wl.el @@ -6,7 +6,7 @@ ;; Author: Tokuya Kameshima ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org.el b/lisp/org.el index 615de0386..ff0451f37 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.20g +;; Version: 6.20h ;; ;; This file is part of GNU Emacs. ;; @@ -94,7 +94,7 @@ ;;; Version -(defconst org-version "6.20g" +(defconst org-version "6.20h" "The version number of the file org.el.") (defun org-version (&optional here)