diff --git a/ChangeLog b/ChangeLog index 514f2561c..14180fa58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-04-23 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoUserFolder.m ([SOGoUserFolder + -davResourceType]): we declare self as a "principal". + * SoObjects/SOGo/SOGoContentObject.m ([SOGoContentObject -davContentLength]): the content length should is now based on the UTF-8 encoding. diff --git a/SoObjects/SOGo/SOGoUserFolder.m b/SoObjects/SOGo/SOGoUserFolder.m index a3a6dc7db..a7e6ba514 100644 --- a/SoObjects/SOGo/SOGoUserFolder.m +++ b/SoObjects/SOGo/SOGoUserFolder.m @@ -221,6 +221,16 @@ return results; } +- (NSArray *) davResourceType +{ + NSMutableArray *rType; + + rType = [NSMutableArray arrayWithArray: [super davResourceType]]; + [rType addObject: @"principal"]; + + return rType; +} + - (NSString *) _baseDAVURLWithSuffix: (NSString *) suffix { NSURL *prefixURL;