You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2018/02/16 19:31:08 UTC

[kibble] branch master updated (1b05489 -> 26222db)

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git.


    from 1b05489  decimal point in wait time (x.y hours)
     new 786c99e  fix 'other jobs' count
     new 26222db  expand donuts to 25 objects by default

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 api/pages/ci/top-buildtime.py    | 4 ++--
 ui/js/coffee/widget_donut.coffee | 2 +-
 ui/js/kibble.v1.js               | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
humbedooh@apache.org.

[kibble] 02/02: expand donuts to 25 objects by default

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 26222db71cec00f1df252dfd315c0a070389f8b0
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Feb 16 20:30:58 2018 +0100

    expand donuts to 25 objects by default
---
 ui/js/coffee/widget_donut.coffee | 2 +-
 ui/js/kibble.v1.js               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/js/coffee/widget_donut.coffee b/ui/js/coffee/widget_donut.coffee
index 5561070..542e840 100644
--- a/ui/js/coffee/widget_donut.coffee
+++ b/ui/js/coffee/widget_donut.coffee
@@ -76,6 +76,6 @@ donut = (json, state) ->
         data[el.name] = el.value
     div = new HTML('div')
     state.widget.inject(div, true)
-    chartBox = new Chart(div, 'donut', data, 15)
+    chartBox = new Chart(div, 'donut', data, 25)
     
       
\ No newline at end of file
diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index 1720360..44bc59c 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -5854,7 +5854,7 @@ donut = function(json, state) {
   }
   div = new HTML('div');
   state.widget.inject(div, true);
-  return chartBox = new Chart(div, 'donut', data, 15);
+  return chartBox = new Chart(div, 'donut', data, 25);
 };
 
 factors = function(json, state) {

-- 
To stop receiving notification emails like this one, please contact
humbedooh@apache.org.

[kibble] 01/02: fix 'other jobs' count

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 786c99edfd7c643874e378552454d1ac35b46c60
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Feb 16 20:30:47 2018 +0100

    fix 'other jobs' count
---
 api/pages/ci/top-buildtime.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/api/pages/ci/top-buildtime.py b/api/pages/ci/top-buildtime.py
index 8b88173..6aded75 100644
--- a/api/pages/ci/top-buildtime.py
+++ b/api/pages/ci/top-buildtime.py
@@ -167,9 +167,9 @@ def run(API, environ, indata, session):
     top = topjobs[0:24]
     if len(topjobs) > 25:
         count = 0
-        for repo in topjobs[25:]:
+        for repo in topjobs[24:]:
             count += repo[1]
-        top.append(["Other jobs", 1, count, '??'])
+        top.append([1, count, "Other jobs", '??'])
     
     tophash = {}
     for v in top:

-- 
To stop receiving notification emails like this one, please contact
humbedooh@apache.org.