On 29 Jun 2011, at 20:25, Chris Cunningham wrote:
Am I reading this right? If I was on, say, Windows behind a proxy, this would disable proxy use on startup? So, every time I started an image, I would have to manually re-enable proxy use?
Uhh, no, on Windows nothing at all would happen, this is Mariano's code, as I formatted it: startUp OSPlatform isMacOS ifTrue: [ self useHTTPProxy ifTrue: [ (self getHTTPProxyHost findTokens: ':') ifNotEmpty: [ :p | NetworkSystemSettings httpProxyServer: p first; httpProxyPort: p second asInteger; useHTTPProxy: true ] ] ifFalse: [ NetworkSystemSettings useHTTPProxy: false ] ] This does not take away anything that wasn't there before, as far as I can see. Sven