Changes between Version 8 and Version 9 of TaskListPlugin
- Timestamp:
- Jul 20, 2015, 10:07:48 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TaskListPlugin
v8 v9 1 1 [[PageOutline(2-5,Contents,pullout)]] 2 = Task List Plugin =3 2 4 = = Description ==3 = Task List Plugin 5 4 6 Create a task list based on existing ticket. Additionally provide a quick method for entering new tickets. 5 == Description 7 6 8 Th e task list plugin requires a custom ticket field to be configured. By default, this field is a text field named `action_item`. If a value is present in the `action_item` field, then that value is used in the task list display. This provides for a quick way to see what the next step is for a ticket.7 This plugin allows you to create a task list based on existing ticket. Additionally it provides a quick method for entering new tickets. 9 8 10 Additionally, the task list plugin creates a simple method for creating tickets. By default, only the `summary` and `priority` are entered. This relieves the tedium of filling out the new ticket form. This is especially useful for tracking simple tasks where capturing the request or issue is paramount. The details can then later be added via the normal ticket interface.9 The task list plugin requires a custom ticket field to be configured. By default, this field is a text field named `action_item`. If a value is present in the `action_item` field, then that value is used in the task list display. This provides a quick way to see what the next step is for a ticket. 11 10 12 The task list interface is based on the query interface and should thus be familiar to Trac users. It also allows for each individual to customize their task list with the columns they desire.11 Additionally, the task list plugin creates a simple method for creating tickets. By default, only the `summary` and `priority` are entered. This relieves the tedium of filling out the new ticket form. This is especially useful for tracking simple tasks where capturing the request or issue is paramount. The details can then later be added via the normal ticket interface. 13 12 14 == Bugs/Feature Requests == 13 The task list interface is based on the query interface and should thus be familiar to Trac users. It also allows for each individual to customize their task list with the columns they desire. 15 14 16 Existing bugs and feature requests for TaskListPlugin are [query:status!=closed&component=TaskListPlugin&order=priority here]. If you have any issues, create a [/newticket?component=TaskListPlugin&owner=pacopablo new ticket]. 15 == Bugs/Feature Requests 17 16 18 == Download and Source == 17 Existing bugs and feature requests for TaskListPlugin are [query:status!=closed&component=TaskListPlugin&order=priority here]. 18 19 If you have any issues, create a [/newticket?component=TaskListPlugin new ticket]. 20 21 [[TicketQuery(component=TaskListPlugin&group=type,format=progress)]] 22 23 == Download and Source 19 24 20 25 For Trac 0.12, install from the trunk. For Trac 0.11, install from branches/0.11. … … 22 27 Download the [download:tasklistplugin zipped source], check out [/svn/tasklistplugin using Subversion], or [source:tasklistplugin browse the source] with Trac. 23 28 24 == Example ==29 == Example 25 30 26 Create a custom ticket field .27 {{{ 31 Create a custom ticket field by adding the following to your `trac.ini` file: 32 {{{#!ini 28 33 [ticket-custom] 29 34 action_item = text 30 35 action_item.label = Action Item 31 36 }}} 32 Enable the plugin 37 38 Enable the plugin as follows: 33 39 {{{ 34 40 [components] … … 42 48 * '''default_anonymous_query''': query to use by default for an anonymous user. Specified in trac query syntax. Default: `status!=closed&cc~=$USER` 43 49 44 == Recent Changes ==50 == Recent Changes 45 51 46 52 [[ChangeLog(tasklistplugin, 3)]] 47 53 48 == Author/Contributors ==54 == Author/Contributors 49 55 50 56 '''Author:''' [wiki:pacopablo] [[BR]]