sync
[gitlive] / GitLogParser.js
index 27d8bbe..8c13ff4 100644 (file)
@@ -196,15 +196,32 @@ GitLogParser = {
         'RIS' : [ /Project web.Ris/ , /RIS HK/ , /Hydra/, /hydrajobs/ ],
         // for who thoug...
         'Mailfort' : [ /web.FlexySpam/ ],
+        'Emily' : [ /greengarden/ ,/Inventory \| Warehouse/, /Emily/ ],
+        'GPUK' : [/gp-wordpress/, /Greenpeace UK/], 
         
-        'COBA'  : [/Veridate Financial/, /web\.coba/, /COBA/ ],
-        
-        'Unknown Project' : [ /PAC/ , /Guake/ , /WhatsApp/ ],
+        'COBA'  : [/Veridate/, /web\.coba/, /COBA/ ,/Pipeline - DS view/, /Coba/, /Pman.BAdmin/ , /SoapUI/ ],
+        'Regulation Asia' : [/Regulation Asia/, /comocracy/],
+        'Unknown Project' : [ /PAC/ , /Guake/ , /WhatsApp/ ,/Mozilla Thunderbird/],
         'Admin Work' : [ /roojs.com\/admin/, /RooJSolutions Management Portal/ ]
             
          
     },
     
+    match_project : function(line) {
+        for(var proj in this.regexes) {
+            for(var r in this.regexes[proj]) {
+                if (line.match(this.regexes[proj][r])) {
+                    //print("Match " + proj + " on " + r + ret.line + )
+                    return  proj;
+
+                }
+            }
+            
+        }
+        return "Unknown";
+    },
+    
+    
     '/usr/bin/perl' : function(ret) {
         if (ret.title.match(/^PAC/)) {
             ret.project = 'Unknown';
@@ -281,7 +298,7 @@ for (var h in res) {
         
                 for (var k in res[h][p].items) {
                      
-                    print( '     ' + Math.floor(res[h][p].items[k]/60000) +'m ' + k );
+                    print( '     ' +   Math.floor(res[h][p].items[k]/60000) +'m ' + k );
                          
                 }
             } else {
@@ -317,7 +334,9 @@ 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) {
-        print ("  " + r.tot + "   : " + (r.project == "Unknown" ? "???" : '') +   r.desc);
+        var pr = r.desc.match(/IDLE/) ? '' : (GitLogParser.match_project(r.desc) == "Unknown" ? '??? - ' : '');
+        
+        print ("  " + r.tot + "   : " + pr +   r.desc);
     });
 }