Changes between Version 30 and Version 31 of ChildTicketsPlugin


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

Added link to similar plugin

Legend:

Unmodified
Added
Removed
Modified
  • ChildTicketsPlugin

    v30 v31  
    2323To keep the plugin compact and simple and to allow future compatibility with different CSS schemes, I have simply 'pinched' the existing CSS classes for generating the table and its components.
    2424
    25 '''Note''': The configurability of this plugin has been ported to the Subtickets plugin. See the patches in issues 9-12 at [https://github.com/itota/trac-subtickets-plugin/issues github]. -- Chris Nelson
     25'''Note''': The configurability of this plugin has been ported to the SubticketsPlugin. See the patches in issues 9-12 at [https://github.com/itota/trac-subtickets-plugin/issues github]. -- Chris Nelson
    2626
    2727== Bugs/Feature Requests
     
    6161
    6262[childtickets]
    63 # 'enhancements' : child tickets will typically be bug-fix tickets with the same milestone, component and keywords.
     63# 'enhancements': child tickets will typically be bug-fix tickets with the same milestone, component and keywords.
    6464parent.enhancement.allow_child_tickets = true
    6565parent.enhancement.restrict_child_type = bug-fix, task
     
    6767parent.enhancement.inherit = milestone, component, keywords
    6868
    69 # 'bug-report' : child tickets will typically be bug-fix
     69# 'bug-report': child tickets will typically be bug-fix
    7070parent.bug-report.allow_child_tickets = true
    7171parent.bug-report.default_child_type = bug-fix
     
    7373parent.bug-report.inherit = component, keywords
    7474
    75 # 'issue' : child tickets will typically be task tickets with no default milestone.
     75# 'issue': child tickets will typically be task tickets with no default milestone.
    7676parent.issue.allow_child_tickets = true
    7777parent.issue.restrict_child_type = task
    7878parent.issue.table_headers = type, status, owner, summary, milestone
    7979
    80 # 'bug-fix' : child tickets are not allowed.
     80# 'bug-fix': child tickets are not allowed.
    8181parent.bug-fix.allow_child_tickets = false
    8282
    83 # 'task' : child tickets are not allowed.
     83# 'task': child tickets are not allowed.
    8484parent.task.allow_child_tickets = false
    8585}}}