This is an automated email from the ASF dual-hosted git repository.

curcuru 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 359820ec Update to better show more links
359820ec is described below

commit 359820ec780229c87e0a9c1a2193b1036a9dd3de
Author: Shane Curcuru <[email protected]>
AuthorDate: Tue Nov 11 13:09:02 2025 -0500

    Update to better show more links
---
 www/foundation/orgchart.cgi     |  6 +++++-
 www/roster/views/duties.html.rb | 10 +++++++++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/www/foundation/orgchart.cgi b/www/foundation/orgchart.cgi
index af79f86b..a6a43d90 100755
--- a/www/foundation/orgchart.cgi
+++ b/www/foundation/orgchart.cgi
@@ -133,7 +133,11 @@ def emit_role(role: {}, oversees: {}, desc: {})
               _td do
                 _a value, href: "mailto:#{value}";
               end
-            elsif %w(resolution website resolution-policy resolution-other 
reports-board).include? key
+            elsif %w(wiki).include? key
+              _td do
+                _a value, href: 
"https://cwiki.apache.org/confluence/display/#{value}";
+              end
+            elsif %w(resolution website resolution-policy resolution-other 
reports-board runbook).include? key
               _td do
                 _a value, href: value
               end
diff --git a/www/roster/views/duties.html.rb b/www/roster/views/duties.html.rb
index 3ef3d751..013fbf0b 100644
--- a/www/roster/views/duties.html.rb
+++ b/www/roster/views/duties.html.rb
@@ -73,7 +73,15 @@ _html do
                       _a value, href: 
"https://lists.apache.org/list.html?#{value}";
                     end
                   end
-                elsif %w(roster resolution).include? key
+                elsif %w(wiki).include? key
+                  _td do
+                    _a "Wiki: #{value}", href: 
"https://cwiki.apache.org/confluence/display/#{value}";
+                  end
+                elsif %w(jira).include? key
+                  _td do
+                    _a "JIRA: #{value}", href: 
"https://issues.apache.org/jira/projects/#{value}";
+                  end
+                elsif %w(resolution website resolution-policy resolution-other 
reports-board runbook).include? key
                   _td class: pvt do
                     _a value, href: value
                   end

Reply via email to