xsl-list
[Top] [All Lists]

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

2008-03-14 14:39:20


 <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. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--