* [PATCH 0/2] Hob: bug-fixes
@ 2012-06-14 12:21 Liming An
2012-06-14 12:22 ` [PATCH 1/2] Hob: fixed an issue about no 'set_page' function in hob failed page show Liming An
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Liming An @ 2012-06-14 12:21 UTC (permalink / raw)
To: bitbake-devel
The following changes since commit 7f017cab0b3e4d5a4fc356eccd8eb8429b0531d0:
connman: bump PR and add some comments (2012-06-13 13:11:23 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib limx/hob-bug-fixes-continue
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=limx/hob-bug-fixes-continue
Liming An (2):
Hob: fixed an issue about no 'set_page' function in hob failed page
show
Hob: fixed issue about 'select a base image' combo not sensitive
bitbake/lib/bb/ui/crumbs/builder.py | 2 ++
bitbake/lib/bb/ui/crumbs/hobwidget.py | 6 ++++++
2 files changed, 8 insertions(+), 0 deletions(-)
--
1.7.5.4
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/2] Hob: fixed an issue about no 'set_page' function in hob failed page show
2012-06-14 12:21 [PATCH 0/2] Hob: bug-fixes Liming An
@ 2012-06-14 12:22 ` Liming An
2012-06-14 12:22 ` [PATCH 2/2] Hob: fixed issue about 'select a base image' combo not sensitive Liming An
2012-06-14 12:55 ` [PATCH 0/2] Hob: bug-fixes Richard Purdie
2 siblings, 0 replies; 7+ messages in thread
From: Liming An @ 2012-06-14 12:22 UTC (permalink / raw)
To: bitbake-devel
Due in mistake deletion in previous patches, if building failed, will report
the error of no 'set_page', so add that function.
Signed-off-by: Liming An <limingx.l.an@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index afcd5b8..dba278c 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -532,6 +532,12 @@ class HobNotebook(gtk.Notebook):
if search.get_editable() == True:
search.set_text("")
+ def set_page(self, title):
+ for child in self.pages:
+ if child.lbl.get_label() == title:
+ child.grab_focus()
+ self.set_current_page(self.page_num(child))
+
class HobWarpCellRendererText(gtk.CellRendererText):
def __init__(self, col_number):
gtk.CellRendererText.__init__(self)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/2] Hob: fixed issue about 'select a base image' combo not sensitive
2012-06-14 12:21 [PATCH 0/2] Hob: bug-fixes Liming An
2012-06-14 12:22 ` [PATCH 1/2] Hob: fixed an issue about no 'set_page' function in hob failed page show Liming An
@ 2012-06-14 12:22 ` Liming An
2012-06-14 12:55 ` [PATCH 0/2] Hob: bug-fixes Richard Purdie
2 siblings, 0 replies; 7+ messages in thread
From: Liming An @ 2012-06-14 12:22 UTC (permalink / raw)
To: bitbake-devel
The combo view is not sensitive, after select recipes come back.
so fixed this issue.
[YOCTO #2500]
Signed-off-by: Liming An <limingx.l.an@intel.com>
---
bitbake/lib/bb/ui/crumbs/builder.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index ad9c0f4..123608e 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -758,7 +758,9 @@ class Builder(gtk.Window):
def window_sensitive(self, sensitive):
self.image_configuration_page.machine_combo.set_sensitive(sensitive)
+ self.image_configuration_page.machine_combo.child.set_sensitive(sensitive)
self.image_configuration_page.image_combo.set_sensitive(sensitive)
+ self.image_configuration_page.image_combo.child.set_sensitive(sensitive)
self.image_configuration_page.layer_button.set_sensitive(sensitive)
self.image_configuration_page.layer_info_icon.set_sensitive(sensitive)
self.image_configuration_page.toolbar.set_sensitive(sensitive)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH 0/2] Hob: bug-fixes
2012-06-14 12:21 [PATCH 0/2] Hob: bug-fixes Liming An
2012-06-14 12:22 ` [PATCH 1/2] Hob: fixed an issue about no 'set_page' function in hob failed page show Liming An
2012-06-14 12:22 ` [PATCH 2/2] Hob: fixed issue about 'select a base image' combo not sensitive Liming An
@ 2012-06-14 12:55 ` Richard Purdie
2 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2012-06-14 12:55 UTC (permalink / raw)
To: Liming An; +Cc: bitbake-devel
On Thu, 2012-06-14 at 20:21 +0800, Liming An wrote:
> The following changes since commit 7f017cab0b3e4d5a4fc356eccd8eb8429b0531d0:
>
> connman: bump PR and add some comments (2012-06-13 13:11:23 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib limx/hob-bug-fixes-continue
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=limx/hob-bug-fixes-continue
>
> Liming An (2):
> Hob: fixed an issue about no 'set_page' function in hob failed page
> show
> Hob: fixed issue about 'select a base image' combo not sensitive
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/2] hob:bug-fixes
@ 2012-08-02 11:05 Liming An
0 siblings, 0 replies; 7+ messages in thread
From: Liming An @ 2012-08-02 11:05 UTC (permalink / raw)
To: bitbake-devel
The following changes since commit 62d42fe3cfa575cb97b484ccf7b2e9a25cc50770:
tiny-init: Setup /dev/ptmx in init (2012-08-01 23:11:18 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib limx/hob-bug-fixes-continue
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=limx/hob-bug-fixes-continue
Liming An (2):
Hob: log for Hob and allow users to show logs after successful build
Hob: change the Build failure scenario as ui design
bitbake/lib/bb/ui/crumbs/builddetailspage.py | 83 +++++++++-------------
bitbake/lib/bb/ui/crumbs/builder.py | 52 +++++++++++---
bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 3 +
bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 24 +++++-
bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 27 ++++++-
bitbake/lib/bb/ui/crumbs/runningbuild.py | 41 +++++++++++
6 files changed, 162 insertions(+), 68 deletions(-)
--
1.7.5.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/2] Hob: bug-fixes
@ 2012-05-30 12:01 Liming An
2012-05-30 16:19 ` Richard Purdie
0 siblings, 1 reply; 7+ messages in thread
From: Liming An @ 2012-05-30 12:01 UTC (permalink / raw)
To: bitbake-devel
The following changes since commit 0299499770e33e0214146132799f8779e81e581d:
ccache: Separate out into its own class (2012-05-30 12:04:49 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib limx/hob-bug-fixes-continue
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=limx/hob-bug-fixes-continue
Liming An (2):
Hob: Fixed a compatible issue for indicator icon view
Hob: add the 'build new' be as the primary action for 'Image detail'
page
bitbake/lib/bb/ui/crumbs/hobwidget.py | 51 ++++----------------------
bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 19 ++++------
2 files changed, 16 insertions(+), 54 deletions(-)
--
1.7.5.4
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-08-02 11:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-14 12:21 [PATCH 0/2] Hob: bug-fixes Liming An
2012-06-14 12:22 ` [PATCH 1/2] Hob: fixed an issue about no 'set_page' function in hob failed page show Liming An
2012-06-14 12:22 ` [PATCH 2/2] Hob: fixed issue about 'select a base image' combo not sensitive Liming An
2012-06-14 12:55 ` [PATCH 0/2] Hob: bug-fixes Richard Purdie
-- strict thread matches above, loose matches on Subject: below --
2012-08-02 11:05 [PATCH 0/2] hob:bug-fixes Liming An
2012-05-30 12:01 [PATCH 0/2] Hob: bug-fixes Liming An
2012-05-30 16:19 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox