[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Identity Transform with special grouping

Subject: Re: Identity Transform with special grouping
From: Senthilukvelaan <skumaravelan@xxxxxxxxxxxxxx>
Date: Sat, 5 Feb 2011 06:12:13 -0800
 Re: Identity Transform with special grouping
"sections" element is not showing up in my output. I do not know , how
could I include that in my xslt.

Thanks,
Sen

On Friday, February 4, 2011, Senthilukvelaan
<skumaravelan@xxxxxxxxxxxxxx> wrote:
> Hi
>
> I am trying to do the identity transform with grouping on the node
> name under section. I want select only the first section node and put
> it under sections. Based the conditions I might need to select more
> than one section. The application might change the configuration to
> make 2 or 3 ..n.
>
>
> My XML looks like
> <event>
> <note>
> </note>
> <note>
> </note>
> <header>
> <section>
> <para1>test</para1>
> <para1>test</para1>
> </section>
> <section>
> <para1>test</para1>
> <para1>test</para1>
> </section>
> <section>
> <para1>test</para1>
> <para1>test</para1>
> </section>
> </header>
> <payload>
> <elements/>
> </payload>
> </event>
>
> My xslt looks for the expected out
>
>
> <?xml version="1.0" encoding="utf-8"?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
> <xsl:output method="xml" omit-xml-declaration="yes"  indent="yes"
> encoding="UTF-8" />
>
> <!--NO change here is expected, because node names are dynamic in nature-->
> <xsl:template match="node() | @*">
> <xsl:copy>
> <xsl:apply-templates select="node()| @*"/>
> </xsl:copy>
> </xsl:template>
>
>  <xsl:template match="header/section[position() &lt; 2]" >
>      <xsl:apply-templates select="@*|node()"/>
> </xsl:template>
>
> <xsl:template match="section" >
> </xsl:template>
> </xsl:stylesheet>
>
> My expected output is
> <event>
> <note>
> </note>
> <note>
> </note>
> <header>
> <sections>
> <section>
> <para1>test</para1>
> <para1>test</para1>
> </section>
> </sections>
> </header>
> <payload>
> <elements/>
> </payload>
> </event>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.