GitLogParser.js
[gitlive] / GitLogParser.js
index 3431b8c..e50b44f 100644 (file)
@@ -197,8 +197,8 @@ GitLogParser = {
         // for who thoug...
         'Mailfort' : [ /web.FlexySpam/ ],
         
-        'COBA'  : [/Veridate Financial/, /web\.coba/, /COBA/ ],
-        
+        'COBA'  : [/Veridate/, /web\.coba/, /COBA/ ,/Pipeline - DS view/ ],
+        'Regulation Asia' : [/Regulation Asia/, /comocracy/],
         'Unknown Project' : [ /PAC/ , /Guake/ , /WhatsApp/ ],
         'Admin Work' : [ /roojs.com\/admin/, /RooJSolutions Management Portal/ ]
             
@@ -332,7 +332,7 @@ for (var h in GitLogParser.shours) {
     hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 });
     print("\n\n" + h+': Total (' + htot +')');
     hsum.forEach(function(r) {
-        var pr = GitLogParser.match_project(r.desc) == "Unknown" ? '??? - ' : '';
+        var pr = r.desc.match(/IDLE/) ? '' : (GitLogParser.match_project(r.desc) == "Unknown" ? '??? - ' : '');
         
         print ("  " + r.tot + "   : " + pr +   r.desc);
     });