Altova Mailing List Archives
>xsl-list Archive Home
>Recent entries
>Thread Prev -
>Thread Next - Re: [xsl] CDATA question
[xsl] CDATA question
To:
Date: 6/18/2002 10:10:00 AM
Is there a way to transform a CDATA section into a
CDATA section with the same text?
What I mean is, for example, turn this
<init-param>
<![CDATA[<style>abc</style>]]>
</init-param>
into
<init-param>
<![CDATA[<style>abc</style>]]>
</init-param>
Both Xalan and XT will turn it into
<init-param>
<style>abc</style>
</init-param>
the identity transformation code I am using:
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template
match="text()|@*|comment()|*|processing-instruction()">
<xsl:copy>
<xsl:apply-templates
select="text()|@*|comment()|*|processing-instruction()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-listDisclaimer
These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

