defmonkey
By: a guest | Feb 9th, 2010 | Syntax:
None | Size: 0.66 KB | Hits: 25 | Expires: Never
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Chatlog</title>
</head>
<body>
<table border="1">
<tr>
<th>Date</th>
<th>From</th>
<th>To</th>
<th>Body</th>
</tr>
<xsl:apply-templates select="jive/packet"/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="packet">
<tr>
<td><xsl:value-of select="@timestamp"/></td>
</tr>
</xsl:template>
</xsl:stylesheet>