|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: updated namespace difficulty
I wrote:
> S Woodside wrote:
> ...
...
> > <xsl:template match="my:form_textarea" priority="1">
> > <b>SIMONHELLO</b>
> > </xsl:template>
> > <!--
> > [[xsl:template match="*" priority="-1"]]
> > [[xsl:copy-of select="."/]]
> > [[/xsl:template]]
> > -->
...
> Instead of your commented-out template, try this one:
>
> <xsl:template match="*|@*">
> <xsl:copy>
> <xsl:apply-templates select="*|@*"/>
> <xsl:copy>
> </xsl:template>
... which is almost, but not quite, correct. The <xsl:apply-templates>
element should look like this instead:
<xsl:apply-templates select="node()|@*"/>
Unlike my original line, this corrected line will invoke the default
templates for processing instruction nodes, comment nodes, and especially
text nodes.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








