From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oliver Dunkl Subject: Re: scrum with emacs org-mode Date: Wed, 03 Jul 2013 15:01:32 +0200 Message-ID: <87a9m33ihf.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60933) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UuMpO-0003mY-Hf for emacs-orgmode@gnu.org; Wed, 03 Jul 2013 09:10:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UuMpH-0004fo-Dk for emacs-orgmode@gnu.org; Wed, 03 Jul 2013 09:10:34 -0400 Received: from mail-wi0-x234.google.com ([2a00:1450:400c:c05::234]:38069) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UuMh2-0000bB-Jw for emacs-orgmode@gnu.org; Wed, 03 Jul 2013 09:01:56 -0400 Received: by mail-wi0-f180.google.com with SMTP id c10so102222wiw.13 for ; Wed, 03 Jul 2013 06:01:55 -0700 (PDT) Received: from io (089144206091.atnat0015.highway.a1.net. [89.144.206.91]) by mx.google.com with ESMTPSA id ez3sm18199478wib.3.2013.07.03.06.01.51 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 03 Jul 2013 06:01:53 -0700 (PDT) Received: from odi by io with local (Exim 4.80) (envelope-from ) id 1UuMgm-0001wU-CZ for emacs-orgmode@gnu.org; Wed, 03 Jul 2013 15:01:40 +0200 In-Reply-To: (thkoch@koch.ro's message of "02 Jul 2013 15:14:36 +0200") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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