You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@attic.apache.org by se...@apache.org on 2021/03/11 11:40:35 UTC

svn commit: r1887471 - /attic/site/xdocs/stylesheets/site.vsl

Author: sebb
Date: Thu Mar 11 11:40:35 2021
New Revision: 1887471

URL: http://svn.apache.org/viewvc?rev=1887471&view=rev
Log:
Allow for multiple JIRA projects

Modified:
    attic/site/xdocs/stylesheets/site.vsl

Modified: attic/site/xdocs/stylesheets/site.vsl
URL: http://svn.apache.org/viewvc/attic/site/xdocs/stylesheets/site.vsl?rev=1887471&r1=1887470&r2=1887471&view=diff
==============================================================================
--- attic/site/xdocs/stylesheets/site.vsl (original)
+++ attic/site/xdocs/stylesheets/site.vsl Thu Mar 11 11:40:35 2021
@@ -33,8 +33,8 @@
 ## ** resource_table macro **
 ##
 ##    <resource_table project="NAME_OF_PROJECT" subproject="OPTIONAL_NAME_OF_SUBPROJECT" hide_keys="true|false" replace_dev="alternate_list" board_report_id="OPTIONAL_ALTERNATIVE_BOARD_REPORT_ID">
-##      <mail name='MAIL_NAME: eg user/dev/commits'/>
-##      <jira key="OPTIONAL_KEY"/>  OR  <bugzilla/>
+##      <mail name='MAIL_NAME(s): eg user[,issues,commits]'/>
+##      <jira key="OPTIONAL_KEY[,key2,...]"/>  OR  <bugzilla/>
 ##      <moin/>  OR  <cwiki/>
 ##      <svn/>  OR  <git/>
 ##      <no_website/>
@@ -93,18 +93,25 @@
       </td>
     </tr>
 #if($elem.getChild("jira"))
+#if ($elem.getChild("jira").getAttributeValue("key"))
+#set ($keys = $elem.getChild("jira").getAttributeValue("key"))
+#foreach ($key in $keys.split(","))
     <tr>
       <td>Issue Tracker</td>
-#if ($elem.getChild("jira").getAttributeValue("key"))
-#set ($key = $elem.getChild("jira").getAttributeValue("key"))
       <td><a href="https://issues.apache.org/jira/browse/${key.toUpperCase()}/">JIRA</a></td>
-#elseif ($elem.getAttributeValue("subproject"))
+    </tr>
+#end
+#else
+    <tr>
+      <td>Issue Tracker</td>
+#if ($elem.getAttributeValue("subproject"))
       <td><a href="https://issues.apache.org/jira/browse/${subproj.toUpperCase()}/">JIRA</a></td>
 #else
       <td><a href="https://issues.apache.org/jira/browse/${proj.toUpperCase()}/">JIRA</a></td>
 #end
     </tr>
 #end
+#end
 #if($elem.getChild("bugzilla"))
     <tr>
       <td>Issue Tracker</td>