Changes between Version 26 and Version 27 of GanttChartPlugin


Ignore:
Timestamp:
Mar 18, 2017, 10:14:31 PM (7 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • GanttChartPlugin

    v26 v27  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Wiki processor to render Gantt charts
     3= Render Gantt charts in wiki pages
    44
    55== Description
    66
    7 This plugin implements a wiki processor that generates a Gantt chart using a YAML text block. [http://en.wikipedia.org/wiki/YAML YAML] is a data serialisation markup language, suited for tasks where humans are likely to view or edit data structures.
     7This plugin implements a wiki processor that generates a Gantt chart using a YAML text block. [wikipedia:YAML YAML] is a data serialisation markup language, suited for tasks where humans are likely to view or edit data structures. In this case the YAML text block is interpreted as an ordered list of tasks, each with a start date and duration.
     8
     9Add this to the text of any wiki page:
     10{{{
     11{{{
     12#!gantt
     130 : {start: '2008-03-20', dur: 5d, title: Punchlist}
     141 : {start: '2008-03-28', dur: 2w, title: Alpha Project}
     152 : {start: '2008-03-28', end: '2008-05-15', title: Project V, color: green}
     163 : {start: '2008-03-28', end: '2008-10-01', title: Testing 2.0, color: blue}
     174 : {start: '2008-04-28', end: '2008-05-15', title: Bug Fixes, color: red}
     18}}}
     19}}}
     20
     21which will then be rendered as follows:
     22
     23[[Image(Example.png)]]
    824
    925The Gantt chart is output in one of the following image formats: jpg, png (default), gif.
     
    5268}}}
    5369
    54 == Example
    55 
    56 Add this to the text of any wiki page:
    57 {{{
    58 {{{
    59 #!gantt
    60 0 : {start: '2008-03-20', dur: 5d, title: Punchlist}
    61 1 : {start: '2008-03-28', dur: 2w, title: Alpha Project}
    62 2 : {start: '2008-03-28', end: '2008-05-15', title: Project V, color: green}
    63 3 : {start: '2008-03-28', end: '2008-10-01', title: Testing 2.0, color: blue}
    64 4 : {start: '2008-04-28', end: '2008-05-15', title: Bug Fixes, color: red}
    65 }}}
    66 }}}
    67 
    68 which will then be rendered as follows:
    69 
    70 [[Image(Example.png)]]
    71 
    7270== Recent Changes
    7371