diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-07 03:17:50 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-07 03:17:50 +0200 |
commit | fbb52434d0143a6cc2b8b291147e0d7cf40bb6b4 (patch) | |
tree | d981823999b9e531560ceb805081789c69221e06 /bin | |
parent | a917b49ad57c3e22167bce2c214170ade19e7fc2 (diff) | |
download | jenkins.debian.net-fbb52434d0143a6cc2b8b291147e0d7cf40bb6b4.tar.xz |
reproducible: use dashboard consistently
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index fcb35f02..3ef21cd5 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -188,7 +188,7 @@ html_head_page = Template((tab*2).join(""" <li><a href="/index_${arch}_scheduled.html">currently scheduled</a></li> $links <li><a href="/index_repositories.html">repositories overview</a></li> - <li><a href="/reproducible.html">reproducible stats</a></li> + <li><a href="/reproducible.html">dashboard</a></li> <li><a href="https://wiki.debian.org/ReproducibleBuilds" target="_blank">wiki</a></li> </ul></nav> </header>""".splitlines(True))) diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 971ce731..b414fbe5 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -158,10 +158,10 @@ write_icon() { write_page_header() { rm -f $PAGE - MAINVIEW="stats" + MAINVIEW="dashboard" ALLSTATES="reproducible FTBR FTBFS depwait not_for_us 404 blacklisted" - ALLVIEWS="issues notes no_notes scheduled last_24h last_48h all_abc notify dd-list pkg_sets suite_stats arch repositories stats" - GLOBALVIEWS="issues scheduled notify repositories stats" + ALLVIEWS="issues notes no_notes scheduled last_24h last_48h all_abc notify dd-list pkg_sets suite_stats arch repositories dashboard" + GLOBALVIEWS="issues scheduled notify repositories dashboard" SUITEVIEWS="dd-list suite_stats" SPOKENTARGET["issues"]="issues" SPOKENTARGET["notes"]="packages with notes" @@ -175,7 +175,7 @@ write_page_header() { SPOKENTARGET["pkg_sets"]="package sets" SPOKENTARGET["suite_stats"]="suite: $SUITE" SPOKENTARGET["repositories"]="repositories overview" - SPOKENTARGET["stats"]="reproducible stats" + SPOKENTARGET["dashboard"]="dashboard" write_page "<!DOCTYPE html><html><head>" write_page "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />" write_page "<link href=\"/userContent/static/style.css\" type=\"text/css\" rel=\"stylesheet\" />" @@ -189,7 +189,7 @@ write_page_header() { write_page " <a href=\"$JENKINS_URL/userContent/about.html#_reproducible_builds_jobs\">jenkins.debian.net</a>." write_page " Thanks to <a href=\"https://www.profitbricks.co.uk\">Profitbricks</a> for donating the virtual machines this is running on!</p>" fi - if [ "$1" = "dd-list" ] || [ "$1" = "stats" ] ; then + if [ "$1" = "dd-list" ] || [ "$1" = "dashboard" ] ; then write_page "<p>Join <code>#debian-reproducible</code> on OFTC," write_page " or <a href="mailto:reproducible-builds@lists.alioth.debian.org">send us an email</a>," write_page " to get support for making sure your packages build reproducibly too. Also, we care about free software in general," |