summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-18 16:29:00 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-18 16:29:00 +0200
commitf04334b132c84259a7d5d0592e38ab87fab5fee2 (patch)
tree07a8f1c1d2fba001f8734b0207a26ccba4527797 /bin
parenta8a8c1647d1b526df1acb064241f7060a7808a71 (diff)
downloadjenkins.debian.net-f04334b132c84259a7d5d0592e38ab87fab5fee2.tar.xz
reproducible: improve bug indicators for packages
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.py10
-rwxr-xr-xbin/reproducible_common.sh2
2 files changed, 7 insertions, 5 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index fc5488a4..cc7789b6 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -171,9 +171,11 @@ html_foot_page_style_note = Template((tab*2).join("""
A package name displayed with a bold font is an indication that this
package has a note. Visited packages are linked in green, those which
have not been visited are linked in blue.<br />
- A <code>&#35;</code> sign after the name of a package indicates that a bug is
- filed against it. Likewise, a <code>&#43;</code> means that there is bug with a
- patch attached. In case of more than one bug, the symbol is repeated.
+ A <code><span class="bug">&#35;</span></code> sign after the name of a
+ package indicates that a bug is filed against it. Likewise, a
+ <code><span class="bug-patch">&#43;</span></code> sign indicates there is
+ a patch available. <code><span class="bug-done">&#35;</span></code>
+ indicates a closed bug. In cases of several bugs, the symbol is repeated.
</p>""".splitlines(True)))
@@ -488,7 +490,7 @@ def get_trailing_icon(package, bugs):
elif bugs[package][bug]['patch']:
html += 'bug-patch" title="#' + str(bug) + ', with patch">+</span>'
else:
- html += '" title="#' + str(bug) + '">#</span>'
+ html += 'bug" title="#' + str(bug) + '">#</span>'
return html
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 49a70ca8..69c205a7 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -238,7 +238,7 @@ write_page_footer() {
write_page_meta_sign() {
write_page "<p style=\"font-size:0.9em;\">A package name displayed with a bold font is an indication that this package has a note. Visited packages are linked in green, those which have not been visited are linked in blue.</br>"
- write_page " A <code>&#35;</code> sign after the name of a package indicates that a bug is filed against it. Likewise, a <code>&#43;</code> means that there is bug with a patch attached. In case of more than one bug, the symbol is repeated.</p>"
+ write_page "A <code><span class=\"bug\">&#35;</span></code> sign after the name of a package indicates that a bug is filed against it. Likewise, a <code><span class=\"bug-patch\">&#43;</span></code> sign indicates there is a patch available. <code><span class=\"bug-done\">&#35;</span></code> indicates a closed bug. In cases of several bugs, the symbol is repeated.</p>"
}
publish_page() {