home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Comunicatii / cerberus / CerberusInstall.msi / _53986AB4C2ADDD4855A58D095620605C / _58EA84FFB381436CAB07C412BC049E1F < prev    next >
Extensible Markup Language  |  2004-04-30  |  718b  |  26 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!-- Edited with XML Spy v4.2 -->
  3. <xsl:stylesheet version="1.0"
  4. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  5. <xsl:template match="/">
  6.   <html>
  7.   <body>
  8.   <h2>Log Results</h2>
  9.     <table border="1" width="80%">
  10.       <tr bgcolor="#EEEEFF">
  11.         <th align="left">Date</th>
  12.         <th align="left">ID</th>
  13.         <th align="left">Message</th>
  14.       </tr>
  15.       <xsl:for-each select="LOG/Msg">
  16.       <tr>
  17.         <td><xsl:value-of select="@time"/></td>
  18.         <td><xsl:value-of select="@ID"/></td>
  19.         <td><xsl:value-of select="."/></td>
  20.       </tr>
  21.       </xsl:for-each>
  22.     </table>
  23.   </body>
  24.   </html>
  25. </xsl:template>
  26. </xsl:stylesheet>