Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH 00/22] Toaster patchset
@ 2015-05-28 14:14 Alex DAMIAN
  2015-05-28 14:13 ` [PATCH 01/22] toaster: Fix build button current project race Alex DAMIAN
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Alex DAMIAN @ 2015-05-28 14:14 UTC (permalink / raw)
  To: bitbake-devel

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

Hi,

This is a Toaster patches with various fixes, especially in the testing area.

Can you please pull ?

Cheers,
Alex

The following changes since commit 702b42a47904f2378dd819e7463b3206883c2651:

  data: Move warning code to the first loop for performance (2015-05-25 09:00:16 +0100)

are available in the git repository at:

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

Alexandru DAMIAN (12):
  toaster: enable server-side sessions for all usages
  toaster logger: refactor recipe and layer file paths
  toaster logger: assign projects to all builds
  toastergui: table header bring back
  toaster: refactor checksettings command
  toasterui: replace cookie-based preferences with session data
  toastergui: tests for the all-projects API point
  toastergui: add tests for xhr_datatypeahead calls
  toaster: enable no browser start
  bitbake/: toaster tts: fix tests
  toaster tests: enable url check test
  toaster: more HTML5 fixes

Ed Bartosh (3):
  toastergui: show relative paths in configvars view
  toaster-gui: Show task name for the builds in /builds
  toastergui: Consider task name when restarting a build in /builds

Michael Wood (7):
  toaster: Fix build button current project race
  toaster: Fix toastertable header
  toaster: Add a simplified ToasterTable template
  toaster: Port layerdetails to ToasterTables
  toaster: Add an invalidate cache method on data update signal
  bldcontrol: Fix all failing unit tests
  orm: Fix all failing unit test

 bin/toaster                                        |  12 +-
 lib/bb/ui/buildinfohelper.py                       |  84 ++-
 lib/toaster/bldcontrol/localhostbecontroller.py    |   2 +-
 .../management/commands/checksettings.py           |  26 +-
 lib/toaster/bldcontrol/models.py                   |   3 +
 lib/toaster/bldcontrol/sshbecontroller.py          |   5 +-
 lib/toaster/bldcontrol/tests.py                    |  84 ++-
 lib/toaster/contrib/tts/backlog.txt                |   2 -
 lib/toaster/contrib/tts/config.py                  |  21 +
 lib/toaster/contrib/tts/launcher.py                |   2 +-
 lib/toaster/contrib/tts/runner.py                  |   4 +-
 lib/toaster/contrib/tts/tests.py                   |  55 +-
 .../tts/toasteruitest/toaster_automation_test.py   |  14 +-
 lib/toaster/contrib/tts/urlcheck.py                |  41 +-
 ...ion_local_path__add_field_recipe_pathflags__.py | 361 +++++++++++++
 ...ect__chg_field_project_bitbake_version__chg_.py | 368 +++++++++++++
 lib/toaster/orm/models.py                          |  58 +-
 lib/toaster/orm/tests.py                           |  32 +-
 lib/toaster/orm/views.py                           |   2 +-
 lib/toaster/toastergui/static/js/base.js           |   5 +-
 lib/toaster/toastergui/static/js/layerdetails.js   |  70 ++-
 lib/toaster/toastergui/static/js/libtoaster.js     |   3 +
 lib/toaster/toastergui/static/js/table.js          |  79 +--
 lib/toaster/toastergui/tables.py                   |  82 ++-
 .../toastergui/templates/basetable_bottom.html     |   4 -
 .../toastergui/templates/basetable_top.html        |   9 +-
 lib/toaster/toastergui/templates/bpackage.html     |   4 +-
 lib/toaster/toastergui/templates/brtargets.html    |  20 +
 .../toastergui/templates/builddashboard.html       |   2 +-
 .../toastergui/templates/configuration.html        |   2 +-
 lib/toaster/toastergui/templates/configvars.html   |  10 +-
 .../templates/detail_pagination_bottom.html        |   5 -
 .../toastergui/templates/detail_sorted_header.html |   2 +-
 lib/toaster/toastergui/templates/layerdetails.html | 594 +++++++--------------
 .../toastergui/templates/managed_mrb_section.html  |  28 +-
 .../toastergui/templates/package_detail_base.html  |   2 +-
 lib/toaster/toastergui/templates/recipe.html       |   6 +-
 lib/toaster/toastergui/templates/recipes.html      |   4 +-
 lib/toaster/toastergui/templates/runagain.html     |   7 +
 lib/toaster/toastergui/templates/target.html       |   2 +-
 .../toastergui/templates/toastertable-filter.html  |  18 +
 .../toastergui/templates/toastertable-simple.html  |  94 ++++
 lib/toaster/toastergui/templates/toastertable.html |  53 +-
 lib/toaster/toastergui/templatetags/projecttags.py |  83 +--
 lib/toaster/toastergui/tests.py                    |  78 +++
 lib/toaster/toastergui/urls.py                     |   6 +-
 lib/toaster/toastergui/views.py                    | 133 ++---
 lib/toaster/toastergui/widgets.py                  |  23 +-
 lib/toaster/toastermain/settings.py                |  17 +-
 49 files changed, 1778 insertions(+), 843 deletions(-)
 delete mode 100644 lib/toaster/contrib/tts/backlog.txt
 create mode 100644 lib/toaster/orm/migrations/0020_auto__add_field_layer_version_local_path__add_field_recipe_pathflags__.py
 create mode 100644 lib/toaster/orm/migrations/0021_auto__chg_field_build_project__chg_field_project_bitbake_version__chg_.py
 create mode 100644 lib/toaster/toastergui/templates/brtargets.html
 create mode 100644 lib/toaster/toastergui/templates/runagain.html
 create mode 100644 lib/toaster/toastergui/templates/toastertable-filter.html
 create mode 100644 lib/toaster/toastergui/templates/toastertable-simple.html
 create mode 100644 lib/toaster/toastergui/tests.py

-- 
1.9.1



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

end of thread, other threads:[~2015-05-28 14:18 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-28 14:14 [PATCH 00/22] Toaster patchset Alex DAMIAN
2015-05-28 14:13 ` [PATCH 01/22] toaster: Fix build button current project race Alex DAMIAN
2015-05-28 14:13 ` [PATCH 02/22] toaster: enable server-side sessions for all usages Alex DAMIAN
2015-05-28 14:13 ` [PATCH 03/22] toaster logger: refactor recipe and layer file paths Alex DAMIAN
2015-05-28 14:13 ` [PATCH 04/22] toaster logger: assign projects to all builds Alex DAMIAN
2015-05-28 14:13 ` [PATCH 05/22] toastergui: table header bring back Alex DAMIAN
2015-05-28 14:14 ` [PATCH 06/22] toastergui: show relative paths in configvars view Alex DAMIAN
2015-05-28 14:14 ` [PATCH 07/22] toaster: Fix toastertable header Alex DAMIAN
2015-05-28 14:14 ` [PATCH 08/22] toaster: Add a simplified ToasterTable template Alex DAMIAN
2015-05-28 14:14 ` [PATCH 09/22] toaster: Port layerdetails to ToasterTables Alex DAMIAN
2015-05-28 14:14 ` [PATCH 10/22] toaster: Add an invalidate cache method on data update signal Alex DAMIAN
2015-05-28 14:14 ` [PATCH 11/22] toaster-gui: Show task name for the builds in /builds Alex DAMIAN
2015-05-28 14:14 ` [PATCH 12/22] toastergui: Consider task name when restarting a build " Alex DAMIAN
2015-05-28 14:14 ` [PATCH 13/22] toaster: refactor checksettings command Alex DAMIAN
2015-05-28 14:14 ` [PATCH 14/22] toasterui: replace cookie-based preferences with session data Alex DAMIAN
2015-05-28 14:14 ` [PATCH 15/22] toastergui: tests for the all-projects API point Alex DAMIAN
2015-05-28 14:14 ` [PATCH 16/22] toastergui: add tests for xhr_datatypeahead calls Alex DAMIAN
2015-05-28 14:14 ` [PATCH 17/22] bldcontrol: Fix all failing unit tests Alex DAMIAN
2015-05-28 14:14 ` [PATCH 18/22] orm: Fix all failing unit test Alex DAMIAN
2015-05-28 14:14 ` [PATCH 19/22] toaster: enable no browser start Alex DAMIAN
2015-05-28 14:14 ` [PATCH 20/22] bitbake/: toaster tts: fix tests Alex DAMIAN
2015-05-28 14:14 ` [PATCH 21/22] toaster tests: enable url check test Alex DAMIAN
2015-05-28 14:14 ` [PATCH 22/22] toaster: more HTML5 fixes Alex DAMIAN

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