Monotone-Parent: 21911317257c6ad395e78e56a3d125fc4be404e6

Monotone-Revision: 5352547fba6d82f422f3bb300b39427b9ebf5653

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-01-21T16:20:11
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2009-01-21 16:20:11 +00:00
parent 5df65bd782
commit 63d79c031d
3 changed files with 21 additions and 1 deletions
+11
View File
@@ -1,3 +1,14 @@
2009-01-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoGCSFolder.m ([SOGoGCSFolder
-subscribe:reallyDoinTheNamesOf:delegatedUsersfromMailInvitation:isMailInvitationinContext:localContext]):
explicitly set the content-type of the response to text/plain with
charset='utf-8' to work-around a bug in Firefox, complaining about
a hypothetical text/xml content he does not receive.
* UI/Common/WODirectAction+SOGo.m ([WODirectAction
-responseWith204]):
same as above.
2009-01-19 Ludovic Marcotte <lmarcotte@inverse.ca>
* Main/SOGo.m
+3
View File
@@ -671,6 +671,9 @@ static NSArray *childRecordFields = nil;
SOGoUser *currentUser;
response = [localContext response];
[response setHeader: @"text/plain; charset=utf-8"
forKey: @"Content-Type"];
currentUser = [localContext activeUser];
if (delegatedUsers && [delegatedUsers count])
+7 -1
View File
@@ -63,7 +63,13 @@
- (WOResponse *) responseWith204
{
return [self responseWithStatus: 204];
WOResponse *response;
response = [self responseWithStatus: 204];
[response setHeader: @"text/plain; charset=utf-8"
forKey: @"Content-Type"];
return response;
}
- (WOResponse *) redirectToLocation: (NSString *) newLocation