Changes between Initial Version and Version 1 of TracWorkflow

Show
Ignore:
Timestamp:
01/17/08 22:31:16 (18 years ago)
Author:
trac (IP: 127.0.0.1)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracWorkflow

    v1 v1  
     1= The Trac Ticket Workflow System = 
     2[[TracGuideToc]] 
     3 
     4The Trac issue database provides a configurable workflow. 
     5 
     6== The Default Ticket Workflow == 
     7=== Environments upgraded from 0.10 === 
     8When you run `trac-admin <env> upgrade`, your `trac.ini` will be modified to include a `[ticket-workflow]` section. 
     9The workflow configured in this case is the original workflow, so that ticket actions will behave like they did in 0.10. 
     10 
     11Graphically, that looks like this: 
     12 
     13[[Image(htdocs:../common/original-workflow.png)]] 
     14 
     15There are some significant "warts" in this; such as accepting a ticket sets it to 'assigned' state, and assigning a ticket sets it to 'new' state.  Perfectly obvious, right? 
     16So you will probably want to migrate to "basic" workflow; `contrib/workflow/migrate_original_to_basic.py` may be helpful. 
     17 
     18=== Environments created with 0.11 === 
     19When a new environment is created, a default workflow is configured in your trac.ini.  This workflow is the basic workflow (described in `basic-workflow.ini`), which is somewhat different from the workflow of the 0.10 releases. 
     20 
     21Graphically, it looks like this: 
     22 
     23[[Image(htdocs:../common/basic-workflow.png)]] 
     24 
     25== Additional Ticket Workflows == 
     26 
     27There are several example workflows provided in the Trac source tree; look in `contrib/workflow` for `.ini` config sections.  One of those may be a good match for what you want. 
     28 
     29== Basic Ticket Workflow Customization == 
     30 
     31Create a `[ticket-workflow]` section in `trac.ini`. 
     32Within this section, each entry is an action that may be taken on a ticket.  
     33For example, consider the `accept` action from `simple-workflow.ini`: 
     34{{{ 
     35accept = new,accepted -> accepted 
     36accept.permissions = TICKET_MODIFY 
     37accept.operations = set_owner_to_self 
     38}}} 
     39The first line in this example defines the `accept` action, along with the states the action is valid in (`new` and `accepted`), and the new state of the ticket when the action is taken (`accepted`). 
     40The `accept.permissions` line specifies what permissions the user must have to use this action. 
     41The `accept.operations` line specifies changes that will be made to the ticket in addition to the status change when this action is taken.  In this case, when a user clicks on `accept`, the ticket owner field is updated to the logged in user.  Multiple operations may be specified in a comma separated list. 
     42 
     43The available operations are: 
     44 - del_owner -- Clear the owner field. 
     45 - set_owner -- Sets the owner to the selected or entered owner. 
     46   - ''actionname''`.set_owner` may optionally be set to a comma delimited list or a single value. 
     47 - set_owner_to_self -- Sets the owner to the logged in user. 
     48 - del_resolution -- Clears the resolution field 
     49 - set_resolution -- Sets the resolution to the selected value. 
     50   - ''actionname''`.set_resolution` may optionally be set to a comma delimited list or a single value. 
     51 - leave_status -- Displays "leave as <current status>" and makes no change to the ticket. 
     52'''Note:''' Specifying conflicting operations (such as `set_owner` and `del_owner`) has unspecified results. 
     53 
     54{{{ 
     55resolve_accepted = accepted -> closed 
     56resolve_accepted.name = resolve 
     57resolve_accepted.permissions = TICKET_MODIFY 
     58resolve_accepted.operations = set_resolution 
     59}}} 
     60 
     61In this example, we see the `.name` attribute used.  The action here is `resolve_accepted`, but it will be presented to the user as `resolve`. 
     62 
     63For actions that should be available in all states, `*` may be used in place of the state.  The obvious example is the `leave` action: 
     64{{{ 
     65leave = * -> * 
     66leave.operations = leave_status 
     67leave.default = 1 
     68}}} 
     69This also shows the use of the `.default` attribute.  This value is expected to be an integer, and the order in which the actions are displayed is determined by this value.  The action with the highest `.default` value is listed first, and is selected by default.  The rest of the actions are listed in order of decreasing `.default` values. 
     70If not specified for an action, `.default` is 0.  The value may be negative. 
     71 
     72There are a couple of hard-coded constraints to the workflow.  In particular, tickets are created with status `new`, and tickets are expected to have a `closed` state.  Further, the default reports/queries treat any state other than `closed` as an open state. 
     73 
     74While creating or modifying a ticket workfow, `contrib/workflow/workflow_parser.py` may be useful.  It can create `.dot` files that [http://www.graphviz.org GraphViz] understands to provide a visual description of the workflow. 
     75 
     76== Advanced Ticket Workflow Customization == 
     77 
     78If the customization above is not extensive enough for your needs, you can extend the workflow using plugins.  These plugins can provide additional operations for the workflow (like code_review), or implement side-effects for an action (such as triggering a build).  Look at `sample-plugins/workflow` for a few simple examples to get started. 
     79 
     80But if even that is not enough, you can disable the !ConfigurableTicketWorkflow component and create a plugin that completely replaces it.