xsl-list
[Top] [All Lists]

AW: AW: [xsl] compare attributes

2009-09-11 06:55:41
still doens´t work :(

okay i´m doing this:

<xsl:choose>
        
        <xsl:when test="every $x in current-group()/zs_absatz/listenpunkt/@ilfo 
satisfies $x eq current-group()[1]/zs_absatz[1]/listenpunkt/@ilfo">             
                <zs_liste ilfo="{current-group()[1]/listenpunkt[1]/@ilfo}">
                        <xsl:apply-templates select="current-group()"/>
                </zs_liste>

        </xsl:when>
        
        <xsl:otherwise>                                                         

                <zs_liste ilfo="ungleiche ilfos">
                        <xsl:apply-templates select="current-group()"/>
                </zs_liste>                                                     
        

        </xsl:otherwise>

</xsl:choose>

group looks as follows:

   <zs_absatz>
        <listenpunkt ilfo="x">text steht dann hier drinne
   </zs_absatz>
   <zs_absatz>
        <listenpunkt ilfo="x">text steht dann hier drinne
   </zs_absatz>
   <zs_absatz>
        <listenpunkt ilfo="x">text steht dann hier drinne
   </zs_absatz>
   <zs_absatz>
        <listenpunkt ilfo="x">text steht dann hier drinne
   </zs_absatz>
   <zs_absatz>
        <listenpunkt ilfo="x"l>text steht dann hier drinne
   </zs_absatz>
   <zs_absatz>
        <listenpunkt ilfo="x">text steht dann hier drinne
   </zs_absatz>  


regards 



Patrick Szabo
 XSLT-Entwickler 

Tel.: +43 (1) 534 52 - 1573 
Fax: +43 (1) 534 52 - 146 

Patrick(_dot_)Szabo(_at_)lexisnexis(_dot_)at

LexisNexis Verlag ARD Orac GmbH & Co KG
Marxergasse 25, 1030 Wien
FN 8333f, Handelsgericht Wien
http://www.lexisnexis.at/
 
-----Ursprüngliche Nachricht-----

Von: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Gesendet: Freitag, 11. September 2009 12:06
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Betreff: Re: AW: [xsl] compare attributes



 eq current-group()/zs_absatz[1]/

you haven't shown what the group is, but that probably needs to be 

 eq zs_absatz[1]/

as on the right hand side of the eq you want a single item (eg the
first) and then you are testing thatevery other item is equal to that.
so you could use

current-group()[1]/zs_absatz[1]/

except that current-group()[1]/ is teh same as ./ which you can always
omit.

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




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