Edgewall Software
Modify

Opened 18 years ago

Closed 18 years ago

#2735 closed defect (fixed)

Roadmap iCalendar tasks lack due date.

Reported by: Alex Johnson Owned by: Christopher Lenz
Priority: normal Milestone: 0.9.4
Component: roadmap Version: 0.9.3
Severity: normal Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

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: datedue) makes it work correctly:

                if milestone.has_key('due'):
                    write_prop('RELATED-TO', uid)
                    write_date('DUE', localtime(milestone['due']))

Attachments (0)

Change History (2)

comment:1 by Christopher Lenz, 18 years ago

Milestone: 0.9.4

comment:2 by Christopher Lenz, 18 years ago

Resolution: fixed
Status: newclosed

Fixed in [2887] and [2888]. Thanks!

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Christopher Lenz.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Christopher Lenz to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.