All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/23] toaster patchset
@ 2015-06-25 10:33 Alex DAMIAN
  2015-06-25 10:33 ` [PATCH 01/23] toastergui: fix angular error Alex DAMIAN
                   ` (22 more replies)
  0 siblings, 23 replies; 25+ messages in thread
From: Alex DAMIAN @ 2015-06-25 10:33 UTC (permalink / raw)
  To: bitbake-devel

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

This toaster patchset brings in filters for new toaster tables, 
removes the differences between managed and analysis modes
in favour of project types, and more minor fixes.

Can you please cherry-pick ?

Thank you,
Alex

The following changes since commit 32166ac3c85ff3c04081580ae76bd63590d6ff3e:

  runqueue: Sanity check BB_NUMBER_THREADS (2015-06-19 22:43:48 +0100)

are available in the git repository at:

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

Alexandru DAMIAN (16):
  toastergui: fix angular error
  toaster: improve the buildenvironment API
  toastergui: enable strict variable checking
  toaster: fixing undefined variables
  toaster: remove MANAGED references
  toaster: remove BuildRequest references
  toaster: refactor the builds pages
  toaster: fill in build data from buildrequest
  toaster: fixes after replacing BuildRequest with Build
  toaster: add django-aggregate-if
  toaster: bring django-aggregate-if into the project
  toaster: refactor build model
  toastergui: select project types
  toaster: delete multiple builds
  toasterui: verify variable before usage
  toasterui: fixes after html5 compliance testing

Michael Wood (7):
  toaster: Enable toastertable cache
  toaster: toastertable Pass up the kwargs for setup_filter
  toaster: table.js fix filter visual indicator and interaction
  toaster: Restore 'in project' filters to main tables
  toaster: bldcontrol Ignore toasterconf files in own directories
  toaster: split orm app into it's own module and app
  toaster: Add url pattern for backward compatibility

 lib/bb/ui/buildinfohelper.py                       |  73 ++-
 lib/bb/ui/toasterui.py                             |  27 +-
 lib/toaster/bldcollector/__init__.py               |   0
 lib/toaster/{orm => bldcollector}/admin.py         |   3 +-
 lib/toaster/{orm => bldcollector}/urls.py          |   3 +-
 lib/toaster/{orm => bldcollector}/views.py         |   0
 lib/toaster/bldcontrol/bbcontroller.py             |   3 +
 lib/toaster/bldcontrol/localhostbecontroller.py    |  24 +-
 .../management/commands/checksettings.py           |   2 +
 .../bldcontrol/management/commands/runbuilds.py    |  69 ++-
 lib/toaster/bldcontrol/models.py                   |   3 +
 lib/toaster/bldcontrol/sshbecontroller.py          |  21 +
 .../contrib/django-aggregate-if-master/.gitignore  |  10 +
 .../contrib/django-aggregate-if-master/.travis.yml |  50 ++
 .../contrib/django-aggregate-if-master/LICENSE     |  21 +
 .../contrib/django-aggregate-if-master/README.rst  | 156 +++++
 .../django-aggregate-if-master/aggregate_if.py     | 164 ++++++
 .../contrib/django-aggregate-if-master/runtests.py |  48 ++
 .../contrib/django-aggregate-if-master/setup.py    |  33 ++
 .../contrib/django-aggregate-if-master/tox.ini     | 198 +++++++
 ...ect__chg_field_project_bitbake_version__chg_.py |   5 +-
 ...k__add_field_layer_version_local_path__del_f.py | 343 +++++++++++
 ...ings_no__del_field_build_errors_no__del_fiel.py | 353 ++++++++++++
 lib/toaster/orm/models.py                          |  67 ++-
 lib/toaster/toastergui/static/js/base.js           |   2 +-
 lib/toaster/toastergui/static/js/projectapp.js     |  20 +-
 lib/toaster/toastergui/static/js/table.js          |  59 +-
 lib/toaster/toastergui/tables.py                   |  75 ++-
 lib/toaster/toastergui/templates/base.html         |  20 +-
 .../toastergui/templates/basebuilddetailpage.html  |   4 +-
 .../toastergui/templates/basebuildpage.html        |   7 +-
 .../toastergui/templates/basetable_top.html        |  11 +-
 .../templates/basetable_top_buildprojects.html     |   2 -
 .../templates/basetable_top_projectbuilds.html     |   2 -
 lib/toaster/toastergui/templates/bpackage.html     |   3 -
 .../toastergui/templates/builddashboard.html       |  39 +-
 .../templates/{build.html => builds.html}          |  35 +-
 .../toastergui/templates/configuration.html        |   6 -
 lib/toaster/toastergui/templates/configvars.html   |   6 +-
 .../toastergui/templates/detail_search_header.html |   2 +-
 .../toastergui/templates/detail_sorted_header.html |   2 +-
 .../toastergui/templates/filtersnippet.html        |   4 +-
 .../templates/generic-toastertable-page.html       |   2 +
 lib/toaster/toastergui/templates/importlayer.html  |  15 +-
 lib/toaster/toastergui/templates/landing.html      |  37 +-
 .../toastergui/templates/managed_builds.html       | 167 ------
 .../toastergui/templates/managed_mrb_section.html  | 193 -------
 lib/toaster/toastergui/templates/mrb_section.html  |  70 ++-
 lib/toaster/toastergui/templates/newproject.html   |  99 ++--
 .../toastergui/templates/package_detail_base.html  |   7 -
 lib/toaster/toastergui/templates/project.html      |  39 +-
 .../toastergui/templates/projectbuilds.html        |  30 +-
 lib/toaster/toastergui/templates/projects.html     |  27 +-
 lib/toaster/toastergui/templates/recipe.html       |   9 +-
 lib/toaster/toastergui/templates/recipes.html      |   7 +-
 lib/toaster/toastergui/templates/runagain.html     |   7 -
 lib/toaster/toastergui/templates/target.html       |   7 +-
 lib/toaster/toastergui/templates/task.html         |  36 +-
 lib/toaster/toastergui/templates/tasks.html        |   7 +-
 .../toastergui/templates/toastertable-simple.html  |   4 +-
 lib/toaster/toastergui/templates/toastertable.html |   4 +-
 lib/toaster/toastergui/urls.py                     |   3 -
 lib/toaster/toastergui/views.py                    | 633 +++++----------------
 lib/toaster/toastergui/widgets.py                  |  19 +-
 .../toastermain/management/commands/builddelete.py |  56 +-
 lib/toaster/toastermain/settings.py                |  18 +-
 lib/toaster/toastermain/urls.py                    |   4 +
 67 files changed, 2191 insertions(+), 1284 deletions(-)
 create mode 100644 lib/toaster/bldcollector/__init__.py
 rename lib/toaster/{orm => bldcollector}/admin.py (92%)
 rename lib/toaster/{orm => bldcollector}/urls.py (95%)
 rename lib/toaster/{orm => bldcollector}/views.py (100%)
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/.gitignore
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/.travis.yml
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/LICENSE
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/README.rst
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/aggregate_if.py
 create mode 100755 lib/toaster/contrib/django-aggregate-if-master/runtests.py
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/setup.py
 create mode 100644 lib/toaster/contrib/django-aggregate-if-master/tox.ini
 create mode 100644 lib/toaster/orm/migrations/0022_auto__add_field_target_task__add_field_layer_version_local_path__del_f.py
 create mode 100644 lib/toaster/orm/migrations/0023_auto__del_field_build_warnings_no__del_field_build_errors_no__del_fiel.py
 rename lib/toaster/toastergui/templates/{build.html => builds.html} (75%)
 delete mode 100644 lib/toaster/toastergui/templates/managed_builds.html
 delete mode 100644 lib/toaster/toastergui/templates/managed_mrb_section.html
 delete mode 100644 lib/toaster/toastergui/templates/runagain.html

