Changes between Version 6 and Version 7 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Feb 3, 2010, 9:57:04 PM (14 years ago)
Author:
Ryan J Ollos
Comment:

Page cleanup.

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v6 v7  
    55== Description ==
    66
    7 TracTicketTemplate enable users to create ticket using templates which can be customized by Trac administrator. Trac administrator can specify a general template '''default''' for all uncustomized ticket types.
     7TracTicketTemplate 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.
    88
    99== Bugs/Feature Requests ==
     
    2525== Install ==
    2626
    27  You can install this software as normal Trac plugin.
     27You can install this software following the normal procedure for a Trac plugin.
    2828
    2929 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:
     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:
    3432  * python setup.py install
    35 
    36  4. If you want to install this plugin to trac instance only:
     33 1. If you want to install this plugin to trac instance only:
    3734  * python setup.py bdist_egg
    3835  * copy the generated egg file to the trac instance's plugin directory
    3936  {{{
    40 cp dist/*.egg /srv/trac/env/plugins
    41 }}}
    42 
    43  5. Config trac.ini:
     37  cp dist/*.egg /srv/trac/env/plugins
     38  }}}
     39 1. Config trac.ini:
    4440  {{{
    45 [components]
    46 tickettemplate.* = enabled
    47 }}}
     41  [components]
     42  tickettemplate.* = enabled
     43  }}}
    4844
    4945== Example ==