summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_pkg_sets.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_html_pkg_sets.sh')
-rwxr-xr-xbin/reproducible_html_pkg_sets.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/bin/reproducible_html_pkg_sets.sh b/bin/reproducible_html_pkg_sets.sh
index cfcc1ead..1b246d6c 100755
--- a/bin/reproducible_html_pkg_sets.sh
+++ b/bin/reproducible_html_pkg_sets.sh
@@ -90,14 +90,20 @@ update_meta_pkg_stats() {
#
create_pkg_sets_navigation() {
local i
- write_page "<ul><li>Tracked package sets in $SUITE: </li>"
+ write_page "<ul><li>Tracked package sets in $SUITE/$ARCH: </li>"
+ write_page "<br />"
for i in $(seq 1 ${#META_PKGSET[@]}) ; do
+ case $i in
+ 7|10|16|24) write_page "<br />"
+ ;;
+ *) ;;
+ esac
if [ -f $BASE/$SUITE/$ARCH/${TABLE[6]}_${META_PKGSET[$i]}.png ] ; then
THUMB="${TABLE[6]}_${META_PKGSET[$i]}-thumbnail.png"
LABEL="Reproducibility status for packages in $SUITE/$ARCH from '${META_PKGSET[$i]}'"
- write_page "<a href=\"/$SUITE/$ARCH/pkg_set_${META_PKGSET[$i]}.html\"><img src=\"/userContent/$SUITE/$ARCH/$THUMB\" class=\"metaoverview\" alt=\"$LABEL\" title=\"${META_PKGSET[$i]}\" name=\"${META_PKGSET[$i]}\"></a>"
write_page "<li>"
write_page "<a href=\"/$SUITE/$ARCH/pkg_set_${META_PKGSET[$i]}.html\">${META_PKGSET[$i]}</a>"
+ write_page "<a href=\"/$SUITE/$ARCH/pkg_set_${META_PKGSET[$i]}.html\"><img src=\"/userContent/$SUITE/$ARCH/$THUMB\" class=\"setview\" alt=\"$LABEL\" title=\"${META_PKGSET[$i]}\" name=\"${META_PKGSET[$i]}\"></a>"
write_page "</li>"
fi
done