Monotone-Parent: 1f071b472ff826a3cdfb0f8ecafbe3f2c31e969e

Monotone-Revision: a678bfc28369a5cca8665c85a0a2e944c1a1fa37

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-12-22T20:33:47
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2009-12-22 20:33:47 +00:00
parent bf68910d9b
commit 56075d6240
3 changed files with 16 additions and 2 deletions
+7
View File
@@ -1,3 +1,10 @@
2009-12-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m
(_appendComponentProperties:matchingFilters:toResponse:)
(_appendComponentProperties:matchingURLs:toResponse:): ensure that
baseURL ends with "/".
2009-12-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m (-fetchContentObjectNames):
@@ -1308,8 +1308,6 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
[r appendFormat: @"<D:response><D:href>"];
[r appendString: baseURL];
// if (![baseURL hasSuffix: @"/"])
// [r appendContentString: @"/"];
[r appendString: [object objectForKey: @"c_name"]];
[r appendString: @"</D:href>"];
@@ -1715,6 +1713,9 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
if ([currentField length])
[fields addObjectUniquely: currentField];
baseURL = [self davURLAsString];
#warning review this when fixing http://www.scalableogo.org/bugs/view.php?id=276
if (![baseURL hasSuffix: @"/"])
baseURL = [NSString stringWithFormat: @"%@/", baseURL];
propertiesArray = [[properties allKeys] asPointersOfObjects];
propertiesCount = [properties count];
@@ -1934,6 +1935,9 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
NSEnumerator *addFields;
baseURL = [self davURLAsString];
#warning review this when fixing http://www.scalableogo.org/bugs/view.php?id=276
if (![baseURL hasSuffix: @"/"])
baseURL = [NSString stringWithFormat: @"%@/", baseURL];
urls = [NSMutableArray array];
max = [refs length];
+3
View File
@@ -1064,6 +1064,9 @@ static NSArray *childRecordFields = nil;
newToken = 0;
baseURL = [self davURLAsString];
#warning review this when fixing http://www.scalableogo.org/bugs/view.php?id=276
if (![baseURL hasSuffix: @"/"])
baseURL = [NSString stringWithFormat: @"%@/", baseURL];
max = [records count];
syncResponses = [NSMutableArray arrayWithCapacity: max + 1];