Changes between Version 13 and Version 14 of TypedTicketWorkflowPlugin


Ignore:
Timestamp:
Aug 20, 2015, 8:13:19 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TypedTicketWorkflowPlugin

    v13 v14  
    55== Description
    66
    7 Add additional condition for workflow actions: ticket Type.
     7This plugin adds additional condition for workflow actions: ticket Type. This allows you to create actions applicable for a specific ticket type. This plugin is based on default [TracWorkflow#TheTracTicketWorkflowSystem ConfigurableTicketWorkflow] component.
    88
    9 This allow to create actions applicable for a specific ticket type. This plugin is based on default [TracWorkflow#TheTracTicketWorkflowSystem ConfigurableTicketWorkflow] component.
    10 
    11 For example, "ready for QA" should be applicable for 'task' tickets only. So you can write:
    12 
     9For example, "Ready for QA" should be applicable to 'task' tickets only. So you can write:
    1310{{{
    1411ready_for_qa.tickettype = task
    1512}}}
    1613
    17 You can add multiple types using comma:
    18 
     14You can add multiple types seperated by a comma:
    1915{{{
    2016ready_for_qa.tickettype = task, enhancement
     
    3329Existing bugs and feature requests for TypedTicketWorkflowPlugin are [report:9?COMPONENT=TypedTicketWorkflowPlugin here].
    3430
    35 If you have any issues, create a [http://trac-hacks.org/newticket?component=TypedTicketWorkflowPlugin&owner=kivsiak new ticket].
     31If you have any issues, create a [/newticket?component=TypedTicketWorkflowPlugin new ticket].
    3632
    3733[[TicketQuery(component=TypedTicketWorkflowPlugin,group=type,format=progress)]]
     
    4541You can check out TypedTicketWorkflowPlugin from [http://trac-hacks.org/svn/typedticketworkflowplugin here] using Subversion, or [source:typedticketworkflowplugin browse the source] with Trac.
    4642
    47 == Example
     43== Installation
    4844
    49 Enable the plugin with:
     45General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     46
     47Enable the plugin in your `trac.ini` file with:
    5048{{{#!ini
    5149[components]
    5250typedworkflow.* = enabled
    5351}}}
     52
     53== Configuration
     54
     55A typical implementation of a workflow would be represented as follows in `trac.ini`:
    5456
    5557{{{#!ini