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 2017/11/27 15:10:55 UTC

[kibble] branch master updated (06aab43 -> 303ad4c)

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 06aab43  trying another happiness formula
     new b9aa7a8  mail can also be specific scanner
     new 303ad4c  regen JS

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:
 ui/js/coffee/sources.coffee |  2 +-
 ui/js/kibble.v1.js          | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@kibble.apache.org" <co...@kibble.apache.org>'].

[kibble] 02/02: regen JS

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 303ad4c38ac84a20f467164a119eca05173b4805
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Nov 27 16:10:46 2017 +0100

    regen JS
---
 ui/js/kibble.v1.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index 42ab104..3a97a90 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -4070,7 +4070,7 @@ getSourceType = function(main, t) {
 };
 
 sourcelist = function(json, state) {
-  var aa, ab, act, borked, cl, color, d, dbtn, desc, div, el, firstRun, h, ic, icons, img, item, lastException, lastFailure, lastUpdate, len, len1, len2, len3, lu, m, q, ref, ref1, ref2, ref3, ref4, retval, running, slist, source, sources, st, status, steps, t, tbody, u, vlist;
+  var aa, ab, act, borked, cl, color, d, dbtn, desc, div, el, firstRun, h, ic, icons, img, item, lastException, lastFailure, lastUpdate, len, len1, len2, len3, lu, m, q, ref, ref1, ref2, ref3, ref4, ref5, retval, running, slist, source, sources, st, status, steps, t, tbody, u, vlist;
   slist = mk('div');
   vlist = new HTML('div');
   if (json.sources) {
@@ -4140,16 +4140,16 @@ sourcelist = function(json, state) {
       });
       borked = false;
       steps = ['sync', 'census', 'count', 'evolution'];
-      if (source.type === 'mail') {
+      if ((ref2 = source.type) === 'mail' || ref2 === 'ponymail' || ref2 === 'pipermail' || ref2 === 'hyperkitty') {
         steps = ['mail'];
       }
-      if ((ref2 = source.type) === 'jira' || ref2 === 'bugzilla') {
+      if ((ref3 = source.type) === 'jira' || ref3 === 'bugzilla') {
         steps = ['issues'];
       }
-      if ((ref3 = source.type) === 'gerrit' || ref3 === 'gitlab' || ref3 === 'github') {
+      if ((ref4 = source.type) === 'gerrit' || ref4 === 'gitlab' || ref4 === 'github') {
         steps = ['sync', 'census', 'count', 'evolution', 'issues'];
       }
-      if ((ref4 = source.type) === 'irc' || ref4 === 'stats') {
+      if ((ref5 = source.type) === 'irc' || ref5 === 'stats') {
         steps = ['census'];
       }
       for (ab = 0, len3 = steps.length; ab < len3; ab++) {

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.

[kibble] 01/02: mail can also be specific scanner

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 b9aa7a844de465711e5c245c46eba3af70140cf0
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Nov 27 16:10:39 2017 +0100

    mail can also be specific scanner
    
    so..add aliases for ponymail, pipermail, hyperkitty
---
 ui/js/coffee/sources.coffee | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/js/coffee/sources.coffee b/ui/js/coffee/sources.coffee
index 4affa7c..5cde2e1 100644
--- a/ui/js/coffee/sources.coffee
+++ b/ui/js/coffee/sources.coffee
@@ -162,7 +162,7 @@ sourcelist = (json, state) ->
         
             borked = false
             steps = ['sync', 'census', 'count', 'evolution']
-            if source.type == 'mail'
+            if source.type in ['mail', 'ponymail', 'pipermail', 'hyperkitty']
                 steps = ['mail']
             if source.type in ['jira', 'bugzilla']
                 steps = ['issues']

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.