AW: AW: [xsl] compare attributes

Subject: AW: AW: [xsl] compare attributes
From: "Szabo, Patrick \(LNG-VIE\)" <patrick.szabo@xxxxxxxxxxxxx>
Date: Fri, 11 Sep 2009 12:55:17 +0200
still doensB4t work :(

okay iB4m 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.Szabo@xxxxxxxxxxxxx

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

-----UrsprC<ngliche Nachricht-----

Von: David Carlisle [mailto:davidc@xxxxxxxxx]
Gesendet: Freitag, 11. September 2009 12:06
An: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
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.
________________________________________________________________________

Current Thread