[Pycon-interest] Schedule now available in iCal format
MW Mike Weiner (5028)
MWeiner at ag.com
Wed Feb 1 23:40:43 CET 2006
From: pycon-interest-bounces at python.org
[mailto:pycon-interest-bounces at python.org] On Behalf Of David Goodger
I took a look at the code and compared an iCal-generated .ics file with
the PyCon schedule.ics. I think the problem has to do with this
comment:
print >>output, 'UID:%s@%s' % (date, 'pycon.org')
print >>output, 'SEQUENCE:1'
# XXX what are these two?
print >>output, 'DTSTAMP:%s' % date
print >>output, 'DURATION:PT%iM' % duration
<snip>
--
Actually its more basic than that, this section:
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=US-Central:20060301T080000
Needs to be split to:
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=US-Central:20060301T080000
And it opens in ical without error, and prompts saving events to a
calendar name
HTH
Michael Weiner
More information about the Pycon-interest
mailing list