From 8245ad59be91a47422b84e59cb4d40d14536c255 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Sat, 7 Mar 2015 11:16:37 +0100 Subject: reproducible: html_packages: generate the status icon/link instead of templating them, to avoid linking untested packages --- bin/reproducible_html_packages.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'bin/reproducible_html_packages.py') diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index c3671a48..d09468c7 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -16,9 +16,7 @@ html_package_page = Template((tab*2).join((""" $package $version - - $status - +$status $build_time: $links PTS @@ -89,6 +87,18 @@ def check_package_status(package, suite, nocheck=False): build_date = 'UNTESTED' return (status, version, build_date) + +def gen_status_link_icon(status, icon): + html = '' + if status != 'untested': + html += tab*6 + '\n' + html += tab*9 + '{status}\n' + if status != 'untested': + html += tab*8 + '\n' + return html.format(status=status, icon=icon) + + def gen_extra_links(package, version, suite, arch): eversion = strip_epoch(version) notes = NOTES_PATH + '/' + package + '_note.html' @@ -186,12 +196,12 @@ 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) html = html_package_page.substitute(package=pkg, status=status, version=version, build_time=build_date, - icon=icon, links=links, suites_links=suites_links, default_view=default_view) -- cgit v1.2.3-70-g09d2