Changes between Initial Version and Version 1 of TaskListPlugin


Ignore:
Timestamp:
Feb 21, 2008, 7:29:45 AM (16 years ago)
Author:
John Hampton
Comment:

New hack TaskListPlugin, created by pacopablo

Legend:

Unmodified
Added
Removed
Modified
  • TaskListPlugin

    v1 v1  
     1= Task List Plugin =
     2
     3== Description ==
     4
     5Create a task list based on existing ticket.  Additionally provide a quick method for entering new tickets.
     6
     7The 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.
     8
     9Additionally, 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.
     10
     11The 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.
     12
     13
     14== Bugs/Feature Requests ==
     15
     16Existing bugs and feature requests for TaskListPlugin are
     17[report:9?COMPONENT=TaskListPlugin here].
     18
     19If you have any issues, create a
     20[http://trac-hacks.org/newticket?component=TaskListPlugin&owner=pacopablo new ticket].
     21
     22== Download ==
     23
     24Download the zipped source from [download:tasklistplugin here].
     25
     26== Source ==
     27
     28You can check out TaskListPlugin from [http://trac-hacks.org/svn/tasklistplugin here] using Subversion, or [source:tasklistplugin browse the source] with Trac.
     29
     30== Example ==
     31
     32Create a custom ticket field.
     33{{{
     34[ticket-custom]
     35action_item = text
     36action_item.label = Action Item
     37}}}
     38Enable the plugin
     39{{{
     40[components]
     41tasklist.* = enabled
     42}}}
     43
     44A few defaults may be specified in the `trac.ini` file in the `[tasklist]` section:
     45 * '''tasklist_field''': field used as the `action item`.  Default: `action_item`
     46 * '''default_cols''': ticket properties to show by default.   Default: `summary,priority`
     47 * '''default_query''': query to use by default for an authenticated user.  Specified in trac query syntax. Default: `status!=closed&owner=$USER`
     48 * '''default_anonymous_query''': query to use by default for an anonymous user.  Specified in trac query syntax.  Default: `status!=closed&cc~=$USER`
     49
     50== Recent Changes ==
     51
     52[[ChangeLog(tasklistplugin, 3)]]
     53
     54== Author/Contributors ==
     55
     56'''Author:''' [wiki:pacopablo] [[BR]]
     57'''Contributors:'''