Show
Ignore:
Timestamp:
07/02/08 21:50:05 (5 months ago)
Author:
retracile
Message:

AdvancedTicketWorkflowPlugin: Implement #3098: Add support for customizing the workflow action hint for xref. Bump version to 0.10

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • advancedticketworkflowplugin/0.11/advancedworkflow/controller.py

    r3820 r3940  
    358358    <someaction>.xref = "Ticket %s is related to this ticket" 
    359359    <someaction>.xref_local = "Ticket %s was marked as related to this ticket" 
    360  
     360    <someaction>.xref_hint = "The specified ticket will be cross-referenced with this ticket" 
     361 
     362    The example values shown are the default values. 
    361363    Don't forget to add the `TicketWorkflowOpXRef` to the workflow 
    362364    option in [ticket]. 
     
    376378        actions = ConfigurableTicketWorkflow(self.env).actions 
    377379        label = actions[action]['name'] 
    378         hint = 'The specified ticket will be cross-referenced with this ticket' 
     380        hint = actions[action].get('xref_hint', 
     381            'The specified ticket will be cross-referenced with this ticket') 
    379382        control = tag.input(type='text', id=id, name=id, value=ticketnum) 
    380383        return (label, control, hint) 
  • advancedticketworkflowplugin/0.11/setup.py

    r3820 r3940  
    55setup(   
    66        name='AdvancedTicketWorkflowPlugin', 
    7         version='0.9', 
     7        version='0.10', 
    88        author = 'Eli Carter', 
    99        author_email = 'elicarter@retracile.net',