Monotone-Parent: 40c106f6426b8e1f4943286f3f606ecd1f013ced

Monotone-Revision: 65e073a1a7c3638a4e473b21d5bb1d6818959ed1

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-19T00:42:51
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-05-19 00:42:51 +00:00
parent 67885686a7
commit fcae7eb6ee
2 changed files with 13 additions and 5 deletions

View File

@@ -1,5 +1,8 @@
2007-05-18 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoContentObject.m ([SOGoContentObject
-hasSupportForDefaultRoles]): override method by returning "YES".
* SoObjects/SOGo/NSArray+Utilities.m ([NSMutableArray
-addObjectUniquely:object]): new method with an explicit name.

View File

@@ -218,9 +218,9 @@
: 0 /* 0 means 'do not check' */;
/* attempt a save */
if ((error = [self saveContentString:[rq contentAsString]
baseVersion:baseVersion]) != nil)
if ((error = [self saveContentString: [rq contentAsString]
baseVersion: baseVersion]) != nil)
return error;
/* setup response */
@@ -303,9 +303,9 @@
/* acls */
- (NSArray *) acls
- (NSArray *) aclUsers
{
return [container aclsForObjectAtPath: [self pathArrayToSoObject]];
return [container aclUsersForObjectAtPath: [self pathArrayToSoObject]];
}
- (NSArray *) aclsForUser: (NSString *) uid
@@ -343,6 +343,11 @@
forObjectAtPath: [self pathArrayToSoObject]];
}
- (BOOL) hasSupportForDefaultRoles
{
return YES;
}
/* message type */
- (NSString *) outlookMessageClass