* [PATCH 00/14] toaster patchset for build functionality
@ 2014-11-12 13:41 Alex DAMIAN
2014-11-12 13:42 ` Damian, Alexandru
0 siblings, 1 reply; 2+ messages in thread
From: Alex DAMIAN @ 2014-11-12 13:41 UTC (permalink / raw)
To: bitbake-devel; +Cc: Alexandru DAMIAN
From: Alexandru DAMIAN <alexandru.damian@intel.com>
Hi,
This patchset contains user interface pages for all layers and all targets pages;
fixes for the project page and other pages; and fixes for the backend build functionality.
The patches have gone through multiple rounds of review and testing.
Can you please pull at your convenience ?
Cheers,
Alex
The following changes since commit 9f171ea755644ecd9d2b3d7ed13bf8ec09ec917a:
data_smart.py: fix variable splitting at _remove mechanism (2014-11-08 11:01:36 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib adamian/20141112-submission
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20141112-submission
Alexandru DAMIAN (10):
toaster script: webport option and other improvements
toasterui: performance improvements
toaster: SQL query logging
toaster: update Release model to pinpoint to specific Branch
adding angular-animate plugin
toastergui: Various fixes for projects, layers and targets page
toaster: separate the load configuration file command
toastergui: changes for the Project page, round 3 of reviews
toaster: importing angular service
toastergui: fix XSS injection points in projects page
Belen Barros (1):
toastergui: Silly UI fixes
Michael Wood (3):
toaster: Fix the table data so that it matches the column order
toaster: Update filter count labels when Add/Remove layers
toaster: Replace bootstrap js with the correct version
bin/toaster | 96 +-
lib/bb/ui/buildinfohelper.py | 207 +-
lib/bb/ui/toasterui.py | 10 +-
lib/toaster/bldcontrol/bbcontroller.py | 19 +
lib/toaster/bldcontrol/localhostbecontroller.py | 38 +-
.../management/commands/checksettings.py | 140 +-
.../bldcontrol/management/commands/loadconf.py | 157 +
lib/toaster/bldcontrol/models.py | 35 +-
lib/toaster/bldcontrol/sshbecontroller.py | 46 +-
lib/toaster/bldcontrol/tests.py | 2 +-
...lptext__chg_field_release_branch__add_index_.py | 359 +
lib/toaster/orm/models.py | 65 +-
lib/toaster/toastergui/static/css/default.css | 33 +-
.../toastergui/static/js/angular-animate.min.js | 28 +
.../toastergui/static/js/angular-route.min.js | 14 +
.../toastergui/static/js/angular-sanitize.min.js | 15 +
lib/toaster/toastergui/static/js/bootstrap.min.js | 11 +-
lib/toaster/toastergui/static/js/jquery-ui.js | 15003 -------------------
lib/toaster/toastergui/static/js/projectapp.js | 207 +-
lib/toaster/toastergui/templates/base.html | 3 +-
.../toastergui/templates/basetable_bottom.html | 13 +-
.../toastergui/templates/filtersnippet.html | 4 +-
lib/toaster/toastergui/templates/layers.html | 137 +-
lib/toaster/toastergui/templates/mrb_section.html | 11 +-
lib/toaster/toastergui/templates/project.html | 135 +-
lib/toaster/toastergui/templates/target.html | 10 +-
lib/toaster/toastergui/templates/targets.html | 350 +-
lib/toaster/toastergui/templatetags/projecttags.py | 6 +-
lib/toaster/toastergui/views.py | 228 +-
lib/toaster/toastermain/settings.py | 21 +
30 files changed, 1696 insertions(+), 15707 deletions(-)
create mode 100644 lib/toaster/bldcontrol/management/commands/loadconf.py
create mode 100644 lib/toaster/orm/migrations/0016_auto__add_field_release_helptext__chg_field_release_branch__add_index_.py
create mode 100644 lib/toaster/toastergui/static/js/angular-animate.min.js
create mode 100644 lib/toaster/toastergui/static/js/angular-route.min.js
create mode 100644 lib/toaster/toastergui/static/js/angular-sanitize.min.js
delete mode 100644 lib/toaster/toastergui/static/js/jquery-ui.js
--
1.9.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 00/14] toaster patchset for build functionality
2014-11-12 13:41 [PATCH 00/14] toaster patchset for build functionality Alex DAMIAN
@ 2014-11-12 13:42 ` Damian, Alexandru
0 siblings, 0 replies; 2+ messages in thread
From: Damian, Alexandru @ 2014-11-12 13:42 UTC (permalink / raw)
To: bitbake-devel; +Cc: Alexandru DAMIAN
[-- Attachment #1: Type: text/plain, Size: 4635 bytes --]
Hello,
Certain files in this patchset are breaking the 998 characters line length
limit , and git send-email refuses to deal with them.
Can you please pull from:
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20141112-submission
Cheers,
Alex
On Wed, Nov 12, 2014 at 1:41 PM, Alex DAMIAN <alexandru.damian@intel.com>
wrote:
> From: Alexandru DAMIAN <alexandru.damian@intel.com>
>
> Hi,
>
> This patchset contains user interface pages for all layers and all targets
> pages;
> fixes for the project page and other pages; and fixes for the backend
> build functionality.
>
> The patches have gone through multiple rounds of review and testing.
>
> Can you please pull at your convenience ?
>
>
> Cheers,
> Alex
>
> The following changes since commit
> 9f171ea755644ecd9d2b3d7ed13bf8ec09ec917a:
>
> data_smart.py: fix variable splitting at _remove mechanism (2014-11-08
> 11:01:36 +0000)
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib adamian/20141112-submission
>
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20141112-submission
>
> Alexandru DAMIAN (10):
> toaster script: webport option and other improvements
> toasterui: performance improvements
> toaster: SQL query logging
> toaster: update Release model to pinpoint to specific Branch
> adding angular-animate plugin
> toastergui: Various fixes for projects, layers and targets page
> toaster: separate the load configuration file command
> toastergui: changes for the Project page, round 3 of reviews
> toaster: importing angular service
> toastergui: fix XSS injection points in projects page
>
> Belen Barros (1):
> toastergui: Silly UI fixes
>
> Michael Wood (3):
> toaster: Fix the table data so that it matches the column order
> toaster: Update filter count labels when Add/Remove layers
> toaster: Replace bootstrap js with the correct version
>
> bin/toaster | 96 +-
> lib/bb/ui/buildinfohelper.py | 207 +-
> lib/bb/ui/toasterui.py | 10 +-
> lib/toaster/bldcontrol/bbcontroller.py | 19 +
> lib/toaster/bldcontrol/localhostbecontroller.py | 38 +-
> .../management/commands/checksettings.py | 140 +-
> .../bldcontrol/management/commands/loadconf.py | 157 +
> lib/toaster/bldcontrol/models.py | 35 +-
> lib/toaster/bldcontrol/sshbecontroller.py | 46 +-
> lib/toaster/bldcontrol/tests.py | 2 +-
> ...lptext__chg_field_release_branch__add_index_.py | 359 +
> lib/toaster/orm/models.py | 65 +-
> lib/toaster/toastergui/static/css/default.css | 33 +-
> .../toastergui/static/js/angular-animate.min.js | 28 +
> .../toastergui/static/js/angular-route.min.js | 14 +
> .../toastergui/static/js/angular-sanitize.min.js | 15 +
> lib/toaster/toastergui/static/js/bootstrap.min.js | 11 +-
> lib/toaster/toastergui/static/js/jquery-ui.js | 15003
> -------------------
> lib/toaster/toastergui/static/js/projectapp.js | 207 +-
> lib/toaster/toastergui/templates/base.html | 3 +-
> .../toastergui/templates/basetable_bottom.html | 13 +-
> .../toastergui/templates/filtersnippet.html | 4 +-
> lib/toaster/toastergui/templates/layers.html | 137 +-
> lib/toaster/toastergui/templates/mrb_section.html | 11 +-
> lib/toaster/toastergui/templates/project.html | 135 +-
> lib/toaster/toastergui/templates/target.html | 10 +-
> lib/toaster/toastergui/templates/targets.html | 350 +-
> lib/toaster/toastergui/templatetags/projecttags.py | 6 +-
> lib/toaster/toastergui/views.py | 228 +-
> lib/toaster/toastermain/settings.py | 21 +
> 30 files changed, 1696 insertions(+), 15707 deletions(-)
> create mode 100644 lib/toaster/bldcontrol/management/commands/loadconf.py
> create mode 100644
> lib/toaster/orm/migrations/0016_auto__add_field_release_helptext__chg_field_release_branch__add_index_.py
> create mode 100644 lib/toaster/toastergui/static/js/angular-animate.min.js
> create mode 100644 lib/toaster/toastergui/static/js/angular-route.min.js
> create mode 100644
> lib/toaster/toastergui/static/js/angular-sanitize.min.js
> delete mode 100644 lib/toaster/toastergui/static/js/jquery-ui.js
>
> --
> 1.9.1
>
>
--
Alex Damian
Yocto Project
SSG / OTC
[-- Attachment #2: Type: text/html, Size: 6101 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-11-12 13:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-12 13:41 [PATCH 00/14] toaster patchset for build functionality Alex DAMIAN
2014-11-12 13:42 ` 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.