Changes between Version 44 and Version 45 of MasterTicketsPlugin


Ignore:
Timestamp:
Apr 9, 2015, 11:35:55 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • MasterTicketsPlugin

    v44 v45  
    1414Shown on screen shot:
    1515
    16  1. "Depgraph" link at ticket !#62 (on middle top, yellow bullet);
    17  1. `Blocks` and `blocked by` extra fields at ticket !#62;
    18  1. graphical representation and deeper relation to other tickets (on right);
     16 1. "Depgraph" link at ticket !#62 (on middle top, yellow bullet).
     17 1. `Blocks` and `blocked by` extra fields at ticket !#62.
     18 1. graphical representation and deeper relation to other tickets (on right).
    1919 1. ticket statuses explanation (lower left corner).
    2020
     
    4343[/newticket?component=MasterTicketsPlugin new ticket].
    4444
     45[[TicketQuery(component=MasterTicketsPlugin&group=type,format=progress)]]
     46
    4547== Installation
    4648
     49The easiest way to install this plugin is by using `easy_install`:
    4750{{{#!sh
    4851easy_install http://trac-hacks.org/svn/masterticketsplugin/trunk/
     
    6265You can check out MasterTicketsPlugin from [http://trac-hacks.org/svn/masterticketsplugin here] using Subversion, or [source:masterticketsplugin browse the source] with Trac.
    6366
    64 
    6567== Configuration
    6668
    67 To enable, add to trac.ini:
     69To enable, add the following to your `trac.ini` file:
    6870{{{#!ini
    6971[components]
     
    7880
    7981Under the '''mastertickets''' section the following options are available:
    80  * dot_path (default='dot'): Path to the dot executable
    81  * gs_path (default='gs'): Path to the ghostscript executable
    82  * use_gs (default=False): If enabled, use ghostscript to produce nicer output
     82 * dot_path (default = 'dot'): Path to the dot executable
     83 * gs_path (default = 'gs'): Path to the ghostscript executable
     84 * use_gs (default = False): If enabled, use [http://www.ghostscript.com/ Ghostscript] to produce nicer output
    8385
    84 To configure the plugin to use a graphviz/dot installation that is at another location:
     86To configure the plugin to use a graphviz/dot installation that is at another location, add the following to your `trac.ini` file:
    8587{{{#!ini
    8688[mastertickets]
     
    9092=== Upgrade your installation
    9193
    92 After installing or enabling this plugin, trac will claim that it needs to be upgraded; this is because the plugin adds a new table to the database.
    93 So run:
     94After installing or enabling this plugin, Trac will claim that it needs to be upgraded. This is because the plugin adds a new table to the database. So therefore run the following:
    9495{{{#!sh
    9596trac-admin /path/to/env upgrade
     
    9899== Known acceptable database versions
    99100
    100 Sometimes trac and/or plugins run into trouble with newer database versions because they are fussier about error checking.  Therefore this section lists versions that are known to work.
     101Sometimes Trac and/or plugins run into trouble with newer database versions because they are fussier about error checking. Therefore this section lists versions that are known to work:
    101102
    102  * 3.0.4: postgresql 8.4, trac 1.0.1, python 2.7
     103 * 3.0.4: PostgreSQL 8.4, Trac 1.0.1, Python 2.7
    103104
    104105== Recent Changes