From 8c82b12d1ccf7e7a79e5ee91dd362619694c4520 Mon Sep 17 00:00:00 2001 From: Constantin Musca Date: Fri, 14 Sep 2012 12:58:53 +0300 Subject: bitbake: hob: rename 'View log' to 'Open log' Rename all the 'View log' buttons to 'Open log' for consistency. [YOCTO #3045] (Bitbake rev: 7bc9b0c1c2544b494959b13ac79ac3e52edb4fe3) Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 12 ++++++------ bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py index ed8c7ac963..146feb03ee 100755 --- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py +++ b/bitbake/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/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py index e3d35effe4..edbafbd3a5 100755 --- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py +++ b/bitbake/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() -- cgit v1.2.3-54-g00ecf