Monotone-Parent: e2612f65bcad1f3bf690e9591362c3fcf8825a80

Monotone-Revision: 55b46093b748e72cd037f89dc45b4785c5466dc6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-09T23:10:43
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-03-09 23:10:43 +00:00
parent 7a5da6bcdc
commit fd0d5ab723
3 changed files with 52 additions and 1 deletions
+23
View File
@@ -231,4 +231,27 @@
return YES;
}
/* CalDAV support */
- (NSArray *) davCalendarHomeSet
{
/*
<C:calendar-home-set xmlns:D="DAV:"
xmlns:C="urn:ietf:params:xml:ns:caldav">
<D:href>http://cal.example.com/home/bernard/calendars/</D:href>
</C:calendar-home-set>
Note: this is the *container* for calendar collections, not the
collections itself. So for use its the home folder, the
public folder and the groups folder.
*/
WOContext *context;
NSArray *tag;
context = [[WOApplication application] context];
tag = [NSArray arrayWithObjects: @"href", @"DAV:", @"D",
[self baseURLInContext: context], nil];
return [NSArray arrayWithObject: tag];
}
@end /* SOGoUserFolder */