Rev | Line | |
---|
[66] | 1 | <?xml version="1.0"?> |
---|
| 2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
---|
| 3 | <xsl:output method="html"/> |
---|
| 4 | <xsl:template match="configuration"> |
---|
| 5 | <table border="1" align="center" > |
---|
| 6 | <tr> |
---|
| 7 | <th>name</th> |
---|
| 8 | <th>value</th> |
---|
| 9 | </tr> |
---|
| 10 | <xsl:for-each select="property"> |
---|
| 11 | <tr> |
---|
| 12 | <td width="35%"><b><xsl:value-of select="name"/></b></td> |
---|
| 13 | <td width="65%"><xsl:value-of select="value"/></td> |
---|
| 14 | </tr> |
---|
| 15 | </xsl:for-each> |
---|
| 16 | </table> |
---|
| 17 | </xsl:template> |
---|
| 18 | </xsl:stylesheet> |
---|
Note: See
TracBrowser
for help on using the repository browser.