Changes between Version 23 and Version 24 of SubticketsPlugin


Ignore:
Timestamp:
Nov 11, 2016, 6:59:04 PM (7 years ago)
Author:
Theodor Norup
Comment:

+ configuration options

Legend:

Unmodified
Added
Removed
Modified
  • SubticketsPlugin

    v23 v24  
    1717Existing bugs and feature requests for SubticketsPlugin are [https://github.com/trac-hacks/trac-subtickets-plugin/issues here].
    1818
    19 If you have any issues, create a [https://github.com/trac-hacks/trac-subtickets-plugin/issues new issue ticket].
     19If you have any issues, create a [https://github.com/trac-hacks/trac-subtickets-plugin/issues new issue].
    2020
    2121== Download
     
    4040easy_install dist/*.egg
    4141 }}}
     42 {{{#!sh
     43python setup.py install
     44 }}}
     45
    4246 1. Enable the plugin in your `trac.ini` file as follows:
    4347 {{{#!ini
     
    5054trac-admin <env> upgrade
    5155 }}}
     56
     57== Configuration
     58
     59SubticketsPlugin has some of the same configuration possibilities as ChildTicketsPlugin. Most settings are ticket type dependent (`defect` and `task` in the example below):
     60{{{#!ini
     61# Select column headings in child listing
     62# Id and summary are always displayed
     63defect.table_columns = priority,keywords,owner
     64task.table_columns   = # display id and summary only
     65
     66# Control which fields are inherited from parent to child when creating child
     67defect.child_inherits = keywords,milestone
     68task.child_inherits   = version,cc
     69
     70# Control the visual appearance of the create subticket link. Config value shall be one of "button" and "link"
     71add_style = button
     72}}}
    5273
    5374== About i18n/l10n support
     
    6990
    7091'''Author:''' [wiki:itota] [[BR]]
    71 '''Maintainer:''' thenor57 [[BR]]
    72 '''Contributors:''' [wiki:hasienda]
     92'''Maintainer:''' [wiki:thenor] [[BR]]
     93'''Contributors:''' [wiki:hasienda], Chris Nelson