2008/12/6 Andrey Kostromin <[email protected]>: > > yes, I use str(time.strftime("%Y%m%dT%H%M%SZ", date.utctimetuple())) > > I created recurring event manualy and Export My Calendars (Download a > zipped file containing each of your calendars in .ics format.) Then > use this file. Works good. Thank > > > question on ics-file > My settings: Calendar Settings - Your current time zone: (GMT+02:00) > in exported from google files some lines content "+0300". What it > means? > > BEGIN:VTIMEZONE > TZID:Europe/Kiev > X-LIC-LOCATION:Europe/Kiev > BEGIN:DAYLIGHT > TZOFFSETFROM:+0200 > TZOFFSETTO:+0300 > TZNAME:EEST > DTSTART:19700329T030000 > RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU > END:DAYLIGHT > BEGIN:STANDARD > TZOFFSETFROM:+0300 > TZOFFSETTO:+0200 > TZNAME:EET > DTSTART:19701025T040000 > RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU > END:STANDARD > END:VTIMEZONE
That's part of the timezone definition, and not something you normally need to worry about. If you're curious, please read the documentation on the VTIMEZONE property in the iCalendar specification for more details: http://www.kanzaki.com/docs/ical/vtimezone.html Specifically: 'The mandatory "TZOFFSETFROM" property gives the UTC offset which is in use when the onset of this time zone observance begins. "TZOFFSETFROM" is combined with "DTSTART" to define the effective onset for the time zone sub-component definition. For example, the following represents the time at which the observance of Standard Time took effect in Fall 1967 for New York City: DTSTART:19671029T020000 TZOFFSETFROM:-0400 The mandatory "TZOFFSETTO " property gives the UTC offset for the time zone sub-component (Standard Time or Daylight Saving Time) when this observance is in use.' -- Trevor Johns --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
