Advertisement
Guest User

Flyounet

a guest
Feb 9th, 2010
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.67 KB | None | 0 0
  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:output
  5.  method="html"
  6.  encoding="ISO-8859-1"
  7.  doctype-public="-//W3C//DTD HTML 4.01//EN"
  8.  doctype-system="http://www.w3.org/TR/html4/strict.dtd"
  9.  indent="yes" />
  10.  
  11. <xsl:template match="jive">
  12.   <html><body>
  13.     <p>Liste de nombres :</p>
  14.     <ul>
  15.       <xsl:apply-templates select="packet" />
  16.     </ul>
  17.   </body></html>
  18. </xsl:template>
  19.  
  20. <xsl:template match="packet">
  21.   <li>
  22.     <xsl:value-of select="@timestamp" />
  23.     <xsl:text> : </xsl:text>
  24. <!--    <xsl:value-of select="." /> -->
  25.   </li>
  26. </xsl:template>
  27.  
  28. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement