You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EDIT: I see that this concern was raised in Issue #58. To summarize, you are aware that the serialized VTIMEZONE result does not conform to the standard and fixing it is a low priority.
I've done that, and I've specified the timezone as part of the CalDateTime constructor (e.g., new CalDateTime(myDateAndTime, "America/New_York")), but what gets serialized does not validate. In the VTIMEZONE section it only specified the TZID, it does not include the rules for standard and daylight savings times, the UTC offset, etc.
@scott-k-mitchell - As I understand your issue, you want the time zones specified at the VCALENDAR level. I'm going to close this as a duplicate of #58 (thanks for linking to it). If you disagree, please re-open.
I'm also going to comment on #58 regarding my thinking RE: time zones. I've changed my mind a bit.
EDIT: I see that this concern was raised in Issue #58. To summarize, you are aware that the serialized VTIMEZONE result does not conform to the standard and fixing it is a low priority.
I am trying to create a iCalendar file that specifies the time zones. According to this page in the Wiki, https://github.com/rianjs/ical.net/wiki/Working-with-time-zones, we are to accomplish this accordingly:
calendar.AddTimeZone(new VTimeZone("America/New_York"));
I've done that, and I've specified the timezone as part of the
CalDateTime
constructor (e.g.,new CalDateTime(myDateAndTime, "America/New_York")
), but what gets serialized does not validate. In the VTIMEZONE section it only specified the TZID, it does not include the rules for standard and daylight savings times, the UTC offset, etc.Here's the result:
But when I validate the file, I get this error:
Am I missing something here, or are timezones not yet implemented?
Thanks
The text was updated successfully, but these errors were encountered: