Monotone-Parent: 34620473f96b2afe3eceee5febfda2021bc78913

Monotone-Revision: 31ae79f5402429da4b8cae4330cc8265d04b4893

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-05-16T20:27:06
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2008-05-16 20:27:06 +00:00
parent 67d4f1a764
commit a2c21d422f
2 changed files with 3 additions and 27 deletions

View file

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

View file

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