Monotone-Parent: 35aeb39a4ff1d311050f0ab6cc5002f6896f9572

Monotone-Revision: 616921280c79198f2b2025ca567453d8d7d550e7

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-10-15T14:52:02
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-10-15 14:52:02 +00:00
parent cfbdbbc604
commit e08698a17e
2 changed files with 10 additions and 2 deletions
+6
View File
@@ -1,3 +1,9 @@
2008-10-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoObject.m ([SOGoObject -davURL])
([SOGoObject -soURL]): appended the port number to the hostname
used to construct the NSURL instance.
2008-10-03 Francis Lachapelle <flachapelle@inverse.ca>
* UI/MainUI/SOGoUserHomePage.m ([WOResponse
+4 -2
View File
@@ -1164,7 +1164,7 @@ SEL SOGoSelectorForPropertySetter (NSString *property)
{
NSURL *serverURL, *url;
NSMutableArray *path;
NSString *baseURL, *urlMethod;
NSString *baseURL, *urlMethod, *fullHost;
serverURL = [context serverURL];
baseURL = [[self baseURLInContext: context] stringByUnescapingURL];
@@ -1185,8 +1185,10 @@ SEL SOGoSelectorForPropertySetter (NSString *property)
[path insertObject: expected atIndex: 2];
}
fullHost = [NSString stringWithFormat: @"%@:%@",
[serverURL host], [serverURL port]];
url = [[NSURL alloc] initWithScheme: [serverURL scheme]
host: [serverURL host]
host: fullHost
path: [path componentsJoinedByString: @"/"]];
[url autorelease];