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:55:13 UTC

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

Author: sebb
Date: Thu Mar 11 11:55:12 2021
New Revision: 1887473

URL: http://svn.apache.org/viewvc?rev=1887473&view=rev
Log:
Identify issue tracker type

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=1887473&r1=1887472&r2=1887473&view=diff
==============================================================================
--- attic/site/xdocs/stylesheets/site.vsl (original)
+++ attic/site/xdocs/stylesheets/site.vsl Thu Mar 11 11:55:12 2021
@@ -97,28 +97,28 @@
 #set ($keys = $elem.getChild("jira").getAttributeValue("key"))
 #foreach ($key in $keys.split(","))
     <tr>
-      <td>Issue Tracker</td>
-      <td><a href="https://issues.apache.org/jira/browse/${key.toUpperCase()}/">JIRA</a></td>
+      <td>Issue Tracker (JIRA)</td>
+      <td><a href="https://issues.apache.org/jira/browse/${key.toUpperCase()}/">${key.toUpperCase()}</a></td>
     </tr>
 #end
 #else
     <tr>
-      <td>Issue Tracker</td>
+      <td>Issue Tracker (JIRA)</td>
 #if ($elem.getAttributeValue("subproject"))
-      <td><a href="https://issues.apache.org/jira/browse/${subproj.toUpperCase()}/">JIRA</a></td>
+      <td><a href="https://issues.apache.org/jira/browse/${subproj.toUpperCase()}/">${subproj.toUpperCase()}</a></td>
 #else
-      <td><a href="https://issues.apache.org/jira/browse/${proj.toUpperCase()}/">JIRA</a></td>
+      <td><a href="https://issues.apache.org/jira/browse/${proj.toUpperCase()}/">${proj.toUpperCase()}</a></td>
 #end
     </tr>
 #end
 #end
 #if($elem.getChild("bugzilla"))
     <tr>
-      <td>Issue Tracker</td>
+      <td>Issue Tracker (Bugzilla)</td>
 #if ($elem.getAttributeValue("subproject"))
-      <td><a href="https://bz.apache.org/bugzilla/buglist.cgi?product=${subproj}">Bugzilla</a></td>
+      <td><a href="https://bz.apache.org/bugzilla/buglist.cgi?product=${subproj}">${subproj}</a></td>
 #else
-      <td><a href="https://bz.apache.org/bugzilla/buglist.cgi?product=${proj}">Bugzilla</a></td>
+      <td><a href="https://bz.apache.org/bugzilla/buglist.cgi?product=${proj}">${proj}</a></td>
 #end
     </tr>
 #end