icalendar

How to send a calendar event to outlook exchange server?

I am using android default codebase 2.0 to try to write an ActiveSync for calendar. I coded the function "sendLocalchanges" in Email App's CalendarSyncAdapter.java, like below: @Override public boolean sendLocalChanges(Serializer s) throws IOException { // TODO Auto-generated method stub s.start(Tags.SYNC_COMMANDS); String...

iCal file that will update the attendee list?

So I want to add an iCal file to a web page, so that people can add an event to their calendars. But when I view the event in my calendar (Outlook 2007) I want to see everyone who will be attending. How can I do that? I just started experimenting with this, I used Outlook's Save As to create an iCal file for a single event. That works...

ICalendar not readable by google calendar.

Operating system : WinXP Program and version you use to access Google Calendar (FF3.5): I'm developing a script (based on an existing vCal ASP.NET class I found online) to generate an .ics file. This file works perfectly when importing to Outlook 2003. When I try to import to Google Calendar, I get the following error: Failed to impo...

Simple CalendarStore query puts application into infinite loop!?

Hi, I've been looking at adding iCal support to my new application and everything seemed just fine and worked on my Mac OS X 10.6 Snow Leopard development machine without a hitch. Now it looks like depending on what is in your calendar the very simple query below: - (NSArray*) fetchCalendarEventsForNext50Minutes { NSLog(@"fetchCalend...

Use applescript to write iCal data to file

I am trying to get applescript to read todays ical events and write them to a file. The code is as follows: set out to "" tell application "iCal" set todaysDate to current date set time of todaysDate to 0 set tomorrowsDate to todaysDate + (1 * days) repeat with c in (every calendar) set theEvents to (every event of c whose start date ≥...

PHP - preg_match_all - iCalendar - REGEX

Hi All guys! ;-) i need help with creating a regex for putting all values into an array! assuming we have a huge file full of theese: Classic iCalendar style: so we know that each segment start with BEGIN:VEVENT and end with END:VEVENT ... END:VEVENT BEGIN:VEVENT UID:e3cafdf3-c5c7-427e-b8c3-653015e9321a SUMMARY:Some Text Here DESC...

how to get Timezone data for calendar ActivitySync?

If we want to send a calendar event to Exchange Server, it is needed to fill with Timezone field. I find some request added event symbol. For example: IP7//wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

Ruby ICalendar Gem: How to get e-mail reminders working.

I'm trying to work out how to use the icalendar ruby gem, found at: http://icalendar.rubyforge.org/ According to their tutorial, you do something like: cal.event.do # ...other event properties alarm do action "EMAIL" description "This is an event reminder" # email body (required) summary "Alarm notification" ...

iCal for authenticated users

I am using the calendar module with its iCal support for Drupal 6. I have made my event type which appears on the iCal feed. However, I want to make the event content type private, so only authenticated users can read it. By doing this they will not show on the iCal feed. Is there any way that I could get the iCal feed to still show thes...

Is it possible to do an Ajax request for an ICS file?

I am trying to do an Ajax request for an ICS file. Yeah, I know it sounds crazy, but I found the perfect library to parse the iCal data. Any ideas why the data comes up blank when I do this? $.ajax({ success:function(data){ alert(data); }, url:"http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=15714&cat=98&platfor...

iCalcreator 2.6 event creation sent in an email w/o attachment

G'day everyone, I am currently trying to send meeting invitations to Outlook recipients. After reading several blogs and various literature iCalcreator seems to be the most complete iCalendar PHP class available. And the documentation is just...crazily complete. If creating a iCal .ics file is OK, I can't find a nice way to send it by ...

How to add event to iCal / Outlook / gmail from webpage?

include a link to download an .ics / .iCal file? attach .ics file through email? How to construct the file? Where to find the spec? What're the benefits of rendering the data in hCalendar on the page? So search engine can index it somehow? Thanks ...

Outlook.RecurrencePattern to iCal string

Is there an easy way to convert an Outlook.Recurrence object to a recurrence string in iCal format? ...

micrsoft outlook icalendar update

How can i update my iCalendar subscription in Microsoft outlook. ...

Create "downloadable" vCalendar object for Outlook with vObject (Python)

I need to be able to offer "downloadable" events for Outlook, via vCalendar objects - if I'm not mistaken. From the research I've done, I've been pointed at using vObject. I've looked at their usage examples, but having no prior experience with the format, it's not clear to me how to solve my problem, as I'm not sure what fields are av...

Javascript library to create calendar uri/links to Google, Yahoo, Outlook , iCal ?

I have seen a very specific and professional web page widget (e.g. http://whatsnextlectures-work.eventbrite.com/ and meetup.com). Please help me find the library that creates the links. I have looked at http://stackoverflow.com/questions/2348590/need-a-service-that-build-calendar-ical-outlook-links, but that answer seems to address the ...

How can I provide maximum integration between a calendar-like webapp and desktop calendar applications (like Outlook)

I've been assigned to upgrade/rewrite a webapp that my company uses to schedule conference calls. One of the goals of the upgrade is to improve integration between the application and our user's Outlook calendars (and ideally other calendar programs as well). At present, when a user is viewing the details of a scheduled conference call ...

can/should iCal property parametrs be escaped?

specifically, the CN (common name) parameter, e.g. ORGANIZER;CN=John Doe,Eng:mailto:[email protected] The RFC is vague on this, IMHO. It is very clear about property values of type TEXT, but for this parameter it just says "The parameter value is text". Anyways, the escaping specified for TEXT type doesn't seem complete for parameter val...

Representing complex scheduled recurrence in a database

I have an interesting problem trying to represent complex schedule data in a database. As a guideline, I need to be able to represent the entirety of what the iCalendar -- ics -- format can represent, but in a database. I'm not actually implementing anything relating to ics, but it gives a good scope of the type of rules I need to be abl...

"One or more parameter values are not valid" while saving task using outlook api

I'm using outlook api for sending task in a web application application. I'm also trying to save task, for saving task it gives error - "Could not complete the operation. One or more parameter values are not valid." private static void CreateTaskO(Request instance, string email, string msgBody) { Microsoft.Office.Interop.Ou...