xsl-list
[Top] [All Lists]

html + xml -> xsl -> html - Problem

2005-11-19 15:32:20
Hi,

i've got a problem with 2 files resulting in 1 trough xsl.
I want to parse a html-template that should be filled with data
from a xml-file.

html-file:

<!-- news template -->
<table>
<tr loop="row"><td myid="title">dummytitel</td><td myid="num">1234</td></tr>
</table>
<!-- /news template -->

xml-file:

<data>
        <row class="col0">
                <title>Title A</title>
                <num>123</num>
        </row>
        <row class="col1">
                <title>Title B</title>
                <num>456</num>
        </row>
        <row class="col2">
                <title>Title C</title>
                <num>789</num>
        </row>
</data>

The thing is that i don't want to put the html-stuff inside the xsl-file
because the template could be changed.

The result should be:

<!-- news template -->
<table>
<tr><td>Titel A</td><td>123</td></tr>
<tr><td>Titel B</td><td>456</td></tr>
<tr><td>Titel C</td><td>789</td></tr>
</table>
<!-- /news template -->

Could someone give me an example how to get this?

Thx,
Jolie


-- 
Telefonieren Sie schon oder sparen Sie noch?
NEU: GMX Phone_Flat http://www.gmx.net/de/go/telefonie

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