[xsl] Does a transform understand base \ extension types?

Subject: [xsl] Does a transform understand base \ extension types?
From: Robert.Searle@xxxxxxxxxxxxx
Date: Thu, 29 Mar 2001 15:17:12 -0500
Does a transform understand base \ extension types?  For example I should be
able to search any XML file and transform it with the xsd:anyType, right?
Or, does Xalan not understand base \ sub types?


<some>
	<xml/>
</some>


<xsl:apply-templates select="xsd:anyType" />

<xsl:template match="*|@*|comment()|processing-instruction()|text()">
  <xsl:copy>
    <xsl:apply-templates 
     select="*|@*|comment()|processing-instruction()|text()"/>
  </xsl:copy>
</xsl:template>

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread