diff options
author | Valerie R Young <spectranaut@riseup.net> | 2017-03-22 12:46:17 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-03-22 19:04:15 +0100 |
commit | ce00640954839d8a1f4142ff610469943833cb6e (patch) | |
tree | cfd2d7c11989e5119c74c2cab3396ebfbd5d1c4b /bin | |
parent | 566813f60f9fb715808eafa4f377e333dbf920ba (diff) | |
download | jenkins.debian.net-ce00640954839d8a1f4142ff610469943833cb6e.tar.xz |
Revert "reproducible debian: show the "show all" button when summary tag supported"
This reverts commit 1b4dc1b3191e3623a0eeb7cacef80be1ab71d0a2.
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 3 | ||||
-rwxr-xr-x | bin/reproducible_html_pkg_sets.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 50ca6e93..bc8b61dd 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -331,7 +331,7 @@ def create_main_navigation(suite=defaultsuite, arch=defaultarch, def write_html_page(title, body, destfile, no_header=False, style_note=False, noendpage=False, refresh_every=None, displayed_page=None, - left_nav_html=None, include_pkgset_js=None): + left_nav_html=None): meta_refresh_html = '<meta http-equiv="refresh" content="%d"></meta>' % \ refresh_every if refresh_every is not None else '' if style_note: @@ -346,7 +346,6 @@ def write_html_page(title, body, destfile, no_header=False, style_note=False, 'main_header': title if not no_header else "", 'main_html': body, 'style_dot_css_sha1sum': REPRODUCIBLE_STYLE_SHA1, - 'include_pkgset_js': include_pkgset_js, } html = renderer.render(basic_page_template, context) diff --git a/bin/reproducible_html_pkg_sets.py b/bin/reproducible_html_pkg_sets.py index 607da4ac..da2ae434 100755 --- a/bin/reproducible_html_pkg_sets.py +++ b/bin/reproducible_html_pkg_sets.py @@ -259,7 +259,7 @@ def create_pkgset_page_and_graphs(suite, arch, stats, pkgset_name): log.info("Creating meta pkgset page for %s in %s/%s.", pkgset_name, suite, arch) write_html_page(title=title, body=html_body, destfile=destfile, - left_nav_html=left_nav_html, include_pkgset_js=True) + left_nav_html=left_nav_html) def create_pkgset_graph(png_file, suite, arch, pkgset_name): |