|
|
@@ -827,7 +827,7 @@ class HTMLReportCreator(ReportCreator):
|
|
827
|
827
|
f.write('<dt>Average commits per tag</dt><dd>%.2f</dd>' % (1.0 * data.getTotalCommits() / len(data.tags)))
|
|
828
|
828
|
f.write('</dl>')
|
|
829
|
829
|
|
|
830
|
|
- f.write('<table>')
|
|
|
830
|
+ f.write('<table class="tags">')
|
|
831
|
831
|
f.write('<tr><th>Name</th><th>Date</th><th>Commits</th><th>Authors</th></tr>')
|
|
832
|
832
|
# sort the tags by date desc
|
|
833
|
833
|
tags_sorted_by_date_desc = map(lambda el : el[1], reversed(sorted(map(lambda el : (el[1]['date'], el[0]), data.tags.items()))))
|