[xsl] Re: xsl-list Digest 24 Sep 2004 05:10:00 -0000 Issue 187

Subject: [xsl] Re: xsl-list Digest 24 Sep 2004 05:10:00 -0000 Issue 187
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 24 Sep 2004 13:54:51 +0100
> Could you please tell me what should I use for my <xsl:apply-template...
> and <xsl:template match... ?


So why do you need any parameter at all?

You just need

<xsl:template match="x">
<html>
<head>...</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>

<xsl:template match="CUSTOMERS">
 ...
</xsl:template>

<xsl:template match="SUPPLIERS">
 ...
</xsl:template>

...

What exactly is the problem that you have? This situation is no different
from saying that uou want to process XHTML input and you don't know
whether there will be an <em> or a <br/> etc in the source, basically it
doesn't matter what there is, you just put in templates for anything
that might be there. If it is there the template will be used, if it
isn't there it won't do any harm.

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread