This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 582cd45 Make final cross-check stand out better
582cd45 is described below
commit 582cd45b64c18357e1bede5364e21dda7f63ed81
Author: Sebb <[email protected]>
AuthorDate: Mon Jan 21 22:59:28 2019 +0000
Make final cross-check stand out better
---
www/members/archivers.cgi | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/www/members/archivers.cgi b/www/members/archivers.cgi
index 54a8854..c36bfe9 100755
--- a/www/members/archivers.cgi
+++ b/www/members/archivers.cgi
@@ -106,11 +106,17 @@ _html do
end
end
- _p do
- _ 'The following entries in bin/.archives do not appear to have an
associated mailing list (probably they are aliases):'
- _br
- _ (binarchives.keys - ids.keys)
- end
+ missingids = binarchives.keys - ids.keys
+ if missingids.length > 0
+ _p.bg_warning do
+ _ 'The following entries in bin/.archives do not appear to have an
associated mailing list (probably they are aliases):'
+ _br
+ _ missingids
+ end
+ else
+ _p 'All entries in bin/.archives correspond to a mailing list'
+ end
+
_script %{
var table = $(".table").stupidtable();
table.on("aftertablesort", function (event, data) {