GitLogParser.js
[gitlive] / GitLogParser.js
index 9f7f04d..cc3b183 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 }) ;
+                    
+                         
                 }
             }
         }