[[PageOutline]] = Scrum Burndown in Trac = == News == * '''Say goodbye to the cron job! ''' I finally found some time to implement Trac's iTicketChangeListener plugin interface so that now the burndown chart gets updated every time you change a ticket (version 01.08.10). This simplifies the install process quite a bit. * ''Note that you may have to click the 'Start Milestone' button for any sprints that you're in the middle of after you upgrade to the latest version.'' == Description == A plugin to enable burndown chart capabilities, a common part of Scrum and other agile development methodologies. This plugin is now integrated with the TimingAndEstimationPlugin. '''Current Version:''' 01.08.10 -- attachment:TracBurndown-01.08.10-py2.3.egg [[BR]] ''Note that version 01.04.10 and later should work with python 2.4. The egg file just says py2.3 because that's what I had installed on the computer that built it.'' ''You will have to rename it to correct python version '''before''' installing to make it work.'' == Who's Using It == I'm interested to know how many people are using this plugin. If a lot of people are using it or at least evaluating it, I will be able to justify spending more time on it to my boss. If you download it, please increment this counter: '''174''' Also, feel free to drop me an e-mail if you've got any questions that aren't answered here and aren't really ticketable. == Installation Instructions == Installing this plugin is a five-step process. 1. Install the TimingAndEstimationPlugin 1. Install the ScrumBurndownPlugin egg 1. Assign permissions 1. Upgrade Trac project 1. Restart the server ==== Installing the egg ==== Install just like you would any other Trac plugin. Drop the egg into your plugins or site-packages folder and then try to access Trac in your browser. Add plugin to [components] section in trac.ini (at least the following plugins must be enabled) {{{ [components] timingandestimationplugin.* = enabled burndown.* = enabled }}} ==== Assign Permissions ==== Assign permissions to users for 'BURNDOWN_VIEW' and 'BURNDOWN_ADMIN' The BURNDOWN_ADMIN permission gives users access to the 'Start Milestone' and 'Milestone Complete' buttons. ==== Upgrade The Project ==== Use 'trac-admin /full/path/to/YourProjectName upgrade' to perform the upgrade. You will get an error message saying that the database needs to be upgraded and telling you to use the trac-admin command to do it if you don't upgrade. ==== Restart The Server ==== Finally, you will need to restart your webserver in order to see some of the features that ScrumBurndownPlugin provides, such as the addition of a 'burndown' link on the trac navbar. == Using the plugin == [[Image(burndown.jpg)]] At the beginning of a sprint, after the tickets have been inputted and estimated in Trac an admin user should click the 'Start Milestone' plugin. This inputs a datetime integer into the milestone table to indicate when the milestone was started. The daily burndown_job.py script will only record hours_remaining entries for milestones that have started, but have not been completed. It should be fairly obvious, then, that an admin user should click the 'Milestone Complete' button at the end of the milestone to prevent the burndown_job from continuing to collect data. You can view different burndown charts, selectable by milestone and component by choosing from the dropdowns and clicking the 'Show Burndown Chart' button. In order for this to work, it is imperative that developers keep the 'Estimated Hours' and 'Total Hours' fields accurate and up-to-date on the tickets they are working. The 'Total Hours' field itself should never be manually edited, but rather, it can be changed by inputting positive and negative values into the 'Hours to Add' field. == Bugs/Feature Requests == Existing bugs and feature requests for ScrumBurndownPlugin are [report:9?COMPONENT=ScrumBurndownPlugin here]. If you have any issues, create a [http://trac-hacks.org/newticket?component=ScrumBurndownPlugin&owner=sambloomquist new ticket]. == Download == Download the distributable Python egg [attachment:TracBurndown-01.08.10-py2.3.egg here]. Download a zip file of the complete source [attachment:burndown_src.zip here]. Currently version 01.06.10 == Related Plugins == * This plugin relies on the TimingAndEstimationPlugin * Future plans for this plugin will make use of the [http://trac.edgewall.org/wiki/WebAdmin WebAdmin] plugin == Source == You can check out ScrumBurndownPlugin from [http://trac-hacks.org/svn/scrumburndownplugin here] using Subversion, or [source:scrumburndownplugin browse the source] with Trac. == Recent Changes == [[ChangeLog(scrumburndownplugin, 3)]] == Author/Contributors == '''Author:''' [wiki:sambloomquist] [[BR]] '''Contributors:''' == Questions == 1. The link to add 'integer' doesn't appear to add integer custom type, am I missing something?? (2006/08/24) [[BR]]''Answer: Removed the 'integer' type requirement because the patch for it is gone. Using text seems to work fine and is simpler. I may add some of the validation brought by the integer type back into the plugin at a future date.''