Changes between Version 8 and Version 9 of TracKeywordsPlugin


Ignore:
Timestamp:
May 13, 2011, 11:46:19 PM (13 years ago)
Author:
Nelso G. Jost
Comment:

Ref. #8799 revised install procedure

Legend:

Unmodified
Added
Removed
Modified
  • TracKeywordsPlugin

    v8 v9  
    2424You can check out TracKeywordsPlugin from [http://trac-hacks.org/svn/trackeywordsplugin here] using Subversion, or [source:trackeywordsplugin browse the source] with Trac.
    2525
    26 == Example ==
    27 
    28 in trac.ini:
     26== Install/Configuration ==
     27 
     28  1. Proceed with normal installation of plugins.
     29  1. Update the ticket template page to include this plugin page section `keywords.html`.[[BR]]
     30      * You can do this by including the following line somewhere in the ''html'' code:
    2931{{{
    30 [keywords]
    31 dupsearch = find duplicates for this ticket
    32 deploy = waiting to be deployed
    33 backport = ask for a decision on whether to backport
    34 }}}
    35 
    36 in ticket.cs (0.10 only):
    37 
     32<xi:include href="keywords.html" />
     33}}}
     34          * Suggested place: right before `</body>`.
     35      * Trac 0.12 files:
     36          * `<trac_egg>/trac/ticket/templates/ticket.html`
     37          * `<trac_egg>/trac/wiki/templates/wiki_edit.html` (For a slight integration with TagsPlugin, see #8799)
     38      * Trac 0.10 `ticket.cs` file:
    3839{{{
    3940...
     
    4445 <?cs if:ticket.actions.accept || ticket.actions.reopen ||
    4546         ticket.actions.resolve || ticket.actions.reassign ?>
    46 
    4747...
    4848}}}
     49  1. In `trac.ini` file, set up the keywords like:
     50{{{
     51[keywords]
     52dupsearch = find duplicates for this ticket
     53deploy = waiting to be deployed
     54backport = ask for a decision on whether to backport
     55}}}
     56     * The format is `name = description`
    4957
    5058== Recent Changes ==