Changes between Version 2 and Version 3 of TicketsBoardPlugin


Ignore:
Timestamp:
Jun 19, 2015, 10:21:17 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TicketsBoardPlugin

    v2 v3  
    55== Description
    66
    7 It is a trac plug-in that adds a virtual whiteboard view of active tickets.
     7This plugin adds a virtual whiteboard view of active tickets. The virtual whiteboard ('Ticketsboard') is a table divided in ticket states where each ticket is shown as a sticky note.
    88
    9 This virtual whiteboard ('Ticketsboard') is a table divided in ticket states where each ticket is shown as a sticky note.
    10 Inside the virtual whiteboard, you can:
    11 - Drag&drop a sticky note to another column to change ticket state.
    12 - Directly edit owner and reviewer ticket fields.
    13 - Filter tickets to show only tickets where you are owner or reviewer (link on top right).
     9Key features:
     10- Drag & drop a sticky note to another column to change ticket state.
     11- Directly edit owner and reviewer of a ticket.
     12- Filter tickets to show only tickets where you are the owner or reviewer (link on top right).
    1413
    1514As the amount of tickets could be significant:
    1615- Tickets have different colors according to there types (red for defects, yellow for enhancements, blue for tasks).
    17 - Ticketsboard shows only tickets where the ticket checkbox 'On Ticketsboard' is checked (this checkbox is created by the plug-in).
     16- Ticketsboard shows only tickets where the checkbox 'On Ticketsboard' is checked (this checkbox is created by the plugin).
    1817
    19 == Notes
    20 
    21 This plug-in is divided in two parts:
     18This plugin is divided in two parts:
    2219
    2320- Reviewer field: [[BR]]
    2421  This part adds, in tickets, a new textbox field 'reviewer' that will contain the name of the reviewer.
    25   This new field could also be managed in the ticket-workflow. So, each change on ticket state can be combined with a control on the reviewer field (set_reviewer, del_reviewer).
     22  This new field could also be managed in the ticket workflow. So, each change on ticket state can be combined with a control on the reviewer field (set_reviewer, del_reviewer).
    2623
    2724- Virtual whiteboard ('Ticketsboard'): [[BR]]
    2825  It adds a new tab in the mainnav bar.
    2926  This tab shows a dedicated html page that represents the virtual whiteboard.
    30   A user can change tickets states through a drag and drop system. As there are restrictions on some states (set_owner, set_reviewer...), changes could be rejected.
    31   This part adds the checkbox 'On Ticketsboard' and checks that the ticket-workflow contains the needed states.
     27  A user can change tickets states through a drag and drop system. As there are restrictions on some states (set_owner, set_reviewer), changes could be rejected.
     28  This part adds the checkbox 'On Ticketsboard' and checks that the ticket workflow contains the required states.
     29
     30This plugin is based on the WhiteboardPlugin by [wiki:CuriousCurmudgeon].
    3231
    3332== !Bugs/Feature Requests
     
    3736
    3837If you have any issues, create a
    39 [http://trac-hacks.org/newticket?component=TicketsBoardPlugin new ticket].
     38[/newticket?component=TicketsBoardPlugin new ticket].
     39
     40[[TicketQuery(component=TicketsBoardPlugin&group=type,format=progress)]]
    4041
    4142== Download
     
    6263== Configuration
    6364
    64 Activate the whole plugin:
    65 {{{
    66 #!ini
     65Activate the whole plugin by adding the following to your `trac.ini` file:
     66{{{#!ini
    6767[components]
    6868ticketsboardplugin.* = enabled
     
    7070
    7171Activate separately the two different parts of the plugin:
    72 {{{
    73 #!ini
     72{{{#!ini
    7473[components]
    7574ticketsboardplugin.assignreviewer.* = enabled
     
    7978Configure statuses ''(showing default configuration)'':
    8079to set the tickets states to show.
    81 {{{
    82 #!ini
     80{{{#!ini
    8381[ticketsboard]
    8482statuses = new,assigned,reviewing,closed
     
    8785Configure fields ''(showing default configuration)'':
    8886to set ticket fields to show on ticket sticky notes.
    89 {{{
    90 #!ini
     87{{{#!ini
    9188[ticketsboard]
    9289fields = owner,reviewer
     
    10299**Maintainer:** [[Maintainer]] [[BR]]
    103100**Contributors:**
    104 
    105 This plugin is based on the WhiteboardPlugin by [wiki:CuriousCurmudgeon].