BusyBlog: How to sync iCal calendar subscriptions to MobileMe and the iPhone
05 October 2008
in links
tagged with
[calendar]
[google]
[ical]
[sync]
By subscribing to remote calendars in Google Calendar, then syncing those calendars to the local computer, you can persuade MobileMe to sync them in turn to me.com, and thus over-the-air to the iPhone. Which is a lot of hops, and you still won’t be able to choose to not push certain calendars to the phone. But it’s better than the current situation. Requires buying software, though.
iCal calendar push
08 September 2008
in notes
tagged with
[calendar]
[dopplr]
[http]
[ical]
[upload]
[webdav]
There’s a common misconception that iCal uses WebDAV to upload calendars to remove servers. This bites me every so often, as I wrote the Dopplr iCal upload code and people tend to assume that if iCal can upload calendars, so should any other local calendar client that uses WebDAV. And they can’t - things break.
iCal actually does the simplest thing that could possibly work, and I love it for this. You give it a upload url, a username, and a password. The calendar you’re uploading has a name. iCal url-encodes the calendar name, and builds a calendar URL that looks like http://upload_url/calendar_name.ics. Then it does an HTTP PUT (authenticated with the username and password) of the contents of the calendar to that URL. Then it gives the url to the user and tells them that their calendar is here.
(As an aside, this means that you can upload more than one calendar into Dopplr, as long as they all have different names.)
That’s it. Exactly one HTTP call, one verb (Well, ok, there’s another verb. When you unpublish something, iCal sends an HTTP DELETE. But you knew that). It’s a subset of WebDAV, which is why iCal can also publish to WebDAV servers. But I was able to implement 60% of the iCal upload feature in Dopplr during the tea break in the middle of the meeting where someone came up with the idea, because adding support for a single extra verb to a single extra path is easy. Implementing WebDAV? Harder to get right.
MobileMe: Syncing calendar subscriptions
21 August 2008
in links
tagged with
[apple]
[calendar]
[ical]
[subscription]
For future reference, the Apple support ticket that explains that I can’t sync subscribed calendars up to me.com, thus making it totally useless.
SourceForge.net: Remote Calendars
23 November 2007
in links
tagged with
[ical]
[ics]
[outlook]
[webdav]
Publish iCal files to a webdav server from Outlook 2003
