diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-13 12:36:17 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-13 12:54:57 +0200 |
commit | f788facf97bbacb858f62dbfdcfce7ae6272f523 (patch) | |
tree | e3a5bca0308c307295b842dd263fc542c618a56e /bin | |
parent | c31dc6fd4ddb7a7237a3fb2f684e22616cc9a948 (diff) | |
download | jenkins.debian.net-f788facf97bbacb858f62dbfdcfce7ae6272f523.tar.xz |
reproducible: meta_pkg_sets: add a title= attribute to the thumbnails
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index 1843f3e9..2da35501 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -422,14 +422,14 @@ create_pkg_sets_page() { write_page "<ul><li>Tracked package sets in $SUITE: </li>" for i in $(seq 1 ${#META_PKGSET[@]}) ; do if [ -f $BASE/$SUITE/$ARCH/${TABLE[6]}_${META_PKGSET[$i]}.png ] ; then - write_page "<li><a href=\"#${META_PKGSET[$i]}\">${META_PKGSET[$i]}</a></li>" + write_page "<li><a href='#${META_PKGSET[$i]}'>${META_PKGSET[$i]}</a></li>" fi done write_page "</ul>" for i in $(seq 1 ${#META_PKGSET[@]}) ; do 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/index_pkg_sets.html#${META_PKGSET[$i]}\"><img src=\"/userContent/$SUITE/$ARCH/$THUMB\" class=\"metaoverview\" alt=\"$LABEL\"></a>" + write_page "<a href=\"/$SUITE/$ARCH/index_pkg_sets.html#${META_PKGSET[$i]}\"><img src=\"/userContent/$SUITE/$ARCH/$THUMB\" class=\"metaoverview\" alt=\"$LABEL\" title=\"${META_PKGSET[$i]}\"></a>" done for i in $(seq 1 ${#META_PKGSET[@]}) ; do write_page "<hr /><a name=\"${META_PKGSET[$i]}\"></a>" |