mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-28 09:53:23 +00:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user