You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@attic.apache.org by ba...@apache.org on 2016/04/11 01:51:22 UTC

svn commit: r1738496 - in /attic/site: docs/projects/xml.html xdocs/projects/xml.xml xdocs/stylesheets/site.vsl

Author: bayard
Date: Sun Apr 10 23:51:21 2016
New Revision: 1738496

URL: http://svn.apache.org/viewvc?rev=1738496&view=rev
Log:
For aesthetics (ie: | delimiters), making it a replace dev with xyz, rather than hide it

Modified:
    attic/site/docs/projects/xml.html
    attic/site/xdocs/projects/xml.xml
    attic/site/xdocs/stylesheets/site.vsl

Modified: attic/site/docs/projects/xml.html
URL: http://svn.apache.org/viewvc/attic/site/docs/projects/xml.html?rev=1738496&r1=1738495&r2=1738496&view=diff
==============================================================================
--- attic/site/docs/projects/xml.html (original)
+++ attic/site/docs/projects/xml.html Sun Apr 10 23:51:21 2016
@@ -65,11 +65,10 @@
     <tr>
       <td>Mailing List Archives</td>
       <td>
-      <!-- hiding dev list -->
+        <a href="http://mail-archives.apache.org/mod_mbox/xml-bugs/">bugs</a>
         | <a href="http://mail-archives.apache.org/mod_mbox/xml-announcements/">announcements</a>
         | <a href="http://mail-archives.apache.org/mod_mbox/xml-general/">general</a>
         | <a href="http://mail-archives.apache.org/mod_mbox/xml-general-cvs/">general-cvs</a>
-        | <a href="http://mail-archives.apache.org/mod_mbox/xml-bugs/">bugs</a>
       </td>
     </tr>
     <tr>

Modified: attic/site/xdocs/projects/xml.xml
URL: http://svn.apache.org/viewvc/attic/site/xdocs/projects/xml.xml?rev=1738496&r1=1738495&r2=1738496&view=diff
==============================================================================
--- attic/site/xdocs/projects/xml.xml (original)
+++ attic/site/xdocs/projects/xml.xml Sun Apr 10 23:51:21 2016
@@ -33,11 +33,10 @@
 
     <p>In April 2012, the XML project was retired as all of its subprojects had either become their own projects or been retired. </p>
 
-    <resource_table project="xml" hide_keys="true" hide_dev="true">
+    <resource_table project="xml" hide_keys="true" replace_dev="bugs">
       <mail name="announcements"/>
       <mail name="general"/>
       <mail name="general-cvs"/>
-      <mail name="bugs"/>
       <svn/>
     </resource_table>
 

Modified: attic/site/xdocs/stylesheets/site.vsl
URL: http://svn.apache.org/viewvc/attic/site/xdocs/stylesheets/site.vsl?rev=1738496&r1=1738495&r2=1738496&view=diff
==============================================================================
--- attic/site/xdocs/stylesheets/site.vsl (original)
+++ attic/site/xdocs/stylesheets/site.vsl Sun Apr 10 23:51:21 2016
@@ -32,7 +32,7 @@
 ##
 ## ** resource_table macro **
 ##
-##    <resource_table project="NAME_OF_PROJECT" subproject="OPTIONAL_NAME_OF_SUBPROJECT" hide_keys="true|false" hide_dev="true|false">
+##    <resource_table project="NAME_OF_PROJECT" subproject="OPTIONAL_NAME_OF_SUBPROJECT" hide_keys="true|false" replace_dev="alternate_list">
 ##      <mail name='MAIL_NAME: eg user/dev/commits'/>
 ##      <jira/>  OR  <bugzilla/>
 ##      <moin/>  OR  <cwiki/>
@@ -68,8 +68,9 @@
     <tr>
       <td>Mailing List Archives</td>
       <td>
-#if($elem.getAttributeValue("hide_dev"))
-      <!-- hiding dev list -->
+#if($elem.getAttributeValue("replace_dev"))
+#set ($replacedev = $elem.getAttributeValue("replace_dev"))
+        <a href="http://mail-archives.apache.org/mod_mbox/${full_dash}-${replacedev}/">${replacedev}</a>
 #else
         <a href="http://mail-archives.apache.org/mod_mbox/${full_dash}-dev/">dev</a>
 #end