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
commit fb9327b3d5ba5042c0415eec2222fe9d27860418 Author: Sebb <[email protected]> AuthorDate: Wed Mar 1 22:40:36 2023 +0000 Show nominee count --- www/members/meeting.cgi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www/members/meeting.cgi b/www/members/meeting.cgi index 6bbdc585..f7854452 100755 --- a/www/members/meeting.cgi +++ b/www/members/meeting.cgi @@ -81,6 +81,7 @@ _html do today = Time.now # Calculate quorum num_members, quorum_need, num_proxies, attend_irc = ASF::MeetingUtil.calculate_quorum(cur_mtg_dir) + proxy_nominees = ASF::MeetingUtil.getProxyNominees.count # Use ics files for accurate times; see create-meeting.rb; note change in process 2022/2023 ics_date = ics2dtstart(File.join(cur_mtg_dir, ICS_FILE)) ROSTER = "/roster/committer" @@ -145,6 +146,12 @@ _html do _ " Members attending the first half of the meeting on Tuesday and respond to Roll Call to reach quorum and continue the meeting." _ " Calculation: Total voting members: #{num_members}, with one third for quorum: #{quorum_need}, minus previously submitted proxies: #{num_proxies}" end + _p do + _ "There are #{proxy_nominees} people acting as proxies." + if proxy_nominees >= attend_irc + _strong 'If they all attend, then quorum will be achieved.' + end + end _p 'Individual Members are considered to have Attended a meeting if they either: respond to Roll Call (in first or second half of meeting); submit a proxy (that gets submitted during Roll Call); or who cast a ballot on any matters.' _ul do _li 'Estimated 2023 dates:'
