Edgewall Software
Modify

Ticket #2735 (closed defect: fixed)

Opened 6 years ago

Last modified 6 years ago

Roadmap iCalendar tasks lack due date.

Reported by: Alex Johnson Owned by: cmlenz
Priority: normal Milestone: 0.9.4
Component: roadmap Version: 0.9.3
Severity: normal Keywords:
Cc:
Release Notes:
API 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

Change History

comment:1 Changed 6 years ago by cmlenz

  • Milestone set to 0.9.4

comment:2 Changed 6 years ago by cmlenz

  • Resolution set to fixed
  • Status changed from new to closed

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

View

Add a comment

Modify Ticket

Change Properties
<Author field>
Action
as closed
The resolution will be deleted. Next status will be 'reopened'
to The owner will be changed from cmlenz. Next status will be 'closed'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.