xsl-list
[Top] [All Lists]

Re: [xsl] Identical entries in different input documents should appear in the output document only once

2007-09-07 13:54:56

That's all ... Wow :-)

it's a bit more than you need though:-)


   <xsl:for-each select="current-group()[1]"> <!-- In my case all blocks

is (always) the same thing as

   <xsl:for-each select="."> <!-- In my case all blocks

which is always the same thing as

     <!-- In my case all blocks

so the code can be


<xsl:for-each-group select="document($allFiles)//root/block"
group-by="idTag">
 <!-- In my case all blocks
from different files are really identical -->
      <xsl:call-template name="makeMyTransformationOnTheBlock"/>
</xsl:for-each-group>


If <root> is always the top level element, using /root/block instead of
//root/block would save the processor a lot of work as // implies
(except when Michael optimizes it away) a full search to arbitrary depth
of each document to find all elements of that name.


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

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