From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: repetitive activity over a period of time, starting at the same time each day Date: Fri, 06 Nov 2009 11:51:56 -0500 Message-ID: References: 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 1N6S2h-0002V3-51 for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 11:52:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N6S2b-0002S6-Rm for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 11:52:06 -0500 Received: from [199.232.76.173] (port=39912 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N6S2b-0002S3-K6 for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 11:52:01 -0500 Received: from out4.smtp.messagingengine.com ([66.111.4.28]:34490) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N6S2b-0000fr-9L for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 11:52:01 -0500 In-Reply-To: (Crni Gorac's message of "Fri, 6 Nov 2009 11:10:59 +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: Crni Gorac Cc: emacs-orgmode@gnu.org Crni Gorac writes: > How to specify a time interval for a TODO that will say span over two > weeks, working days only, and that will start each day at 10am. I > tried with timestamps available in org-mode, as well as with Emacs > diary timestamps, but to no avail. Any suggestion? > You could use a diary sexp: --8<---------------cut here---------------start------------->8--- * 10:00am Every weekday for two weeks <%%(and (memq (calendar-day-of-week date) '(1 2 3 4 5)) (diary-block 11 9 2009 11 20 2009))> --8<---------------cut here---------------end--------------->8--- - Matt