All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] delete builds, projects, recipes, layers
@ 2016-09-26 10:59 Ed Bartosh
  2016-09-26 10:59 ` [PATCH 01/10] toaster: Clean up and convert to rest api project edit and get calls Ed Bartosh
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Ed Bartosh @ 2016-09-26 10:59 UTC (permalink / raw)
  To: bitbake-devel

Work to implement deleting of builds projects recipes and layers.
Includes a number of clean ups in affected areas.

The following changes since commit 725e66e1d08ae000d8f68455ddca0e192080dc1f:

  meta-environment: ensure corret TOOLCHAIN_CONFIGSITE_NOCACHE value (2016-09-26 10:06:02 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/submit/michaelw/toaster/delete_buttons
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/submit/michaelw/toaster/delete_buttons

Michael Wood (10):
  toaster: Clean up and convert to rest api project edit and get calls
  toaster: move MostRecentBuildsView to its own widget
  toaster: libtoaster Add a global notification set/show mechanism
  toaster: project page Implement front end feature to delete project
  toaster: alerts and modals Avoid modals and alerts overlaying each
    other
  toaster: Add backend API for deleting a build
  toaster: Add front end controls for deleting a build
  toaster: importlayer Convert success import to new notification system
  toaster: customrecipe Add frontend feature to delete custom image
    recipe
  toaster: layerdetails Update implementation of delete imported layer

 lib/toaster/toastergui/api.py                      | 312 +++++++++++++--------
 lib/toaster/toastergui/static/js/customrecipe.js   |  32 +++
 lib/toaster/toastergui/static/js/importlayer.js    |  59 +++-
 lib/toaster/toastergui/static/js/layerDepsModal.js |  12 +-
 lib/toaster/toastergui/static/js/layerdetails.js   |   7 +-
 lib/toaster/toastergui/static/js/libtoaster.js     |  42 ++-
 lib/toaster/toastergui/static/js/projectpage.js    | 237 +++-------------
 lib/toaster/toastergui/static/js/projecttopbar.js  |   6 +-
 lib/toaster/toastergui/static/js/tests/test.js     |   7 +-
 lib/toaster/toastergui/templates/base.html         |   1 +
 .../toastergui/templates/basebuildpage.html        | 138 ++++++---
 .../toastergui/templates/baseprojectpage.html      |   6 +
 .../toastergui/templates/builddashboard.html       |   2 +-
 lib/toaster/toastergui/templates/customrecipe.html |  35 ++-
 lib/toaster/toastergui/templates/layerdetails.html |   9 +-
 lib/toaster/toastergui/templates/project.html      |  35 ++-
 .../toastergui/templates/projecttopbar.html        |   2 +-
 lib/toaster/toastergui/urls.py                     |  11 +-
 lib/toaster/toastergui/views.py                    | 131 +--------
 lib/toaster/toastergui/widgets.py                  | 141 ++++++++--
 20 files changed, 679 insertions(+), 546 deletions(-)

-- 
2.6.6



^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 00/10] delete builds,projects,recipes,layers
@ 2016-09-22 16:55 Michael Wood
  2016-09-22 17:34 ` Michael Wood
  2016-09-23 11:42 ` Barros Pena, Belen
  0 siblings, 2 replies; 14+ messages in thread
From: Michael Wood @ 2016-09-22 16:55 UTC (permalink / raw)
  To: toaster

Work to implement deleting of builds projects recipes and layers.
Includes a number of clean ups in affected areas.

Obsoletes: 
 -[PATCH 0/4] clean ups, buildinfohelper fix and delete project patches
 -[PATCH v2 0/5] Couple of clean ups, fix for local layers in buildinfohelper and api and implementation of delete a project.

Branch available at poky-contrib michaelw/toaster/delete_buttons

Michael Wood (10):
  toaster: Clean up and convert to rest api project edit and get calls
  toaster: move MostRecentBuildsView to its own widget
  toaster: libtoaster Add a global notification set/show mechanism
  toaster: project page Implement front end feature to delete project
  toaster: alerts and modals Avoid modals and alerts overlaying each
    other
  toaster: Add backend API for deleting a build
  toaster: Add front end controls for deleting a build
  toaster: importlayer Convert success import to new notification system
  toaster: customrecipe Add frontend feature to delete custom image
    recipe
  toaster: layerdetails Update implementation of delete imported layer

 bitbake/lib/toaster/toastergui/api.py              | 312 +++++++++++++--------
 .../toaster/toastergui/static/js/customrecipe.js   |  32 +++
 .../toaster/toastergui/static/js/importlayer.js    |  59 +++-
 .../toaster/toastergui/static/js/layerDepsModal.js |  12 +-
 .../toaster/toastergui/static/js/layerdetails.js   |   7 +-
 .../lib/toaster/toastergui/static/js/libtoaster.js |  42 ++-
 .../toaster/toastergui/static/js/projectpage.js    | 237 +++-------------
 .../toaster/toastergui/static/js/projecttopbar.js  |   6 +-
 .../lib/toaster/toastergui/static/js/tests/test.js |   7 +-
 bitbake/lib/toaster/toastergui/templates/base.html |   1 +
 .../toastergui/templates/basebuildpage.html        | 138 ++++++---
 .../toastergui/templates/baseprojectpage.html      |   6 +
 .../toastergui/templates/builddashboard.html       |   2 +-
 .../toaster/toastergui/templates/customrecipe.html |  35 ++-
 .../toaster/toastergui/templates/layerdetails.html |   9 +-
 .../lib/toaster/toastergui/templates/project.html  |  35 ++-
 .../toastergui/templates/projecttopbar.html        |   2 +-
 bitbake/lib/toaster/toastergui/urls.py             |  11 +-
 bitbake/lib/toaster/toastergui/views.py            | 131 +--------
 bitbake/lib/toaster/toastergui/widgets.py          | 141 ++++++++--
 20 files changed, 679 insertions(+), 546 deletions(-)

-- 
2.7.4



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

end of thread, other threads:[~2016-09-26 11:00 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-26 10:59 [PATCH 00/10] delete builds, projects, recipes, layers Ed Bartosh
2016-09-26 10:59 ` [PATCH 01/10] toaster: Clean up and convert to rest api project edit and get calls Ed Bartosh
2016-09-26 10:59 ` [PATCH 02/10] toaster: move MostRecentBuildsView to its own widget Ed Bartosh
2016-09-26 10:59 ` [PATCH 03/10] toaster: libtoaster Add a global notification set/show mechanism Ed Bartosh
2016-09-26 10:59 ` [PATCH 04/10] toaster: project page Implement front end feature to delete project Ed Bartosh
2016-09-26 10:59 ` [PATCH 05/10] toaster: alerts and modals Avoid modals and alerts overlaying each other Ed Bartosh
2016-09-26 10:59 ` [PATCH 06/10] toaster: Add backend API for deleting a build Ed Bartosh
2016-09-26 10:59 ` [PATCH 07/10] toaster: Add front end controls " Ed Bartosh
2016-09-26 10:59 ` [PATCH 08/10] toaster: importlayer Convert success import to new notification system Ed Bartosh
2016-09-26 10:59 ` [PATCH 09/10] toaster: customrecipe Add frontend feature to delete custom image recipe Ed Bartosh
2016-09-26 10:59 ` [PATCH 10/10] toaster: layerdetails Update implementation of delete imported layer Ed Bartosh
  -- strict thread matches above, loose matches on Subject: below --
2016-09-22 16:55 [PATCH 00/10] delete builds,projects,recipes,layers Michael Wood
2016-09-22 17:34 ` Michael Wood
2016-09-23 11:42 ` Barros Pena, Belen

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.