Changes between Version 13 and Version 14 of CloneTicketPlugin


Ignore:
Timestamp:
Aug 25, 2015, 11:51:54 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • CloneTicketPlugin

    v13 v14  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Add a "Clone" button to tickets =
     3= Add a "Clone" button to tickets
    44
    5 Adds a "Clone" button to each ticket.
     5This plugin adds a "Clone" button to each ticket:
    66
    77[[Image(CloneTicketButton.png)]]
    88
    9 == Installation ==
    10 Get the plugin from
    11   http://trac.edgewall.org/browser/trunk/sample-plugins/ticket_clone.py?rev=6153
     9This allows you to quickly create tickets that have a similar content.
    1210
    13 Hint:
    14  At first glance there is only a Trac view of the code. Go down to the bottom of that page and use the download option "Original Format" under section "Download in other formats". Even the other link "Plain Text" will work just fine for saving the file to your system, but may load the file into a different viewer/editor, if in your favorite browser you choose to open it instead of just downloading.
     11== Installation
     12
     13Get the plugin from http://trac.edgewall.org/browser/trunk/sample-plugins/ticket_clone.py?rev=6153
     14
     15At first glance there is only a Trac view of the code. Go down to the bottom of that page and use the download option "Original Format" under section "Download in other formats". Even the other link "Plain Text" will work just fine for saving the file to your system, but may load the file into a different viewer/editor, if in your favorite browser you choose to open it instead of just downloading.
     16
    1517Copy ticket_clone.py to the plugin directory and restart the server that is providing Trac (tracd, Apache, etc.). The corresponding section in trac.ini enables the plugin with usual syntax:
    16 {{{
    17 #!ini
     18{{{#!ini
    1819[components]
    1920ticket_clone.* = enabled
    2021}}}
    2122
    22  '''Trac `0.11`''':: You have to enable the plugin manually, either directly in trac.ini before restarting the server, or through the admin interface after restarting.
    23  '''Trac `0.12dev`''':: The plugin will just work after server restart. This was tested with 0.12dev-[[Trac:r8263]], but should work  with any later version as well. You'll only need to got to trac.ini or the admin interface, if you'd like to disable the plugin without removing it from the plugin directory.
    24  '''Trac `0.13dev`''':: this feature is now integrated as an optional component ([T10686]). You only need to activate it in trac.ini (`tracopt.ticket.clone`) or by using the plugin panel in the web admin.
     23 '''Trac 0.11''':: You have to enable the plugin manually, either directly in trac.ini before restarting the server, or through the admin interface after restarting.
     24 '''Trac 0.12dev''':: The plugin will just work after server restart. This was tested with 0.12dev-[[Trac:r8263]], but should work  with any later version as well. You'll only need to got to trac.ini or the admin interface, if you'd like to disable the plugin without removing it from the plugin directory.
     25 '''Trac 0.13dev''':: this feature is now integrated as an optional component ([T10686]). You only need to activate it in trac.ini (`tracopt.ticket.clone`) or by using the plugin panel in the web admin.