Changes between Initial Version and Version 1 of ChildTicketsPlugin/Examples


Ignore:
Timestamp:
Jan 5, 2012, 8:36:37 PM (12 years ago)
Author:
Mark Ryan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ChildTicketsPlugin/Examples

    v1 v1  
     1[[PageOutline(2-5,Contents,pullout)]]
     2
     3== Examples ==
     4
     5=== Handling multiple bug-fixes for single bug-report ===
     6
     7In my last job using trac with svn, we had a branch of development for each milestone of development plus a 'special' milestone to assign for hotfix/patches. Rather than creating a single 'bug-fix' ticket and commenting on the ticket that the fix had been applied to milestone X on branch X, milestone Y on branch Y, etc..., we would create a single 'bug-report' ticket (with version info but no milestone) and this ticket would, after assessment from developers/project-mgr, have a bug-fix child-ticket created per milestone - each with its own life-cycle, priority, (sometimes) developer, etc ...
     8
     9[[Image(bug-report-example.jpg)]]
     10
     11=== Handling sub-tasks from a single issue ===
     12
     13Probably self explanatory: you have something that needs to be done by several different people. Split it up into sub-tasks.
     14
     15[[Image(issue-example.jpg)]]
     16
     17=== A New Feature generates bugs ===
     18
     19When developing a new feature (a single ticket), our developers would 'finish' the feature and pass it to our testing department. The feature, on the whole, might be OK but require several days testing. Within that time several bugs are generated as a direct result of this new feature. It makes no sense to pass the original feature ticket back to the developers (the feature has not been 'rejected' and is still in testing!), so instead, the testing tem can make 'bug-fix' child-tickets for this parent ticket. The feature might even be released with known bugs but at least they're recorded and owned by someone/somewhere!
     20
     21=== Using the 'parent.type.restrict_child_type' Option ===
     22
     23If you are using the above option, the available child types will be rendered as individual buttons.
     24
     25[[Image(MultipleChildType.png)]]
     26
     27=== Creating a Progress Bar for Child Tickets ===
     28
     29If you have a lot of child tickets for one parent, and want an overview of those tickets, you can use the ProgressMeterMacro as provided by [wiki:qwp0]. In order to use this, simply provide the 'parent' as the only search query. For example, if you put the following macro definition in your ticket description:
     30
     31{{{
     32[[ProgressMeter(parent=#1)]]
     33}}}
     34
     35Then the following will appear in the ticket description:
     36
     37[[Image(progmeter_ticket.png)]]