diff --git a/ChangeLog b/ChangeLog index 9f2635bd5..372ff7cd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-05-16 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoObject.m ([SOGoObject + -pathArrayToSOGoObject]): removed useless method. + * SoObjects/Appointments/SOGoAppointmentFolder.m ([SOGoAppointmentFolder -davCalendarQuery:queryContext]): added partial support for the "text-match" caldav directive. diff --git a/SoObjects/SOGo/SOGoObject.m b/SoObjects/SOGo/SOGoObject.m index b3398a676..fccb4e359 100644 --- a/SoObjects/SOGo/SOGoObject.m +++ b/SoObjects/SOGo/SOGoObject.m @@ -246,33 +246,6 @@ static NSDictionary *reportMap = nil; return container; } -- (NSArray *) pathArrayToSOGoObject -{ - NSMutableArray *realPathArray; - NSString *objectName; - NSArray *objectDescription; - - realPathArray - = [NSMutableArray arrayWithArray: [self pathArrayToSoObject]]; - if ([realPathArray count] > 2) - { - objectName = [realPathArray objectAtIndex: 2]; - if ([objectName isKindOfClass: [NSString class]]) - { - objectDescription = [objectName componentsSeparatedByString: @"_"]; - if ([objectDescription count] > 1) - { - [realPathArray replaceObjectAtIndex: 0 - withObject: [objectDescription objectAtIndex: 0]]; - [realPathArray replaceObjectAtIndex: 2 - withObject: [objectDescription objectAtIndex: 1]]; - } - } - } - - return realPathArray; -} - /* ownership */ - (void) setOwner: (NSString *) newOwner