All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] Toaster patchset with new features and bugfixes
@ 2014-12-10 15:12 Alex DAMIAN
  2014-12-10 15:12 ` [PATCH 01/11] add build artifacts table and other improvements Alex DAMIAN
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: Alex DAMIAN @ 2014-12-10 15:12 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Alexandru DAMIAN

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

Hello,

This is a patchset with new features and bug fixes. Patches have been individually
reviewed on the toaster mailing list.

Among the features submitted, we have the import layers pages, the download artifacts
patchset, a new command line option for bitbake to write event log files, and corresponding
command to import log files into toaster, as well as new debug options.

We also have fixes around the layout and refactoring to make code cleaner.

Can you please pull at your convenience ?

Thanks,
Alex

The following changes since commit 9e27bb2869e8ec6781d2f68d0585ebbf9ca6f3d8:

  bitbake-user-manual-metadata.xml: Updated do_package_write example (2014-12-09 22:25:11 +0000)

are available in the git repository at:

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

Alexandru DAMIAN (6):
  add build artifacts table and other improvements
  toastergui: implement UI changes to allow file download
  add option to write offline event log file
  add POST endpoint for uploading eventlog files
  toasterui: add extra debug and development infos
  toasterui: refactor project layer finding logic

Belen Barros Pena (2):
  toaster: base Only show change project icon when > one project
  toaster: Initialise the 'change' icon tooltips

Michael Wood (3):
  toaster: libtoaster Add a error handler to GET in makeTypehead
  toaster: libtoaster Add editProject and getLayerDepsForProject
  toaster: Add import layer feature.

 bin/bitbake                                        |   7 +-
 bin/toaster-eventreplay                            | 179 +++++++++++
 lib/bb/cooker.py                                   |  75 ++++-
 lib/bb/cookerdata.py                               |   1 +
 lib/bb/ui/buildinfohelper.py                       |  83 +++--
 lib/bb/ui/toasterui.py                             |  25 +-
 lib/toaster/bldcontrol/localhostbecontroller.py    |  27 +-
 .../management/commands/checksettings.py           |   2 +-
 .../bldcontrol/management/commands/runbuilds.py    |  13 +-
 lib/toaster/bldcontrol/models.py                   |  10 +-
 .../orm/migrations/0019_auto__add_buildartifact.py | 342 +++++++++++++++++++++
 lib/toaster/orm/models.py                          |  50 ++-
 lib/toaster/orm/urls.py                            |  27 ++
 lib/toaster/orm/views.py                           |  60 ++++
 lib/toaster/toastergui/static/js/base.js           |   4 +
 lib/toaster/toastergui/static/js/importlayer.js    | 190 ++++++++++++
 lib/toaster/toastergui/static/js/libtoaster.js     |  57 ++++
 lib/toaster/toastergui/static/js/projectapp.js     |   6 +
 lib/toaster/toastergui/templates/base.html         |  18 +-
 lib/toaster/toastergui/templates/build.html        |  29 +-
 .../toastergui/templates/builddashboard.html       | 131 +++++---
 .../toastergui/templates/configuration.html        |   6 +-
 lib/toaster/toastergui/templates/importlayer.html  |  80 +++--
 .../toastergui/templates/layers_dep_modal.html     |  68 ++++
 .../toastergui/templates/package_detail_base.html  |   3 +
 lib/toaster/toastergui/templates/recipe.html       |  11 +-
 lib/toaster/toastergui/templates/recipes.html      |   7 +-
 lib/toaster/toastergui/templates/target.html       |   8 +-
 lib/toaster/toastergui/templates/task.html         |  18 +-
 lib/toaster/toastergui/templates/tasks.html        |  12 +-
 lib/toaster/toastergui/urls.py                     |   2 +
 lib/toaster/toastergui/views.py                    | 293 ++++++++++++------
 lib/toaster/toastermain/settings.py                |  27 +-
 lib/toaster/toastermain/urls.py                    |  10 +-
 34 files changed, 1630 insertions(+), 251 deletions(-)
 create mode 100755 bin/toaster-eventreplay
 create mode 100644 lib/toaster/orm/migrations/0019_auto__add_buildartifact.py
 create mode 100644 lib/toaster/orm/urls.py
 create mode 100644 lib/toaster/orm/views.py
 create mode 100644 lib/toaster/toastergui/static/js/importlayer.js
 create mode 100644 lib/toaster/toastergui/templates/layers_dep_modal.html

-- 
1.9.1



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

end of thread, other threads:[~2014-12-11 14:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-10 15:12 [PATCH 00/11] Toaster patchset with new features and bugfixes Alex DAMIAN
2014-12-10 15:12 ` [PATCH 01/11] add build artifacts table and other improvements Alex DAMIAN
2014-12-10 15:12 ` [PATCH 02/11] toastergui: implement UI changes to allow file download Alex DAMIAN
2014-12-10 15:12 ` [PATCH 03/11] add option to write offline event log file Alex DAMIAN
2014-12-10 16:19   ` Richard Purdie
2014-12-10 15:12 ` [PATCH 04/11] add POST endpoint for uploading eventlog files Alex DAMIAN
2014-12-10 15:12 ` [PATCH 05/11] toasterui: add extra debug and development infos Alex DAMIAN
2014-12-10 15:12 ` [PATCH 06/11] toaster: base Only show change project icon when > one project Alex DAMIAN
2014-12-10 15:12 ` [PATCH 07/11] toaster: Initialise the 'change' icon tooltips Alex DAMIAN
2014-12-10 15:12 ` [PATCH 08/11] toaster: libtoaster Add a error handler to GET in makeTypehead Alex DAMIAN
2014-12-10 15:12 ` [PATCH 09/11] toaster: libtoaster Add editProject and getLayerDepsForProject Alex DAMIAN
2014-12-10 15:12 ` [PATCH 10/11] toasterui: refactor project layer finding logic Alex DAMIAN
2014-12-10 15:12 ` [PATCH 11/11] toaster: Add import layer feature Alex DAMIAN
2014-12-11 14:44 ` [PATCH 00/11] Toaster patchset with new features and bugfixes Damian, Alexandru

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.