emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] scrum with emacs org-mode


From: Oliver Dunkl
Subject: Re: [O] scrum with emacs org-mode
Date: Wed, 03 Jul 2013 15:01:32 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

address@hidden writes:

> has anybody some success stories to share how to use org-mode in scrum
> projects? Googling for scrum and org-mode already showed some
> interesting things:

I have made some additions to my agenda commands to produce a
Scrum-Board for the current file or a defined file.

My status for the Board are:

TODO - all open tasks
PROG - all tasks currently in progress
DONE - all done tasks
IDEA - all tasks in the backlog

(setq org-agenda-custom-commands
        ("W" . "Work queries")
        ("Ws" . "Scrum Boards"
         ;; all open tasks
         ((todo "TODO"
                ((org-agenda-files '("Work.org"))
                 (org-agenda-overriding-header "All open tasks:")
                 (org-agenda-todo-keyword-format "")
                 (org-agenda-sorting-strategy '(priority-down))))
          ;; all tasks currently in progress
          (todo "PROG"
                ((org-agenda-files '("Work.org"))
                 (org-agenda-overriding-header "All tasks in progess:")
                 (org-agenda-todo-keyword-format "")
                 (org-agenda-sorting-strategy '(priority-down))))
          ;; product backlog
          (todo "IDEA"
                ((org-agenda-files '("Work.org"))
                 (org-agenda-todo-keyword-format "")
                 (org-agenda-overriding-header "Product Backlog:")))
          ;; all done tasks
          (todo "DONE"
                ((org-agenda-files '("Work.org"))
                 (org-agenda-overriding-header "All done tasks:")
                 (org-agenda-todo-keyword-format "")
                 (org-agenda-sorting-strategy '(priority-down)))))))

So if you like to produce the Scrum-Board for the current file

C-c < a W s

or for the given file 'Work.org'

C-c a W s

You can also tag your sprints if you like. I have very good experience
with that approach for multiple projects at the same time.

\= odi

Oliver Dunkl
Software Engineer



reply via email to

[Prev in Thread] Current Thread [Next in Thread]