Changes between Initial Version and Version 1 of howto/ProxyAutoconfig
- Timestamp:
- 11/10/11 14:46:57 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
howto/ProxyAutoconfig
v1 v1 1 = Windows/Internet explorer automatisch proxy settings laten detecteren = 2 3 '''WORK IN PROGRESS'' 4 5 6 {{{ 7 8 9 http://en.wikipedia.org/wiki/Proxy_auto-config 10 11 function FindProxyForURL(url, host) { 12 if (shExpMatch(host, "*.playlane.be")) 13 { 14 return "DIRECT"; 15 } 16 if (isInNet (host, "192.168.1.0", "255.255.252.0")) 17 { 18 return "DIRECT"; 19 } 20 return "PROXY edu.olvo.be:3128; DIRECT"; 21 } 22 }}}