Commit in www-lcsim/xsl on MAIN
detectors.xsl+35-151.3 -> 1.4
Added support for status tag.  Order descending -> production, development, deprecated. 

www-lcsim/xsl
detectors.xsl 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- detectors.xsl	29 Jul 2005 07:00:01 -0000	1.3
+++ detectors.xsl	9 Sep 2005 21:10:18 -0000	1.4
@@ -25,22 +25,33 @@
     <xsl:comment>Index of detector descriptions in this document</xsl:comment>
     <h2>Detectors in Compact Format</h2>
 
-    <ul>
+    <table class="detectors_index">
+    <tr class="detectors_index_header">
+      <td class="detectors_index_header">Detector</td>
+      <td class="detectors_index_header">Status</td>
+    </tr>
     <xsl:for-each select="info">
-    <li>
-      <a>
-        <xsl:attribute name="href"><xsl:text>#</xsl:text><xsl:value-of select="@name"/></xsl:attribute>
-        <xsl:value-of select="@title"/>
-      </a>
-    </li>  
+    <xsl:sort select="@status" order="descending" />
+    <tr class="detectors_index">
+      <td class="detectors_index">
+	<a>
+	  <xsl:attribute name="href"><xsl:text>#</xsl:text><xsl:value-of select="@name"/></xsl:attribute>
+	  <xsl:value-of select="@title"/>
+	</a>
+      </td>
+      <td class="detectors_index">
+	<xsl:value-of select="@status"/>
+      </td>
+    </tr>
     </xsl:for-each>
-    </ul>
+    </table>
 
     <xsl:comment>Individual listing for each detector.</xsl:comment>
-    <!--<h2>Detectors in Compact Format</h2>-->
- 
+
     <xsl:for-each select="info">
 
+    <xsl:sort select="@status" order="descending" />
+
     <a>
     <xsl:attribute name="name"><xsl:value-of select="@name"/></xsl:attribute>
     </a>
@@ -61,9 +72,18 @@
     <tr class="detector">
     <td class="detector_label">
     <b>Tag</b>
-    </td>  
+    </td>
     <td class="detector">
-    <xsl:value-of select="@name"/> 
+    <xsl:value-of select="@name"/>
+    </td>
+    </tr>
+
+    <tr class="detector">
+    <td class="detector_label">
+    <b>Status</b>
+    </td>
+    <td class="detector">
+    <xsl:value-of select="@status"/>
     </td>
     </tr>
 
@@ -90,7 +110,7 @@
     </a>
     </td>
     </tr>
-    
+
     <tr class="detector">
     <td class="detector_label">
     <b>Comment</b>
@@ -99,7 +119,7 @@
     <xsl:value-of select="comment/text()"/>
     </td>
     </tr>
-  
+
     <tr class="detector">
     <td class="detector_label">
     <b>Author</b>
@@ -111,7 +131,7 @@
 
     </table>
 
-  </xsl:for-each> 
+  </xsl:for-each>
 
   <div class="footer">
     <script language="JavaScript" type="text/javascript">
CVSspam 0.2.8