rfc5545

Mulit-Day All-Day Event

孤者浪人 提交于 2020-01-24 18:19:17
问题 I am having issues getting the right syntax for an all day event which spans multiple days. Here is my ICAL event: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//http://XXX//Event METHOD:PUBLISH BEGIN:VEVENT DTSTART;TZID="America/Chicago";VALUE=DATE:20150809 DTEND;TZID="America/Chicago";VALUE=DATE:20150812 SUMMARY:Event Name DESCRIPTION:Event Description LOCATION:Event Location END:VEVENT END:VCALENDAR Shows up great in Mac Calendar: But in Outlook, it starts at 1AM and isn't marked as all day: 回答1:

How can I exclude DTSTART from generated events if its day not among days specified by BYDAY?

吃可爱长大的小学妹 提交于 2020-01-07 03:00:31
问题 I'm using google-rfc-2445 to generate repeating events according to according to rfc-2445: The "DTSTART" property for a "VEVENT" specifies the inclusive start of the event. For recurring events, it also specifies the very first instance in the recurrence set. So, for example RRULE for event which occures every Friday 5 times: DTSTART;TZID=US-Eastern:20160204T090000 RRULE:FREQ=WEEKLY;COUNT=5;BYDAY=FR;INTERVAL=1; So according to rfc-2445 it will generate 6 events. First event on Thursday 4

Recurrent pattern to map on Google event pattern

陌路散爱 提交于 2020-01-06 18:01:22
问题 Google implements recurring patterns partly with rfc 5545. I need to map on Google situation of repeat event Yearly, every fourth Wednesday in August (start time mapping is clear). Implementation language to describe rule is not important, but if someone can recommend existing solution it would be good if java library is used. More details from rfc 5545 specification: Every Wednesday in August, forever: RRULE:FREQ=YEARLY;BYMONTH=8;BYDAY=WE It provides only partly solution. Is it can be

Recurrent pattern to map on Google event pattern

a 夏天 提交于 2020-01-06 17:58:31
问题 Google implements recurring patterns partly with rfc 5545. I need to map on Google situation of repeat event Yearly, every fourth Wednesday in August (start time mapping is clear). Implementation language to describe rule is not important, but if someone can recommend existing solution it would be good if java library is used. More details from rfc 5545 specification: Every Wednesday in August, forever: RRULE:FREQ=YEARLY;BYMONTH=8;BYDAY=WE It provides only partly solution. Is it can be

Outlook iCal meeting invitation description issue

僤鯓⒐⒋嵵緔 提交于 2020-01-05 22:12:21
问题 I am sending iCal event invitation using php . Everything displays in proper manner and RVSP button displayed correctly. But description is cutting down after first line . For example if my description is: The problem occurs when I have multiple lines in the description. If it contains the text for example I will only get in my outlook calendar description. The part after disappears. The only first line displays like: The problem occurs when I have multiple lines in the description. If

Exclusive/Inclusive DTEND according to RFC5545 and Fullcalendar in event with time part, how to do it right?

匆匆过客 提交于 2019-12-25 06:49:50
问题 According to rfc5545: The "DTEND" property for a "VEVENT" calendar component specifies the non-inclusive end of the event. Also in fullcalendar documentation for end property of event object written the same: The exclusive date/time an event ends. Optional. A Moment-ish input, like an ISO8601 string. Throughout the API this will become a real Moment object. It is the moment immediately after the event has ended. For example, if the last full day of an event is Thursday, the exclusive end of

Parse RRULE to readable text?

时光总嘲笑我的痴心妄想 提交于 2019-12-24 04:20:22
问题 I am looking for a library (php) or some pseudocode to parse Ical RRULEs to readable text(like for example google calendar) RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=1FR,3FR,5FR -> Monthly on Friday of weeks 1, 3, 5 of the month 回答1: I was wondering the same thing and I struggled to find one, but I found one which is still in development, and you can find it here: https://github.com/simshaun/recurr/tree/v0.2-dev I was able to get it working with this code: $timezone = 'America/New_York'; $startDate

Does icalendar support HTML and CSS?

独自空忆成欢 提交于 2019-12-23 03:17:40
问题 I am attempting to create a ICalendar with a html description using the X-ALT-DESC;FMTTYPE=text/html: but it does not appear to support inline CSS for layout/styling is there anyway of making CSS work within an icalendar? 回答1: RFC 5545 (the iCalendar specification) allows you to use HTML, but that's a different thing from the calendar clients supporting it. I suspect that you'll find it rare that any of the non-browser-based calendars will do so. 回答2: As opposed to what jgm implied, the

Does icalendar support HTML and CSS?

余生颓废 提交于 2019-12-23 03:17:14
问题 I am attempting to create a ICalendar with a html description using the X-ALT-DESC;FMTTYPE=text/html: but it does not appear to support inline CSS for layout/styling is there anyway of making CSS work within an icalendar? 回答1: RFC 5545 (the iCalendar specification) allows you to use HTML, but that's a different thing from the calendar clients supporting it. I suspect that you'll find it rare that any of the non-browser-based calendars will do so. 回答2: As opposed to what jgm implied, the

iCal Format - Organizer Property

痞子三分冷 提交于 2019-12-12 12:18:07
问题 I am currently programming a scheduling application which loosely based on iCalendar standard. Does anyone knows in which property can I store the event creator's information? By browsing through the iCalendar RFC 2445, I find this property: Organizer. can I store the event creator's information in the property even if he/she is the only person involved in the event? or there is already a field to store the event creator's information???! 回答1: Some notes from the rfc2445 Conformance: This