This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: replacing a string value - copy-of


You don't may copy it, use normal xsl-templates:

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

<xsl:template match="sr">
    <br/>
</xsl:template>

Because he first template is very general, you have to pay some attention on
side effects. But you can make empty templates for all elements, which
should not be processed:

<xsl:template match="not-to-process"/>

Regards,

Joerg

> Peter, I have a similar problem with copy-of.
> I copy a whole untouched html table into my xml tree, this table has a
> little different taggings in, for example <sr/> and I want to replace this
> after copying into <br/>. How could I do it, please give me also an
example.
>
> Franz


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]