Changes between Version 7 and Version 8 of RoadmapFilterPlugin


Ignore:
Timestamp:
Apr 1, 2017, 6:23:23 AM (7 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • RoadmapFilterPlugin

    v7 v8  
    66
    77This is a plugin that allows you to include or exclude milestones from the roadmap.
     8
     9Two new fields appear in the box at the top right of the roadmap page: "Include" and "Exclude".
     10
     11In each box, you can enter milestone names to filter in or out. Seperate multiple names with | (pipe).
     12
     13Some standard Trac prefixes are allowed at the start of each milestone name:
     14 * '{{{^}}}' on the front means milestones starting with the following string will be included in the filter.
     15 * '{{{$}}}' on the front means milestones ending with the following string will be included in the filter.
     16 * '{{{~}}}' on the front means milestones containing the following string will be included in the filter.
     17
     18Anything else is an exact match.
    819
    920See also: RoadmapPlugin
     
    2940== Installation
    3041
    31 It's simple enough to not need the usual install procedure. Just copy {{{RoadmapFilter.py}}} to {{{[trac-env-path]/plugins}}} directory of your Trac instance.
    32 
    33 == Configuration
     42To install this plugin copy {{{RoadmapFilter.py}}} to {{{[trac-env-path]/plugins}}} directory of your Trac instance.
    3443
    3544To enable this component, put the following in the {{{[Components]}}} section of your `trac.ini`:
     
    3948roadmapfilter.* = enabled
    4049}}}
    41 
    42 == Example
    43 
    44 Two new fields appear in the box at the top right of the roadmap page: "Include" and "Exclude".
    45 
    46 In each box, you can enter milestone names to filter in or out. Seperate multiple names with | (pipe).
    47 
    48 Some standard Trac prefixes are allowed at the start of each milestone name:
    49  * '{{{^}}}' on the front means milestones starting with the following string will be included in the filter.
    50  * '{{{$}}}' on the front means milestones ending with the following string will be included in the filter.
    51  * '{{{~}}}' on the front means milestones containing the following string will be included in the filter.
    52 
    53 Anything else is an exact match.
    5450
    5551== Recent Changes