home *** CD-ROM | disk | FTP | other *** search
- // Toto jsou jednoduche priklady pouziti autokonfiguracni souboru
- // Popis tohoto souboru ziskate na :
- // http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
-
- // priklad c.1
- function FindProxyForURL(url, host)
- {
- if (isPlainHostName(host))
- return "DIRECT";
- else
- return "PROXY proxy:3128"; // ! nahrad "proxy" jmenem pocitace, na
- } // kterem WinProxy skutecne bezi.
-
-
-
- /*
-
- // priklad c. 2
- function FindProxyForURL(url, host)
- {
- if (isPlainHostName(host) ||
- dnsDomainIs(host, ".our.domain.cz"))
- return "DIRECT";
- else
- return "PROXY proxy:3128T";
- }
-
- */