Changes between Version 9 and Version 10 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Feb 8, 2010, 5:52:53 PM (14 years ago)
Author:
Richard Liao
Comment:

Update document for version 0.7

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v9 v10  
    55== Description ==
    66
    7 TracTicketTemplate enables users to create tickets using templates which can be customized by the Trac administrator. The Trac administrator can specify a general template '''default''' for all uncustomized ticket types.
     7 * TicketTemplate enable users to create ticket using templates which can be customized by Trac administrator and themselves.
     8 * Trac administrator can spcify a general system level template '''default''' for all uncustomized ticket types.
     9 * System level ticket templates are ticket type specific.
     10 * User level ticket templates (ie, my template) can be managed by common users.
     11 * This version can work with Trac 0.11/0.12.
    812
     13= Changes in version 0.7 =
     14 * This version has fully i18n support with Trac 0.12dev r9098 above.
     15 * New feature: support '''My Template'''. Everyone can manage their own templates now.
     16 * New feature: template can include any fields, the default field is description.
     17 
    918== Bugs/Feature Requests ==
    1019
     
    2433
    2534== Install ==
     35 '''IMPORTANT''': Please BACKUP you ticket templates if you are upgrading this plugin.
    2636
    27 You can install this software following the normal procedure for a Trac plugin.
     37 You can install this software as normal Trac plugin.
    2838
    29  1. Uninstall TracTicketTemplate if you have installed before.
    30  1. Change to the directory containning setup.py.
    31  1. If you want to install this plugin globally, that will install this plugin to the python path:
     39 1. Uninstall this plugin if you have installed before.
     40
     41 2. Change to the directory containning setup.py.
     42 
     43 * (Optional): If you are using Trac 0.12 with i18n, you should compile language files here:
     44 {{{
     45python setup.py compile_catalog -f
     46}}}
     47
     48 3. If you want to install this plugin globally, that will install this plugin to the python path:
    3249  * python setup.py install
    33  1. If you want to install this plugin to trac instance only:
     50
     51 4. If you want to install this plugin to trac instance only:
    3452  * python setup.py bdist_egg
    3553  * copy the generated egg file to the trac instance's plugin directory
    3654  {{{
    37   cp dist/*.egg /srv/trac/env/plugins
    38   }}}
    39  1. Config trac.ini:
     55cp dist/*.egg /srv/trac/env/plugins
     56}}}
     57
     58 5. Config trac.ini:
    4059  {{{
    41   [components]
    42   tickettemplate.* = enabled
    43   }}}
     60[components]
     61tickettemplate.* = enabled
     62
     63[tickettemplate]
     64field_list = summary, description, reporter, owner, priority, cc, milestone, component, version, type
     65}}}
     66 Set field_list to choose which field should be included in template.
    4467
    4568== Example ==