blob: 0dcde1afabf7639b4238146b945af3cf01a1208f [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="DTD/xhtml1-strict.dtd"/>
<xsl:template match="/ProductInfo">
<table class="content table">
<xsl:if test="Details">
<xsl:call-template name="bookRow">
<xsl:with-param name="bookDetailsSet" select="Details"/>
</xsl:call-template>
</xsl:if>
<xsl:apply-templates select="ErrorMsg"/>
</table>
</xsl:template>
<!-- render multiple rows, each listing 3 books -->
<xsl:template name="bookRow">
<xsl:param name="bookDetailsSet"/>
<xsl:if test="$bookDetailsSet">
<tr>
<xsl:for-each select="$bookDetailsSet[position() &lt; 4]">
<xsl:call-template name="bookInfo"/>
</xsl:for-each>
</tr>
<xsl:call-template name="bookRow">
<xsl:with-param name="bookDetailsSet" select="$bookDetailsSet[position() &gt; 3]"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="bookInfo">
<td>
<xsl:element name="a">
<xsl:attribute name="href">page-amazon-bookInfo?AsinSearch=<xsl:value-of select="Asin"/></xsl:attribute>
<xsl:element name="img">
<xsl:attribute name="src"><xsl:value-of select="ImageUrlSmall"/></xsl:attribute>
<xsl:attribute name="alt">cover art</xsl:attribute>
</xsl:element>
</xsl:element>
</td>
<TD>
<xsl:element name="a">
<xsl:attribute name="href">page-amazon-bookInfo?AsinSearch=<xsl:value-of select="Asin"/></xsl:attribute>
<FONT face="Arial" size="-2" color="3366FF">
<xsl:value-of select="ProductName"/>
</FONT>
<br/>
</xsl:element>
<FONT face="Arial" size="-2" color="000000">
<xsl:value-of select="Manufacturer"/>
</FONT>
<br/>
<font face="Arial" size="-2">
<font color="990000">New <xsl:value-of select="OurPrice"/></font>
</font>
</TD>
</xsl:template>
<xsl:template match="ErrorMsg">
<div title="Error Message">
<xsl:value-of select="."/>
</div>
</xsl:template>
</xsl:stylesheet>