summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-05-22 19:33:23 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-22 14:56:15 +0100
commite069e53536e4894507a72da79e7e8af55a0d31b1 (patch)
tree5180cb5e2a1443b52cced8ac42dfd6d17c2c0a8f /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parent33c4bf2096effc850720009564e3d1adbda24452 (diff)
downloadpoky-e069e53536e4894507a72da79e7e8af55a0d31b1.tar.gz
Hob: reimplement the proxy page
This patch is to reimplement the proxy page in the "Advanced Settings" dialog per the new design in https://bugzilla.yoctoproject.org/attachment.cgi?id=442 and https://bugzilla.yoctoproject.org/attachment.cgi?id=443. [Yocto #2247] (Bitbake rev: 911a60c09c1539a3f10c2bcdb26d40e458c31303) Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 624d7b55f3..d2f4589774 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -304,9 +304,6 @@ class HobHandler(gobject.GObject):
304 def set_ftp_proxy(self, ftp_proxy): 304 def set_ftp_proxy(self, ftp_proxy):
305 self.runCommand(["setVariable", "ftp_proxy", ftp_proxy]) 305 self.runCommand(["setVariable", "ftp_proxy", ftp_proxy])
306 306
307 def set_all_proxy(self, all_proxy):
308 self.runCommand(["setVariable", "all_proxy", all_proxy])
309
310 def set_git_proxy(self, host, port): 307 def set_git_proxy(self, host, port):
311 self.runCommand(["setVariable", "GIT_PROXY_HOST", host]) 308 self.runCommand(["setVariable", "GIT_PROXY_HOST", host])
312 self.runCommand(["setVariable", "GIT_PROXY_PORT", port]) 309 self.runCommand(["setVariable", "GIT_PROXY_PORT", port])
@@ -496,7 +493,6 @@ class HobHandler(gobject.GObject):
496 params["http_proxy"] = self.runCommand(["getVariable", "http_proxy"]) or "" 493 params["http_proxy"] = self.runCommand(["getVariable", "http_proxy"]) or ""
497 params["ftp_proxy"] = self.runCommand(["getVariable", "ftp_proxy"]) or "" 494 params["ftp_proxy"] = self.runCommand(["getVariable", "ftp_proxy"]) or ""
498 params["https_proxy"] = self.runCommand(["getVariable", "https_proxy"]) or "" 495 params["https_proxy"] = self.runCommand(["getVariable", "https_proxy"]) or ""
499 params["all_proxy"] = self.runCommand(["getVariable", "all_proxy"]) or ""
500 496
501 params["cvs_proxy_host"] = self.runCommand(["getVariable", "CVS_PROXY_HOST"]) or "" 497 params["cvs_proxy_host"] = self.runCommand(["getVariable", "CVS_PROXY_HOST"]) or ""
502 params["cvs_proxy_port"] = self.runCommand(["getVariable", "CVS_PROXY_PORT"]) or "" 498 params["cvs_proxy_port"] = self.runCommand(["getVariable", "CVS_PROXY_PORT"]) or ""