Changes between Version 1 and Version 2 of TicketsBoardPlugin


Ignore:
Timestamp:
Feb 20, 2015, 1:29:11 PM (9 years ago)
Author:
jpsave
Comment:

Update TicketsBoardPlugin page to link this svn part

Legend:

Unmodified
Added
Removed
Modified
  • TicketsBoardPlugin

    v1 v2  
    1414
    1515As the amount of tickets could be significant:
    16 - Tickets have different colors according to there types (red for defects, yellow for enhancements, blue for tasks)
     16- Tickets have different colors according to there types (red for defects, yellow for enhancements, blue for tasks).
    1717- Ticketsboard shows only tickets where the ticket checkbox 'On Ticketsboard' is checked (this checkbox is created by the plug-in).
    1818
    19 Custom configuration is allowed through trac.ini configuration file by adding a 'ticketsboard' section.
    20 The following keys are allowed:
    21 - statuses: to set the tickets states to show (default: new, assigned, reviewing, closed).
    22 - fields: to set ticket fields to show on ticket sticky notes (default: owner, reviewer).
    23 
    24 [[BR]]
     19== Notes
    2520
    2621This plug-in is divided in two parts:
     
    4641== Download
    4742
    48 Download the zipped source from [export:ticketsboardplugin here].
     43Download the zipped source:
     44||Trac||Version||
     45||0.12||[export:ticketsboardplugin/0.12/tags/1.0.0-trac0.12 1.0.0-trac0.12]||
     46||0.12||[export:ticketsboardplugin/0.12/tags/1.0.1-trac0.12 1.0.1-trac0.12]||
     47||0.12||[export:ticketsboardplugin/0.12/tags/1.1.0-trac0.12 1.1.0-trac0.12]||
     48||0.12||[export:ticketsboardplugin/0.12/tags/1.2.0-trac0.12 1.2.0-trac0.12]||
     49||0.12||[export:ticketsboardplugin/0.12/tags/1.2.1-trac0.12 1.2.1-trac0.12]||
     50||0.12||[export:ticketsboardplugin/0.12/trunk trunk]||
     51
     52Download the zipped global sources from [export:ticketsboardplugin here].
    4953
    5054== Source
     
    5458== Installation
    5559
    56 No particular installation process.
    57 
    5860General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    5961
    60 Custom configuration is allowed through trac.ini configuration file by adding a 'ticketsboard' section.
    61 The following keys are allowed:
    62 - statuses: to set the tickets states to show (default: new, assigned, reviewing, closed).
    63 - fields: to set ticket fields to show on ticket sticky notes (default: owner, reviewer).
     62== Configuration
     63
     64Activate the whole plugin:
     65{{{
     66#!ini
     67[components]
     68ticketsboardplugin.* = enabled
     69}}}
     70
     71Activate separately the two different parts of the plugin:
     72{{{
     73#!ini
     74[components]
     75ticketsboardplugin.assignreviewer.* = enabled
     76ticketsboardplugin.web_ui.* = enabled
     77}}}
     78
     79Configure statuses ''(showing default configuration)'':
     80to set the tickets states to show.
     81{{{
     82#!ini
     83[ticketsboard]
     84statuses = new,assigned,reviewing,closed
     85}}}
     86
     87Configure fields ''(showing default configuration)'':
     88to set ticket fields to show on ticket sticky notes.
     89{{{
     90#!ini
     91[ticketsboard]
     92fields = owner,reviewer
     93}}}
    6494
    6595== Recent Changes
     
    72102**Maintainer:** [[Maintainer]] [[BR]]
    73103**Contributors:**
     104
     105This plugin is based on the WhiteboardPlugin by [wiki:CuriousCurmudgeon].