* automatic scheduling of next task in project
@ 2014-02-27 11:04 Peter Rayner
2014-03-06 13:15 ` Karl Voit
0 siblings, 1 reply; 4+ messages in thread
From: Peter Rayner @ 2014-02-27 11:04 UTC (permalink / raw)
To: emacs-orgmode
I would like org-mode to remind me automatically of the next task in a
project. Perhaps an example will help. I'll use outline headings to
show the levels of tasks
* Write trends paper
** global section
*** analyze GCP results
*** Calculate confidence intervals on trends
** Inverse Model section
*** Code to read inverse model output
*** Calculate regional Uncertainties
**** Generate new region groupings
**** Rerun calculation
etc etc
I can flatten this list into a list of TODO and I can store it as a
separate project that will be incorporated into the agenda view. What
I would like is that when I change one of these items to "done" the
next one is automatically scheduled into the agenda. It means I can
plan the workflow for a project then not have to bother remembering
where I was up to ... guess who is doing too many things at once :-)
Is this already possible? If not, is it worth creating some kind of
file option so that, when a file is scanned for incorporation into the
agenda view, the first TODO item that isn't listed as done will be
listed in the agenda?
Thanks in advance
Peter
***
--
Support us in the OXFAM trailwalker as we try to walk 100km in 24
hours. <https://trailwalker.oxfam.org.au/team/home/15596>
Peter Rayner
room 343
School of Earth Sciences, University of Melbourne, 3010, Vic, Australia
tel: work: +61 (0)3 8344 9708; fax: +61 (0)3 8344 7761
mobile +61 402 752 379, skype: petermorag
mail-to: prayner@unimelb.edu.au
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: automatic scheduling of next task in project
2014-02-27 11:04 automatic scheduling of next task in project Peter Rayner
@ 2014-03-06 13:15 ` Karl Voit
2014-03-06 14:13 ` Matt Lundin
0 siblings, 1 reply; 4+ messages in thread
From: Karl Voit @ 2014-03-06 13:15 UTC (permalink / raw)
To: emacs-orgmode
* Peter Rayner <peter.julien.rayner@gmail.com> wrote:
> I would like org-mode to remind me automatically of the next task in a
> project. Perhaps an example will help. I'll use outline headings to
> show the levels of tasks
Auto-scheduling might be difficult.
In my workflows I am using dependencies with :BLOCKER: and settings
SCHEDULED dates roughly but on the aggressive side.
With (setq org-agenda-dim-blocked-tasks t) I get them all on my
agenda. You just have to learn to visually ignore the dimmed tasks.
From time to time I re-check dimmed tasks for the reason why they
are dimmed/blocked to find dead-ends.
An additional/other approach would be the use of :TRIGGER:
chain-siblings(NEXT) in order to move the NEXT state from a finished
task to the next one.
--
mail|git|SVN|photos|postings|SMS|phonecalls|RSS|CSV|XML to Org-mode:
> get Memacs from https://github.com/novoid/Memacs <
https://github.com/novoid/extract_pdf_annotations_to_orgmode + more on github
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: automatic scheduling of next task in project
2014-03-06 13:15 ` Karl Voit
@ 2014-03-06 14:13 ` Matt Lundin
2014-03-07 8:42 ` Xebar Saram
0 siblings, 1 reply; 4+ messages in thread
From: Matt Lundin @ 2014-03-06 14:13 UTC (permalink / raw)
To: Karl Voit; +Cc: news1142, emacs-orgmode
Karl Voit <devnull@Karl-Voit.at> writes:
> * Peter Rayner <peter.julien.rayner@gmail.com> wrote:
>> I would like org-mode to remind me automatically of the next task in a
>> project. Perhaps an example will help. I'll use outline headings to
>> show the levels of tasks
>
> Auto-scheduling might be difficult.
>
> In my workflows I am using dependencies with :BLOCKER: and settings
> SCHEDULED dates roughly but on the aggressive side.
>
> With (setq org-agenda-dim-blocked-tasks t) I get them all on my
> agenda. You just have to learn to visually ignore the dimmed tasks.
> From time to time I re-check dimmed tasks for the reason why they
> are dimmed/blocked to find dead-ends.
You can also set org-agenda-dim-blocked-tasks to 'invisible, which will
remove blocked tasks entirely from the agenda. Then, you could add the
property ":ORDERED: t" to the heading and schedule them (for the diary
agenda) or mark them NEXT/TODO (for the todo list). This would cause
each event to appear on the agenda after the blocking task is marked
done.
> An additional/other approach would be the use of :TRIGGER:
> chain-siblings(NEXT) in order to move the NEXT state from a finished
> task to the next one.
Or, since the OP is using org-depend.el (in contrib), he could also use
:TRIGGER: chain-siblings-scheduled(NEXT).
Best,
Matt
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: automatic scheduling of next task in project
2014-03-06 14:13 ` Matt Lundin
@ 2014-03-07 8:42 ` Xebar Saram
0 siblings, 0 replies; 4+ messages in thread
From: Xebar Saram @ 2014-03-07 8:42 UTC (permalink / raw)
To: Matt Lundin; +Cc: Karl Voit, news1142, org mode, peter.julien.rayner
[-- Attachment #1: Type: text/plain, Size: 1737 bytes --]
Hi Peter and all
Peter you wrote:
I can flatten this list into a list of TODO and I can store it as a
separate project that will be incorporated into the agenda view
Do you mind giving a short example on how thats done? id be
very interested in using this myself
best
Z
On Thu, Mar 6, 2014 at 4:13 PM, Matt Lundin <mdl@imapmail.org> wrote:
> Karl Voit <devnull@Karl-Voit.at> writes:
>
> > * Peter Rayner <peter.julien.rayner@gmail.com> wrote:
> >> I would like org-mode to remind me automatically of the next task in a
> >> project. Perhaps an example will help. I'll use outline headings to
> >> show the levels of tasks
> >
> > Auto-scheduling might be difficult.
> >
> > In my workflows I am using dependencies with :BLOCKER: and settings
> > SCHEDULED dates roughly but on the aggressive side.
> >
> > With (setq org-agenda-dim-blocked-tasks t) I get them all on my
> > agenda. You just have to learn to visually ignore the dimmed tasks.
> > From time to time I re-check dimmed tasks for the reason why they
> > are dimmed/blocked to find dead-ends.
>
> You can also set org-agenda-dim-blocked-tasks to 'invisible, which will
> remove blocked tasks entirely from the agenda. Then, you could add the
> property ":ORDERED: t" to the heading and schedule them (for the diary
> agenda) or mark them NEXT/TODO (for the todo list). This would cause
> each event to appear on the agenda after the blocking task is marked
> done.
>
> > An additional/other approach would be the use of :TRIGGER:
> > chain-siblings(NEXT) in order to move the NEXT state from a finished
> > task to the next one.
>
> Or, since the OP is using org-depend.el (in contrib), he could also use
> :TRIGGER: chain-siblings-scheduled(NEXT).
>
> Best,
> Matt
>
>
[-- Attachment #2: Type: text/html, Size: 3350 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-07 8:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-27 11:04 automatic scheduling of next task in project Peter Rayner
2014-03-06 13:15 ` Karl Voit
2014-03-06 14:13 ` Matt Lundin
2014-03-07 8:42 ` Xebar Saram
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).