summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-11 21:33:22 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-11 21:33:22 +0100
commit093285a1eb853d6a55cf062ba1e44c5eb1295a7e (patch)
tree097103d0e7671b87f36700de78fe7f214a47da2f /bin
parente545a699c0569f26905e65823ef912c642227e70 (diff)
downloadjenkins.debian.net-093285a1eb853d6a55cf062ba1e44c5eb1295a7e.tar.xz
reproducible: fix status links to point to them in the right suite
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_packages.py10
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,