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 7d07c62 More details
7d07c62 is described below
commit 7d07c62908e0432a5d1a0fcc1ebeb1450c7e0b85
Author: Sebb <[email protected]>
AuthorDate: Tue Apr 27 23:18:33 2021 +0100
More details
---
www/secretary/icla-lint.cgi | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/www/secretary/icla-lint.cgi b/www/secretary/icla-lint.cgi
index 0cd3d86..2d6e3ae 100755
--- a/www/secretary/icla-lint.cgi
+++ b/www/secretary/icla-lint.cgi
@@ -174,23 +174,28 @@ _html do
end
end
- # drop entries which have nologin set
- committers.reject! do |id|
- ASF::Person[id].nologin?
- end
+ # drop known test entries
+ TEST_ENTRIES = %w(testsebb testrubys testcml testdooh)
+ committers.reject! {|id| TEST_ENTRIES.include? id}
- _h2 'Committers without an ICLA recorded (excluding ones with nologin? true)'
+ _h2 'Committers without an ICLA recorded'
if committers.size > 0
_table do
_tr do
_th 'id'
+ _th 'Public Name'
+ _th 'Join Date'
+ _th 'Nologin?'
end
committers.each do |id|
_tr do
_td do
_a id, href: '/roster/committer/' + id
end
+ _td ASF::Person[id].public_name
+ _td ASF::Person[id].createDate
+ _td ASF::Person[id].nologin?
end
end
end
@@ -295,11 +300,15 @@ _html do
_table_ do
_tr do
_th 'Availid'
- _th 'committer'
+ _th 'Public name'
+ _th 'Creation Date'
+ _th 'Whimsy page'
end
no_icla.each do |k|
_tr do
_td k
+ _td ASF::Person[k].public_name
+ _td ASF::Person[k].createDate
_td do
_a k, href: '/roster/committer/' + k
end