* [PATCH 0/1] HOB fix for proxy tab tooltip text
@ 2012-09-11 23:55 Jessica Zhang
2012-09-11 23:55 ` [PATCH 1/1] Fixed hob proxy tab tooltip text per review suggestions [YOCTO #2499] Jessica Zhang
0 siblings, 1 reply; 2+ messages in thread
From: Jessica Zhang @ 2012-09-11 23:55 UTC (permalink / raw)
To: bitbake-devel
[YOCTO #2499]
The following changes since commit 7250638ec895bc89508711831083d43b9e1e9826:
upstream_tracking: Fix format issues (2012-09-10 23:21:12 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib jzhang/HOB2499
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=jzhang/HOB2499
Jessica Zhang (1):
Fixed hob proxy tab tooltip text per review suggestions [YOCTO #2499]
bitbake/lib/bb/ui/crumbs/hig.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] Fixed hob proxy tab tooltip text per review suggestions [YOCTO #2499]
2012-09-11 23:55 [PATCH 0/1] HOB fix for proxy tab tooltip text Jessica Zhang
@ 2012-09-11 23:55 ` Jessica Zhang
0 siblings, 0 replies; 2+ messages in thread
From: Jessica Zhang @ 2012-09-11 23:55 UTC (permalink / raw)
To: bitbake-devel
Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hig.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py
index 3695fa0..b879e6d 100644
--- a/bitbake/lib/bb/ui/crumbs/hig.py
+++ b/bitbake/lib/bb/ui/crumbs/hig.py
@@ -567,8 +567,8 @@ class AdvancedSettingDialog (CrumbsDialog):
sub_vbox = gtk.VBox(False, 6)
advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
- label = self.gen_label_widget("<span weight=\"bold\">Set the proxies that will be used during fetching source code</span>")
- tooltip = "Set the proxies that will be used during fetching source code or set none for direct the Internet connection"
+ label = self.gen_label_widget("<span weight=\"bold\">Set the proxies used when fetching source code</span>")
+ tooltip = "Set the proxies used when fetching source code. A blank field uses a direct internet connection."
info = HobInfoButton(tooltip, self)
hbox = gtk.HBox(False, 12)
hbox.pack_start(label, expand=True, fill=True)
@@ -576,17 +576,17 @@ class AdvancedSettingDialog (CrumbsDialog):
sub_vbox.pack_start(hbox, expand=False, fill=False)
self.direct_checkbox = gtk.RadioButton(None, "Direct internet connection")
- self.direct_checkbox.set_tooltip_text("Check this box to connect the Internet directly without any proxy")
+ self.direct_checkbox.set_tooltip_text("Check this box to use a direct internet connection with no proxy")
self.direct_checkbox.set_active(not self.configuration.enable_proxy)
sub_vbox.pack_start(self.direct_checkbox, expand=False, fill=False)
self.proxy_checkbox = gtk.RadioButton(self.direct_checkbox, "Manual proxy configuration")
- self.proxy_checkbox.set_tooltip_text("Check this box to setup the proxy you specified")
+ self.proxy_checkbox.set_tooltip_text("Check this box to manually set up a specific proxy")
self.proxy_checkbox.set_active(self.configuration.enable_proxy)
sub_vbox.pack_start(self.proxy_checkbox, expand=False, fill=False)
self.same_checkbox = gtk.CheckButton("Use the same proxy for all protocols")
- self.same_checkbox.set_tooltip_text("Use the same proxy as the first proxy i.e. http proxy for all protocols")
+ self.same_checkbox.set_tooltip_text("Check this box to use the HTTP proxy for all five proxies")
self.same_checkbox.set_active(self.configuration.same_proxy)
hbox = gtk.HBox(False, 12)
hbox.pack_start(self.same_checkbox, expand=False, fill=False, padding=24)
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-11 23:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-11 23:55 [PATCH 0/1] HOB fix for proxy tab tooltip text Jessica Zhang
2012-09-11 23:55 ` [PATCH 1/1] Fixed hob proxy tab tooltip text per review suggestions [YOCTO #2499] Jessica Zhang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox