<?xml version="1.0"?>
<!-- VLDB 2008 track formatting stylesheet
     Gerald Weber, Hong-Yul Yang, The University of Auckland -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="Track">
	<html><head>
		<!--BASE href="papers" /-->
		<link rel="stylesheet" type="text/css" href="vldb2010.css" />
		<title><xsl:apply-templates select="tracktitle/name" />
		</title>
	</head>
  <body>
	<xsl:apply-templates/>
  </body></html>
</xsl:template>
<xsl:template match="tracktitle">
	<p align="right">
		<a href="vldb2010.htm">[back]</a>
	</p>
	<h1>
	<xsl:apply-templates/>
  </h1>
</xsl:template>
<xsl:template match="workshop">
	<html><head></head>
  <body>
	<xsl:apply-templates/>
  </body></html>
</xsl:template>
<xsl:template match="file">
	<p> <xsl:text>p.</xsl:text><xsl:value-of select="pagenumber" /><xsl:text>:&#160;</xsl:text>
	
    <b>
      <a>
        <xsl:attribute name="NAME">
          <xsl:value-of select="filename" />
        </xsl:attribute>
        <xsl:attribute name="HREF">
          <xsl:text>papers/</xsl:text><xsl:value-of select="filename" />
        </xsl:attribute>
        <xsl:value-of select="title" />
      </a>
    </b>
    <br/>
  	<xsl:apply-templates select="authorlist" />
  </p>
</xsl:template>
<xsl:template match="separator">
	<H2> 
		<xsl:apply-templates /> 
		</H2>
</xsl:template>

</xsl:stylesheet>

