diff options
-rwxr-xr-x | bin/reproducible_common.py | 1 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 7 |
2 files changed, 5 insertions, 3 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 3b42cabe..3c3f31b9 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -224,6 +224,7 @@ html_head_page = Template((tab*2).join((""" <li><a href="/debian/index_notify.html" title="notify icon">⚑ packages with enabled notifications</a></li> <li><a href="/debian/index_performance.html">performance stats</a></li> <li><a href="/debian/index_variations.html">variations tested</a></li> + <li><a href="/debian/index_breakages.html">broken pieces</a></li> </ul></li> </ul> $project_links diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 9a5f76df..e256eb7f 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -196,8 +196,8 @@ write_page_header() { rm -f $PAGE MAINVIEW="dashboard" ALLSTATES="reproducible FTBR FTBFS depwait not_for_us 404 blacklisted" - ALLVIEWS="notes no_notes pkg_sets last_24h last_48h all_abc arch scheduled suite_stats dd-list dashboard issues repositories notify performance variations" - GLOBALVIEWS="issues scheduled notify repositories dashboard performance variations" + ALLVIEWS="notes no_notes pkg_sets last_24h last_48h all_abc arch scheduled suite_stats dd-list dashboard issues repositories notify performance variations breakages" + GLOBALVIEWS="issues scheduled notify repositories dashboard performance variations breakages" SUITEVIEWS="dd-list suite_stats" SPOKENTARGET["issues"]="issues" SPOKENTARGET["notes"]="packages with notes" @@ -214,6 +214,7 @@ write_page_header() { SPOKENTARGET["dashboard"]="Debian dashboard" SPOKENTARGET["performance"]="performance stats" SPOKENTARGET["variations"]="variations tested" + SPOKENTARGET["breakages"]="broken pieces" write_page "<!DOCTYPE html><html><head>" write_page "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />" write_page "<meta name=\"viewport\" content=\"width=device-width\" />" @@ -293,7 +294,7 @@ write_page_header() { write_page "</ul></li>" elif [ "$TARGET" = "last_48h" ] ; then write_page "</ul></li>" - elif [ "$TARGET" = "variations" ] ; then + elif [ "$TARGET" = "breakages" ] ; then write_page "</ul></li>" elif [ "$TARGET" = "scheduled" ] ; then write_page "</ul></li>" |