mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-19 13:43:22 +00:00
Monotone-Parent: 3f296062919cfbbae0e24137aa3637f886a274b3
Monotone-Revision: 8f8ecd8d738bfaf099722644bfbdaee74d8b589d Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-02-22T21:20:53 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
2008-02-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Contacts/SOGoContactGCSFolder.m ([SOGoContactGCSFolder
|
||||
-davNamespaces]): same as below.
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolder.m
|
||||
([SOGoAppointmentFolder -davNamespaces]): take the parents
|
||||
namespaces into account.
|
||||
|
||||
* SoObjects/SOGo/SOGoObject.m ([SOGoObject -addUserInAcls:uid]):
|
||||
new method.
|
||||
([SOGoObject -removeUserFromAcls:uid]): new methods (see below).
|
||||
|
||||
@@ -287,7 +287,12 @@ static NSNumber *sharedYes = nil;
|
||||
|
||||
- (NSArray *) davNamespaces
|
||||
{
|
||||
return [NSArray arrayWithObject: @"urn:ietf:params:xml:ns:caldav"];
|
||||
NSMutableArray *ns;
|
||||
|
||||
ns = [NSMutableArray arrayWithArray: [super davNamespaces]];
|
||||
[ns addObjectUniquely: @"urn:ietf:params:xml:ns:caldav"];
|
||||
|
||||
return ns;
|
||||
}
|
||||
|
||||
- (id) davCalendarQuery: (id) queryContext
|
||||
|
||||
@@ -259,7 +259,12 @@
|
||||
|
||||
- (NSArray *) davNamespaces
|
||||
{
|
||||
return [NSArray arrayWithObject: @"urn:ietf:params:xml:ns:carddav"];
|
||||
NSMutableArray *ns;
|
||||
|
||||
ns = [NSMutableArray arrayWithArray: [super davNamespaces]];
|
||||
[ns addObjectUniquely: @"urn:ietf:params:xml:ns:carddav"];
|
||||
|
||||
return ns;
|
||||
}
|
||||
|
||||
- (NSString *) groupDavResourceType
|
||||
|
||||
Reference in New Issue
Block a user