GitLogParser.js
[gitlive] / GitLogParser.js
index d29a33a..de22d57 100644 (file)
@@ -6,7 +6,8 @@ xDate = imports.Date;
 
 
 
-GitLogParser = { 
+GitLogParser = {
+    shours : false,
 
     parse : function(date)
     {
@@ -74,10 +75,12 @@ GitLogParser = {
             hours[hour][project].total += line.span;
             hours[hour][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;
             
         }
+        this.shours = shours;
         return hours;
 
     },