wwwoffle.pac
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:0k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. //
  2. // WWWOFFLE Version 2.5 - Proxy autoconfiguration script
  3. //
  4. // See: http://www.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
  5. //
  6. // You should replace 'LOCALHOST' with the proxy hostname if required.
  7. //
  8. function FindProxyForURL(url, host)
  9. {
  10.  if(isPlainHostName(host))
  11.     return "DIRECT";
  12.  else
  13.     if((url.substring(0, 5) == "http:") || (url.substring(0, 4) == "ftp:"))
  14.        return "PROXY LOCALHOST; DIRECT";
  15.     else
  16.        return "DIRECT";
  17. }