xsl-list
[Top] [All Lists]

RE: Problems with a right order display of tags

2004-03-31 02:24:05
Hi,

<xsl :call-templates match=  /A >
is not valid XSLT.

Take a look at http://www.mulberrytech.com/quickref/index.html for the syntax.

Another good url to get started is: http://www.dpawson.co.uk/xsl/index.html

Cheers,
Agnes

-----Original Message-----
From: Bertrand Sauviat [mailto:bsauviat(_at_)elanspeech(_dot_)com]
Sent: woensdag 31 maart 2004 10:52
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: [xsl] Problems with a right order display of tags


Hello,

I want display the contents of my XML document with an XSL stylesheet in the
order of the XML document

 

My Xml here :

 

<A>

   <B></B>

   <B></B>

   <B></B>

   <C></C>

   <C></C>

   <B></B>

</A>

 

My XSL here (extract) :

 

<body>

<xsl :call-templates match=  /A >

<xsl :call-templates match=  /A/B >

<xsl :call-templates match=  /A/C >

</body>

 

For each template I have some instructions but the problem isn't here..

 

After the transformation, In output I have :

<A>

            <B></B>

            <B></B>

            <B></B>

            <B></B>

            <C></C>

            <C></C>

</A>

 

Is it possible to keep the order of the XML document after the
transformation.

There is no distinction between <B> and <C>

 

Thanks for help

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