summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_live_status.py
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2016-08-02 18:36:51 -0400
committerHolger Levsen <holger@layer-acht.org>2016-08-03 00:40:24 +0200
commitb8bc3d3d2bd2b730871f537b8d78a6dae937249a (patch)
treeb51b0b70cd7cf61bd009d66b91c77293f54d9b52 /bin/reproducible_html_live_status.py
parente6d345ae0845d12d5ec07e8fb3a7c7f19e3e5ed1 (diff)
downloadjenkins.debian.net-b8bc3d3d2bd2b730871f537b8d78a6dae937249a.tar.xz
reproducible debian: add cross suite/arch nav for scheduled and maintainers
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-xbin/reproducible_html_live_status.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py
index f10c2151..6db9aa7d 100755
--- a/bin/reproducible_html_live_status.py
+++ b/bin/reproducible_html_live_status.py
@@ -52,8 +52,9 @@ def generate_schedule(arch):
html += '</table></p>\n'
destfile = DEBIAN_BASE + '/index_' + arch + '_scheduled.html'
desturl = DEBIAN_URL + '/index_' + arch + '_scheduled.html'
- left_nav_html = create_main_navigation(arch=arch,
- displayed_page='scheduled')
+ suite_arch_nav_template = DEBIAN_URI + '/index_{{arch}}_scheduled.html'
+ left_nav_html = create_main_navigation(arch=arch, no_suite=True,
+ displayed_page='scheduled', suite_arch_nav_template=suite_arch_nav_template)
write_html_page(title=title, body=html, destfile=destfile, style_note=True,
refresh_every=60, left_nav_html=left_nav_html)
log.info("Page generated at " + desturl)