Changes between Version 10 and Version 11 of TracJsGanttPlugin


Ignore:
Timestamp:
Feb 19, 2011, 12:25:17 AM (13 years ago)
Author:
Ryan J Ollos
Comment:

Added reference to SubticketsPlugin compatibility in intro.

Legend:

Unmodified
Added
Removed
Modified
  • TracJsGanttPlugin

    v10 v11  
    77A plugin which allows Trac ticket data to be displayed in a [http://jsgantt.com jsGantt] chart in a wiki page.  Tasks and milestones are links to the corresponding ticket or milestone.
    88
    9 Configurable field names allow integration with other plugins such as MasterTicketsPlugin (for dependencies) and TimingAndEstimationPlugin (for estimated and total hours).
     9Configurable field names allow integration with other plugins such as MasterTicketsPlugin (for dependencies), SubticketsPlugin (for parent/child relationships) and TimingAndEstimationPlugin (for estimated and total hours).
    1010
    1111== Bugs/Feature Requests ==
     
    5454== Configuration ==
    5555
    56 Trac-jsGantt is intended to be flexible enough to get data from various plugins by configuring the field names for those plugins in `trac.ini`.  It is known to work with TimingAndEstimationPlugin (for estimated and total hours), MasterTicketsPlugin (for FS dependencies), and [http://github.com/itota/trac-subtickets-plugin Subtickets] for parent/child relationships.  Custom fields for start and finish date are also supported.
     56Trac-jsGantt is intended to be flexible enough to get data from various plugins by configuring the field names for those plugins in `trac.ini`.  It is known to work with TimingAndEstimationPlugin (for estimated and total hours), MasterTicketsPlugin (for FS dependencies), and SubticketsPlugin for parent/child relationships.  Custom fields for start and finish date are also supported.
    5757
    5858Tasks are colored based on ticket attributes.  When colored by priority colors  are consistent with the colors used in Trac reports.  Other coloring choices (e.g., by milestone or owner) use arbitrary, unique colors.
     
    8484When `estimate` and `worked` are both configured, the plugin attempts to display (100 * worked/estimate) as the percent complete.  The example works with TimingAndEstimationPlugin.  Alternatively, if `percent` is configured, the plugin attempts to display it as the percent complete (it should be a number from 0 to 100).  If none of those are configured, all tasks will be marked as 0% complete.
    8585
    86 When `pred` and `succ` are configured the plugin uses them to determine the task dependencies.  The example works with MasterTickets plugin.  If these fields are not configured, no dependencies are shown.
     86When `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.
    8787
    8888When `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.