Changes between Version 11 and Version 12 of TracKeywordsPlugin


Ignore:
Timestamp:
Jul 24, 2012, 8:49:37 PM (12 years ago)
Author:
Ryan J Ollos
Comment:

Needs adoption.

Legend:

Unmodified
Added
Removed
Modified
  • TracKeywordsPlugin

    v11 v12  
    77
    88Allows to set a description for every keyword, which is shown as a tip when you cross over the mouse on the keyword from "Add keywords" section.
     9
     10See also: KeywordSuggestPlugin
    911
    1012== Usage ==
     
    2830== Install/Configuration ==
    2931 
    30   1. Proceed with normal installation of plugins.
    31   1. Update the ticket template page to include this plugin page section ("Add keywords").[[BR]]
    32       * You can do this by including the following line somewhere in the `keywords.html` file:
    33 {{{
    34 <xi:include href="keywords.html" />
    35 }}}
    36           * Suggested place: right before `</body>` tag.
    37           * Where to locate files @ Trac 0.12:
    38             * `<trac_egg>/trac/ticket/templates/ticket.html`
    39             * `<trac_egg>/trac/wiki/templates/wiki_edit.html` (For a slight integration with TagsPlugin, see #8799)
    40           * Trac 0.10 `ticket.cs` file:
    41 {{{
    42 ...
    43 </fieldset><?cs /if ?>;
     32The plugin follows the standard installation procedures described in t:TracPlugins. Here are some specifics and highlights.
    4433
    45 <?cs include "keywords.cs" ?>
    46 
    47 <?cs if:ticket.actions.accept || ticket.actions.reopen ||
    48         ticket.actions.resolve || ticket.actions.reassign ?>
    49 ...
    50 }}}
    51   1. '''Configure''' `trac.ini` file, with you required keywords:
     34  1. Configure `trac.ini` file, with you required keywords:
    5235     * Format `<name> = <description>`, where description will shown as a tip.
    5336     * Example:
     
    5841backport = ask for a decision on whether to backport
    5942}}}
    60   1. '''Restart''' web server:
     43  1. Restart web server:
    6144{{{
    6245#!sh
     
    7760
    7861'''Author:''' [wiki:thomasvs] [[BR]]
    79 '''Maintainer:''' [wiki:rjollos] [[BR]]
     62'''Maintainer:''' ''none'' [[BR]]
    8063'''Contributors:''' rea, nelsojost
    81 
    82 == See also ==
    83 
    84  KeywordSuggestPlugin.