[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

AW: [xsl] grouping-problem i guess


Subject: AW: [xsl] grouping-problem i guess
From: "Szabo, Patrick (LNG-VIE)" <patrick.szabo@xxxxxxxxxxxxx>
Date: Thu, 20 Nov 2008 14:41:07 +0100

Thx for your answer david !

>but since your sample input only had one list (ziffernliste) it's a bit hard
to guess what teh transform is suppoosed to do

Here an input with more lists

<liste>
	<ziffernliste>
		<listelem><symbol >1.</symbol>text</listelem>
		<listelem><symbol >2.</symbol>text</listelem>
	</ziffernliste>
	<schluss>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</schluss>
	<schluss>YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY</schluss>
	<strichliste>
		<listelem><symbol >-</symbol>text</listelem>
		<listelem><symbol >-</symbol>text</listelem>
	</strichliste>
	<schluss>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</schluss>
	<schluss>BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB</schluss>

</liste>


<nummerierte-liste>
            <listnum>1.</listnum>
            <punkt>
               <absatz>text</absatz>
            </punkt>
            <listnum>2.</listnum>
            <punkt>
               <absatz>text</absatz>
               <absatz>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</absatz>
		   <absatz>YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY</absatz>
            </punkt>
</nummerierte-liste>
<liste>
		<punkt>
               <absatz>text</absatz>
            </punkt>
		<punkt>
               <absatz>text</absatz>
		   <absatz>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</absatz>
	         <absatz>BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB</absatz>
            </punkt>
</liste>

cheers

Patrick Szabo
EPD / XSLT Konvertierung
Tel.: +43-1-534 52-1573
Fax.: +43-1-534 52-1573
patrick.szabo@xxxxxxxxxxxxx

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





-----Urspr|ngliche Nachricht-----
Von: David Carlisle [mailto:davidc@xxxxxxxxx]
Gesendet: Donnerstag, 20. November 2008 14:32
An: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Betreff: Re: [xsl] grouping-problem i guess


> I just can4t figure out how to put the "schluss" elements at their
> place O_o.

This is a grouping problem (I think) but since your sample input only had one
list (ziffernliste) it's a bit hard to guess what teh transform is suppoosed
to do

I'm guessing from  " because in <list> can be other lists with other "schluss"
elements following."

either yo could use xsl-for-each group to group schluss together with matching
ziffernliste (whatever rue you need for matching)

or perhaps you want to use sibling apply templates

in liste just apply templates to ziffernliste then after processing that pick
up schluss elements by

<xsl:apply-templates select="following-sibling::*[1][self::schluss]"/>

and have the same apply-templates call in the template for schluss that way
you pick up the elements one at a time, until the next following sibling is
not a schluss and so that process stops and control will return to processing
the next ziffernliste

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
Keywords