Changes between Version 125 and Version 126 of GanttCalendarPlugin


Ignore:
Timestamp:
May 12, 2015, 5:23:14 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • GanttCalendarPlugin

    v125 v126  
    1717'''Notes''':
    1818
    19  * Compared to TracJsGanttPlugin, this plugin does not compute the `completed percents` from custom ticket fields like 'remaininghours' or 'estimatedhours', but you set the completion value in the range of 0 to 100% in the ticket form, manually.
    20  * Timezone issue: This plugin was designed for timezone-less. All users and Trac server should have the same timezone.
     19 * Compared to TracJsGanttPlugin, this plugin does not compute the `completed percentages` from custom ticket fields like 'remaininghours' or 'estimatedhours', but you manually set the completion value in the range of 0% to 100% in the ticket form.
     20 * Timezone issue: This plugin was designed as timezone-less. All users and Trac server should have the same timezone.
    2121
    2222== Bugs/Feature Requests
     
    2929Click on the thumbnails for larger versions of the screenshots.
    3030
    31 {{{
    32 #!html
     31'''Gantt chart view'''
     32{{{#!html
    3333<div id="screenshots">
    34 <p>
    3534  <a href="http://recursive-design.com/images/projects/gantt-calendar/Trac_Gantt_Chart.png">
    3635    <img src="http://recursive-design.com/images/projects/gantt-calendar/Trac_Gantt_Chart.png" title="Thumbnail: Gantt chart view" alt="Thumbnail: Gantt chart view" />
    37   </a><br />
    38   Gantt chart view
    39 </p>
    40 <p>
     36  </a></div>
     37}}}
     38
     39'''Calendar view'''
     40{{{#!html
     41<div id="screenshots">
    4142  <a href="http://recursive-design.com/images/projects/gantt-calendar/Trac_Calendar.png">
    4243    <img src="http://recursive-design.com/images/projects/gantt-calendar/Trac_Calendar.png" title="Thumbnail: Calendar view" alt="Thumbnail: Calendar view" />
    43   </a><br />
    44   Calendar view
    45 </p>
    46 <p>
     44  </a></div>
     45}}}
     46
     47'''Ticket creation example'''
     48{{{#!html
     49<div id="screenshots">
    4750  <a href="http://recursive-design.com/images/projects/gantt-calendar/Ticket_Creation.png">
    4851    <img src="http://recursive-design.com/images/projects/gantt-calendar/Ticket_Creation.png" title="Thumbnail: Ticket creation" alt="Thumbnail: Ticket creation" />
    49   </a><br />
    50   Ticket creation example
    51 </p>
    52 </div>
     52  </a></div>
    5353}}}
    5454
     
    5757=== Trac 0.11 (English)
    5858
    59  This plugin is not hosted on trac-hacks.org. Please refer [http://www.daveperrett.com/articles/2008/11/26/gantt-calendar-plugin-for-trac/ here] for download, installation and usage instructions.
    60 {{{
    61 #!sh
     59This plugin is not hosted on trac-hacks.org. Please refer [http://www.daveperrett.com/articles/2008/11/26/gantt-calendar-plugin-for-trac/ here] for download, installation and usage instructions.
     60{{{#!sh
    6261easy_install https://github.com/recurser/trac-gantt-calendar/tarball/master
    6362}}}
    64  The version at the address above is the previous (0.11) release translated into English. The new version (0.12) by the original author now supports English, so using [#Trac0.12Multilingual Multilingual version] below is recommended.
    65 [[BR]]
     63
     64The version at the address above is the previous (0.11) release translated into English. The new version (0.12) by the original author now supports English, so using [#Trac0.12Multilingual Multilingual version] below is recommended.
    6665
    6766=== Trac 0.12 (Multilingual)
     
    7675svn export http://svn.sourceforge.jp/svnroot/shibuya-trac/plugins/ganttcalendarplugin/trunk
    7776}}}
    78   * Build and install egg
     77  * Build and install egg:
    7978{{{#!sh
    8079python setup.py bdist_egg
    8180easy_install dist/*.egg
    8281}}}
    83  2. Configure components section in trac.ini (you can disable / enable per project)
    84 {{{
    85 #!ini
     82 2. Configure the components section in your `trac.ini` file:
     83{{{#!ini
    8684[components]
    8785....
     
    9391....
    9492}}}
    95 
    96  3. Configure other sections in trac.ini:
    97 {{{
    98 #!ini
     93 You can disable or enable this plugin per project.
     94 3. Configure other sections in `trac.ini`:
     95{{{#!ini
    9996[mainnav]
    10097....
     
    133130   * `Start Date`: the date that a task actually began.
    134131   * `End Date`: the date that a task is scheduled to be completed.
    135  but you may interpret the meaning of the dates differently. It is up to you (or your team) to define them.
     132 but you may interpret the meaning of the dates differently. It is up to you or your team to define them.
    136133
    137134Date format for Start/End date:
    138135  * Accepted date formats: a numeric date format in the order of year, month, day
    139136
    140    ||||= '''Date Format''' =||||= '''Format Stirng''' =||
     137   ||||= '''Date Format''' =||||= '''Format String''' =||
    141138   || ''YYYY-MM-DD'' || ''2014-01-31'' || ''%Y-%m-%d'' || ''ISO 8601 date format'' ||
    142139   || ''YYYY/MM/DD'' || ''2014/01/31'' || ''%Y/%m/%d'' || ''legacy date format''   ||
     
    148145   || ''YYMMDD''     || ''140131''     || ''%y%m%d''   ||||
    149146
    150   * If you want to use legacy date format (YYYY/MM/DD), you have to change your project's trac.ini file: (if previously created tickets does not shown)
    151 {{{
    152 #!ini
     147  * If you want to use the legacy date format (YYYY/MM/DD), you have to change your project's `trac.ini` file: (if previously created tickets are not shown)
     148{{{#!ini
    153149[ganttcalendar]
    154150....
     
    157153}}}
    158154
    159   * '''CAUTION''': After a ticket is created, you should not change the date format. In this case, if you want to change date format, you should update value of custom fields in database manually.
     155  * '''Note''': After a ticket is created, you should not change the date format. Instead, you should manually update the value of custom fields in the database for the date-formatting to take effect.
    160156
    161157Display holidays:
    162   * ~~This feature is experimental.~~ Currently, [http://svn.sourceforge.jp/svnroot/shibuya-trac/plugins/ganttcalendarplugin/trunk/README.ko the holiday data is provided for Japanese and Korean user only].
     158  * Currently, [http://svn.sourceforge.jp/svnroot/shibuya-trac/plugins/ganttcalendarplugin/trunk/README.ko the holiday data] is provided for Japanese and Korean users only.
    163159
    164160Allow NULL value in the `complete` field:
     
    174170The ganttcalendar-ko is not hosted on trac-hacks.org. Please refer [http://jinself.tistory.com/370 here] for download, installation and usage instructions.
    175171  * for Trac 0.12 / 1.0dev
    176 {{{
    177 #!sh
     172{{{#!sh
    178173svn export https://xp-dev.com/svn/ganttcalendar-ko/branches/0.12
    179174}}}
    180175  * for Trac 0.11 / [http://sourceforge.net/projects/traconwindows/files/TOW%20%28TracOnWindows%29/0.3.0%20alpha%201/ TOW (TracOnWindows) 0.3.0 alpha 1]
    181 {{{
    182 #!sh
     176{{{#!sh
    183177svn export https://xp-dev.com/svn/ganttcalendar-ko/branches/0.11
    184178}}}
     
    186180== Remarks
    187181
    188  * The UX was designed inspired by Redmine, and the included icons came from Redmine [http://www.redmine.org/projects/redmine/repository/show/tags/0.5.1/public/images 0.5.1] / [http://www.redmine.org/projects/redmine/repository/show/tags/0.9.4/public/images 0.9.4].
    189  * The Complete by Close feature (in the [#Koreanversion Korean version], [#Trac0.12Multilingual Multilingual version]) was renewed by using code of TimingAndEstimationPlugin.
     182 * The UX was inspired by Redmine, and the included icons came from Redmine: [http://www.redmine.org/projects/redmine/repository/show/tags/0.5.1/public/images 0.5.1] / [http://www.redmine.org/projects/redmine/repository/show/tags/0.9.4/public/images 0.9.4].
     183 * The Complete by Close feature (in the [#Koreanversion Korean version], [#Trac0.12Multilingual Multilingual version]) was renewed by using the code of TimingAndEstimationPlugin.
    190184 * The Author of [#Trac0.11English English version] helped popularize [http://svn.sourceforge.jp/svnroot/shibuya-trac/plugins/ganttcalendarplugin/trunk GanttCalendarPlugin] in the early days.
    191185