Related questions
Creating a CalDAV service with .Net
I want to create a calendar in my application that external users can view.
The CalDAV (basically WebDAV+iCalendar) format seems to be relatively widely supported, although if rather unusually by some clients (Outlook, for instance). Completely new to me …
What's the difference between Webcal and WebDAV/CalDAV?
As I understand it, CalDAV is an extension to WebDAV to manage iCalendar subscriptions.
And Webcal is a URL scheme that does the same thing, but not standarized.
I'm I right here?
Whats the pros/cons for going either way?
How to extract a string using JavaScript Regex?
I'm trying to extract a substring from a file with JavaScript Regex. Here is a slice from the file :
DATE:20091201T220000
SUMMARY:Dad's birthday
the field I want to extract is "Summary". Here is the approach:
extractSummary : function(iCalContent) {
/*
input : …