Changes between Version 24 and Version 25 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Aug 15, 2010, 7:09:03 AM (14 years ago)
Author:
Richard Liao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v24 v25  
    1515 * New feature: support '''My Template'''. Everyone can manage their own templates now.
    1616 * New feature: template can include any fields, the default field is description.
     17 * New feature: support template params that can be specified by URL.
    1718 
    1819== Bugs/Feature Requests ==
     
    120121  [[Image(AdminTicketTemplatePage-v0.7.png,50%)]]
    121122
     123 * About template params:
     124  * This plugin support template params which can be specified by URL. For example:
     125  * The template:
     126  {{{
     127blah blah %(my_param)s blah blah
     128}}}
     129  * Call newticket:
     130  {{{
     131http://yourtrac/newticket?my_param=anything&owner=myname
     132}}}
     133  * Rendered:
     134  {{{
     135blah blah anything blah blah
     136}}}
     137  * And owner field would be filled by myname by trac's default convention.
     138
    122139= Prerequisite =
    123140 * [http://pypi.python.org/pypi/simplejson simplejson]