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 05:48:40 UTC

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

Author: bayard
Date: Sun Feb 26 05:48:40 2017
New Revision: 1784418

URL: http://svn.apache.org/viewvc?rev=1784418&view=rev
Log:
Adding support for having no website, no mailing lists and no downloads. ie) Quetz. 

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

Modified: attic/site/docs/projects/quetzalcoatl.html
URL: http://svn.apache.org/viewvc/attic/site/docs/projects/quetzalcoatl.html?rev=1784418&r1=1784417&r2=1784418&view=diff
==============================================================================
--- attic/site/docs/projects/quetzalcoatl.html (original)
+++ attic/site/docs/projects/quetzalcoatl.html Sun Feb 26 05:48:40 2017
@@ -62,6 +62,36 @@
      See the website at 
      <a href="http://www.modpython.org/">http://www.modpython.org</a> for more information on mod_python. 
      Quetz itself never had a website. </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>n/a</td>
+    </tr>
+    <tr>
+      <td>Mailing List Archives</td>
+      <td>
+      n/a
+      </td>
+    </tr>
+    <tr>
+      <td>Source Code (Subversion)</td>
+      <td><a href="http://svn.apache.org/viewvc/quetzalcoatl/">svn.apache.org/repos/asf/quetzalcoatl/</a></td>
+    </tr>
+    <tr>
+      <td>Board Reports</td>
+      <td><a href="https://whimsy.apache.org/board/minutes/quetzalcoatl.html">Minutes</a></td>
+    </tr>
+    <tr>
+      <td>Downloads</td>
+      <td>n/a</td>
+    </tr>
+  </table>
+
 <p>As with any project in the Attic - if you should choose to fork mod_python outside of Apache, 
      please let us know so we can link to your project. </p>
 </div>

Modified: attic/site/xdocs/projects/quetzalcoatl.xml
URL: http://svn.apache.org/viewvc/attic/site/xdocs/projects/quetzalcoatl.xml?rev=1784418&r1=1784417&r2=1784418&view=diff
==============================================================================
--- attic/site/xdocs/projects/quetzalcoatl.xml (original)
+++ attic/site/xdocs/projects/quetzalcoatl.xml Sun Feb 26 05:48:40 2017
@@ -41,6 +41,13 @@
      <a href="http://www.modpython.org/">http://www.modpython.org</a> for more information on mod_python. 
      Quetz itself never had a website. </p>
 
+  <resource_table project="quetzalcoatl">
+    <no_website/>
+    <no_lists/>
+    <no_downloads/>
+    <svn/>
+  </resource_table>
+
   <p>As with any project in the Attic - if you should choose to fork mod_python 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=1784418&r1=1784417&r2=1784418&view=diff
==============================================================================
--- attic/site/xdocs/stylesheets/site.vsl (original)
+++ attic/site/xdocs/stylesheets/site.vsl Sun Feb 26 05:48:40 2017
@@ -37,6 +37,9 @@
 ##      <jira key="OPTIONAL_KEY"/>  OR  <bugzilla/>
 ##      <moin/>  OR  <cwiki/>
 ##      <svn/>  OR  <git/>
+##      <no_website/>
+##      <no_lists/>
+##      <no_downloads/>
 ##    </resource_table>
 ## 
 ## Project website, downloads, board minutes (unless subproject) 
@@ -63,12 +66,18 @@
     </tr>
     <tr>
       <td>Website</td>
+#if($elem.getChild("no_website"))
+      <td>n/a</td>
+#else
       <td><a href="http://${proj}.apache.org/${subproj}">${proj}.apache.org/${subproj}</a></td>
+#end
     </tr>
     <tr>
       <td>Mailing List Archives</td>
       <td>
-#if($elem.getAttributeValue("replace_dev"))
+#if($elem.getChild("no_lists"))
+      n/a
+#elseif($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
@@ -136,6 +145,9 @@
 #end
     <tr>
       <td>Downloads</td>
+#if($elem.getChild("no_downloads"))
+      <td>n/a</td>
+#else
       <td><a href="http://archive.apache.org/dist/${full_slash}/">archive.apache.org/dist/${full_slash}/</a> 
 #if($elem.getAttributeValue("hide_keys"))
       <!-- hiding KEYS -->
@@ -143,6 +155,7 @@
       | <a href="http://archive.apache.org/dist/${full_slash}/KEYS">KEYS</a>
 #end
       </td>
+#end
     </tr>
   </table>