---+!! Example Workflow topic

   * There should be a preference in the Workflow topic to specify the formfield where the current "state" is stored
      * Set FORMFIELD=Status

   * Workflows are defined in tables (much like TWikiForms). Each row describes a transition in the workflow. The table must have the following colums:
      * State: Initial state of the transition
      * Action: Name of the action that triggers the transition
      * New State: New state after the transition is triggered
      * Date Field (optional): Date field to be updated with the date when the transition was triggered.

   * The available tags are:
      * %<nop>WORKFLOWACTIONS%: Show a list of actions rendered as links. Parameters:
         * "workflowtopic": Name of the topic that contains the workflow
         * format: Format to apply to each list of actions
      * %<nop>STARTAUDIT{LifeCycle}%, %<nop>ENDAUDIT%: Shows an audit table of all the workflow operations.
         
   * Sample workflow for Release Management
|*State*|*Action*|*New State*|*Date Field*|
|Planned|Start|In Progress|StartDate|
|In Progress|Freeze|Frozen|FreezeDate|
|In Progress|Release|Released|ReleaseDate|
|Frozen|Release|Released|ReleaseDate|


   * Sample workflow for a Issue Tracker    
|*State*|*Action*|*New State*|    
|Submitted|Request Spec|Spec Needed|    
|Submitted|Reject|Rejected|    
|Submitted|Request More Info|More Info Needed|    
|More Info Needed|Resubmit|Submitted|    
|Spec Needed|Resubmit|Submitted|    
|Submitted|Start Development|Development|    
|On Hold|Continue|Development|
|Development|Hold|On Hold|    
|Development|Finish|Waiting Deployment|    
|Waiting Deployment|Deploy|Acceptance Testing|    
|Acceptance Testing|Close|Closed|
|Acceptance Testing|Reject|Fix Pending|
|Fix Pending|Start Development|Development|


