<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:h="http://www.w3.org/1999/xhtml"
  xmlns:sparql="http://www.w3.org/2005/01/yacker/uploads/SPARQL/"
  xmlns="http://www.w3.org/2005/01/yacker/uploads/SPARQL/"
  xmlns:yacker="http://www.w3.org/2005/01/yacker/"
  exclude-result-prefixes="xsl">

  <xsl:variable name="FacetNS" select="'http://www.w3.org/2001/sw/DataAccess/tests/facets#'"/>
  <xsl:variable name="TypeNS" select="'http://www.w3.org/2001/sw/DataAccess/tests/#'"/>
  <xsl:variable name="TITLE" select="'SPARQL Features List $Revision: 1.2 $'"/>

  <!--
  <xsl:output
    method="html"
    media-type="text/html"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
    indent="yes"
    encoding="UTF-8"/>
  -->

  <!-- or this? -->

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

  <xsl:template match="/sparql:Query">
    <h:html>
      <h:head>
	<h:title>SPARQL Facets</h:title>
      </h:head>
      <h:body>
	<xsl:apply-templates>
	</xsl:apply-templates>
      </h:body>
    </h:html>
  </xsl:template>
  <xsl:template match="//sparql:BaseDecl">
    <h:p>BaseDecl</h:p>
  </xsl:template>
  <xsl:template match="*">
    <xsl:apply-templates/>
  </xsl:template>
  <xsl:template match="text()">
  </xsl:template>
</xsl:stylesheet>
