From: Alan Knowles Date: Mon, 3 Apr 2017 04:39:54 +0000 (+0800) Subject: GitLogParser.js X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=0d2b0a56004b5e6bdf2237ff9e2fb926d653bf78 GitLogParser.js --- diff --git a/GitLogParser.js b/GitLogParser.js index 9f7f04d9..cc3b1839 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -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 }) ; + + } } }