get paid to paste

spring

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml"
	doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
	doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
	omit-xml-declaration="yes"
	encoding="UTF-8"
	indent="yes" />

<xsl:template match="/">
 <xsl:template match="/">
    <html>
        <head>
            <title>Hello World!</title>
        </head>
        <body>
            <h1>Symphony Greets the World</h1>
 <xsl:apply-templates select="/data/sidebar/entry"/>
 <h2>Greetings</h2>
 <ul>
    <xsl:apply-templates select="/data/sidebar/entry"/>
 </ul>
 <xsl:template match="sidebar/entry">
    <li><xsl:value-of select="sidebar-text"/></li>
 </xsl:template>

        </body>
    </html>
 </xsl:template>

	
</xsl:template>
</xsl:stylesheet>

Pasted: Mar 9, 2010, 11:36:54 pm
Views: 115