Changes between Version 17 and Version 18 of AdvancedTicketWorkflowPlugin


Ignore:
Timestamp:
May 18, 2008, 2:51:05 AM (16 years ago)
Author:
Eli Carter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedTicketWorkflowPlugin

    v17 v18  
    1414 * run_external
    1515 * triage
     16 * xref
    1617
    1718(File requests for additional operations as enhancement tickets.)
     
    9394<someaction>.triage_split = defect->new_defect,task->new_task,enhancement->new_enhancement
    9495}}}
     96 * xref (TicketWorkflowOpXRef)
     97    Adds a comment to the ticket specified in the text field.  Enter either the bare ticket number or '#' + ticket number.  The format of the comment to be added to the other ticket is given as a python string with a single `%s` in it.  That format string defaults to `'Ticket %s is related to this ticket'`.
     98{{{
     99;displays as "close as duplicate [_________]"
     100dup = * -> closed
     101dup.name = close
     102dup.operations = set_resolution,xref
     103dup.set_resolution = duplicate
     104dup.xref = Ticket %s has been marked as a duplicate of this ticket.
     105}}}
    95106
    96107== Recent Changes ==