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