|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Doubled output of text nodes
This will do it -
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" encoding="UTF-8" />
<xsl:template match="/root">
<root id='{generate-id()}'>
<xsl:apply-templates />
</root>
</xsl:template>
<xsl:template match="node">
<node id='{generate-id()}'>
<xsl:apply-templates/>
</node>
</xsl:template>
<!-- Identity transformation template -->
<xsl:template match='*|@*'>
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
You see the idea - use the identity transformation for everything except the
exact elements that you wish to change. Those elements you change as you
wish.
Cheers,
Tom P
[Charles Knell]
> I have an application which produces XML docs similar to this one:
> ---------------------------------------------------------
> <?xml version="1.0"?>
> <root>
> <node>
> <node>Topic A
> <node>Subtopic A.1
> <node>Subtopic A.1.a</node>
> </node>
> </node>
> <node>Topic B</node>
> </node>
> </root>
> ---------------------------------------------------------
> I wish to use XLT to add unique id's to each node element, but otherwise
> copy the content unchanged to the output. I have worked out this XSLT:
>...
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








