Another tweak to the proxy
I found that the proxy tweaks from the other day needed a big more refinement. Now, instead of exempting ftp from the proxy, we're simply only including http. This allows other links (like feed:) to work well. New proxy configuration is after the ...
I found that the proxy tweaks from the other day needed a big more refinement. Now, instead of exempting ftp from the proxy, we’re simply only including http. This allows other links (like feed:) to work well. New proxy configuration is after the jump — users will see this change the next time they fire up their browsers on the wireless or VPN nets.
–Craig
function FindProxyForURL(url, host){if (url.substring(0, 4) == "http") {return "PROXY echo.mcs.anl.gov:3131;DIRECT";}else {return "DIRECT";}}