xsl-list
[Top] [All Lists]

Re: [xsl] Copy and group XML

2011-01-26 17:40:21
On 26/01/2011 19:40, Jacobus Reyneke wrote:
Thanks Michael, it fixed one problem but introduced another.


Transformation:
     <xsl:template match="play">
     <xsl:for-each-group select="*" group-adjacent="(@act, '?')[1]">
         <xsl:choose>
             <xsl:when test="@act">
                 <act>
                     <xsl:copy>
                         <xsl:apply-templates  select="@*|node()"/>
                     </xsl:copy>
                 </act>

In my solution, I did <xsl:apply-templates select="current-group()"/>, which will process the whole group. You have changed it to do <xsl:copy>, which only copies the context item, that is the first item in the group.

Michael Kay
Saxonica

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>