rfc5545

Python dateutils print recurrence rule according to iCalendar format (see RFC 5545)

浪子不回头ぞ 提交于 2019-11-27 18:06:23
问题 I am trying to print a recurrence rule as a string specified by iCalendar format (see RFC 5545). Im using python dateutils, in particular dateutil.rrule to create the recurrence rule and I want to print this as a string like: "RRULE:FREQ=DAILY;COUNT=5" Can anyone tell me if there is a method to achieve this? I think I'm using the labix dateutils btw. Many thanks! 回答1: There is no method or function in the python-dateutil package to do this. See this bug for a patch that may help: https://bugs

ICalendar and event updates not working in Outlook

我的梦境 提交于 2019-11-27 06:45:42
I'm generating ICalendar (.ics) files. Using the UID and SEQUENCE fields I can update existing events in Google Calendar and in Windows Calendar BUT NOT in MS Outlook 2007 - it just creates a second event How do I get them to work for Outlook ? Thanks Tom I've continued to do some testing and have now managed to get Outlook to update and cancel events based on the .cs file. Outlook in fact seems to respond to the rules defined in RFC 2446 In summary you have to specify METHOD:REQUEST and ORGANIZER:xxxxxxxx in addition to UID : and SEQUENCE: For a cancellation you have to specify METHOD:CANCEL

ICalendar and event updates not working in Outlook

僤鯓⒐⒋嵵緔 提交于 2019-11-26 12:09:15
问题 I\'m generating ICalendar (.ics) files. Using the UID and SEQUENCE fields I can update existing events in Google Calendar and in Windows Calendar BUT NOT in MS Outlook 2007 - it just creates a second event How do I get them to work for Outlook ? Thanks Tom 回答1: I've continued to do some testing and have now managed to get Outlook to update and cancel events based on the .cs file. Outlook in fact seems to respond to the rules defined in RFC 2446 In summary you have to specify METHOD:REQUEST