Index: config/proxy.pac/dolipo/drry-proxy.pac
===================================================================
--- config/proxy.pac/dolipo/drry-proxy.pac (revision 7357)
+++ config/proxy.pac/dolipo/drry-proxy.pac (revision 7357)
@@ -0,0 +1,24 @@
+function FindProxyForURL(url, host) {
+  return
+    isPlainHostName(host) ||
+    url.indexOf("ftp:") == 0 ||
+    //url.indexOf("gopher:") == 0 || // Gopher never die!!!
+    dnsDomainIs(host, "2ch.net") ||
+/*
+    url.indexOf("http://www.tumblr.com/api/write/")   == 0 ||
+    url.indexOf("http://www.lingr.com/api/")          == 0 ||
+    url.indexOf("http://twitter.com/statuses/")       == 0 ||
+    url.indexOf("http://www.google.com/reader/atom/") == 0 ||
+    shExpMatch(url, "http://*.megalodon.jp/*") ||
+*/
+    localHostOrDomainIs(host, "idisk.mac.com") ||
+    isInNet(host, "10.0.0.0",    "255.0.0.0")     ||
+    isInNet(host, "127.0.0.0",   "255.0.0.0")     ||
+    isInNet(host, "172.16.0.0",  "255.240.0.0")   ||
+    isInNet(host, "169.254.0.0", "255.255.0.0")   ||
+    isInNet(host, "192.168.0.0", "255.255.0.0")   ||
+    isInNet(host, "192.0.2.0",   "255.255.255.0") ||
+    isInNet(host, "224.0.0.0",   "224.0.0.0")
+      ? "DIRECT"
+      : "PROXY 127.0.0.1:8123; DIRECT";
+}
