diff options
author | Chris Lamb <lamby@debian.org> | 2015-12-30 12:43:25 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-30 14:27:34 +0100 |
commit | 0148477a69cb709f069cf87f59d731ff9bc580d5 (patch) | |
tree | b33633dac6c47330fb4bb08047b21f43f9993e18 /bin | |
parent | 78ef7b7343da4c1a7b3c25a61e1278cfd8d07ecb (diff) | |
download | jenkins.debian.net-0148477a69cb709f069cf87f59d731ff9bc580d5.tar.xz |
Show ordering on notes pages.
Signed-off-by: Chris Lamb <lamby@debian.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_indexes.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 6923798c..05786765 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -295,7 +295,7 @@ pages = { 'icon_link': '/index_FTBR.html', 'query': 'notes', 'nosuite': True, - 'text': Template('$tot unreproducible packages in $suite/$arch:') + 'text': Template('$tot unreproducible packages in $suite/$arch, ordered by build date:') }, { 'icon_status': 'FTBFS', @@ -303,14 +303,14 @@ pages = { 'icon_link': '/index_FTBFS.html', 'query': 'notes', 'nosuite': True, - 'text': Template('$tot FTBFS packages in $suite/$arch:') + 'text': Template('$tot FTBFS packages in $suite/$arch, ordered by build date:') }, { 'icon_status': 'depwait', 'db_status': 'depwait', 'icon_link': '/index_depwait.html', 'query': 'depwait_all_abc', - 'text': Template('$tot ($percent%) source packages failed to satisfy their build-dependencies:') + 'text': Template('$tot ($percent%) source packages failed to satisfy their build-dependencies, ordered by build date:') }, { 'icon_status': 'not_for_us', @@ -350,21 +350,21 @@ pages = { 'db_status': 'unreproducible', 'icon_link': '/index_FTBR.html', 'query': 'no_notes', - 'text': Template('$tot unreproducible packages in $suite/$arch:') + 'text': Template('$tot unreproducible packages in $suite/$arch, ordered by build date:') }, { 'icon_status': 'FTBFS', 'db_status': 'FTBFS', 'icon_link': '/index_FTBFS.html', 'query': 'no_notes', - 'text': Template('$tot FTBFS packages in $suite/$arch:') + 'text': Template('$tot FTBFS packages in $suite/$arch, ordered by build date:') }, { 'icon_status': 'blacklisted', 'db_status': 'blacklisted', 'icon_link': '/index_blacklisted.html', 'query': 'no_notes', - 'text': Template('$tot blacklisted packages in $suite/$arch:') + 'text': Template('$tot blacklisted packages in $suite/$arch, ordered by name:') } ] }, |