1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/test/csp/file_CSP_bug663567.xsl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<?xml version="1.0" encoding="ISO-8859-1"?> 1.5 +<!-- Edited by XMLSpy® --> 1.6 +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 1.7 + 1.8 +<xsl:template match="/"> 1.9 + <html> 1.10 + <body> 1.11 + <h2 id="xsltheader">this xml file should be formatted using an xsl file(lower iframe should contain xml dump)!</h2> 1.12 + <table border="1"> 1.13 + <tr bgcolor="#990099"> 1.14 + <th>Title</th> 1.15 + <th>Artist</th> 1.16 + <th>Price</th> 1.17 + </tr> 1.18 + <xsl:for-each select="catalog/cd"> 1.19 + <tr> 1.20 + <td><xsl:value-of select="title"/></td> 1.21 + <td><xsl:value-of select="artist"/></td> 1.22 + <td><xsl:value-of select="price"/></td> 1.23 + </tr> 1.24 + </xsl:for-each> 1.25 + </table> 1.26 + </body> 1.27 + </html> 1.28 +</xsl:template> 1.29 +</xsl:stylesheet> 1.30 +