<?xml version="1.0" encoding="UTF-8" ?>  
<!--
      Takes a XQTSCatalog.xsd document instance as input, strips away all test-case elements
      and therefore creates a XQTSCatalogSubmission.xml as output.
-->
<xsl:stylesheet  xmlns:ts="http://www.w3.org/2005/02/query-test-XQTSCatalog"
                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
                 version="1.0">  
  
  <xsl:template match="ts:test-case"/>

  <xsl:template match="*">
    <xsl:copy>
      <xsl:apply-templates select="@*" />
      <xsl:apply-templates />
    </xsl:copy>
  </xsl:template>

  <xsl:template match="@*">
    <xsl:copy-of select="." />
  </xsl:template>

</xsl:stylesheet>  
<!-- // vim: et:ts=2:sw=2:sts=2
-->

