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 2017/02/26 06:00:11 UTC

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

Author: bayard
Date: Sun Feb 26 06:00:11 2017
New Revision: 1784424

URL: http://svn.apache.org/viewvc?rev=1784424&view=rev
Log:
Adding alternative name for board reports; ie) to support stdcxx

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

Modified: attic/site/docs/projects/stdcxx.html
URL: http://svn.apache.org/viewvc/attic/site/docs/projects/stdcxx.html?rev=1784424&r1=1784423&r2=1784424&view=diff
==============================================================================
--- attic/site/docs/projects/stdcxx.html (original)
+++ attic/site/docs/projects/stdcxx.html Sun Feb 26 06:00:11 2017
@@ -56,6 +56,48 @@
 <p>The user mailing list, website, downloads and issue tracker all remain open, though 
      the issue tracker is read-only. See the website at 
      <a href="http://stdcxx.apache.org/">http://stdcxx.apache.org</a> for more information on the project. </p>
+
+  <table style="margin-left: auto; margin-right:auto; width:90%">
+    <tr>
+      <th>Read-only Resource</th>
+      <th>Link(s)</th>
+    </tr>
+    <tr>
+      <td>Website</td>
+      <td><a href="http://stdcxx.apache.org/">stdcxx.apache.org/</a></td>
+    </tr>
+    <tr>
+      <td>Mailing List Archives</td>
+      <td>
+        <a href="http://mail-archives.apache.org/mod_mbox/stdcxx-dev/">dev</a>
+        | <a href="http://mail-archives.apache.org/mod_mbox/stdcxx-commits/">commits</a>
+        | <a href="http://mail-archives.apache.org/mod_mbox/stdcxx-user/">user</a>
+      </td>
+    </tr>
+    <tr>
+      <td>Issue Tracker</td>
+      <td><a href="https://issues.apache.org/jira/browse/stdcxx/">JIRA</a></td>
+    </tr>
+    <tr>
+      <td>Wiki</td>
+      <td><a href="http://wiki.apache.org/stdcxx/">wiki.apache.org/stdcxx/</a></td>
+    </tr>
+    <tr>
+      <td>Source Code (Subversion)</td>
+      <td><a href="http://svn.apache.org/viewvc/stdcxx/">svn.apache.org/repos/asf/stdcxx/</a></td>
+    </tr>
+    <tr>
+      <td>Board Reports</td>
+      <td><a href="https://whimsy.apache.org/board/minutes/Cxx_Standard_Library.html">Minutes</a></td>
+    </tr>
+    <tr>
+      <td>Downloads</td>
+      <td><a href="http://archive.apache.org/dist/stdcxx/">archive.apache.org/dist/stdcxx/</a> 
+      | <a href="http://archive.apache.org/dist/stdcxx/KEYS">KEYS</a>
+      </td>
+    </tr>
+  </table>
+
 <p>As with any project in the Attic - if you should choose to fork the retired project outside of Apache, 
      please let us know so we can link to your project. </p>
 <p>Archived versions of the Apache C++ Standard Library (STDCXX) may be downloaded from the 

Modified: attic/site/xdocs/projects/stdcxx.xml
URL: http://svn.apache.org/viewvc/attic/site/xdocs/projects/stdcxx.xml?rev=1784424&r1=1784423&r2=1784424&view=diff
==============================================================================
--- attic/site/xdocs/projects/stdcxx.xml (original)
+++ attic/site/xdocs/projects/stdcxx.xml Sun Feb 26 06:00:11 2017
@@ -35,6 +35,14 @@
      the issue tracker is read-only. See the website at 
      <a href="http://stdcxx.apache.org/">http://stdcxx.apache.org</a> for more information on the project. </p>
 
+  <resource_table project="stdcxx" board_report_id="Cxx_Standard_Library">
+    <mail name="commits"/>
+    <mail name="user"/>
+    <jira/>
+    <moin/>
+    <svn/>
+  </resource_table>
+
   <p>As with any project in the Attic - if you should choose to fork the retired project outside of Apache, 
      please let us know so we can link to your project. </p>
 

Modified: attic/site/xdocs/stylesheets/site.vsl
URL: http://svn.apache.org/viewvc/attic/site/xdocs/stylesheets/site.vsl?rev=1784424&r1=1784423&r2=1784424&view=diff
==============================================================================
--- attic/site/xdocs/stylesheets/site.vsl (original)
+++ attic/site/xdocs/stylesheets/site.vsl Sun Feb 26 06:00:11 2017
@@ -32,7 +32,7 @@
 ##
 ## ** resource_table macro **
 ##
-##    <resource_table project="NAME_OF_PROJECT" subproject="OPTIONAL_NAME_OF_SUBPROJECT" hide_keys="true|false" replace_dev="alternate_list">
+##    <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/>
 ##      <moin/>  OR  <cwiki/>
@@ -140,7 +140,12 @@
 #if (!$elem.getAttributeValue("subproject"))
     <tr>
       <td>Board Reports</td>
+#if ($elem.getAttributeValue("board_report_id"))
+#set ($br_id = $elem.getAttributeValue("board_report_id"))
+      <td><a href="https://whimsy.apache.org/board/minutes/${br_id}.html">Minutes</a></td>
+#else
       <td><a href="https://whimsy.apache.org/board/minutes/${proj}.html">Minutes</a></td>
+#end
     </tr>
 #end
     <tr>