Monotone-Parent: d6c75d1dc4f3b69b2c7aced9418fbc50b232e796

Monotone-Revision: a2b85224aedbae3b50dca9ad2d087e281dc1ee27

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-06-01T05:38:21
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2007-06-01 05:38:21 +00:00
parent ce201cacc5
commit 01f43b5944
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,8 @@
2007-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca> 2007-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoFolder.m ([SOGoFolder -davContentType]):
declare "httpd/unix-directory".
* SoObjects/SOGo/SOGoUser.m ([SOGoUser +initialize]): declare * SoObjects/SOGo/SOGoUser.m ([SOGoUser +initialize]): declare
"UTC" as fallback timezone instead of "Canada/Eastern". "UTC" as fallback timezone instead of "Canada/Eastern".
([-hasEmail:email]): make use of the new NSArray's ([-hasEmail:email]): make use of the new NSArray's

View file

@ -237,6 +237,11 @@ static NSString *defaultUserID = @"<default>";
return rType; return rType;
} }
- (NSString *) davContentType
{
return @"httpd/unix-directory";
}
- (NSArray *) toOneRelationshipKeys { - (NSArray *) toOneRelationshipKeys {
/* toOneRelationshipKeys are the 'files' contained in a folder */ /* toOneRelationshipKeys are the 'files' contained in a folder */
NSMutableArray *ma; NSMutableArray *ma;