topical media & game development
mashup-amazon-10-10-01-SimpleTransform-Simple.xsl / xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:template match="/">
<xsl:apply-templates select="zeppelin/album" />
</xsl:template>
<xsl:template match="album">
<h2>Album Name:<xsl:value-of select="@name" /></h2>
<xsl:apply-templates select="song" />
</xsl:template>
<xsl:template match="song">
Track Name:<b><xsl:value-of select="@title" /></b><br/>
</xsl:template>
</xsl:stylesheet>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.