From a2c21d422fafea7902a7c32c22f64b3d1c3866cb Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 16 May 2008 20:27:06 +0000 Subject: [PATCH] Monotone-Parent: 34620473f96b2afe3eceee5febfda2021bc78913 Monotone-Revision: 31ae79f5402429da4b8cae4330cc8265d04b4893 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-05-16T20:27:06 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 3 +++ SoObjects/SOGo/SOGoObject.m | 27 --------------------------- 2 files changed, 3 insertions(+), 27 deletions(-) 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