Changes between Version 4 and Version 5 of MilestoneTemplatePlugin


Ignore:
Timestamp:
Mar 20, 2016, 1:43:14 PM (8 years ago)
Author:
figaro
Comment:

Rearranged paragraphs to maintain consistency

Legend:

Unmodified
Added
Removed
Modified
  • MilestoneTemplatePlugin

    v4 v5  
    1313
    1414Additionally there is a preview of the milestone description (where you may use WikiFormatting) since version 0.1.1.
    15 
    16 == Usage
    17 
    18 When creating a new milestone you may use a dropdown list for selecting a template. The contents of the template is used for the milestone description on creation. Note that the dropdown list is only available after creation of one or more template pages.
    19 
    20 Milestone templates may use the variable ''$MILESTONE'' for inserting the chosen milestone name into the description. This may be useful if the template contains a TracQuery with milestone parameter.
    21 
    22 {{{
    23 [[TicketQuery(max=5,status=closed,milestone=$MILESTONE,format=table,col=resolution|summary|milestone)]]
    24 }}}
    2515
    2616== !Bugs/Feature Requests
     
    4636General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4737
    48 Enable the plugin by going to the plugin admin page or by adding the following to your configuration file:
     38Enable the plugin by going to the plugin admin page or by adding the following to your `trac.ini` configuration file:
    4939{{{#!ini
    5040[components]
     
    5444There are no default templates after installation. You need to create wiki pages with prefix ''!MilestoneTemplates/'' by yourself.
    5545
     46== Usage
     47
    5648Examples for milestone template names:
    5749
     
    5951* !MilestoneTemplates/MyMilestoneTemplate
    6052
     53When creating a new milestone you may use a dropdown list for selecting a template. The contents of the template is used for the milestone description on creation. Note that the dropdown list is only available after creation of one or more template pages.
    6154
     55Milestone templates may use the variable ''$MILESTONE'' for inserting the chosen milestone name into the description. This may be useful if the template contains a TracQuery with milestone parameter.
    6256
     57{{{
     58[[TicketQuery(max=5,status=closed,milestone=$MILESTONE,format=table,col=resolution|summary|milestone)]]
     59}}}
    6360
    6461== Recent Changes