GitLogParser.js
authorAlan Knowles <alan@roojs.com>
Wed, 2 Jan 2013 06:24:13 +0000 (14:24 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 2 Jan 2013 06:24:13 +0000 (14:24 +0800)
GitLogParser.js

index a781548..87ecdf8 100644 (file)
@@ -223,7 +223,21 @@ for (var h in res) {
     }
     
 }
-print(JSON.stringify(GitLogParser.shours,null,4));
+for (var h in GitLogParser.shours) {
+    var hsum = [];
+    for (var desc in GitLogParser.shours[h]) {
+        hsum.push({ desc : desc, tot : (GitLogParser.shours[h][desc]/60000).toFixed(2)*1 })
+    }
+    hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot > b.tot ? 1 : -1 });
+    print(h+':');
+    hsum.forEach(function(r) {
+        print ("  " + r.tot + "   : " + r.desc);
+    }
+}
+
+
+
+//print(JSON.stringify(GitLogParser.shours,null,4));