iCalendar format uses RRULE to describe recurring events, and EXDATE to exclude dates from recurrence. Currently NetworkCalendar is only concerned with the DTSTART property, which only gets us the start date of a recurrence. See http://www.kanzaki.com/docs/ical/rrule.html.
Given RRULE:FREQ=MONTHLY;UNTIL=20161130T000000Z;BYDAY=-1TU, we must calculate the start and end time on the last Tuesday (-1TU) of each month after the start date until 30 November 2016.
iCalendar format uses
RRULE
to describe recurring events, andEXDATE
to exclude dates from recurrence. Currently NetworkCalendar is only concerned with theDTSTART
property, which only gets us the start date of a recurrence. See http://www.kanzaki.com/docs/ical/rrule.html.