Changes between Version 43 and Version 44 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Nov 2, 2015, 10:06:40 AM (8 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v43 v44  
    1919 * New feature: template can include any fields, the default field is description.
    2020 * New feature: support template params that can be specified by URL.
    21  * New feature: support importing and exporting ticket_templates(by Russell Ballestrini).
     21 * New feature: support importing and exporting ticket_templates (by Russell Ballestrini).
    2222 
    2323See: '''ZoomQuiet''' ~ Collection KSPEG Trac hacking
     
    3535== Download
    3636
    37 Download the zipped source from [download:tractickettemplateplugin here].
     37Download the zipped source from [export:tractickettemplateplugin here].
    3838
    3939== Source
    4040
    41 You can check out TracTicketTemplatePlugin from [http://trac-hacks.org/svn/tractickettemplateplugin here] using Subversion, or [source:tractickettemplateplugin browse the source] with Trac.
     41You can check out TracTicketTemplatePlugin from [/svn/tractickettemplateplugin here] using Subversion, or [source:tractickettemplateplugin browse the source] with Trac.
    4242
    4343== Installation
     
    5656}}}
    5757 1. If you want to install this plugin globally, that will install this plugin to the Python path:
    58   * python setup.py install
    59  1. If you want to install this plugin to Trac instance only:
    60   * python setup.py bdist_egg
    61   * copy the generated egg file to the Trac instance's plugin directory
     58  * `python setup.py install`
     59 1. If you want to install this plugin to one Trac instance only:
     60  * `python setup.py bdist_egg`
     61  * Copy the generated egg file to the Trac instance's plugin directory:
    6262  {{{#!sh
    6363cp dist/*.egg /srv/trac/env/plugins
     
    141141blah blah anything blah blah
    142142}}}
    143   * And owner field would be filled by myname by trac's default convention.
    144   * Note: be careful choosing template param name, to avoid conflicting with ticket field names.
     143  * And owner field would be filled by myname by Trac's default convention.
     144  * Note: be careful choosing template param name to avoid conflicting with ticket field names.
    145145
    146146== Recent Changes