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/10 23:08:41 UTC

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

Author: sebb
Date: Wed Mar 10 23:08:41 2021
New Revision: 1887456

URL: http://svn.apache.org/viewvc?rev=1887456&view=rev
Log:
Allow list of email names - simpler to configure

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=1887456&r1=1887455&r2=1887456&view=diff
==============================================================================
--- attic/site/xdocs/stylesheets/site.vsl (original)
+++ attic/site/xdocs/stylesheets/site.vsl Wed Mar 10 23:08:41 2021
@@ -86,7 +86,9 @@
 #set ($mail_links = $elem.getChildren("mail"))
 #foreach ( $mail_link in $mail_links )
 #set ($mail_name = $mail_link.getAttributeValue('name'))
-        | <a href="http://mail-archives.apache.org/mod_mbox/${full_dash}-${mail_name}/">${mail_name}</a>
+#foreach ($name in $mail_name.split(","))
+        | <a href="http://mail-archives.apache.org/mod_mbox/${full_dash}-${name}/">${name}</a>
+#end
 #end
       </td>
     </tr>