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 c4adf20 Show which details are presented, and the source times
c4adf20 is described below
commit c4adf20759a075d12d5872a09c8e170dbe646fea
Author: Sebb <[email protected]>
AuthorDate: Sun Apr 7 13:28:29 2019 +0100
Show which details are presented, and the source times
---
www/members/archivers.cgi | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/www/members/archivers.cgi b/www/members/archivers.cgi
index fd559ab..a2b8d2f 100755
--- a/www/members/archivers.cgi
+++ b/www/members/archivers.cgi
@@ -11,6 +11,8 @@ require 'wunderbar/jquery/stupidtable'
ids={}
binarchives = ASF::Mail.lists(true)
+binarchtime = ASF::Mail.list_mtime
+
show_all = (ENV['PATH_INFO'] == '/all') # all entries, regardless of error
state
# default is to show entry if neither mail-archive nor markmail is present
(mail-archive is missing from a lot of lists)
show_mailarchive = (ENV['PATH_INFO'] == '/mail-archive') # show entry if
mail-archive is missing
@@ -19,6 +21,8 @@ show_mailarchive = (ENV['PATH_INFO'] == '/mail-archive') #
show entry if mail-ar
# INFRA-18129
NOT_ARCHIVED = %w{apachecon-aceu19}
+sublist_time = ASF::MLIST.list_time
+
_html do
_body? do
_whimsy_body(
@@ -38,6 +42,37 @@ _html do
_ 'Unexpected/missing entries are flagged'
_br
_ 'Minotaur emails can be either aliases
([email protected]) or direct
([email protected]).'
+ _br
+ _ 'Columns:'
+ _ul do
+ _li 'id - short id of list as used on mod_mbox'
+ _li 'list - full list name'
+ _li "Private? - public/private; derived from bin/.archives as at
#{binarchtime}"
+ _li 'MINO - minotaur archiver'
+ _li 'MBOX - mbox-vm archiver'
+ _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 known archiver subscriptions as at
#{sublist_time}"
+ end
+ _ 'Showing: '
+ unless show_all or show_mailarchive
+ _b 'issues excluding missing mail-archive subscriptions'
+ else
+ _a 'issues excluding missing mail-archive subscriptions', href:
'./'
+ end
+ _ ' | '
+ if show_mailarchive
+ _b 'issues including missing mail-archive subscriptions'
+ else
+ _a 'issues including missing mail-archive subscriptions', href:
'./mail-archive'
+ end
+ _ ' | '
+ if show_all
+ _b 'details for all lists'
+ else
+ _a 'details for all lists', href: './all'
+ end
end
}
) do