Changes between Version 5 and Version 6 of IcalViewPlugin


Ignore:
Timestamp:
Jul 24, 2009, 8:07:24 PM (15 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IcalViewPlugin

    v5 v6  
    7777 * Tickets without a planned date are transfomed as TODO.
    7878
     79=== Priority ===
     80
     81icalandar support the priority tags but use an integer from 1 (highest) to 9 (lowest). So we need a map to transform trac priorities to integer. The plugin integrate a default mapping :
     82
     83{{{
     84                    'blocker' :  1
     85                    'critical' :  2
     86                    'major' : 6
     87                    'minor' : 8
     88                    'trivial' : 9
     89}}}
     90
     91You can customise the mapping and adding other values with the configuration option 'custom_priority_map':
     92
     93{{{
     94[icalendar]
     95custom_priority_map = major:3;lessmajor:4;lessmajorbutnotminor:5;crazy:1;undefined:0
     96}}}
     97
     98
    7999== Limitations ==
    80100