[Yanel-commits] rev 22357 - public/yanel/trunk/src/webapp/xslt

josias at wyona.com josias at wyona.com
Thu Feb 1 15:48:21 CET 2007


Author: josias
Date: 2007-02-01 15:48:20 +0100 (Thu, 01 Feb 2007)
New Revision: 22357

Modified:
   public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl
Log:
display version information in a table

Modified: public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl
===================================================================
--- public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl	2007-02-01 14:47:54 UTC (rev 22356)
+++ public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl	2007-02-01 14:48:20 UTC (rev 22357)
@@ -139,11 +139,22 @@
 
   <xsl:template match="revisions">
     <li>Revisions:
-      <ul>
+      <table border="1" cellspacing="0">
+        <tr>
+          <th>Revision</th>
+          <th>Date</th>
+          <th>User</th>
+          <th>Comment</th>
+        </tr>
         <xsl:for-each select="revision">
-          <li>Revision: <xsl:value-of select="."/></li>
+          <tr>
+            <td><xsl:value-of select="name"/></td>
+            <td><xsl:value-of select="date"/></td>
+            <td><xsl:value-of select="user"/></td>
+            <td><xsl:value-of select="comment"/></td>
+          </tr>
         </xsl:for-each>
-      </ul>
+      </table>
     </li>
   </xsl:template>
   




More information about the Yanel-commits mailing list