Re: [xsl] xsl pipeline?

Subject: Re: [xsl] xsl pipeline?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 22 Jan 2003 10:23:59 GMT
Your code is neither legal XSLT nor legal
the-language-known-as-xsl-in-ie5 These two languages are entirely
distinct (and this list is just about the former)

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>


You can not put one xsl:stylesheet element inside another and hope it
will do anything You should have got a syntax error rrather than just a
blank page.


If you discard the http://www.w3.org/TR/WD-xsl lines you will have a
a chance of it being a valid xslt stylesheet, but there are some syntax
errors:

<xsl:if match=".[LAN='1']">

xsl:if does not have a match attribute and you can not use [ after . in
XSLT.

that should be

<xsl:if test="LAN='1'">

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread