Displaying 4 results from an estimated 4 matches for "vtimezone".
Did you mean:
timezone
2008 Sep 04
1
Timezone support?
...#{vp.dtend}"
puts
puts
end
And here''s an edited icalendar file exported from ical.app (I''ve stripped
out some attributes to keep it short and added some blank lines to separate
events, feel free to ask for the full file)
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VTIMEZONE
TZID:America/Chicago
BEGIN:DAYLIGHT
TZOFFSETFROM:-0600
TZOFFSETTO:-0500
DTSTART:20070311T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU
TZNAME:CDT
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0500
TZOFFSETTO:-0600
DTSTART:20071104T020000
RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU
TZNAME:CST
END:STANDARD
END...
2007 Feb 07
2
How to set TZID in DTSTART?
...thing I can''t get done: How can I set the TZID
parameter for DTSTART/END dates so my encoded ICS file looks
something like this:
BEGIN:VEVENT
...
DTSTART;TZID=Eastern Time:20071201T080000
DTEND;TZID=Eastern Time:20071207T110000
...
END:VEVENT
I managed to create the VTIMEZONE object, but that only sets up the
time-zone itself for reference. To actually use it, I need the TZID
thing. UTC does not help me much ''caus I still need to tell the
calendar in which time-zone the event happens so it can calculate the
local time.
I found that I can create fields...
2008 Aug 22
0
Question about Timezone In 1.0.2
...o "-0600"
timezone_name "CST"
dtstart "19701101T020000"
add_recurrence_rule "YEARLY;BYMONTH=11;BYDAY=1SU"
end
end
I added that exact bit of code to my program, but all I get in my ICS file is this...
BEGIN:VTIMEZONE
TZID:America/Chicago
END:VTIMEZONE
None of the daylight or standard information is added in my ICS file. Am I missing something?
Thanks,
Matt
2008 Jan 08
0
Status of Timezone support / Handeling DTSTART; TZID="(GMT-05.00) Eastern Time (US & Canada)":20080107T123000
...endar file that has non utc dstarts and
dends will it convert those times to UTC or otherwise allow me to do
that?
When I tried to parse an iCalendar input file started off with
something like this:
BEGIN:VCALENDAR
METHOD:REQUEST
PRODID:Microsoft CDO for Microsoft Exchange
VERSION:2.0
BEGIN:VTIMEZONE
TZID:(GMT-05.00) Eastern Time (US & Canada)
X-MICROSOFT-CDO-TZID:10
BEGIN:STANDARD
DTSTART:16010101T020000
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=11;BYDAY=1SU
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010101T020000
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
RRULE:...