|
|
@@ -878,8 +878,8 @@ class HTMLReportCreator(ReportCreator):
|
|
878
|
878
|
|
|
879
|
879
|
# Day of Week
|
|
880
|
880
|
|
|
881
|
|
- writeHeaderstoNewTSV(path + "day_of_week_TEST.tsv", ['day_number','day_name','commits'])
|
|
882
|
|
- day_of_week_tsv=open(path + "day_of_week_TEST.tsv", "a+")
|
|
|
881
|
+ writeHeaderstoNewTSV(path + "/day_of_week_TEST.tsv", ['day_number','day_name','commits'])
|
|
|
882
|
+ day_of_week_tsv=open(path + "/day_of_week_TEST.tsv", "a+")
|
|
883
|
883
|
|
|
884
|
884
|
f.write(html_header(2, 'Day of Week'))
|
|
885
|
885
|
day_of_week = data.getActivityByDayOfWeek()
|
|
|
@@ -1000,7 +1000,7 @@ class HTMLReportCreator(ReportCreator):
|
|
1000
|
1000
|
|
|
1001
|
1001
|
# Authors :: List of authors
|
|
1002
|
1002
|
f.write(html_header(2, 'List of Authors'))
|
|
1003
|
|
- authors_file= open(path + "/authors.tsv","w")
|
|
|
1003
|
+ authors_file= open(path + "/authors.tsv","w")
|
|
1004
|
1004
|
|
|
1005
|
1005
|
f.write('<table class="authors sortable" id="authors">')
|
|
1006
|
1006
|
f.write('<tr><th>Author</th><th>Commits (%)</th><th>+ lines</th><th>- lines</th><th>First commit</th><th>Last commit</th><th class="unsortable">Age</th><th>Active days</th><th># by commits</th></tr>')
|