[Trac-tickets] [The Trac Project] #2735: Roadmap iCalendar tasks lack due date.

The Trac Project noreply at edgewall.com
Wed Feb 8 18:02:20 CST 2006


#2735: Roadmap iCalendar tasks lack due date.
--------------------------+-------------------------------------------------
 Reporter:  Alex Johnson  |       Owner:  cmlenz
     Type:  defect        |      Status:  new   
 Priority:  normal        |   Milestone:        
Component:  roadmap       |     Version:  0.9.3 
 Severity:  normal        |    Keywords:        
--------------------------+-------------------------------------------------
 When an iCalendar is generated by `roadmap.py` it looks like it's trying
 to put the due date of the milestone as the due date of the tasks within
 that milestone -- very nice!  But, it never actually puts the due date in
 there because lines 258-260 are:
 {{{
                 if milestone.has_key('date'):
                     write_prop('RELATED-TO', uid)
                     write_date('DUE', localtime(milestone['due']))
 }}}
 This change (line 258: `date` => `due`) makes it work correctly:
 {{{
                 if milestone.has_key('due'):
                     write_prop('RELATED-TO', uid)
                     write_date('DUE', localtime(milestone['due']))
 }}}

-- 
Ticket URL: <http://projects.edgewall.com/trac/ticket/2735>
The Trac Project <http://trac.edgewall.com/>


More information about the Trac-Tickets mailing list