diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-06-15 12:08:37 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-15 12:08:37 +0200 |
commit | d2b3bd554a26a495edb7954bcb992d8845c1d227 (patch) | |
tree | 993e961f6a15dc7c9925a565fef115ef34cbcdcd | |
parent | 5e4ed9c93288b0e9164632db99c58d1fe5725895 (diff) | |
download | jenkins.debian.net-d2b3bd554a26a495edb7954bcb992d8845c1d227.tar.xz |
reproducible debian: explain it's the 1/4 most popular within the issue
-rwxr-xr-x | bin/reproducible_html_notes.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index db55e2da..94a68143 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -146,7 +146,8 @@ issue_html = Template((tab*3).join(""" </tr> <tr> <td> - Packages in '$suite' known to be affected by this issue: + Packages in '$suite' known to be affected by this issue:<br /> + (the 1/4 most-popular ones (within this issue) are underlined) </td> <td class="left"> $affected_pkgs @@ -416,7 +417,7 @@ def index_issues(issues, scorefuncs): tab*3 + k + "\n" + tab*2 + "</th>\n" + tab*2 + "<th>\n" for k in scorefuncs.keys()) \ + tab*3 + "Affected packages<br/>\n" \ - + tab*3 + "(the 1/4 most-popular are underlined)\n" \ + + tab*3 + "(the 1/4 most-popular ones (within the issue) are underlined)\n" \ + tab*2 + "</th>\n" + tab + "</tr>\n" html = (tab*2).join(templ.splitlines(True)) for issue in sorted(issues, key=lambda issue: sort_issues(firstscorefunc, issue)): |