ical

iCal "Field" list (for database schema based on iCal standard)

Hello, my application has to deal with calendar information (incl. single occurrence, recurrence, etc.). In order to easily interface with other applications I thought that it would be a good idea to create my database schema based on the iCal format (fields, relationships, constraints) directly so that I get iCal compatible objects via ...

Does Outlook 2003 support iCal 2.0 spec for updating and deleting a calendar item?

We are working on an asp.net 2.0 web app that emails users an ical to save to their outlook 2003 calendar. We noticed none of the code to update or delete an item seem to work even though the ical 2.0 spec supports it. We are curious if Outlook 2003 just ignores this? Does Outlook 2007 act differently? We have situations where an eve...

PHP script: download ics file

Hello, I'm setting up a feature for "exporting as ics file" (iCal) our weekly school agenda. The download prompt works but when opening it in iCal (Mac OS X), iCal tells me the calendar is invalid. I opened the file in a text editor and it looks ok to me. I suspect my download.php script is wrong or setting the wrong mimetype. I trie...

Adding a subscription to iCal via Cocoa

Hello, I'd like to add a subscription in iCal like it does itself with Address Book: Address Book provides iCal with the birthdays of my contacts. I would like to add something like that to iCal: I want to calculate Eastern and depending holidays and have iCal pull these dates from my program. Does anyone have ideas for Cocoa APIs on w...

How do I create an iCal-type .ics file that can be downloaded by other users?

I want to create an iCal Calendar that can be downloaded from my website to the users Calendar program or imported to Google Calendar. What I want to know is if I do a direct Export from iCal on Mac OS X is that the file that I upload to my server? Any catches or caveats I should be aware of? Or is there a better way? ...

API for showing free/busy time in iCal (Apple guys?)

In Snow Leopard there is a possibility to show free/busy time in iCal event. I've searched the headers of CalStore.framework and couldn't find any property that describes this field. How can i retrieve free/busy property of calendar event? Thanks a lot, Nava ...

Get / Set calendar events on iCal (programmatically)

Hi, is there any objective C API or object that can give me access to the iCal and its events? I need to read the calendar events for a given date and optionally set a new event. The code is either plain C or objective C (in the GUI version of the program). I'm using xcode on a mac os 10.6. Sample code is greatly appreciated. ...

How to email an icalendar (ics) file

Hi, Im developing a RoR application, i'm using Ri_Cal to generate an ics file, i want to email this file as an attachment so people who receive it can add the events I'm sending to their calendar. I have tried attaching the file in an email but when i open it with Mail.app in OSX it doesn't automatically ask if i want to add the event. I...

Cocoa Pop-up Window Similar to iCal

I want to open an overlay window (pop up window) when a user selects a cell in my NSTableView similar to selecting an event in iCal. Selecting the event in iCal shows a Window to edit the event, but does so by smoothly animating the window open and adding an arrow pointing to the even in the underlying calendar. Does anyone know what is ...

How to get file path of a CalCalendarItem?

Hi guys, I want to add meta data to an iCal event (task) with OpenMeta. Therefor I need the path to the file that contains the event (task). Is there a possibility to get this programmatically if a have a certain CalCalenderItem? Thank you very much! Best, Felix ...

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, how can I update the RRULE so each subsequent occurrence is bumped by the same time delta? I've looked at DDay.iCal and I see the method Re...

Iphone calendar push from my company application server(JAVA Environment)

Hello, My company decided to use custom push of the iphone calendar from our application to the iphone users. We do not have MAC at our place and more over, no one here know how exactly to start developing. Can You please help us understand how to proceed. Any website/tutorial link will be appreciated. Thanks, ...

How to parse an iCal Rss node

Hi There, Can someone help me with a line of code to access an iCal node from an RSS feed? Specifically i want to access the xCal:x-calconnect-venue-name node. My parent node is 'item', so the path is: item/xCal:x-calconnect-venue/xCal:adr/xCal:x-calconnect-venue-name How can i use parent.SelectChildNode() to access the value of tha...

D-Day Calendar has wrong dates when importing from google calendar?

Hi I am using D-Day calendar and I am not sure but I got a weird problem. I basically have this for my code iCalendar iCal = iCalendar.LoadFromStream(file.InputStream); foreach (Event evt in iCal.Events) { DateTime start = evt.DTStart.Date; DateTime end = evt.DTEnd.Date; ...

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...

Applescipt to find events in iCal

Hi, I'm new to the world of Applescript! I'm trying to figure out how to find into a specific calendar events that contains certain words. In particular, I don't know how to make a repeat that find certain word in the calendar's events... Thanks in advance ...

Can an app read iCal data on the iPHone/Pad in OS 3? OS 4?

Pretty much the title: I'm interested in building an app that displays iCal calendar data. But cant find a direct to to do it. Am I missing something? do the changes in OS 4 make this possible? Thanks. ...

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 ...

Recurrence Calculator For iCal - RFC 2445

Hi, 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 anyone knows of an Objective-C / C / C++ library that I can use to do this? I have seen DDay.iCal which seems perfect but it's in C#... ...

PHP / ICAL / Google Calendar

I'm trying to get an ical feed working with Google Calendar and I just can't seem to get it right. I'm using the PHP iCalcreator class (http://www.kigkonsult.se/iCalcreator/index.php) and here's the code I'm using: <?php require_once APP_ROOT . '/lib/icalcreator.class.php'; $user = new User; $user->Get(1); $v = new vcalendar(); // cr...