GitLogParser.js
[gitlive] / GitLogParser.js
index 9f7f04d..70a41f6 100644 (file)
@@ -258,7 +258,7 @@ for (var h in res) {
         
         //print(h + ' ' + Math.floor(res[h][p].total/60000) +'m ' + p );  
         totals.work += Math.floor(res[h][p].total/60000) ;
-        
+        var unknown = [];
         if (h == -1) {
             
             print( "\n" + p + ':' + Math.floor(res[h][p].total/60000) + 'm');
@@ -269,6 +269,13 @@ for (var h in res) {
                      
                     print( '     ' + Math.floor(res[h][p].items[k]/60000) +'m ' + k );
                          
+                }
+            } else {
+                
+                for (var k in res[h][p].items) {
+                    unknown.push({ desc : k , tot : (res[h][p].items[k]/60000).toFixed(2)*1 }) ;
+                    
+                         
                 }
             }
         }
@@ -301,13 +308,10 @@ for (var h in GitLogParser.shours) {
 }
 print("\n\n" + h+': Totals (' + htot +')');
  
-var hsum = [];
-for (var desc in totals) {    
-    hsum.push({ desc : desc, tot : totals[desc] });
-}
-hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 });
-print("\n\nDay Total");
-hsum.forEach(function(r) {
+unknown.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 });
+print("\n\nUnclassified");
+unknown.forEach(function(r) {
     print ("  " + (r.tot.toFixed(2)*1) + "   : " + r.desc);
 });