1 <xsl:transform
   2   xmlns:astro="http://www.astro.com/astro"
   3   xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   4 
   5         <!--
   6          - toptemplateinc.xsl = toptemplate used in an xsl:include element
   7          -        which demands that this is a complete stylesheet.
   8          -        The related toptemplate.xsl is not a complete stylesheet
   9          -        as it is used in ext entity references.  
  10         -->
  11         
  12         <xsl:template match="astro:stardb">
  13               <stardb xmlns="http://www.astro.com/astro"
  14               xsi:schemaLocation="http://www.astro.com/astro catalog.xsd"
  15               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
  16                   <xsl:apply-templates/>
  17               </stardb>
  18         </xsl:template>
  19         
  20         <xsl:template match="astro:_test-04">
  21             <!-- discard text contents -->
  22         </xsl:template>
  23 
  24 </xsl:transform>