From: brian avery <avery.brian@gmail.com>
To: bitbake-devel@lists.openembedded.org
Subject: [PATCH 00/22] image customization
Date: Mon, 28 Sep 2015 21:45:12 -0700 [thread overview]
Message-ID: <cover.1443497922.git.avery.brian@gmail.com> (raw)
This large patch set brings the databse changes needed to support image
customization as well as the skeleton of the image customization user
interface. The ui for image customization is off/hidden by default.
The database changes fix bugs 7967,8035,8147, and 8403.
Thanks,
Brian
The following changes since commit f78f90240a3041be426c6ba9085849352164ee8b:
bitbake: prserv/serv.py: Better messaging when starting/stopping the server with port=0 (2015-09-28 12:00:33 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib bavery/submit/michaelw/20150928_ic5.1
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=bavery/submit/michaelw/20150928_ic5.1
Ed Bartosh (5):
toaster: make a workaround for old style index
toaster: create custom layer and recipes for Image customisation
toaster: implement decorator for REST responses
toaster: Add new ReST API for Image Customisation feature
toaster: Add test cases for new Image customisation features
Michael Wood (17):
toaster: tables Move the title and name into the widget
toaster: widgets ToasterTable add logger to notify when cache hit
toaster: widgets ToasterTable Add more info to search field exception
toaster: add nocache option to the ToasterTable widget
toaster: ToasterTable remove unused class definition
toaster: Add CustomImageRecipe model
toaster: add toggle for enabling image customisation feeature
toaster: Fix indentation of jsunittests view
toaster: Add ToasterTables for Image customisation feature
toaster: Add Image customisation frontend feature
toaster: Special case the openembedded-core layer to avoid duplicates
toaster: Create a relationship between build information and toaster
layers
toaster: Prioroitise the layer more generic vcs reference over the sha
toaster: tables show all recipes in the layerdetails even duplicates
toaster: buildinfohelper Create a copy of the built layer and recipe
Revert "bitbake: toaster: don't re-create Target objects"
toaster: orm remove the complicated querying on the ORM
lib/bb/ui/buildinfohelper.py | 95 +++++-
lib/toaster/bldcontrol/localhostbecontroller.py | 51 ++-
.../0009_auto__add_field_brlayer_layer_version.py | 180 ++++++++++
lib/toaster/bldcontrol/models.py | 3 +-
...e__add_unique_customimagerecipe_name_project.py | 375 +++++++++++++++++++++
lib/toaster/orm/models.py | 91 +++--
lib/toaster/toastergui/static/js/customrecipe.js | 50 +++
lib/toaster/toastergui/static/js/layerBtn.js | 13 +
lib/toaster/toastergui/static/js/newcustomimage.js | 49 +++
lib/toaster/toastergui/tables.py | 230 +++++++++++--
.../toastergui/templates/baseprojectpage.html | 7 +-
.../toastergui/templates/customise_btn.html | 9 +
lib/toaster/toastergui/templates/customrecipe.html | 142 ++++++++
.../toastergui/templates/newcustomimage.html | 54 +++
.../toastergui/templates/pkg_add_rm_btn.html | 16 +
lib/toaster/toastergui/templates/project.html | 2 +-
.../toastergui/templates/projecttopbar.html | 9 +-
lib/toaster/toastergui/tests.py | 187 +++++++++-
lib/toaster/toastergui/typeaheads.py | 5 +-
lib/toaster/toastergui/urls.py | 49 ++-
lib/toaster/toastergui/views.py | 195 ++++++++++-
lib/toaster/toastergui/widgets.py | 50 ++-
lib/toaster/toastermain/settings.py | 5 +
23 files changed, 1724 insertions(+), 143 deletions(-)
create mode 100644 bitbake/lib/toaster/bldcontrol/migrations/0009_auto__add_field_brlayer_layer_version.py
create mode 100644 bitbake/lib/toaster/orm/migrations/0027_auto__add_customimagerecipe__add_unique_customimagerecipe_name_project.py
create mode 100644 bitbake/lib/toaster/toastergui/static/js/customrecipe.js
create mode 100644 bitbake/lib/toaster/toastergui/static/js/newcustomimage.js
create mode 100644 bitbake/lib/toaster/toastergui/templates/customise_btn.html
create mode 100644 bitbake/lib/toaster/toastergui/templates/customrecipe.html
create mode 100644 bitbake/lib/toaster/toastergui/templates/newcustomimage.html
create mode 100644 bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html
--
1.9.1
next reply other threads:[~2015-09-29 4:43 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-29 4:45 brian avery [this message]
2015-09-29 4:45 ` [PATCH 01/22] toaster: make a workaround for old style index brian avery
2015-09-29 4:45 ` [PATCH 02/22] toaster: tables Move the title and name into the widget brian avery
2015-09-29 4:45 ` [PATCH 03/22] toaster: create custom layer and recipes for Image customisation brian avery
2015-09-29 4:45 ` [PATCH 04/22] toaster: widgets ToasterTable add logger to notify when cache hit brian avery
2015-09-29 4:45 ` [PATCH 05/22] toaster: widgets ToasterTable Add more info to search field exception brian avery
2015-09-29 4:45 ` [PATCH 06/22] toaster: add nocache option to the ToasterTable widget brian avery
2015-09-29 4:45 ` [PATCH 07/22] toaster: ToasterTable remove unused class definition brian avery
2015-09-29 4:45 ` [PATCH 08/22] toaster: Add CustomImageRecipe model brian avery
2015-09-29 4:45 ` [PATCH 09/22] toaster: add toggle for enabling image customisation feeature brian avery
2015-09-29 4:45 ` [PATCH 10/22] toaster: implement decorator for REST responses brian avery
2015-09-29 4:45 ` [PATCH 11/22] toaster: Fix indentation of jsunittests view brian avery
2015-09-29 4:45 ` [PATCH 12/22] toaster: Add new ReST API for Image Customisation feature brian avery
2015-09-29 4:45 ` [PATCH 13/22] toaster: Add ToasterTables for Image customisation feature brian avery
2015-09-29 4:45 ` [PATCH 14/22] toaster: Add Image customisation frontend feature brian avery
2015-09-29 4:45 ` [PATCH 15/22] toaster: Add test cases for new Image customisation features brian avery
2015-09-29 4:45 ` [PATCH 16/22] toaster: Special case the openembedded-core layer to avoid duplicates brian avery
2015-09-29 4:45 ` [PATCH 17/22] toaster: Create a relationship between build information and toaster layers brian avery
2015-09-29 4:45 ` [PATCH 18/22] toaster: Prioroitise the layer more generic vcs reference over the sha brian avery
2015-09-29 4:45 ` [PATCH 19/22] toaster: tables show all recipes in the layerdetails even duplicates brian avery
2015-09-29 4:45 ` [PATCH 20/22] toaster: buildinfohelper Create a copy of the built layer and recipe brian avery
2015-09-29 4:45 ` [PATCH 21/22] Revert "bitbake: toaster: don't re-create Target objects" brian avery
2015-09-29 4:45 ` [PATCH 22/22] toaster: orm remove the complicated querying on the ORM brian avery
2015-09-29 9:50 ` [PATCH v2 " Michael Wood
2015-09-29 9:54 ` Michael Wood
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.1443497922.git.avery.brian@gmail.com \
--to=avery.brian@gmail.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.