Edgewall Software

Changes between Version 160 and Version 161 of TracIni


Ignore:
Timestamp:
Nov 21, 2009, 7:18:53 PM (14 years ago)
Author:
Christian Boos
Comment:

improve the #milestone-groups-section, as suggested

Legend:

Unmodified
Added
Removed
Modified
  • TracIni

    v160 v161  
    7474that will be shown in different colors in the milestone progress bar.
    7575
    76 Example configuration (the default only has closed and active, and you will need to remove the comments, or else you get a syntax error):
     76Example configuration (the default only has closed and active):
    7777{{{
    7878closed = closed
    79 closed.order = 0                     # sequence number in the progress bar
    80 closed.query_args = group=resolution # optional extra param for the query
    81 closed.overall_completion = true     # indicates groups that count for overall completion percentage
     79# sequence number in the progress bar
     80closed.order = 0
     81# optional extra param for the query (two additional columns: created and modified and sort on created)
     82group=resolution,order=time,col=id,col=summary,col=owner,col=type,col=priority,col=component,col=severity,col=time,col=changetime
     83# indicates groups that count for overall completion
     84closed.overall_completion = truepercentage
    8285
    8386new = new
     
    8689new.label = new
    8790
    88 active = *                           # one catch-all group is allowed
    89 active.order = 1
    90 active.css_class = open              # CSS class for this interval
    91 active.label = in progress           # Displayed label for this group
     91# one catch-all group is allowed
     92active = *
     93active.order = 2
     94# CSS class for this interval
     95active.css_class = open
     96# Displayed label for this group
     97active.label = in progress
    9298}}}
    9399
     
    129135   No, there's no such thing. There ''might'' be a plugin providing support for this, for Trac 0.12. However, Trac 0.12 will support an `url` property for repositories.
    130136 * It can be helpful to know the default values for each entry, perhaps specified in a common format such as square brackets [] at the end of the description (or at the beginning of the description). ''for 0.12?''
    131  * Suggested edits for the [svn] section
    132 || branches || Comma separated list of paths categorized as branches. If a path ends with '*', then all the directory entries found below that path will be included.  Example: `branches = /trunk, /branches/*, /ProjectB/trunk, /ProjectB/branches/milestone3`. ||
    133 || tags || Comma separated list of paths categorized as tags. If a path ends with '*', then all the directory entries found below that path will be included.  Example: `tags = /tags/*, /ProjectB/tags/milestone1, /ProjectB/tags/milestone2`. ||
    134  * I'd like some example usage of the query_args parameter in the [milestone-groups] [wiki:TracIni#milestone-groups-section section] for showing additional columns and changing the sort order. This example gives two additional columns: created and modified and it sorts on created.
    135 {{{
    136 closed = closed
    137 closed.order = 0
    138 closed.overall_completion = true
    139 closed.query_args = group=resolution,col=id,col=summary,col=owner,col=type,col=priority,col=component,col=severity,col=time,col=changetime,order=time
    140137}}}
    141138----