diff --git a/ChangeLog b/ChangeLog index a6879aaef..fdc71f777 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-07-10 Wolfgang Sourdeau + + * SoObjects/SOGo/SOGoContentObject.m (-davResourceType): new + resource that returns an empty string for DAV compliance. + 2009-07-09 Cyril Robert * UI/MailPartViewers/UIxMailRenderingContext.m: Display .tiff as diff --git a/SoObjects/SOGo/SOGoContentObject.m b/SoObjects/SOGo/SOGoContentObject.m index d7da26f10..b884782ab 100644 --- a/SoObjects/SOGo/SOGoContentObject.m +++ b/SoObjects/SOGo/SOGoContentObject.m @@ -393,6 +393,11 @@ [content lengthOfBytesUsingEncoding: NSUTF8StringEncoding]]; } +- (NSString *) davResourceType +{ + return @""; +} + - (NSException *) davMoveToTargetObject: (id) _target newName: (NSString *) _name inContext: (id) _ctx