<!--

   XSLT Stylesheet Template.
   
   AUTHOR:        Leigh Dodds. 
   
   DESCRIPTION: Converts a 'rich' Tag Library Descriptor into 
                       a plain descriptor suitable for deployment.
   
   DATE             11/1/2001

  -->
  
<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml"
                omit-xml-declaration="yes"
                doctype-public="-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
                doctype-system="http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"/>
                
<xsl:template match="p|b|i|u|a|attribute/info"/>

<xsl:template match="*">
<xsl:copy>
   <xsl:apply-templates/>
</xsl:copy>
</xsl:template>
  
</xsl:stylesheet>  