Changes between Version 22 and Version 23 of GanttChartPlugin


Ignore:
Timestamp:
Mar 20, 2015, 9:36:04 AM (9 years ago)
Author:
figaro
Comment:

Updated link, rearranged paragraphs

Legend:

Unmodified
Added
Removed
Modified
  • GanttChartPlugin

    v22 v23  
    55== Description
    66
    7 Wiki processor that generates a gantt chart using a YAML text block.
     7This 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.
     8
     9The Gantt chart is output in one of the following image formats: jpg, png (default), gif.
    810
    911== Bugs/Feature Requests
     
    2527You can check out GanttChartPlugin from [http://trac-hacks.org/svn/ganttchartplugin here] using Subversion, or [source:ganttchartplugin browse the source] with Trac.
    2628
     29== Installation
     30
     31Installation prerequisites:
     32 * [http://pyyaml.org/wiki/PyYAML PyYAML]
     33 * [http://labix.org/python-dateutil python-dateutil]
     34 * [http://www.pythonware.com/products/pil/ Python Imaging library (PIL)]
     35 * `arial.ttf` font; for example, on Ubuntu install the `msttcorefonts` package and set `font_file = /usr/share/fonts/truetype/msttcorefonts/arial.ttf`.
     36 * [pypi:hashlib/20060408a hashlib], if using Python 2.4, and it is part of Python core in >= 2.5.
     37
     38Add the following to `trac.ini`:
     39
     40{{{#!ini
     41[gantt]
     42cache_dir = path/to/cache/dir
     43font_file = path/to/font/file
     44date_format = %m/%d/%Y
     45include_summary = true
     46show_opened = true
     47summary_length = 16
     48use_creation_date = true
     49}}}
     50
    2751== Example
    2852
     
    3963}}}
    4064
    41 which will then be displayed as follows:
     65which will then be rendered as follows:
    4266
    4367[[Image(Example.png)]]
    44 
    45 == Installation
    46 
    47 Installation prerequisites:
    48  * [http://pyyaml.org/wiki/PyYAML PyYAML]
    49  * [http://labix.org/python-dateutil python-dateutil]
    50  * [http://www.pythonware.com/products/pil/ Python Imaging library (PIL)]
    51  * `arial.ttf` font; for example, on Ubuntu install the `msttcorefonts` package and set `font_file = /usr/share/fonts/truetype/msttcorefonts/arial.ttf`.
    52  * [http://pypi.python.org/pypi/hashlib/20060408a hashlib], if using Python 2.4 (part of Python core in >= 2.5).
    53 
    54 Add the following to `trac.ini`:
    55 
    56 {{{#!ini
    57 [gantt]
    58 cache_dir = path/to/cache/dir
    59 font_file = path/to/font/file
    60 date_format = %m/%d/%Y
    61 include_summary = true
    62 show_opened = true
    63 summary_length = 16
    64 use_creation_date = true
    65 }}}
    6668
    6769== Recent Changes