Monotone-Parent: 15503fe623be16f680136363d33fa6452249289a

Monotone-Revision: 29ab1a13365e1046e249420b5176c067f8a38fe9

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-07-23T17:34:10
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2009-07-23 17:34:10 +00:00
parent b35388fd4e
commit cf3eb03735
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
2009-07-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m
(-davPOSTRequest:withContentType:inContext:) we use a simple comma
as recipient separator but with trim the resulting elements.
* SoObjects/SOGo/NSArray+Utilities.m (-trimmedComponents): new
method that returns a trimmed/stripped version of the strings
contained in the array.
@@ -2262,9 +2262,9 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
originator = [originator substringFromIndex: 7];
recipients = [[request headerForKey: @"recipient"]
componentsSeparatedByString: @", "];
componentsSeparatedByString: @","];
obj = [self caldavScheduleRequest: [request contentAsString]
from: originator to: recipients];
from: originator to: [recipients trimmedComponents]];
}
else
obj = [super davPOSTRequest: request withContentType: cType