-- 
1.9.1



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

end of thread, other threads:[~2015-06-29 14:22 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-25 10:33 [PATCH 00/23] toaster patchset Alex DAMIAN
2015-06-25 10:33 ` [PATCH 01/23] toastergui: fix angular error Alex DAMIAN
2015-06-25 10:33 ` [PATCH 02/23] toaster: improve the buildenvironment API Alex DAMIAN
2015-06-25 10:33 ` [PATCH 03/23] toastergui: enable strict variable checking Alex DAMIAN
2015-06-25 10:33 ` [PATCH 04/23] toaster: fixing undefined variables Alex DAMIAN
2015-06-25 10:33 ` [PATCH 05/23] toaster: remove MANAGED references Alex DAMIAN
2015-06-25 10:33 ` [PATCH 06/23] toaster: remove BuildRequest references Alex DAMIAN
2015-06-25 10:33 ` [PATCH 07/23] toaster: refactor the builds pages Alex DAMIAN
2015-06-25 10:33 ` [PATCH 08/23] toaster: fill in build data from buildrequest Alex DAMIAN
2015-06-25 10:33 ` [PATCH 09/23] toaster: fixes after replacing BuildRequest with Build Alex DAMIAN
2015-06-25 10:33 ` [PATCH 10/23] toaster: add django-aggregate-if Alex DAMIAN
2015-06-25 10:33 ` [PATCH 11/23] toaster: bring django-aggregate-if into the project Alex DAMIAN
2015-06-25 10:33 ` [PATCH 12/23] toaster: refactor build model Alex DAMIAN
2015-06-25 10:33 ` [PATCH 13/23] toastergui: select project types Alex DAMIAN
2015-06-25 10:33 ` [PATCH 14/23] toaster: delete multiple builds Alex DAMIAN
2015-06-25 10:33 ` [PATCH 15/23] toasterui: verify variable before usage Alex DAMIAN
2015-06-25 10:33 ` [PATCH 16/23] toasterui: fixes after html5 compliance testing Alex DAMIAN
2015-06-29 14:22   ` Michael Wood
2015-06-25 10:33 ` [PATCH 17/23] toaster: Enable toastertable cache Alex DAMIAN
2015-06-25 10:33 ` [PATCH 18/23] toaster: toastertable Pass up the kwargs for setup_filter Alex DAMIAN
2015-06-25 10:33 ` [PATCH 19/23] toaster: table.js fix filter visual indicator and interaction Alex DAMIAN
2015-06-25 10:33 ` [PATCH 20/23] toaster: Restore 'in project' filters to main tables Alex DAMIAN
2015-06-25 10:33 ` [PATCH 21/23] toaster: bldcontrol Ignore toasterconf files in own directories Alex DAMIAN
2015-06-25 10:33 ` [PATCH 22/23] toaster: split orm app into it's own module and app Alex DAMIAN
2015-06-25 10:34 ` [PATCH 23/23] toaster: Add url pattern for backward compatibility Alex DAMIAN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.