See ChangeLog

Monotone-Parent: c6f02e683516d8272f34a92875af92b45b067767
Monotone-Revision: d7f6037ae6e1e2123a306d459ff6f96271bfc190

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-10-15T21:33:56
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
C Robert
2009-10-15 21:33:56 +00:00
parent a5cafe30b6
commit 891f31d0b1
6 changed files with 57 additions and 4 deletions
+2
View File
@@ -82,6 +82,8 @@ SEL SOGoSelectorForPropertySetter (NSString *property);
- (id) initWithName: (NSString *) _name inContainer:(id)_container;
+ (SOGoWebDAVAclManager *) webdavAclManager;
/* accessors */
- (NSString *) nameInContainer;
+1 -1
View File
@@ -33,7 +33,7 @@
@class SOGoUser;
@class SOGoWebDAVValue;
@interface SOGoWebDAVAclManager : NSObject
@interface SOGoWebDAVAclManager : NSObject <NSCopying>
{
NSMutableDictionary *aclTree;
}
+10
View File
@@ -262,4 +262,14 @@ static NSNumber *yesObject = nil;
[aclTree objectForKey: @"{DAV:}all"]];
}
- (id) copyWithZone: (NSZone *) aZone
{
SOGoWebDAVAclManager *x;
x = [[SOGoWebDAVAclManager allocWithZone: aZone] init];
x->aclTree = [aclTree mutableCopyWithZone: aZone];
return x;
}
@end