summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorAndrei Dinu <andrei.adrianx.dinu@intel.com>2013-03-05 17:36:26 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-19 13:51:24 +0000
commit0e175284fec0d394ef4b4d478e6235891662fc9d (patch)
tree9d991def486243cecdae01275fcfaabb6b074d30 /bitbake
parenta4fdfa708844494b0a2e0d8c2199959c72832db2 (diff)
downloadpoky-0e175284fec0d394ef4b4d478e6235891662fc9d.tar.gz
bitbake: hig/simplesettingsdialog: added entries for information dialogs
added information so that it would display correctly in the information dialogs. (Bitbake rev: bf86cc183c250acd0e52755ae6050a2f8d85ccf5) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py b/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py
index 5f316ae336..e0fbdca8f1 100644
--- a/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py
+++ b/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py
@@ -260,7 +260,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
260 tooltip = "Sets the number of threads that BitBake tasks can simultaneously run. See the <a href=\"" 260 tooltip = "Sets the number of threads that BitBake tasks can simultaneously run. See the <a href=\""
261 tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/" 261 tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/"
262 tooltip += "poky-ref-manual.html#var-BB_NUMBER_THREADS\">Poky reference manual</a> for information" 262 tooltip += "poky-ref-manual.html#var-BB_NUMBER_THREADS\">Poky reference manual</a> for information"
263 bbthread_widget, self.bb_spinner = self.gen_spinner_widget(self.configuration.bbthread, 1, self.max_threads, tooltip) 263 bbthread_widget, self.bb_spinner = self.gen_spinner_widget(self.configuration.bbthread, 1, self.max_threads,"<b>BitBake prallalel threads</b>" + "*" + tooltip)
264 sub_vbox.pack_start(label, expand=False, fill=False) 264 sub_vbox.pack_start(label, expand=False, fill=False)
265 sub_vbox.pack_start(bbthread_widget, expand=False, fill=False) 265 sub_vbox.pack_start(bbthread_widget, expand=False, fill=False)
266 266
@@ -270,7 +270,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
270 tooltip = "Sets the maximum number of threads the host can use during the build. See the <a href=\"" 270 tooltip = "Sets the maximum number of threads the host can use during the build. See the <a href=\""
271 tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/" 271 tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/"
272 tooltip += "poky-ref-manual.html#var-PARALLEL_MAKE\">Poky reference manual</a> for information" 272 tooltip += "poky-ref-manual.html#var-PARALLEL_MAKE\">Poky reference manual</a> for information"
273 pmake_widget, self.pmake_spinner = self.gen_spinner_widget(self.configuration.pmake, 1, self.max_threads, tooltip) 273 pmake_widget, self.pmake_spinner = self.gen_spinner_widget(self.configuration.pmake, 1, self.max_threads,"<b>Make parallel threads</b>" + "*" + tooltip)
274 sub_vbox.pack_start(label, expand=False, fill=False) 274 sub_vbox.pack_start(label, expand=False, fill=False)
275 sub_vbox.pack_start(pmake_widget, expand=False, fill=False) 275 sub_vbox.pack_start(pmake_widget, expand=False, fill=False)
276 276
@@ -279,7 +279,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
279 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 279 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
280 label = self.gen_label_widget("Downloads directory") 280 label = self.gen_label_widget("Downloads directory")
281 tooltip = "Select a folder that caches the upstream project source code" 281 tooltip = "Select a folder that caches the upstream project source code"
282 dldir_widget, self.dldir_text = self.gen_entry_widget(self.configuration.dldir, self, tooltip) 282 dldir_widget, self.dldir_text = self.gen_entry_widget(self.configuration.dldir, self,"<b>Downloaded source code</b>" + "*" + tooltip)
283 sub_vbox.pack_start(label, expand=False, fill=False) 283 sub_vbox.pack_start(label, expand=False, fill=False)
284 sub_vbox.pack_start(dldir_widget, expand=False, fill=False) 284 sub_vbox.pack_start(dldir_widget, expand=False, fill=False)
285 285
@@ -293,7 +293,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
293 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False, padding=24) 293 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False, padding=24)
294 content = "<span>Shared state directory</span>" 294 content = "<span>Shared state directory</span>"
295 tooltip = "Select a folder that caches your prebuilt results" 295 tooltip = "Select a folder that caches your prebuilt results"
296 label = self.gen_label_info_widget(content, tooltip) 296 label = self.gen_label_info_widget(content,"<b>Shared state directory</b>" + "*" + tooltip)
297 sstatedir_widget, self.sstatedir_text = self.gen_entry_widget(self.configuration.sstatedir, self) 297 sstatedir_widget, self.sstatedir_text = self.gen_entry_widget(self.configuration.sstatedir, self)
298 sub_vbox.pack_start(label, expand=False, fill=False) 298 sub_vbox.pack_start(label, expand=False, fill=False)
299 sub_vbox.pack_start(sstatedir_widget, expand=False, fill=False, padding=6) 299 sub_vbox.pack_start(sstatedir_widget, expand=False, fill=False, padding=6)
@@ -305,7 +305,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
305 tooltip += "For more information on shared state mirrors, check the <a href=\"" 305 tooltip += "For more information on shared state mirrors, check the <a href=\""
306 tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/" 306 tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/"
307 tooltip += "poky-ref-manual.html#shared-state\">Yocto Project Reference Manual</a>." 307 tooltip += "poky-ref-manual.html#shared-state\">Yocto Project Reference Manual</a>."
308 table = self.gen_label_info_widget(content, tooltip) 308 table = self.gen_label_info_widget(content,"Shared state mirrors" + "*" + tooltip)
309 advanced_vbox.pack_start(table, expand=False, fill=False, padding=6) 309 advanced_vbox.pack_start(table, expand=False, fill=False, padding=6)
310 310
311 sub_vbox = gtk.VBox(False) 311 sub_vbox = gtk.VBox(False)
@@ -627,7 +627,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
627 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 627 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
628 label = self.gen_label_widget("<span weight=\"bold\">Set the proxies used when fetching source code</span>") 628 label = self.gen_label_widget("<span weight=\"bold\">Set the proxies used when fetching source code</span>")
629 tooltip = "Set the proxies used when fetching source code. A blank field uses a direct internet connection." 629 tooltip = "Set the proxies used when fetching source code. A blank field uses a direct internet connection."
630 info = HobInfoButton(tooltip, self) 630 info = HobInfoButton("<span weight=\"bold\">Set the proxies used when fetching source code</span>" + "*" + tooltip, self)
631 hbox = gtk.HBox(False, 12) 631 hbox = gtk.HBox(False, 12)
632 hbox.pack_start(label, expand=True, fill=True) 632 hbox.pack_start(label, expand=True, fill=True)
633 hbox.pack_start(info, expand=False, fill=False) 633 hbox.pack_start(info, expand=False, fill=False)
@@ -875,7 +875,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
875 advanced_vbox.pack_start(sub_vbox, expand=True, fill=True) 875 advanced_vbox.pack_start(sub_vbox, expand=True, fill=True)
876 label = self.gen_label_widget("<span weight=\"bold\">Add your own variables:</span>") 876 label = self.gen_label_widget("<span weight=\"bold\">Add your own variables:</span>")
877 tooltip = "These are key/value pairs for your extra settings. Click \'Add\' and then directly edit the key and the value" 877 tooltip = "These are key/value pairs for your extra settings. Click \'Add\' and then directly edit the key and the value"
878 setting_widget, self.setting_store = self.gen_editable_settings(self.configuration.extra_setting, tooltip) 878 setting_widget, self.setting_store = self.gen_editable_settings(self.configuration.extra_setting,"<b>Add your own variables</b>" + "*" + tooltip)
879 sub_vbox.pack_start(label, expand=False, fill=False) 879 sub_vbox.pack_start(label, expand=False, fill=False)
880 sub_vbox.pack_start(setting_widget, expand=True, fill=True) 880 sub_vbox.pack_start(setting_widget, expand=True, fill=True)
881 881