From mboxrd@z Thu Jan 1 00:00:00 1970 From: claude fuhrer Subject: auto scheduling task Date: Wed, 11 Dec 2019 14:20:45 +0100 Message-ID: <5f044ce7-132e-a282-53ca-ebf6d85b4b00@fuhrer.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:41564) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1if1vA-00057b-Bo for emacs-orgmode@gnu.org; Wed, 11 Dec 2019 08:20:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1if1v8-0004m2-Ng for emacs-orgmode@gnu.org; Wed, 11 Dec 2019 08:20:51 -0500 Received: from smtp-sh2.infomaniak.ch ([128.65.195.6]:37539) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1if1v8-0004gM-EI for emacs-orgmode@gnu.org; Wed, 11 Dec 2019 08:20:50 -0500 Received: from smtp-3-0001.mail.infomaniak.ch (smtp-3-0001.mail.infomaniak.ch [10.4.36.108]) by smtp-sh2.infomaniak.ch (8.14.4/8.14.4/Debian-8+deb8u2) with ESMTP id xBBDKk2D045476 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Wed, 11 Dec 2019 14:20:46 +0100 Received: from [IPv6:2a02:1205:c6bc:96e0:b887:887b:ed5f:9648] (unknown [IPV6:2a02:1205:c6bc:96e0:b887:887b:ed5f:9648]) by smtp-3-0001.mail.infomaniak.ch (Postfix) with ESMTPA id 25F60102CF4A9 for ; Wed, 11 Dec 2019 14:20:45 +0100 (CET) Content-Language: en-US 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" To: emacs-orgmode@gnu.org Hi all Trying to organise my day I faced to a small problem I would like be able to create a list of task with duration and start=20 time for the first one. For example (this is pseudo code, do not work=20 for real) ** Day 11-dec-2019 *** Task 1 =C2=A0=C2=A0=C2=A0 scheduled: <2019-12-11 Wed 09:25> duration:0:30 *** Task B =C2=A0=C2=A0=C2=A0 duration: 0:45 *** Another task =C2=A0=C2=A0=C2=A0 duration: 1:15 and then these task would be automatically displayed in my agenda (when=20 using the command org-agenda) as they were scheduled completely that is : start time of first task: given end time of first task : start time + duration start time of second task : end time of first time end time of second task : start time + duration. The order should be the order of=C2=A0 the task in the list (if needed th= ey=20 could all be tagged as "today task" for example). Moreover I would like=20 to be able to insert a task during the day in the list (for example=20 between "Task B" and "Another Task" and the next time I display the=20 agenda it consider the new task ). Is there a way to do something like this ? Thank you in advance for your=20 help