summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-05-14 19:25:51 +0200
committerHolger Levsen <holger@layer-acht.org>2016-05-14 19:25:51 +0200
commit7871b3fb126d13cacc4d0c91844f0e5846cb0357 (patch)
tree64928ff67c60ec33a3bab68c355b6b269463198a /bin/reproducible_common.sh
parentef3d7489cd2705de1ff9509f4ba116f43375578a (diff)
downloadjenkins.debian.net-7871b3fb126d13cacc4d0c91844f0e5846cb0357.tar.xz
reproducible debian: mark active page in navigation (misses the .py part)
Diffstat (limited to 'bin/reproducible_common.sh')
-rwxr-xr-xbin/reproducible_common.sh25
1 files changed, 20 insertions, 5 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 57fb10ba..695fef90 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -214,7 +214,9 @@ write_page_header() {
fi
write_page "<ul class=\"menu\">"
write_page "<li>$SUITE/$ARCH:<ul class=\"children\">"
+ local CLASS=""
for TARGET in $ALLVIEWS ; do
+ CLASS=""
if [ "$TARGET" = "pkg_sets" ] && [ "$SUITE" = "experimental" ] ; then
# no pkg_sets are tested in experimental
continue
@@ -246,20 +248,33 @@ write_page_header() {
elif [ "$TARGET" = "arch" ] ; then
write_page "<li>Architectures:<ul class=\"children\"><li>"
for i in ${ARCHS} ; do
- write_page " <a href=\"/$SUITE/index_suite_${i}_stats.html\">$i</a>"
+ if [ "$1" = "suite_arch_stats" ] && [ "$i" = "$ARCH" ] ; then
+ CLASS=" class=\"active\""
+ fi
+ write_page " <a href=\"/$SUITE/index_suite_${i}_stats.html\"$CLASS>$i</a>"
+ CLASS=""
done
write_page "</li>"
elif [ "$TARGET" = "suite_stats" ] ; then
write_page "<li>Suites:<ul class=\"children\"><li>"
for i in $SUITES ; do
- write_page " <a href=\"/$i/index_suite_${ARCH}_stats.html\">$i</a>"
+ if [ "$1" = "suite_arch_stats" ] && [ "$i" = "$SUITE" ] ; then
+ CLASS=" class=\"active\""
+ fi
+ write_page " <a href=\"/$i/index_suite_${ARCH}_stats.html\"$CLASS>$i</a>"
+ CLASS=""
done
write_page "</li>"
elif [ "$TARGET" = "dashboard" ] ; then
- write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\">${SPOKEN_TARGET}</a><ul class=\"children\">"
+ if [ "$1" = "dashboard" ] ; then
+ CLASS=" class=\"active\""
+ fi
+ write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\"$CLASS>${SPOKEN_TARGET}</a><ul class=\"children\">"
else
- # finally, write link
- write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\">${SPOKEN_TARGET}</a></li>"
+ if [ "$1" = "$TARGET" ] ; then
+ CLASS=" class=\"active\""
+ fi
+ write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\"$CLASS>${SPOKEN_TARGET}</a></li>"
fi
# close unsorted lists (and package states loop)
if [ "$TARGET" = "all_abc" ] ; then