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
|