Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH 00/27] Toaster patchset
@ 2015-02-09 18:01 Alex DAMIAN
  2015-02-09 18:01 ` [PATCH 01/27] toastergui: remove time link for failed build requests Alex DAMIAN
                   ` (26 more replies)
  0 siblings, 27 replies; 28+ messages in thread
From: Alex DAMIAN @ 2015-02-09 18:01 UTC (permalink / raw)
  To: bitbake-devel

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


Hello,

This is a Toaster patchset containing the All Machines page implementation, and fixes
for numerous bugs. All patches have been reviewed and tested on the toaster mailing list.

Can you please pull at your convenience ?

Thank you,
Alex



The following changes since commit 207013b6dde82f9654f9be996695c8335b95a288:

  data_smart: split expanded removal values when handling _remove (2015-02-02 16:20:42 +0000)

are available in the git repository at:

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

Alexandru DAMIAN (6):
  toastergui: fix loadconf error message
  toaster: enable server-side caches and debug-panel
  toastergui: improvements in layer selection logic
  toaster: enhancements for the startup sequence
  toaster: improve logging facilities for toaster
  toaster: display Toaster mode and version in debug mode

Belen Barros Pena (7):
  toastergui: remove time link for failed build requests
  toasterui: use text() instead of html()
  toaster: correct typo in toaster script
  toastergui: set column heading to 'Revision'
  toastergui: add the word 'compatible' to 'all' pages
  toastergui: add download task log icon to recipe details page
  toastergui: links outside Toaster should open in a new window

Michael Wood (14):
  toaster: machines Fix undefined variables
  toaster: Add add/select functionality to machines page
  toaster: machines Make sure we don't overwrite the pagesize
  toaster: All machines add a column to link back to machine conf
  toaster: All machines Update layer notifications
  toaster: layerdetails Don't remove alert from dom on dismissal
  toaster: All machines Add layer name order by functions
  toaster: All machines Add filtering based on layer in project
  toaster: models Allow the machine's layer name to be searched
  toaster: All Machines fix reset search link
  toaster: all Machines exclude de-prioritised layer source items
  toaster: All machines reset order_by if removing that column
  toaster: All machines show results count if filtering or searching
  toaster: All machines Fix filter counts

 bin/toaster                                        |  82 +++++++++---
 lib/bb/ui/buildinfohelper.py                       |  47 +++++--
 lib/toaster/bldcontrol/bbcontroller.py             |  13 --
 lib/toaster/bldcontrol/localhostbecontroller.py    |  54 +++++---
 .../management/commands/checksettings.py           |  76 ++++++++---
 .../bldcontrol/management/commands/loadconf.py     |   2 +-
 .../bldcontrol/management/commands/runbuilds.py    |   2 +-
 lib/toaster/bldcontrol/sshbecontroller.py          |   2 +-
 lib/toaster/orm/models.py                          |  32 ++++-
 lib/toaster/orm/tests.py                           | 131 ++++++++++++++++++-
 lib/toaster/toastergui/static/css/default.css      |  21 ++-
 lib/toaster/toastergui/static/js/layerdetails.js   |   6 +-
 lib/toaster/toastergui/static/js/libtoaster.js     |   4 +-
 lib/toaster/toastergui/static/js/machines.js       |  98 ++++++++++++++
 lib/toaster/toastergui/templates/base.html         |   6 +
 lib/toaster/toastergui/templates/layerdetails.html |  13 +-
 lib/toaster/toastergui/templates/layers.html       |   6 +-
 lib/toaster/toastergui/templates/machines.html     | 125 ++++++++++--------
 .../toastergui/templates/managed_mrb_section.html  |   2 +-
 lib/toaster/toastergui/templates/project.html      |  24 ++--
 lib/toaster/toastergui/templates/recipe.html       |  11 +-
 lib/toaster/toastergui/templates/targets.html      |  20 +--
 lib/toaster/toastergui/templates/tasks.html        |  10 +-
 lib/toaster/toastergui/views.py                    | 142 ++++++++++++++++-----
 lib/toaster/toastermain/settings.py                |  48 ++++++-
 lib/toaster/toastermain/urls.py                    |  23 +++-
 26 files changed, 779 insertions(+), 221 deletions(-)
 create mode 100644 lib/toaster/toastergui/static/js/machines.js

