Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
5k views

ICalendar and event updates not working in Outlook

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 ...
2
votes
1answer
187 views

OO implementation of RFC 2445

Question What PHP library would you recommend for attaching meeting notices to email? Preference given to: Swift Mailer integration Simple Object-Oriented library Application Scheduling of ...
1
vote
0answers
50 views

How can I do the following mapping in Android [closed]

I have multiple questions with multiple answers in form of radio button in one screen. How can I map the question with respective answer in android? try { int k=0; for(j=0; ...
1
vote
2answers
132 views

Is there an existing library or set of scripts to write recurring event strings for the Google Calendar API in Python?

I have a Python-based program that adds events to a Google Calendar. To add events that repeat, I need to specify a recurrent_data string that conforms to the RFC 2445 standard. An example is below, ...
0
votes
1answer
522 views

Recurrence Calculator For iCal - RFC 2445

I need to interpret a RFC2445 recurrence rule and figure out what dates it occurs on. I don't really want to get into the nitty-gritty of the standard as it seems quite complex, I was wondering if ...
0
votes
1answer
592 views

How should I update an iCal RRULE when moving an appointment?

I'm switching my app's calendar from Telerik Scheduler to jQuery fullcalendar. I'm storing recurring events in the db using iCal RRULEs. The question is, when someone drags an event to a new date, ...
0
votes
1answer
304 views

Should a colon character be escaped in TEXT values in iCalendar (rfc2445)?

My understanding from reading the specification (http://www.ietf.org/rfc/rfc2445.txt) is that the ":" character should not be escaped in text values like DESCRIPTION. From the RFC: The "TEXT" ...