RE: [xsl] eliminating multiple repeated tags in my XML

Subject: RE: [xsl] eliminating multiple repeated tags in my XML
From: "Cindy Maisannes" <Cindy.Maisannes@xxxxxxxxxxxxxxxx>
Date: Tue, 18 Mar 2008 10:22:54 -0400
Thanks again for your help, David -- this works perfectly and I
understand how you got there now, I think!

Best,
Cindy

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Friday, March 14, 2008 5:39 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] eliminating multiple repeated tags in my XML



 <xsl:when test="current-grouping-key()">
           <related-article related-article-type="original-article">
                  <xsl:copy-of select="current-group()/*"
           copy-namespaces="no"/>

This one is copying teh element node children, but you eant text as
well, so change * to nodee()

                    <xsl:otherwise>
                        <xsl:copy-of select="current-group()/*"
copy-namespaces="no"/>

This one  Ithink's an error, in the case of the elements that you are
not grouping, you want the entire element its children so you just want

select="current-group()"

David




________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________

Current Thread