Changes between Version 39 and Version 40 of EstimationToolsPlugin


Ignore:
Timestamp:
Mar 14, 2014, 4:28:29 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Removed leading whitespace from examples.

Legend:

Unmodified
Added
Removed
Modified
  • EstimationToolsPlugin

    v39 v40  
    112112
    113113 * if you want to show the remaining hours column in your SQL reports, you need to join the ticket table with the ticket_custom table, which contains the custom fields.
    114         {{{
    115         #!sql
     114 {{{#!sql
    116115SELECT
    117116  ...                                      # normal SELECT statement
     
    132131
    133132 1. '''Install'''
    134     * Trac 0.11.x and Trac 0.12.x is supported in [http://trac-hacks.org/svn/estimationtoolsplugin/trunk trunk].
    135     * The latest version for Trac 0.10 can be checked out [http://trac-hacks.org/svn/estimationtoolsplugin/branches/0.10 here].
    136     1. Manually: Deploy the egg:
    137 {{{
    138 #!sh
    139    $ python setup.py bdist_egg
    140    $ cp dist/*.egg /path/to/trac/env/plugins
    141 }}}
    142     1. Globally:
    143 {{{
    144 #!sh
    145    $ easy_install https://trac-hacks.org/svn/estimationtoolsplugin/trunk/
     133  * Trac 0.11.x and Trac 0.12.x is supported in [http://trac-hacks.org/svn/estimationtoolsplugin/trunk trunk].
     134  * The latest version for Trac 0.10 can be checked out [http://trac-hacks.org/svn/estimationtoolsplugin/branches/0.10 here].
     135   1. Manually: Deploy the egg:
     136  {{{#!sh
     137$ python setup.py bdist_egg
     138$ cp dist/*.egg /path/to/trac/env/plugins
     139}}}
     140   1. Globally:
     141 {{{#!sh
     142$ easy_install https://trac-hacks.org/svn/estimationtoolsplugin/trunk/
    146143}}}
    147144 1. '''Add''' a custom field into 'trac.ini' file to store the estimations for the current remaining effort, as follows:
    148 {{{
    149 #!ini
    150  [ticket-custom]
    151  estimatedhours = text
    152  estimatedhours.label = Remaining Hours
    153  estimatedhours.value = 0
     145 {{{#!ini
     146[ticket-custom]
     147estimatedhours = text
     148estimatedhours.label = Remaining Hours
     149estimatedhours.value = 0
    154150}}}
    155151 1. '''Enable''' the plugin by updating TracIni file (..../trac.ini) as follows:
    156 {{{
    157 #!ini
     152 {{{#!ini
    158153 [components]
    159154 estimationtools.* = enabled
    160155}}}
    161156 1. '''Configure''' the plugin at its own configuration section, placed into 'trac.ini' file as follows:
    162 {{{
    163 #!ini
    164  [estimation-tools]
    165  # if you want to use another field than estimatedhours you can change that
    166  estimation_field = estimatedhours
    167  # Set to a comma separated list of workflow states
    168  # that count as zero in BurnDownChart. Defaults to 'closed'
    169  closed_states = closed,another_state 
    170  # Suffix used for estimations. Defaults to 'h'
    171  estimation_suffix = points       
    172  # If you want charts to be served from the server set to true. Useful for SSL connections. Default 'false'
    173  serverside_charts = false
     157 {{{#!ini
     158[estimation-tools]
     159# if you want to use another field than estimatedhours you can change that
     160estimation_field = estimatedhours
     161# Set to a comma separated list of workflow states
     162# that count as zero in BurnDownChart. Defaults to 'closed'
     163closed_states = closed,another_state 
     164# Suffix used for estimations. Defaults to 'h'
     165estimation_suffix = points       
     166# If you want charts to be served from the server set to true. Useful for SSL connections. Default 'false'
     167serverside_charts = false
    174168}}}
    175169 4. '''Restart''' web server on command line:
    176 {{{
    177 #!sh
    178    $ sudo /etc/init.d/apache2 restart
    179 }}}
     170 {{{#!sh
     171$ sudo /etc/init.d/apache2 restart
     172}}}
     173
    180174=== Requirements ===
    181175