All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] toaster patchset
@ 2015-05-01 16:40 ` Alex DAMIAN
  2015-05-01 16:40   ` [PATCH 7/7] toaster: filtersnippet remove redefinition of filter type key Alex DAMIAN
  2015-05-06 16:18   ` [PATCH 0/7] toaster patchset Damian, Alexandru
  0 siblings, 2 replies; 3+ messages in thread
From: Alex DAMIAN @ 2015-05-01 16:40 UTC (permalink / raw)
  To: bitbake-devel

From: Alexandru DAMIAN <alexandru.damian@intel.com>

Hello,

This is a toaster patchset adding UI and build logger fixes.

Cheers,
Alex

The following changes since commit f8590547a198a78334debdf14bf40acb50c22ecc:

  bitbake: reset build mtime cache before the build (2015-04-28 22:28:45 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib adamian/20150501-submission-bb
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20150501-submission-bb

Alexandru DAMIAN (2):
  toasterui: proper exit code on toaster errors
  toasterui: close build on BuildCompleted event

Michael Wood (5):
  toaster: Move project context variables to common scope
  toaster: projectapp Implement machine select command
  toaster: Refactor and expand layer add remove mechanism
  toaster: Add links to the layer add notification
  toaster: filtersnippet remove redefinition of filter type key

 bin/toaster-eventreplay                            |  13 +-
 lib/bb/ui/buildinfohelper.py                       |   5 +-
 lib/bb/ui/toasterui.py                             |  45 +++--
 lib/toaster/orm/views.py                           |   8 +-
 lib/toaster/toastergui/static/css/default.css      |   2 +-
 .../toastergui/static/html/layer_deps_modal.html   |  17 ++
 lib/toaster/toastergui/static/js/base.js           |  39 ++--
 lib/toaster/toastergui/static/js/filtersnippet.js  |   3 +-
 lib/toaster/toastergui/static/js/importlayer.js    |  20 +-
 lib/toaster/toastergui/static/js/layerBtn.js       |  63 ++++++
 lib/toaster/toastergui/static/js/layerDepsModal.js |  90 +++++++++
 lib/toaster/toastergui/static/js/layerdetails.js   |  99 ++-------
 lib/toaster/toastergui/static/js/libtoaster.js     |  96 ++++++++-
 lib/toaster/toastergui/static/js/machines.js       |  97 ---------
 lib/toaster/toastergui/static/js/projectapp.js     |  31 ++-
 lib/toaster/toastergui/templates/base.html         |  19 +-
 lib/toaster/toastergui/templates/importlayer.html  |   6 +-
 lib/toaster/toastergui/templates/layerdetails.html |   9 +-
 lib/toaster/toastergui/templates/layers.html       | 223 +++------------------
 .../toastergui/templates/layers_dep_modal.html     |  99 ---------
 lib/toaster/toastergui/templates/machines.html     |  36 ++--
 lib/toaster/toastergui/templates/targets.html      | 220 ++++----------------
 lib/toaster/toastergui/views.py                    |   2 +-
 23 files changed, 471 insertions(+), 771 deletions(-)
 create mode 100644 lib/toaster/toastergui/static/html/layer_deps_modal.html
 create mode 100644 lib/toaster/toastergui/static/js/layerBtn.js
 create mode 100644 lib/toaster/toastergui/static/js/layerDepsModal.js
 delete mode 100644 lib/toaster/toastergui/static/js/machines.js
 delete mode 100644 lib/toaster/toastergui/templates/layers_dep_modal.html

-- 
1.9.1



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

* [PATCH 7/7] toaster: filtersnippet remove redefinition of filter type key
  2015-05-01 16:40 ` [PATCH 0/7] toaster patchset Alex DAMIAN
@ 2015-05-01 16:40   ` Alex DAMIAN
  2015-05-06 16:18   ` [PATCH 0/7] toaster patchset Damian, Alexandru
  1 sibling, 0 replies; 3+ messages in thread
From: Alex DAMIAN @ 2015-05-01 16:40 UTC (permalink / raw)
  To: bitbake-devel

From: Michael Wood <michael.g.wood@intel.com>

This redefinition is not needed and also used Mozilla specific API to
access the data thus breaking the date filter in all other browsers.

