[Yanel-commits] rev 49639 - public/yanel/trunk/src/contributions/resources/security-api/htdocs

michi at wyona.com michi at wyona.com
Sun May 16 23:55:14 CEST 2010


Author: michi
Date: 2010-05-16 23:55:14 +0200 (Sun, 16 May 2010)
New Revision: 49639

Modified:
   public/yanel/trunk/src/contributions/resources/security-api/htdocs/group-overview.xsl
Log:
nesting implemented and some minor style added

Modified: public/yanel/trunk/src/contributions/resources/security-api/htdocs/group-overview.xsl
===================================================================
--- public/yanel/trunk/src/contributions/resources/security-api/htdocs/group-overview.xsl	2010-05-16 21:40:31 UTC (rev 49638)
+++ public/yanel/trunk/src/contributions/resources/security-api/htdocs/group-overview.xsl	2010-05-16 21:55:14 UTC (rev 49639)
@@ -23,20 +23,29 @@
       </head>
       <body>
         <h1>Group Overview of <xsl:value-of select="/security-api/s:group/@id"/></h1>
-        <ul>
+        <p>Generiert am 14.5.2010 | 20:45</p>
+        <table>
         <xsl:apply-templates select="/security-api/s:group/s:members/s:group"/>
         <xsl:apply-templates select="/security-api/s:group/s:members/s:user"/>
-        </ul>
+        </table>
       </body>
     </html>
   </xsl:template>
 
   <xsl:template match="s:user">
-    <li>Member User: <xsl:value-of select="@id"/></li>
+    <tr><td style="background-color: #c8ffc8;">u: <xsl:value-of select="@id"/></td><td>&#160;</td></tr>
   </xsl:template>
 
   <xsl:template match="s:group">
-    <li>Member Group: <xsl:value-of select="@id"/></li>
+    <tr>
+      <td style="background-color: #ffcc99;">g: <xsl:value-of select="@id"/></td>
+      <td>
+        <table>
+        <xsl:apply-templates select="s:members/s:group"/>
+        <xsl:apply-templates select="s:members/s:user"/>
+        </table>
+      </td>
+    </tr>
   </xsl:template>
   
 </xsl:stylesheet>



More information about the Yanel-commits mailing list