Changes between Version 2 and Version 3 of ScrumBurndownPlugin


Ignore:
Timestamp:
Jun 23, 2006, 3:51:31 PM (18 years ago)
Author:
Sam Bloomquist
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ScrumBurndownPlugin

    v2 v3  
    55A plugin to enable burndown chart capabilities, a common part of Scrum and other agile development methodologies.
    66
    7 This plugin is currently under development and is not yet functioning.
     7== Installation Instructions ==
     8
     9Installing this plugin is a four-step process.
     101. Apply this patch to enable the 'integer' ticket field type
     111. Add custom ticket fields
     121. Install the egg
     131. Create a cron/pycron job to run a daily python script
     14
     15=== Adding custom ticket fields ===
     16Add the following to your trac.ini file:
     17
     18{{{
     19[components]
     20burndown.* = enabled
     21
     22[ticket-custom]
     23orig_estimate = integer
     24orig_estimate.label = Original Estimate (in hours)
     25current_estimate = integer
     26current_estimate.label = Current Estimate (in hours)
     27time_spent = integer
     28time_spent.label = Time Spent
     29}}}
     30
     31Original estimate is not really used by the plugin, it's just common Scrum process to be able to see how the estimates have change throughout a given sprint.
     32
     33=== Installing the egg ===
     34Install just like you would any other Trac plugin.  Drop the egg into...
    835
    936== Bugs/Feature Requests ==
     
    1946Download the zipped source from [download:scrumburndownplugin here].
    2047
     48Download the distributable Python egg from [attachment:TracBurndown-0.1-py2.3.egg here].
     49
    2150== Source ==
    2251