Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.79 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!-- Edited by XMLSpy® -->
  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>My CD Collection</h2>
  9.     <table border="1">
  10.     <thead>
  11.       <tr bgcolor="#9acd32">
  12.         <th>Title</th>
  13.         <th>Artist</th>
  14.       </tr>
  15.      </thead>
  16.       <xsl:apply-templates/>
  17.     </table>
  18.   </body>
  19.   </html>
  20. </xsl:template>
  21.  
  22. <xsl:template match = "catalog/cd">
  23. <tr>
  24. <xsl:apply-templates select = "title"/>
  25. <xsl:apply-templates select = "artist"/>
  26. </tr>
  27. </xsl:template>
  28.  
  29. <xsl:template match = "title">
  30. <td><xsl:value-of select = "."/></td>
  31. </xsl:template>
  32.  
  33. <xsl:template match = "artist">
  34. <td><xsl:value-of select = "."/></td>
  35. </xsl:template>
  36. </xsl:stylesheet>