Changes between Version 17 and Version 18 of SubticketsPlugin


Ignore:
Timestamp:
Dec 7, 2015, 8:22:35 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes, added link to similar plugin

Legend:

Unmodified
Added
Removed
Modified
  • SubticketsPlugin

    v17 v18  
    77This plugin offers sub-ticket feature for managing tickets.
    88
    9 Relations between tickets are stored in a table called 'Subtickets' with just two columns: ''parent'', ''child''
     9Relations between tickets are stored in a table called 'Subtickets' with just two columns: ''parent'', ''child''.
     10
     11See also: ChildTicketsPlugin
    1012
    1113== Bugs/Feature Requests
     
    2628
    2729 1. Download the [https://github.com/itota/trac-subtickets-plugin/zipball/master zip file], unpack it and run:
    28  {{{
    29 #!sh
     30 {{{#!sh
    3031python setup.py bdist_egg
    3132 }}}
    3233 1. Install it in one of the following ways:
    33  {{{
    34 #!sh
     34 {{{#!sh
    3535cp dist/*.egg path/to/trac/env/plugins
    3636 }}}
    37  {{{
    38 #!sh
     37 {{{#!sh
    3938easy_install dist/*.egg
    4039 }}}
    41  1. Enable the plugin in `trac.ini` as follows:
    42  {{{
    43 #!ini
     40 1. Enable the plugin in your `trac.ini` file as follows:
     41 {{{#!ini
    4442[components]
    4543tracsubtickets.api.* = enabled
     
    4745 }}}
    4846 1. Upgrade your Trac environment:
    49  {{{
    50 #!sh
     47 {{{#!sh
    5148trac-admin <env> upgrade
    5249 }}}