<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
	<xsl:template match="/">
		<html>
			<head>
				<title>Sprite: <xsl:value-of select="database/@user"/>@<xsl:value-of select="database/@name"/></title>
			</head>
			<body>
				<xsl:apply-templates select="database/select"/>
			</body>
		</html>
	</xsl:template>

	<xsl:template match="database/select">
		<table border="1">
			<caption><xsl:value-of select="/database/@user"/>@<xsl:value-of select="/database/@name"/>: <xsl:value-of select="/database/select/@query"/></caption>
			<xsl:apply-templates select="columns"/>
			<xsl:apply-templates select="row"/>
		</table>
	</xsl:template>

	<xsl:template match="columns">
		<tr>
			<xsl:apply-templates select="column"/>
		</tr>
	</xsl:template>

	<xsl:template match="column">
		<th><xsl:value-of select="name"/></th>
	</xsl:template>

	<xsl:template match="row">
		<tr>
			<xsl:apply-templates select="*"/>
		</tr>
	</xsl:template>

	<xsl:template match="/database/select/row/*">
		<td valign="top"><xsl:value-of select="."/></td>
	</xsl:template>

</xsl:stylesheet>

