Monotone-Parent: aedd631068b1147a4f0674f42632b314194f6f83

Monotone-Revision: cda3bd58c324868ead052e625bbdbcb210c60af5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-04-24T01:08:34
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-04-24 01:08:34 +00:00
parent ab220f5245
commit 08a90cfb23
2 changed files with 13 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
2008-04-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* 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.

View File

@@ -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;