diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-11 21:33:22 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-11 21:33:22 +0100 |
commit | 093285a1eb853d6a55cf062ba1e44c5eb1295a7e (patch) | |
tree | 097103d0e7671b87f36700de78fe7f214a47da2f | |
parent | e545a699c0569f26905e65823ef912c642227e70 (diff) | |
download | jenkins.debian.net-093285a1eb853d6a55cf062ba1e44c5eb1295a7e.tar.xz |
reproducible: fix status links to point to them in the right suite
-rwxr-xr-x | bin/reproducible_html_packages.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 80e66ff3..67a0c7d2 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -88,15 +88,15 @@ def check_package_status(package, suite, nocheck=False): return (status, version, build_date) -def gen_status_link_icon(status, icon): +def gen_status_link_icon(status, icon, suite, arch): html = '' if status != 'untested': - html += tab*6 + '<a href="/index_{status}.html" target="_parent" ' + \ - 'title="{status}">\n' + html += tab*6 + '<a href="/{suite}/{arch}/index_{status}.html"' + \ + ' target="_parent" title="{status}">\n' html += tab*9 + '<img src="/static/{icon}" alt="{status}" />\n' if status != 'untested': html += tab*8 + '</a>\n' - return html.format(status=status, icon=icon) + return html.format(status=status, icon=icon, suite=suite, arch=arch) def gen_extra_links(package, version, suite, arch): @@ -200,7 +200,7 @@ def gen_packages_html(packages, suite=None, arch=None, no_clean=False, nocheck=F links, default_view = gen_extra_links(pkg, version, suite, arch) suites_links = gen_suites_links(pkg, suite) status, icon = join_status_icon(status, pkg, version) - status = gen_status_link_icon(status, icon) + status = gen_status_link_icon(status, icon, suite, arch) html = html_package_page.substitute(package=pkg, status=status, |