diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-25 16:30:08 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-25 16:30:08 +0200 |
commit | 7ebe29c3ed6c4096f0d202fbc991dd1000bd24fd (patch) | |
tree | 7b9b5dc9bc423475cd9c61966d3a5477bf64929f /bin | |
parent | 23743c860ba7636ca657dce49aa5337a60c4e32e (diff) | |
download | jenkins.debian.net-7ebe29c3ed6c4096f0d202fbc991dd1000bd24fd.tar.xz |
reproducible: include the the package version in the suite links
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 8eba0306..706f790d 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -186,8 +186,8 @@ def gen_suites_links(package, current_arch): icon = prefix + '<img src="/static/{icon}" alt="{status}" title="{status}"/>' + suffix html += icon.format(icon=join_status_icon(status)[1], status=status) html += (tab*2 + ' <a href="{}/{}/{}/{}.html" target="_parent"' + \ - ' title="{}: {}">{}</a></li>\n').format(RB_PKG_URI, - s, a, package.name, status, version, s) + ' title="{}: {}">{} in {}</a></li>\n').format(RB_PKG_URI, + s, a, package.name, status, version, version, s) html += '</span>\n' html += tab + '</ul></li>' html += '</ul>\n' |