Changes between Initial Version and Version 1 of howto/ProxyAutoconfig


Ignore:
Timestamp:
11/10/11 14:46:57 (12 years ago)
Author:
Edwin Eefting
Comment:

--

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
     9http://en.wikipedia.org/wiki/Proxy_auto-config
     10
     11function 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}}}