Changes between Version 3 and Version 4 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Oct 16, 2008, 4:40:58 AM (16 years ago)
Author:
Richard Liao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v3 v4  
    2323You can check out TracTicketTemplatePlugin from [http://trac-hacks.org/svn/tractickettemplateplugin here] using Subversion, or [source:tractickettemplateplugin browse the source] with Trac.
    2424
     25== Install ==
     26
     27 You can install this software as normal Trac plugin.
     28
     29 1. Uninstall TracTicketTemplate if you have installed before.
     30
     31 2. Change to the directory containning setup.py.
     32
     33 3. If you want to install this plugin globally, that will install this plugin to the python path:
     34  * python setup.py install
     35
     36 4. If you want to install this plugin to trac instance only:
     37  * python setup.py bdist_egg
     38  * copy the generated egg file to the trac instance's plugin directory
     39  {{{
     40cp dist/*.egg /srv/trac/env/plugins
     41}}}
     42
     43 5. Config trac.ini:
     44  {{{
     45[components]
     46tickettemplate.* = enabled
     47}}}
     48
    2549== Example ==
    2650
    2751 * Trac administrator should define the template for all ticket types:
    28   * Login as administrator, open Admin -> Ticket System -> Ticket Template
    29   * 'load' the template of each ticket type, modify them and 'apply changes'
    30  * After defined ticket template, normal user can create ticket using predefined template by change ticket types dropdown list items.
     52  * Login as administrator, open Admin -> Ticket System -> Ticket Template
     53  * '''load''' the template of each ticket type, modify them and '''apply changes'''
     54 * After defined ticket template, normal user can create ticket using predefined template by '''change ticket types''' dropdown list items.
    3155 * Screenshot
    3256  * [[Image(trac_ttt_demo.png)]]