From mboxrd@z Thu Jan 1 00:00:00 1970 From: Viktor Rosenfeld Subject: Re: How to define a start date for a task? Date: Sun, 18 Dec 2011 17:30:18 +0100 Message-ID: <20111218163018.GA19789@localhost> References: <2011-12-17T21-30-46@devnull.Karl-Voit.at> <87sjkirhdu.fsf@norang.ca> <20111218114144.GA18896@kenny.fritz.box> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52476) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RcJd3-0006Uu-GH for emacs-orgmode@gnu.org; Sun, 18 Dec 2011 11:30:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RcJd2-0001Nf-CK for emacs-orgmode@gnu.org; Sun, 18 Dec 2011 11:30:25 -0500 Received: from mail-ee0-f41.google.com ([74.125.83.41]:49228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RcJd2-0001NY-7Z for emacs-orgmode@gnu.org; Sun, 18 Dec 2011 11:30:24 -0500 Received: by eekc41 with SMTP id c41so4803241eek.0 for ; Sun, 18 Dec 2011 08:30:23 -0800 (PST) Content-Disposition: inline In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, > Thank you! That is interesting. Is my understanding correct, that you > meant something like the following. > > * TODO Task, that can be completed tomorrow or later > START: [2011-12-19 Mon] Either like this (which can be queried using TIMESTAMP_IA="<2011-12-19 Mon>" or using a property (START="<...>"): * TODO Task :PROPERTIES: :START: [2011-12-19 Mon] :END: > This task will not show up on the daily agenda tomorrow since the > timestamp is inactive. But it is still shown its the agenda task list > today. I don't understand why it would show today. The date is in the future (and it's not a deadline) and the timestamp is inactive. It should not show up at all, unless the variable org-agenda-include-inactive-timestamps is set. > What I have to do now is to write a custom agenda search that > shows me all tasks that do not have a start timestamp or a start > timestamp in the past or today. This search would hide tasks with a > start date in the future. I'm not sure how one can query for tasks that do not have a property. A possible work-around would be querying for all tasks and then using a skip function to discard those have a start date in the future. Cheers, Viktor