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

[xsl] html + xml -> xsl -> html - Problem


Subject: [xsl] html + xml -> xsl -> html - Problem
From: my.office@xxxxxx
Date: Sat, 19 Nov 2005 23:32:20 +0100 (MET)

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


Current Thread