GitLogParser.js
authorAlan Knowles <alan@roojs.com>
Mon, 3 Apr 2017 04:24:23 +0000 (12:24 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 3 Apr 2017 04:24:23 +0000 (12:24 +0800)
GitLogParser.js

index 4f7b635..2976b7e 100644 (file)
@@ -82,6 +82,14 @@ GitLogParser = {
             hours[hour][project].total += line.span;
             hours[hour][project].items.push(line);
             
+            hours[-1] = (typeof(hours[-1]) == 'undefined') ? {} : hours[-1];
+            hours[-1][project] = (typeof(hours[-1][project]) == 'undefined') ? 
+                    { total : 0, items : [] } 
+                    : hours[hour][project];
+            
+            hours[-1][project].total += line.span;
+            hours[-1][project].items.push(line);
+            
             shours[hour] = (typeof(shours[hour]) == 'undefined') ? {} : shours[hour];
             shours[hour][line.desc] = (typeof(shours[hour][line.desc] ) == 'undefined') ? 0 : shours[hour][line.desc] ;
             shours[hour][line.desc] += line.span;