Share Pastebin
Guest
Public paste!

defmonkey

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.66 KB | Hits: 25 | Expires: Never
Copy text to clipboard
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.  
  4.   <xsl:template match="/">
  5.     <html>
  6.       <head>
  7.         <title>Chatlog</title>
  8.       </head>
  9.       <body>
  10.         <table border="1">
  11.          <tr>
  12.            <th>Date</th>
  13.            <th>From</th>
  14.            <th>To</th>
  15.            <th>Body</th>
  16.          </tr>
  17.          <xsl:apply-templates select="jive/packet"/>
  18.         </table>
  19.       </body>
  20.     </html>
  21.   </xsl:template>
  22.  
  23.   <xsl:template match="packet">
  24.     <tr>
  25.       <td><xsl:value-of select="@timestamp"/></td>
  26.     </tr>
  27.   </xsl:template>
  28.  
  29. </xsl:stylesheet>