Changes between Initial Version and Version 1 of SumStatsPlugin


Ignore:
Timestamp:
Nov 22, 2011, 9:20:24 PM (12 years ago)
Author:
Rob Guttman
Comment:

New hack SumStatsPlugin, created by robguttman

Legend:

Unmodified
Added
Removed
Modified
  • SumStatsPlugin

    v1 v1  
     1[[PageOutline(2-5,Contents,pullout)]]
     2
     3= Sums specified field in Roadmap and Milestone stats =
     4
     5== Description ==
     6
     7This is a complement to the [wiki:SumFieldsPlugin Sum Fields plugin] which sums fields in a query or report.  This plugin sums fields for the Roadmap and Milestone views.  These plugins are useful when assessing progress based on "points" or "ideal days" of effort instead of ticket count.
     8
     9This plugin was inspired by the CustomRoadmapPlugin but overcomes its limitation of requiring a patch.  Additionally, this plugin allows for any fields to be used to define a group, not just the default {{{status}}} field.
     10
     11== Bugs/Feature Requests ==
     12
     13Existing bugs and feature requests for SumStatsPlugin are
     14[report:9?COMPONENT=SumStatsPlugin here].
     15
     16If you have any issues, create a
     17[http://trac-hacks.org/newticket?component=SumStatsPlugin&owner=robguttman new ticket].
     18
     19== Download ==
     20
     21Download the zipped source from [download:sumstatsplugin here].
     22
     23== Source ==
     24
     25You can check out SumStatsPlugin from [http://trac-hacks.org/svn/sumstatsplugin here] using Subversion, or [source:sumstatsplugin browse the source] with Trac.
     26
     27== Example ==
     28
     29Here's an example {{{trac.ini}}} config that combines a custom {{{phase}}} field with the default {{{status}}} workflow:
     30{{{
     31[roadmap]
     32stats_provider = SumTicketGroupStatsProvider
     33
     34[milestone]
     35stats_provider = SumTicketGroupStatsProvider
     36
     37[milestone-groups]
     38closed = fixed
     39closed.field = resolution
     40closed.label = fixed
     41closed.order = 1
     42closed.overall_completion = true
     43readying = *
     44readying.field = phase
     45readying.order = 2
     46readying.color = YellowGreen
     47implementation = implementation
     48implementation.field = phase
     49implementation.order = 3
     50implementation.color = Yellow
     51waiting = waiting
     52waiting.field = phase
     53waiting.order = 4
     54waiting.color = White
     55scoping = sizing,definition
     56scoping.field = phase
     57scoping.order = 5
     58scoping.color = Red
     59}}}
     60
     61== Recent Changes ==
     62
     63[[ChangeLog(sumstatsplugin, 3)]]
     64
     65== Author/Contributors ==
     66
     67'''Author:''' [wiki:robguttman] [[BR]]
     68'''Maintainer:''' [wiki:robguttman] [[BR]]
     69'''Contributors:'''