summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorConstantin Musca <constantinx.musca@intel.com>2012-09-14 12:58:53 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-20 10:27:32 +0100
commit7bc9b0c1c2544b494959b13ac79ac3e52edb4fe3 (patch)
tree1b3f27988194d5165528ff7d924e96d17fc13b11 /lib
parent44aa0b0537d3fbd1272015e7677948f84d8c0607 (diff)
downloadbitbake-7bc9b0c1c2544b494959b13ac79ac3e52edb4fe3.tar.gz
hob: rename 'View log' to 'Open log'
Rename all the 'View log' buttons to 'Open log' for consistency. [YOCTO #3045] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rwxr-xr-xlib/bb/ui/crumbs/imagedetailspage.py12
-rwxr-xr-xlib/bb/ui/crumbs/packageselectionpage.py12
2 files changed, 12 insertions, 12 deletions
diff --git a/lib/bb/ui/crumbs/imagedetailspage.py b/lib/bb/ui/crumbs/imagedetailspage.py
index ed8c7ac96..146feb03e 100755
--- a/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/lib/bb/ui/crumbs/imagedetailspage.py
@@ -249,12 +249,12 @@ class ImageDetailsPage (HobPage):
view_files_button = HobAltButton("View files")
view_files_button.connect("clicked", self.view_files_clicked_cb, image_addr)
view_files_button.set_tooltip_text("Open the directory containing the image files")
- view_log_button = None
+ open_log_button = None
if log_file:
- view_log_button = HobAltButton("View log")
- view_log_button.connect("clicked", self.view_log_clicked_cb, log_file)
- view_log_button.set_tooltip_text("Open the building log files")
- self.image_detail = self.DetailBox(varlist=varlist, vallist=vallist, button=view_files_button, button2=view_log_button)
+ open_log_button = HobAltButton("Open log")
+ open_log_button.connect("clicked", self.open_log_clicked_cb, log_file)
+ open_log_button.set_tooltip_text("Open the build's log file")
+ self.image_detail = self.DetailBox(varlist=varlist, vallist=vallist, button=view_files_button, button2=open_log_button)
self.box_group_area.pack_start(self.image_detail, expand=False, fill=True)
# The default kernel box for the qemu images
@@ -333,7 +333,7 @@ class ImageDetailsPage (HobPage):
def view_files_clicked_cb(self, button, image_addr):
subprocess.call("xdg-open /%s" % image_addr, shell=True)
- def view_log_clicked_cb(self, button, log_file):
+ def open_log_clicked_cb(self, button, log_file):
if log_file:
os.system("xdg-open /%s" % log_file)
diff --git a/lib/bb/ui/crumbs/packageselectionpage.py b/lib/bb/ui/crumbs/packageselectionpage.py
index e3d35effe..edbafbd3a 100755
--- a/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/lib/bb/ui/crumbs/packageselectionpage.py
@@ -165,7 +165,7 @@ class PackageSelectionPage (HobPage):
if binb:
self.builder.show_binb_dialog(binb)
- def view_log_clicked_cb(self, button, log_file):
+ def open_log_clicked_cb(self, button, log_file):
if log_file:
os.system("xdg-open /%s" % log_file)
@@ -173,13 +173,13 @@ class PackageSelectionPage (HobPage):
children = self.button_box.get_children() or []
for child in children:
self.button_box.remove(child)
- # re-packed the buttons as request, add the 'view log' button if build success
+ # re-packed the buttons as request, add the 'open log' button if build success
self.button_box.pack_end(self.build_image_button, expand=False, fill=False)
if log_file:
- view_log_button = HobAltButton("View log")
- view_log_button.connect("clicked", self.view_log_clicked_cb, log_file)
- view_log_button.set_tooltip_text("Open the building log files")
- self.button_box.pack_end(view_log_button, expand=False, fill=False)
+ open_log_button = HobAltButton("Open log")
+ open_log_button.connect("clicked", self.open_log_clicked_cb, log_file)
+ open_log_button.set_tooltip_text("Open the build's log file")
+ self.button_box.pack_end(open_log_button, expand=False, fill=False)
self.button_box.pack_end(self.back_button, expand=False, fill=False)
self.show_all()