All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] toaster: Move build information to Bootstrap 3
@ 2016-06-09 13:24 Belen Barros Pena
  2016-06-09 13:24 ` [PATCH 01/20] toaster: build data Breadcrumbs to Bootstrap3 Belen Barros Pena
                   ` (19 more replies)
  0 siblings, 20 replies; 25+ messages in thread
From: Belen Barros Pena @ 2016-06-09 13:24 UTC (permalink / raw)
  To: toaster

This series completes the migration of Toaster to Bootstrap 3 (\0/), making sure all pages in the build information section display nicely.

The series is for review only: patches will be squashed before sending upstream.

Belen Barros Pena (20):
  toaster: build data Breadcrumbs to Bootstrap3
  toaster: build data Build dashboard to Bootstrap 3
  toaster: build data Left nav actions to Bootstrap 3
  toaster: build data Packages installed to Bootstrap 3
  toaster: build data Directory structure to Boostrap 3
  toaster: build data Configuration to Bootstrap 3
  toaster: build data Variables to Bootstrap 3
  toaster: build data Tasks table to Bootstrap 3
  toaster: build data Recipes table to Bootstrap 3
  toaster: build data Task details to Bootstrap 3
  toaster: build data Recipe details to Bootstrap 3
  toaster: css Remove markup
  toaster: build data Package details to Bootstrap 3
  toaster: build data Fix left navigation
  toaster: build data Format empty state in packages table
  toaster: build data Add css for highlight animation
  toaster: task filters Remove invalid option
  toaster: css Remove Bootstrap theme
  toaster: build data Unavailable artifact to Bootstrap 3
  toaster: loading notification Make it spin

 bitbake/lib/toaster/toastergui/buildtables.py      |  93 ++--
 .../toastergui/static/css/bootstrap-theme.css      | 587 ---------------------
 .../toastergui/static/css/bootstrap-theme.css.map  |   1 -
 .../toastergui/static/css/bootstrap-theme.min.css  |   6 -
 .../static/css/bootstrap-theme.min.css.map         |   1 -
 .../lib/toaster/toastergui/static/css/default.css  | 116 +++-
 .../lib/toaster/toastergui/static/js/libtoaster.js |   4 +-
 bitbake/lib/toaster/toastergui/templates/base.html |   2 +-
 .../toastergui/templates/basebuilddetailpage.html  |  30 +-
 .../toastergui/templates/basebuildpage.html        |  93 ++--
 .../toastergui/templates/basetable_bottom.html     |  24 +-
 .../toastergui/templates/basetable_top.html        | 135 ++---
 .../toastergui/templates/builddashboard.html       | 131 +++--
 .../templates/buildinfo-toastertable.html          |   4 +-
 .../toastergui/templates/configuration.html        |  14 +-
 .../toaster/toastergui/templates/configvars.html   |  83 +--
 .../toaster/toastergui/templates/customrecipe.html |   2 +-
 .../templates/detail_pagination_bottom.html        |  24 +-
 .../toastergui/templates/detail_search_header.html |  58 +-
 .../toastergui/templates/detail_sorted_header.html |   8 +-
 .../lib/toaster/toastergui/templates/dirinfo.html  |  34 +-
 .../toastergui/templates/filtersnippet.html        |  40 +-
 .../templates/package_built_dependencies.html      |  12 +-
 .../toastergui/templates/package_built_detail.html |   8 +-
 .../toastergui/templates/package_detail_base.html  |  24 +-
 .../templates/package_included_dependencies.html   |   8 +-
 .../templates/package_included_tabs.html           |   8 +-
 .../lib/toaster/toastergui/templates/recipe.html   |  98 ++--
 .../toastergui/templates/recipe_packages.html      |  21 +-
 .../toastergui/templates/recipedetails.html        |   2 +-
 .../templates/snippets/gitrev_popover.html         |   2 +-
 .../snippets/pkg_dependencies_popover.html         |   2 +-
 .../snippets/pkg_revdependencies_popover.html      |   2 +-
 .../lib/toaster/toastergui/templates/target.html   |  10 +-
 bitbake/lib/toaster/toastergui/templates/task.html | 159 ++++--
 .../toastergui/templates/unavailable_artifact.html |  10 +-
 .../toaster/toastergui/templatetags/projecttags.py |  12 +-
 bitbake/lib/toaster/toastergui/views.py            |   1 -
 38 files changed, 748 insertions(+), 1121 deletions(-)
 delete mode 100644 bitbake/lib/toaster/toastergui/static/css/bootstrap-theme.css
 delete mode 100644 bitbake/lib/toaster/toastergui/static/css/bootstrap-theme.css.map
 delete mode 100644 bitbake/lib/toaster/toastergui/static/css/bootstrap-theme.min.css
 delete mode 100644 bitbake/lib/toaster/toastergui/static/css/bootstrap-theme.min.css.map

-- 
1.9.1



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

end of thread, other threads:[~2016-06-10 13:05 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-09 13:24 [PATCH 00/20] toaster: Move build information to Bootstrap 3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 01/20] toaster: build data Breadcrumbs to Bootstrap3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 02/20] toaster: build data Build dashboard to Bootstrap 3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 03/20] toaster: build data Left nav actions " Belen Barros Pena
2016-06-09 13:24 ` [PATCH 04/20] toaster: build data Packages installed " Belen Barros Pena
2016-06-10 11:18   ` Michael Wood
2016-06-10 11:21     ` Barros Pena, Belen
2016-06-09 13:24 ` [PATCH 05/20] toaster: build data Directory structure to Boostrap 3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 06/20] toaster: build data Configuration to Bootstrap 3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 07/20] toaster: build data Variables " Belen Barros Pena
2016-06-09 13:24 ` [PATCH 08/20] toaster: build data Tasks table " Belen Barros Pena
2016-06-10 11:53   ` Michael Wood
2016-06-09 13:24 ` [PATCH 09/20] toaster: build data Recipes " Belen Barros Pena
2016-06-09 13:24 ` [PATCH 10/20] toaster: build data Task details " Belen Barros Pena
2016-06-09 13:24 ` [PATCH 11/20] toaster: build data Recipe " Belen Barros Pena
2016-06-09 13:24 ` [PATCH 12/20] toaster: css Remove markup Belen Barros Pena
2016-06-10 13:05   ` Michael Wood
2016-06-09 13:24 ` [PATCH 13/20] toaster: build data Package details to Bootstrap 3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 14/20] toaster: build data Fix left navigation Belen Barros Pena
2016-06-09 13:24 ` [PATCH 15/20] toaster: build data Format empty state in packages table Belen Barros Pena
2016-06-09 13:24 ` [PATCH 16/20] toaster: build data Add css for highlight animation Belen Barros Pena
2016-06-09 13:24 ` [PATCH 17/20] toaster: task filters Remove invalid option Belen Barros Pena
2016-06-09 13:24 ` [PATCH 18/20] toaster: css Remove Bootstrap theme Belen Barros Pena
2016-06-09 13:24 ` [PATCH 19/20] toaster: build data Unavailable artifact to Bootstrap 3 Belen Barros Pena
2016-06-09 13:24 ` [PATCH 20/20] toaster: loading notification Make it spin Belen Barros Pena

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.