[YOCTO #7577]

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
---
 lib/toaster/toastergui/static/js/filtersnippet.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/toaster/toastergui/static/js/filtersnippet.js b/lib/toaster/toastergui/static/js/filtersnippet.js
index 27b057e..2b84c54 100755
--- a/lib/toaster/toastergui/static/js/filtersnippet.js
+++ b/lib/toaster/toastergui/static/js/filtersnippet.js
@@ -80,8 +80,7 @@ function date_init (key, from_date, to_date, min_date, max_date, initial_enable)
     $("form").unbind('submit');
     $("form").submit(function(e) {
         // format a composite daterange filter value so that it can be parsed and post-processed in the view
-        var key=e.originalEvent.explicitOriginalTarget.getAttribute("data-key")
-        if (typeof key != "undefined") {
+        if (key !== undefined) {
             if ($("#date_from_"+key).length) {
                 var filter=key+"__gte!"+key+"__lt:"+$("#date_from_"+key).val()+"!"+$("#date_to_"+key).val()+"_daterange";
                 $("#last_date_from_"+key).val($("#date_from_"+key).val());
-- 
1.9.1



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

* Re: [PATCH 0/7] toaster patchset
  2015-05-01 16:40 ` [PATCH 0/7] toaster patchset Alex DAMIAN
  2015-05-01 16:40   ` [PATCH 7/7] toaster: filtersnippet remove redefinition of filter type key Alex DAMIAN
@ 2015-05-06 16:18   ` Damian, Alexandru
  1 sibling, 0 replies; 3+ messages in thread
From: Damian, Alexandru @ 2015-05-06 16:18 UTC (permalink / raw)
  To: bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 3307 bytes --]

Hello,

I've just noticed that the patch email never arrived, not sure why.

Can you please pull from the contrib branch ?

Thank you,
Alex

On Fri, May 1, 2015 at 5:40 PM, Alex DAMIAN <alexandru.damian@intel.com>
wrote:

> From: Alexandru DAMIAN <alexandru.damian@intel.com>
>
> Hello,
>
> This is a toaster patchset adding UI and build logger fixes.
>
> Cheers,
> Alex
>
> The following changes since commit
> f8590547a198a78334debdf14bf40acb50c22ecc:
>
>   bitbake: reset build mtime cache before the build (2015-04-28 22:28:45
> +0100)
>
> are available in the git repository at:
>
>   git://git.yoctoproject.org/poky-contrib adamian/20150501-submission-bb
>
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20150501-submission-bb
>
> Alexandru DAMIAN (2):
>   toasterui: proper exit code on toaster errors
>   toasterui: close build on BuildCompleted event
>
> Michael Wood (5):
>   toaster: Move project context variables to common scope
>   toaster: projectapp Implement machine select command
>   toaster: Refactor and expand layer add remove mechanism
>   toaster: Add links to the layer add notification
>   toaster: filtersnippet remove redefinition of filter type key
>
>  bin/toaster-eventreplay                            |  13 +-
>  lib/bb/ui/buildinfohelper.py                       |   5 +-
>  lib/bb/ui/toasterui.py                             |  45 +++--
>  lib/toaster/orm/views.py                           |   8 +-
>  lib/toaster/toastergui/static/css/default.css      |   2 +-
>  .../toastergui/static/html/layer_deps_modal.html   |  17 ++
>  lib/toaster/toastergui/static/js/base.js           |  39 ++--
>  lib/toaster/toastergui/static/js/filtersnippet.js  |   3 +-
>  lib/toaster/toastergui/static/js/importlayer.js    |  20 +-
>  lib/toaster/toastergui/static/js/layerBtn.js       |  63 ++++++
>  lib/toaster/toastergui/static/js/layerDepsModal.js |  90 +++++++++
>  lib/toaster/toastergui/static/js/layerdetails.js   |  99 ++-------
>  lib/toaster/toastergui/static/js/libtoaster.js     |  96 ++++++++-
>  lib/toaster/toastergui/static/js/machines.js       |  97 ---------
>  lib/toaster/toastergui/static/js/projectapp.js     |  31 ++-
>  lib/toaster/toastergui/templates/base.html         |  19 +-
>  lib/toaster/toastergui/templates/importlayer.html  |   6 +-
>  lib/toaster/toastergui/templates/layerdetails.html |   9 +-
>  lib/toaster/toastergui/templates/layers.html       | 223
> +++------------------
>  .../toastergui/templates/layers_dep_modal.html     |  99 ---------
>  lib/toaster/toastergui/templates/machines.html     |  36 ++--
>  lib/toaster/toastergui/templates/targets.html      | 220
> ++++----------------
>  lib/toaster/toastergui/views.py                    |   2 +-
>  23 files changed, 471 insertions(+), 771 deletions(-)
>  create mode 100644
> lib/toaster/toastergui/static/html/layer_deps_modal.html
>  create mode 100644 lib/toaster/toastergui/static/js/layerBtn.js
>  create mode 100644 lib/toaster/toastergui/static/js/layerDepsModal.js
>  delete mode 100644 lib/toaster/toastergui/static/js/machines.js
>  delete mode 100644 lib/toaster/toastergui/templates/layers_dep_modal.html
>
> --
> 1.9.1
>
>


-- 
Alex Damian
Yocto Project
SSG / OTC

[-- Attachment #2: Type: text/html, Size: 4880 bytes --]

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

end of thread, other threads:[~2015-05-06 16:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1ddd6a9e4280a4adf971132ff1fe7ec9b3252905.1430498382.git.alexandru.damian@intel.com>
2015-05-01 16:40 ` [PATCH 0/7] toaster patchset Alex DAMIAN
2015-05-01 16:40   ` [PATCH 7/7] toaster: filtersnippet remove redefinition of filter type key Alex DAMIAN
2015-05-06 16:18   ` [PATCH 0/7] toaster patchset 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.