diff options
author | otsune | 2008-04-01 12:44:26 +0000 |
---|---|---|
committer | otsune | 2008-04-01 12:44:26 +0000 |
commit | 016ccafc3eb2b5527bb84879458ccac0318e016c (patch) | |
tree | 318955af8f99297778efc5e797908cd5b07701f0 | |
parent | a53da6dbbf19e8cf4b0c24c2bd50c01b7fda48d9 (diff) | |
download | vimperator-plugins-016ccafc3eb2b5527bb84879458ccac0318e016c.tar.bz2 |
vimperator-plugins/proxy.js: Add network.proxy.ssl labels
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@8610 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | proxy.js | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -62,14 +62,17 @@ var conf = proxy_settings[i].setting[j]; switch (conf.label) { case "network.proxy.type": + case "network.proxy.http_port": + case "network.proxy.ssl_port": prefs.setIntPref(conf.label, conf.param); break; case "network.proxy.http": + case "network.proxy.ssl": + case "network.proxy.no_proxies_on": + case "network.proxy.autoconfig_url": + case "network.proxy.socks": prefs.setCharPref(conf.label, conf.param); break; - case "network.proxy.http_port": - prefs.setIntPref(conf.label, conf.param); - break; } } |