xsl-list
[Top] [All Lists]

AW: [xsl] grouping-problem i guess

2008-11-20 08:41:31
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(_dot_)szabo(_at_)lexisnexis(_dot_)at

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(_at_)nag(_dot_)co(_dot_)uk] 
Gesendet: Donnerstag, 20. November 2008 14:32
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Betreff: Re: [xsl] grouping-problem i guess


I just can´t 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. 
________________________________________________________________________

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