From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Release 5.22 Date: Wed, 20 Feb 2008 09:11:14 -0500 Message-ID: <87ejb7btvh.fsf@gollum.intra.norang.ca> References: <5D652E6F-D590-4899-B5AA-4C56E96C4AA3@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JRpfQ-0002v9-BO for emacs-orgmode@gnu.org; Wed, 20 Feb 2008 09:11:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JRpfN-0002tT-Ct for emacs-orgmode@gnu.org; Wed, 20 Feb 2008 09:11:23 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JRpfN-0002tD-6P for emacs-orgmode@gnu.org; Wed, 20 Feb 2008 09:11:21 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JRpfM-0000fi-VE for emacs-orgmode@gnu.org; Wed, 20 Feb 2008 09:11:21 -0500 In-Reply-To: <5D652E6F-D590-4899-B5AA-4C56E96C4AA3@science.uva.nl> (Carsten Dominik's message of "Tue\, 19 Feb 2008 09\:20\:15 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: org-mode mailing list Carsten Dominik writes: > Changes to logging progress > --------------------------- > > There is now more control over which state changes are being > logged in what way. Please read carefully the corresponding > sections in the manual. Basically: > > - The variable `org-log-done' has been simplified, it no > longer influences logging state changes and clocking out. > - There is a new variable for triggering note-taking when > clocking out an item: `org-log-note-clock-out'. > - Logging of state changes now has to be configured on a > pre-keyword basis, either in `org-todo-keywords' or in the > #+TODO in-buffer setting. > - These per-keyword settings allow more control. For example > > WAIT(w@) Record a note when entering this state. > WAIT(w!) Record a timestamp when entering this state. > WAIT(w@/!) Recore a note when entering and timestamp > when leaving this state. This is great for > getting a record when switching *back* from > WAIT to TODO. > WAIT(/!) Record a timestamp when leaving this state. > Here we not even define a fast access > character, but just the logging stuff. > > This was triggered by requests from Wanrong Lin and Bernt Hansen. > I tried setting my TODO keywords to (setq org-todo-keywords '((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!/!)") (sequence "WAITING(w@/!)" "|" "CANCELLED(c!/!)") (sequence "SOMEDAY(s!/!)" "|"))) But that messes up the agenda view. Old DONE tasks appear again (things with due dates -446 days ago for instance) Removing the /! and restarting emacs fixes it. Sorry :( Bernt