Changes between Version 28 and Version 29 of ScrumBurndownPlugin


Ignore:
Timestamp:
Sep 13, 2006, 12:59:12 PM (18 years ago)
Author:
Sam Bloomquist
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ScrumBurndownPlugin

    v28 v29  
    1010== Installation Instructions ==
    1111
    12 Installing this plugin is a five-step process.
    13  1. Add the 'integer' custom field type: http://trac-hacks.org/wiki/NewCustomFieldsPatch
     12Installing this plugin is a four-step process.
     13 1. Install the egg
    1414 1. Add custom ticket fields
    15  1. Install the egg
    1615 1. Create a cron/pycron job to run a daily python script
    1716 1. Add permission fields
     17
     18==== Installing the egg ====
     19Install 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.  You will get an error message saying that the database needs to be upgraded and telling you the trac-admin command to do it.  (I think it's something like 'trac-admin !YourProjectName.db upgrade').  Perform the upgrade.
    1820
    1921==== Add custom ticket fields ====
     
    2527
    2628[ticket-custom]
    27 orig_estimate = integer
     29orig_estimate = text
    2830orig_estimate.label = Original Estimate (in hours)
    29 current_estimate = integer
     31current_estimate = text
    3032current_estimate.label = Current Estimate (in hours)
    31 time_spent = integer
     33time_spent = text
    3234time_spent.label = Time Spent
    3335}}}
    3436
    3537Original 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.
    36 
    37 ==== Installing the egg ====
    38 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.  You will get an error message saying that the database needs to be upgraded and telling you the trac-admin command to do it.  (I think it's something like 'trac-admin !YourProjectName.db upgrade').  Perform the upgrade.
    3938
    4039==== Pycron/cron job ====
     
    9291
    9392== Questions ==
    94  1. The link to add 'integer' doesn't appear to add integer custom type, am I missing something??  2006/08/24)
     93 1. The link to add 'integer' doesn't appear to add integer custom type, am I missing something??  (2006/08/24) 
     94    [[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.''