mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-12 00:38:51 +00:00
Monotone-Parent: c0a73ddf1c118dc1d1ffba692d34ff101d082702
Monotone-Revision: fb30e7ee41a9c1aa800c8f7cccf52d513a51d955 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-01T05:52:37 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2007-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Contacts/SOGoContactLDAPFolder.m
|
||||
([SOGoContactLDAPFolder -davResourceType]): declare the correct
|
||||
groupdav resource-type.
|
||||
|
||||
* SoObjects/Contacts/SOGoContactFolders.m ([SOGoContactFolders
|
||||
-davContentType]): same as below.
|
||||
|
||||
|
||||
@@ -172,9 +172,25 @@
|
||||
return result;
|
||||
}
|
||||
|
||||
- (NSString *) groupDavResourceType
|
||||
- (NSArray *) davResourceType
|
||||
{
|
||||
return @"vcard-collection";
|
||||
NSArray *rType, *groupDavCollection;
|
||||
|
||||
groupDavCollection = [NSArray arrayWithObjects: @"vcard-collection",
|
||||
XMLNS_GROUPDAV, nil];
|
||||
rType = [NSArray arrayWithObjects: @"collection", groupDavCollection, nil];
|
||||
|
||||
return rType;
|
||||
}
|
||||
|
||||
- (NSString *) davContentType
|
||||
{
|
||||
return @"httpd/unix-directory";
|
||||
}
|
||||
|
||||
- (BOOL) davIsCollection
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
/* acls */
|
||||
|
||||
Reference in New Issue
Block a user