-- 
1.9.1



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

end of thread, other threads:[~2015-02-09 18:02 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-09 18:01 [PATCH 00/27] Toaster patchset Alex DAMIAN
2015-02-09 18:01 ` [PATCH 01/27] toastergui: remove time link for failed build requests Alex DAMIAN
2015-02-09 18:01 ` [PATCH 02/27] toasterui: use text() instead of html() Alex DAMIAN
2015-02-09 18:01 ` [PATCH 03/27] toaster: correct typo in toaster script Alex DAMIAN
2015-02-09 18:01 ` [PATCH 04/27] toastergui: fix loadconf error message Alex DAMIAN
2015-02-09 18:01 ` [PATCH 05/27] toaster: enable server-side caches and debug-panel Alex DAMIAN
2015-02-09 18:01 ` [PATCH 06/27] toastergui: improvements in layer selection logic Alex DAMIAN
2015-02-09 18:01 ` [PATCH 07/27] toaster: enhancements for the startup sequence Alex DAMIAN
2015-02-09 18:01 ` [PATCH 08/27] toaster: improve logging facilities for toaster Alex DAMIAN
2015-02-09 18:01 ` [PATCH 09/27] toaster: display Toaster mode and version in debug mode Alex DAMIAN
2015-02-09 18:01 ` [PATCH 10/27] toastergui: set column heading to 'Revision' Alex DAMIAN
2015-02-09 18:01 ` [PATCH 11/27] toastergui: add the word 'compatible' to 'all' pages Alex DAMIAN
2015-02-09 18:01 ` [PATCH 12/27] toastergui: add download task log icon to recipe details page Alex DAMIAN
2015-02-09 18:01 ` [PATCH 13/27] toaster: machines Fix undefined variables Alex DAMIAN
2015-02-09 18:01 ` [PATCH 14/27] toaster: Add add/select functionality to machines page Alex DAMIAN
2015-02-09 18:01 ` [PATCH 15/27] toaster: machines Make sure we don't overwrite the pagesize Alex DAMIAN
2015-02-09 18:01 ` [PATCH 16/27] toaster: All machines add a column to link back to machine conf Alex DAMIAN
2015-02-09 18:01 ` [PATCH 17/27] toaster: All machines Update layer notifications Alex DAMIAN
2015-02-09 18:01 ` [PATCH 18/27] toaster: layerdetails Don't remove alert from dom on dismissal Alex DAMIAN
2015-02-09 18:01 ` [PATCH 19/27] toaster: All machines Add layer name order by functions Alex DAMIAN
2015-02-09 18:01 ` [PATCH 20/27] toaster: All machines Add filtering based on layer in project Alex DAMIAN
2015-02-09 18:01 ` [PATCH 21/27] toaster: models Allow the machine's layer name to be searched Alex DAMIAN
2015-02-09 18:01 ` [PATCH 22/27] toaster: All Machines fix reset search link Alex DAMIAN
2015-02-09 18:01 ` [PATCH 23/27] toaster: all Machines exclude de-prioritised layer source items Alex DAMIAN
2015-02-09 18:01 ` [PATCH 24/27] toaster: All machines reset order_by if removing that column Alex DAMIAN
2015-02-09 18:01 ` [PATCH 25/27] toaster: All machines show results count if filtering or searching Alex DAMIAN
2015-02-09 18:01 ` [PATCH 26/27] toaster: All machines Fix filter counts Alex DAMIAN
2015-02-09 18:01 ` [PATCH 27/27] toastergui: links outside Toaster should open in a new window Alex DAMIAN

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