Edgewall Software

Changes between Version 58 and Version 59 of WorkFlow


Ignore:
Timestamp:
Apr 13, 2007, 10:35:03 PM (17 years ago)
Author:
Eli Carter
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WorkFlow

    v58 v59  
    1616''implemented in phase1''
    1717
    18 Configurable workflow allows you to change the ticket states and state transitions.  A common desire is to have a "testing" state where QA can get involved.  The default WorkFlow implementation allows you to configure that workflow from the trac.ini.
     18Configurable workflow allows you to change the ticket states and state transitions.  A common desire is to have a "testing" state where QA can get involved.  The default WorkFlow implementation ([source:sandbox/pycon/workflow/trac/ticket/api.py@5197#L137 DefaultTicketActionController]) allows you to configure that workflow from the trac.ini.
     19
    1920
    2021There are several working [source:sandbox/pycon/workflow/contrib/workflow examples] available.
    2122
    22 But you can do more than that with plugins.  Plugins may augment the default WorkFlow, adding actions and side-effects to ticket state transitions.  Or, if a drastically different WorkFlow is needed, the default workflow may be entirely replaced by a plugin.
    23 
     23But you can do more than that with plugins.  Plugins may augment the default WorkFlow, adding actions and side-effects to ticket state transitions.  There are a few working [source:sandbox/pycon/workflow/sample-plugins/workflow examples] available.  (They're simplistic, but should be useful nonetheless.)
     24If a drastically different WorkFlow is needed, DefaultTicketActionController may be disabled and entirely replaced by a plugin.
    2425
    2526----