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 faab67e6 Show counts
faab67e6 is described below

commit faab67e60ea044380e8d77b83df5e85278e99a25
Author: Sebb <[email protected]>
AuthorDate: Sun Jun 1 14:00:27 2025 +0100

    Show counts
---
 www/roster/public_icla_info.rb | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/www/roster/public_icla_info.rb b/www/roster/public_icla_info.rb
index 3a703000..be216a7b 100644
--- a/www/roster/public_icla_info.rb
+++ b/www/roster/public_icla_info.rb
@@ -19,6 +19,7 @@ if ARGV.length == 2
 
   info_id = {
     last_updated: ASF::ICLA.svn_change,
+    committer_count: ids.size,
     committers: Hash[ids.sort]
   }
   public_json_output_file(info_id, ARGV.shift)
@@ -26,6 +27,7 @@ if ARGV.length == 2
   info_noid = {
     last_updated: ASF::ICLA.svn_change,
     see_instead: 'https://whimsy.apache.org/officers/unlistedclas.cgi',
+    noid_count: noid.size,
     non_committers: [] # deprecated
   }
   public_json_output_file(info_noid, ARGV.shift)
@@ -34,8 +36,11 @@ else # combined (original) output file
 
   info = {
     last_updated: ASF::ICLA.svn_change,
+    committer_count: ids.size,
     committers: Hash[ids.sort],
-    non_committers: noid # do not sort because the input is already sorted by 
surname
+    see_instead: 'https://whimsy.apache.org/officers/unlistedclas.cgi',
+    noid_count: noid.size,
+    non_committers: [] # deprecated
   }
 
   public_json_output(info) # original full output

Reply via email to