emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Oliver Dunkl <odunkl@gmx.net>
To: emacs-orgmode@gnu.org
Subject: Re: scrum with emacs org-mode
Date: Wed, 03 Jul 2013 15:01:32 +0200	[thread overview]
Message-ID: <87a9m33ihf.fsf@gmail.com> (raw)
In-Reply-To: <Prayer.1.3.4.1307021514360.17852@koch.ro> (thkoch@koch.ro's message of "02 Jul 2013 15:14:36 +0200")

thkoch@koch.ro 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

      parent reply	other threads:[~2013-07-03 13:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-02 13:14 scrum with emacs org-mode thkoch
2013-07-02 17:11 ` OSiUX
2013-07-03  7:48 ` Samuel Loury
2013-07-03 13:01 ` Oliver Dunkl [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87a9m33ihf.fsf@gmail.com \
    --to=odunkl@gmx.net \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).