Changeset 3940
- Timestamp:
- 07/02/08 21:50:05 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
advancedticketworkflowplugin/0.11/advancedworkflow/controller.py
r3820 r3940 358 358 <someaction>.xref = "Ticket %s is related to this ticket" 359 359 <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. 361 363 Don't forget to add the `TicketWorkflowOpXRef` to the workflow 362 364 option in [ticket]. … … 376 378 actions = ConfigurableTicketWorkflow(self.env).actions 377 379 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') 379 382 control = tag.input(type='text', id=id, name=id, value=ticketnum) 380 383 return (label, control, hint) advancedticketworkflowplugin/0.11/setup.py
r3820 r3940 5 5 setup( 6 6 name='AdvancedTicketWorkflowPlugin', 7 version='0. 9',7 version='0.10', 8 8 author = 'Eli Carter', 9 9 author_email = 'elicarter@retracile.net',
