Changes between Version 15 and Version 16 of TracJsGanttPlugin


Ignore:
Timestamp:
Jul 9, 2011, 10:47:03 PM (13 years ago)
Author:
Chris Nelson
Comment:

Update documentation for recent changes

Legend:

Unmodified
Added
Removed
Modified
  • TracJsGanttPlugin

    v15 v16  
    6262  # To work with Subtickets for parent/child relationships
    6363  fields.parent = parents
     64  #
     65  # To work with ChildTickets plugin
     66  # parent_format = #%s
     67  #
    6468  # Custom fields for start and due dates
    6569  fields.start = userstart
     
    8892When `pred` and `succ` are configured the plugin uses them to determine the task dependencies.  The example works with MasterTicketsPlugin.  If these fields are not configured, no dependencies are shown.
    8993
    90 When `parent` is configured, it is the field which holds the parent ticket number.  The example works with Subtickets.  If this field is not configured, no parent/child relationship will be displayed.  If it is configured, the Gantt can be collapsed by the user to show or hide subtasks.
     94When `parent` is configured, it is the field which holds the parent ticket number.  The example works with Subtickets.  If this field is not configured, no parent/child relationship will be displayed.  If it is configured, the Gantt can be collapsed by the user to show or hide subtasks.  (`parent_format` determines the format of the content of the `parent` field.  Use "%s" (default) for SubticketsPlugin, "#%s" for ChildTicketsPlugin.)
    9195
    9296When `start` and `finish` are configured, the plugin uses them to set task start and finish dates.  The `date_format` field is a Python `strptime()` format specifier which describes the contents of `start` and `finish`.  If these fields are not configured, all tasks end today and have a 1-day duration.
     
    127131'''Author:''' [wiki:ChrisNelson] [[BR]]
    128132'''Maintainer:''' [wiki:ChrisNelson] [[BR]]
    129 '''Contributors:'''
     133'''Contributors:''' [wiki:rjollos], [wiki:bof]