Penguin

Differences between version 44 and predecessor to the previous major change of WPAD.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 44 Last edited on Thursday, July 20, 2006 10:35:33 am by CraigBox Revert
Older page: version 43 Last edited on Tuesday, July 18, 2006 5:03:18 am by AristotlePagaltzis Revert
@@ -123,9 +123,11 @@
 * [Super Proxy Scripts|http://naragw.sharp.co.jp/sps/] 
  
 ---- 
  
-Notes by Michael Zieger: 
+!!Konqueror and isInNet() function  
+  
+ Michael Zieger writes
  
 If you try to use a wpad.dat in Konqueror (I tested version 3.2.2), be aware that the following does NOT work: 
  
 <verbatim> 
@@ -164,12 +166,31 @@
 else 
  return proxy_no; 
 </verbatim> 
  
-Now you even can differentiate between Konqueror and InternetExplorer, and could give them different proxies. If you want to download the running config, visit http://zmi.at/wpad.dat 
+Now you even can differentiate between Konqueror and InternetExplorer, and could give them different proxies. If you want to download the running config, visit http://zmi.at/wpad.dat.  
+  
+Kasper Sandberg reports that isInNet works with a proxy.pac file in 3.5.3.  
  
 ---- 
  
-''I do not know about using <tt>wpad .dat </tt>, but using <tt >proxy .pac</tt> isInNet() works perfectly in konqueror , i have tested in 3 .5 .3 .'' --Kasper Sandberg  
+!!Localhost routing broken  
+  
+Google Desktop Search being blocked? Add an <tt>isInNet(host, "127 ...", "255...") </tt>:  
+  
+ <verbatim >  
+function FindProxyForURL(url, host)  
+{  
+ if (  
+ dnsDomainIs(host, " .local") ||  
+ isInNet(host, "127...1", "255.255.255.255" ) ||  
+ isInNet(host , "10 .7 .x .", "255.255.255.") ||  
+ isPlainHostName(host)  
+ )  
+ return "DIRECT";  
+ else  
+ return "PROXY wherever:8080; DIRECT";  
+}  
+</verbatim>  
  
 ---- 
 CategorySystemAdministration