ical

How to get started writing iCal plugins?

I'd like to write an iCal plugin to help me cope with the need to put most events I create onto two calendars. Google is uncharacteristically less than helpful in providing programming resources for this purpose. Can someone here provide pointer(s)? ...

Publishing ics feeds in Django

I'm attempting to publish an ICS feed using django + vobject. As a test run, I have the following view defined: def ical(request, user_id=None): cal = vobject.iCalendar() cal.add('method').value = 'PUBLISH' cal.add('calscale').value = 'GREGORIAN' cal.add('x-wr-calname').value = 'TestCal28' cal.add('x-wr-timezone').va...

How to access Apples iCal-Server via Python

Hello everyone, I'm trying to access Apples iCal-Server on a Mac OS X Snow Leopard Server via Python. The server is up and running and working with it via the iCal-Application is just fine. Now I need to access this server via Python to use it as backend for resource planning. I have already looked at the CalDav-Module (http://packages....

Repeating iCal Events in AppleScript

How do I get all of the dates on which a repeating iCal event occurs in AppleScript? ...

How do I set the timezone in an iCal feed using DDay.iCal?

I'm creating an iCal feed using DDay.iCal. It works, but I can't figure out how to set the timezone for the feed. Here's the basic code: iCalendar iCal = new iCalendar(); // <-- Set the Timezone HERE to PST (Pacific Daylight Time) Event evt = iCal.Create<Event>(); evt.Start = new iCalDateTime(meeting.MeetDate); evt.End = evt.Start.Ad...

Store alarm value of ical

I used fetch events method and fetch all the events from iCal but i need to fetch and store alarm value in array please help me i need to to do in next two hours ...

Performing caldav-queries using the CalDAVClientLibrary

I am trying to query the Apple Calendarserver via the Python CalDAVClientLibrary. I can connect to the server, list the available calendars and read out the whole calendar, also I am able to store a new event.For these operations, caldav uses the HTTP-Methods GET, PUT, REPORT and PROPFIND. As an example (assuming there is at least one c...

How to synchronize an online ICS file with Outlook?

I have been working on a project that required publishing of a set of appointments from my ASP.NET MVC application to outlook. I handled this by creating a controller that returns an ICS formatted file back. So far so good. When I import this calendar in Outlook, it is read-only. What I want to achieve is to be able to update (add/modi...