home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <!-- Edited with XML Spy v4.2 -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/">
- <html>
- <body>
- <h2>Log Results</h2>
- <table border="1" width="80%">
- <tr bgcolor="#EEEEFF">
- <th align="left">Date</th>
- <th align="left">ID</th>
- <th align="left">Message</th>
- </tr>
- <xsl:for-each select="LOG/Msg">
- <tr>
- <td><xsl:value-of select="@time"/></td>
- <td><xsl:value-of select="@ID"/></td>
- <td><xsl:value-of select="."/></td>
- </tr>
- </xsl:for-each>
- </table>
- </body>
- </html>
- </xsl:template>
- </xsl:stylesheet>