summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 8e90feb7..c6cdde80 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -296,8 +296,14 @@ def index_issues(issues):
+ tab*3 + "Affected packages\n" + tab*2 + "</th>\n" + tab + "</tr>\n"
html = (tab*2).join(templ.splitlines(True))
for issue in sorted(issues):
- html += tab*3 + '<tr><td><a href="' + ISSUES_URI + '/' + issue + \
- '_issue.html">' + issue + '</a></td><td>' + issues_count[issue] + '</td></tr>\n'
+ html += tab*3 + '<tr>\n'
+ html += tab*4 + '<td><a href="' + ISSUES_URI + '/' + issue + \
+ '_issue.html">' + issue + '</a></td>\n'
+ html += tab*4 + '<td>\n'
+ html += tab*5 + '<b>' + str(len(issues_count[issue])) + '</b>:\n'
+ html += tab*5 + ', '.join(issues_count[issue]) + '\n'
+ html += tab*4 + '</td>\n'
+ html += tab*3 + '</tr>\n'
html += tab*2 + '</table>\n'
html += tab*2 + '<p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git">notes.git</a>.</p>'
title = 'Overview of known issues related to reproducible builds'