Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH 00/14] Toaster patchset
@ 2015-01-27 14:27 Alex DAMIAN
  2015-01-27 14:27 ` [PATCH 01/14] toaster: make layouts consistent Alex DAMIAN
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Alex DAMIAN @ 2015-01-27 14:27 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Alexandru DAMIAN

From: Alexandru DAMIAN <alexandru.damian@intel.com>


Hello,

This is a Toaster bug fixing patchset, clearing up issues in the Project interface.

The patches have been reviewed on the toaster mailing list. Can you please pull
at your own convenience ?

Cheers,
Alex


The following changes since commit 9b5b1bd7d77e3f5886f6c557d3b750de1f6d6025:

  siggen: Ensure taskdata default functions exist in base class (2015-01-23 14:39:40 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib adamian/20150127-submission-bb
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20150127-submission-bb

Alexandru DAMIAN (1):
  toastergui: update project build listing

Alexandru Damian (1):
  toasterui: do not filter images by extension

Belen Barros Pena (12):
  toaster: make layouts consistent
  toaster: apply common styles to right hand column of detail pages
  toastergui: Generic message for the layer details empty states
  toastergui: remove redundant style declaration
  toastergui: consistent add / remove layer notifications
  toastergui: give the add dependencies form some breathing space
  toastergui: add 'show all' link to no results page
  toastergui: set column width in layer details page
  toastergui: hide table controls when when less than 10 entries
  toastergui: consistent capitals in button
  toastergui: remove recipe id links to the layer index
  toastergui: alignment fix

 lib/bb/ui/buildinfohelper.py                       |   2 +-
 lib/toaster/bldcontrol/models.py                   |   9 ++
 lib/toaster/toastergui/static/css/default.css      |   5 +-
 lib/toaster/toastergui/static/js/layerdetails.js   |  14 +--
 .../toastergui/templates/baseprojectpage.html      |  12 +--
 .../toastergui/templates/buildrequestdetails.html  |  67 ++++++++++++++
 lib/toaster/toastergui/templates/layerdetails.html |  65 ++++++-------
 .../toastergui/templates/managed_builds.html       |  18 ++--
 .../toastergui/templates/managed_mrb_section.html  |  42 ++++++---
 .../toastergui/templates/package_detail_base.html  |   2 +-
 lib/toaster/toastergui/templates/project.html      |   4 +-
 .../toastergui/templates/projectbuilds.html        |  20 ++--
 lib/toaster/toastergui/templates/recipe.html       |   6 +-
 lib/toaster/toastergui/urls.py                     |   2 +
 lib/toaster/toastergui/views.py                    | 103 +++++++++++++--------
 15 files changed, 248 insertions(+), 123 deletions(-)
 create mode 100644 lib/toaster/toastergui/templates/buildrequestdetails.html

-- 
1.9.1



^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH 00/14] Toaster patchset
@ 2015-03-17 13:28 Alex DAMIAN
  0 siblings, 0 replies; 16+ messages in thread
From: Alex DAMIAN @ 2015-03-17 13:28 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Dave Lerner, David Reyna

From: Alexandru DAMIAN <alexandru.damian@intel.com>

Hello,

This is a toaster patchset that fixes various issues in the interface,
and in build process.

Can you please pull ?

Thanks,
Alex

The following changes since commit 4b07195405b124ff39703e1ddc226dee420fed22:

  toaster: Fix the orderkey to match the column (2015-03-16 17:43:51 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib adamian/20150317-submission-bb
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20150317-submission-bb

Alexandru DAMIAN (7):
  toasterui: improve info in the toaster_ui.log
  toaster: targets page performance improvement
  toastergui: fix machines page search
  toastergui: builds and projects outcome filter
  toaster: do not throw exception on misconfigured data
  toasterui: fix error message parameter
  toastergui: recipe and layer identification

Belen Barros Pena (1):
  toaster: display bitbake output after process start

Dave Lerner (1):
  toaster: leave cancel enabled for release change

David Reyna (3):
  toaster: Incorrect breadcrumb behaviour in the project page
  toaster: display machine and project values in input fields
  toaster: insure IMAGE_INSTALL_append values have a space prefix

Michael Wood (2):
  toaster: Add cancel build to latest build section
  toaster: tasks trigger the select related tables before ordering

 lib/bb/ui/buildinfohelper.py                       | 31 ++++++++++++----
 lib/bb/ui/toasterui.py                             |  8 +++++
 lib/toaster/bldcontrol/localhostbecontroller.py    | 14 +++++---
 lib/toaster/orm/models.py                          | 14 ++++----
 lib/toaster/toastergui/static/js/libtoaster.js     | 28 +++++++++++++++
 .../toastergui/templates/baseprojectpage.html      |  6 ++++
 .../toastergui/templates/managed_mrb_section.html  | 42 +++++++++-------------
 lib/toaster/toastergui/templates/mrb_section.html  | 39 --------------------
 lib/toaster/toastergui/templates/project.html      |  6 ++--
 lib/toaster/toastergui/templates/projectconf.html  | 18 ++++++----
 lib/toaster/toastergui/templates/projects.html     |  2 +-
 lib/toaster/toastergui/views.py                    | 35 ++++++++++++------
 12 files changed, 138 insertions(+), 105 deletions(-)

-- 
1.9.1



^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2015-03-20 14:38 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-27 14:27 [PATCH 00/14] Toaster patchset Alex DAMIAN
2015-01-27 14:27 ` [PATCH 01/14] toaster: make layouts consistent Alex DAMIAN
2015-01-27 14:27 ` [PATCH 02/14] toaster: apply common styles to right hand column of detail pages Alex DAMIAN
2015-01-27 14:27 ` [PATCH 03/14] toastergui: Generic message for the layer details empty states Alex DAMIAN
2015-01-27 14:27 ` [PATCH 04/14] toastergui: remove redundant style declaration Alex DAMIAN
2015-01-27 14:27 ` [PATCH 05/14] toastergui: consistent add / remove layer notifications Alex DAMIAN
2015-01-27 14:27 ` [PATCH 06/14] toastergui: give the add dependencies form some breathing space Alex DAMIAN
2015-01-27 14:27 ` [PATCH 07/14] toastergui: add 'show all' link to no results page Alex DAMIAN
2015-01-27 14:27 ` [PATCH 08/14] toastergui: set column width in layer details page Alex DAMIAN
2015-01-27 14:27 ` [PATCH 09/14] toastergui: hide table controls when when less than 10 entries Alex DAMIAN
2015-01-27 14:27 ` [PATCH 10/14] toastergui: consistent capitals in button Alex DAMIAN
2015-01-27 14:27 ` [PATCH 11/14] toastergui: remove recipe id links to the layer index Alex DAMIAN
2015-01-27 14:27 ` [PATCH 12/14] toastergui: alignment fix Alex DAMIAN
2015-01-27 14:27 ` [PATCH 13/14] toasterui: do not filter images by extension Alex DAMIAN
2015-01-27 14:27 ` [PATCH 14/14] toastergui: update project build listing Alex DAMIAN
  -- strict thread matches above, loose matches on Subject: below --
2015-03-17 13:28 [PATCH 00/14] Toaster patchset Alex DAMIAN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox