From: Alex DAMIAN <alexandru.damian@intel.com>
To: bitbake-devel@lists.openembedded.org
Cc: Alexandru DAMIAN <alexandru.damian@intel.com>,
Belen Barros Pena <belen.barros.pena@linux.intel.com>
Subject: [PATCH 00/18 v2] Toaster patchset with new features and bugfixes
Date: Fri, 12 Dec 2014 11:45:13 +0000 [thread overview]
Message-ID: <cover.1418384609.git.alexandru.damian@intel.com> (raw)
From: Alexandru DAMIAN <alexandru.damian@intel.com>
Hello,
This is the v2 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/20141211-submission-1
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20141211-submission-1
Alexandru DAMIAN (6):
add build artifacts table and other improvements
toasterui: add extra debug and development infos
add option to write offline event log file
toastergui: implement UI changes to allow file download
add POST endpoint for uploading eventlog files
toasterui: refactor project layer finding logic
Belen Barros Pena (5):
toaster: base Only show change project icon when > one project
toaster: Initialise the 'change' icon tooltips
toaster: tweaking the import layers form
toaster: Formatting changes to error messages
toaster: Change the full stop to a colon
Michael Wood (7):
toaster: libtoaster Add a error handler to GET in makeTypehead
toaster: libtoaster Add editProject and getLayerDepsForProject
toaster: Add import layer feature.
toaster: Importlayer add notify exactly which layers changed
toaster: importlayer Avoid namespace clash with layer name
toaster: projectapp Add links to the imported layers notify
toaster: importlayer Tidy up the page initialisation
bin/bitbake | 12 +-
bin/toaster-eventreplay | 179 +++++++++++
lib/bb/cooker.py | 75 ++++-
lib/bb/cookerdata.py | 1 +
lib/bb/ui/buildinfohelper.py | 91 ++++--
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 | 289 +++++++++++++++++
lib/toaster/toastergui/static/js/libtoaster.js | 57 ++++
lib/toaster/toastergui/static/js/projectapp.js | 40 ++-
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 | 114 +++++--
.../toastergui/templates/layers_dep_modal.html | 90 ++++++
.../toastergui/templates/package_detail_base.html | 3 +
lib/toaster/toastergui/templates/project.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 | 325 ++++++++++++++------
lib/toaster/toastermain/settings.py | 27 +-
lib/toaster/toastermain/urls.py | 10 +-
35 files changed, 1853 insertions(+), 265 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
next reply other threads:[~2014-12-12 11:45 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-12 11:45 Alex DAMIAN [this message]
2014-12-12 11:45 ` [PATCH 01/18] add build artifacts table and other improvements Alex DAMIAN
2014-12-12 11:45 ` [PATCH 02/18] toasterui: add extra debug and development infos Alex DAMIAN
2014-12-12 11:45 ` [PATCH 03/18] add option to write offline event log file Alex DAMIAN
2014-12-12 11:45 ` [PATCH 04/18] toastergui: implement UI changes to allow file download Alex DAMIAN
2014-12-12 11:45 ` [PATCH 05/18] add POST endpoint for uploading eventlog files Alex DAMIAN
2014-12-12 11:45 ` [PATCH 06/18] toaster: base Only show change project icon when > one project Alex DAMIAN
2014-12-12 11:45 ` [PATCH 07/18] toaster: Initialise the 'change' icon tooltips Alex DAMIAN
2014-12-12 11:45 ` [PATCH 08/18] toaster: libtoaster Add a error handler to GET in makeTypehead Alex DAMIAN
2014-12-12 11:45 ` [PATCH 09/18] toaster: libtoaster Add editProject and getLayerDepsForProject Alex DAMIAN
2014-12-12 11:45 ` [PATCH 10/18] toasterui: refactor project layer finding logic Alex DAMIAN
2014-12-12 11:45 ` [PATCH 11/18] toaster: Add import layer feature Alex DAMIAN
2014-12-12 11:45 ` [PATCH 12/18] toaster: tweaking the import layers form Alex DAMIAN
2014-12-12 11:45 ` [PATCH 13/18] toaster: Importlayer add notify exactly which layers changed Alex DAMIAN
2014-12-12 11:45 ` [PATCH 14/18] toaster: importlayer Avoid namespace clash with layer name Alex DAMIAN
2014-12-12 11:45 ` [PATCH 15/18] toaster: projectapp Add links to the imported layers notify Alex DAMIAN
2014-12-12 11:45 ` [PATCH 16/18] toaster: Formatting changes to error messages Alex DAMIAN
2014-12-12 11:45 ` [PATCH 17/18] toaster: Change the full stop to a colon Alex DAMIAN
2014-12-12 11:45 ` [PATCH 18/18] toaster: importlayer Tidy up the page initialisation Alex DAMIAN
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1418384609.git.alexandru.damian@intel.com \
--to=alexandru.damian@intel.com \
--cc=belen.barros.pena@linux.intel.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.