summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-02 12:41:26 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-02 12:41:26 +0200
commit7b7587a40f7bfcb4db0be6befa2d7f24fddbe5d2 (patch)
treea9efb1c502f4db868e2095474ae7c4395d3121c8 /bin
parent0b3dc6bf380747cb636830853d23111b7efe3dfe (diff)
downloadjenkins.debian.net-7b7587a40f7bfcb4db0be6befa2d7f24fddbe5d2.tar.xz
reproducible: add title tag to the notify icon for the unicode impaired
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.py2
-rwxr-xr-xbin/reproducible_common.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 21a4adaf..9a73a2c4 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -213,7 +213,7 @@ def _gen_links(suite, arch):
('last_24h', '<li><a href="/{suite}/{arch}/index_last_24h.html">packages tested in the last 24h</a></li>'),
('last_48h', '<li><a href="/{suite}/{arch}/index_last_48h.html">packages tested in the last 48h</a></li>'),
('all_abc', '<li><a href="/{suite}/{arch}/index_all_abc.html">all tested packages (sorted alphabetically)</a></li>'),
- ('notify', '<li><a href="/index_notify.html">⚑</a></li>'),
+ ('notify', '<li><a href="/index_notify.html" title="notify icon">⚑</a></li>'),
('dd-list', '<li><a href="/{suite}/index_dd-list.html">maintainers of unreproducible packages</a></li>'),
('pkg_sets', '<li><a href="/{suite}/{arch}/index_pkg_sets.html">package sets stats</a></li>')
]
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 20fc4a43..0bec423b 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -225,6 +225,8 @@ write_page_header() {
for i in $SUITES ; do
write_page "<li><a href=\"/$i\">suite: $i</a></li>"
done
+ elif [ "$TARGET" = "notify" ] ; then
+ write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\" title=\"notify icon\">${SPOKEN_TARGET}</a></li>"
else
write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\">${SPOKEN_TARGET}</a></li>"
fi