Changes between Version 2 and Version 3 of NewTicketLikeThisPlugin


Ignore:
Timestamp:
Jan 6, 2012, 3:25:05 PM (12 years ago)
Author:
ejucovy
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewTicketLikeThisPlugin

    v2 v3  
    2121module:
    2222
    23 * ``SimpleTicketCloner`` mimics the behavior of the
    24   ``core tracopt.ticket.clone.ticketclonebutton`` extension: all fields
    25   from the original ticket are cloned, and the "summary" and "description"
    26   fields are modified to denote the ticket that they were cloned from.
     23* !SimpleTicketCloner mimics the behavior of the ``core tracopt.ticket.clone.ticketclonebutton`` extension: all fields from the original ticket are cloned, and the "summary" and "description" fields are modified to denote the ticket that they were cloned from.
    2724
    28 * ``ExcludedFieldsTicketCloner`` clones all fields from the original ticket
    29   with no modifications.  It can also ignore certain fields entirely,
    30   based on a configuration setting, which will force the new ticket to be
    31   generated with the system's default values (or no values) for the fields
    32   that were excluded.
     25* !ExcludedFieldsTicketCloner clones all fields from the original ticket with no modifications.  It can also ignore certain fields entirely, based on a configuration setting, which will force the new ticket to be generated with the system's default values (or no values) for the fields that were excluded.
    3326
    3427More complex policies might implement custom logic for deriving new ticket
     
    5750To use the plugin, install it in your Trac environment and enable its
    5851components in ``trac.ini``::
    59 
     52{{{
    6053  [components]
    6154  newticketlikethis.* = enabled
    62 
     55}}}
    6356By default this will add the "Clone" button to the ticket view, and
    6457will use the ``SimpleTicketCloner`` component to clone your tickets.