You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2022/02/09 12:14:26 UTC

[whimsy] branch master updated: Flag other subscriptions

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 16a64ae  Flag other subscriptions
16a64ae is described below

commit 16a64aee6fa346203fafb3a9afeae34ce8a73ca3
Author: Sebb <se...@apache.org>
AuthorDate: Wed Feb 9 12:14:09 2022 +0000

    Flag other subscriptions
---
 www/members/archivers.cgi | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/www/members/archivers.cgi b/www/members/archivers.cgi
index eb033b8..03a2c28 100755
--- a/www/members/archivers.cgi
+++ b/www/members/archivers.cgi
@@ -71,7 +71,7 @@ _html do
             _li 'PONY - PonyMail (lists.apache.org) archiver'
             _li 'MAIL-ARCHIVE - @mail-archive.com archiver (public lists only)'
             _li 'MARKMAIL - markmail.org archiver (public lists only)'
-            _li "Archivers - list of unexpected archiver subscriptions as at #{sublist_time}"
+            _li "Other Archivers - list of other archiver subscriptions (e.g. Whimsy) as at #{sublist_time}"
           end
           _ 'Showing: '
           if show_all or show_mailarchive
@@ -161,6 +161,8 @@ _html do
           options[:markmail] = {class: 'warning'}
         end
 
+        options[:arcleft] = {class: 'warning'} if arcleft.size > 0
+
         if show_mailarchive
           needs_attention = options.keys.length > 0
         else # don't show missing mail-archive
@@ -178,7 +180,7 @@ _html do
           _td options[:pony] do showdets(pony) end
           _td options[:mail_archive] do showdets(mail_archive) end
           _td options[:markmail] do showdets(markmail) end
-          _td arcleft.sort
+          _td arcleft.sort, options[:arcleft]
         end
       end
     end