Re: [xsl] Namespaces

Subject: Re: [xsl] Namespaces
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 9 Jun 2003 23:21:13 +0100
As others have said your problem is most likely that the DTD is
defaulting a namespace so you need to match elements in that namespace
not in no-namespace, but a comment on your output.

You are generating html so you shouldn't have any namespace declared for
the output

ie get rid of this line:
    xmlns="http://www.w3.org/TR/REC-html40";>

There is no such namespace defined for HTML. Some early drafts of XSLT 1
did suggest this rather dubious use, but it was removed in favour of the
<xsl:output method="html"/>
instruction before XSLT1 was finalised as a Recommendation.

Also for the HTML output method, you should never put
in         <META HTTP-EQUIV="Content-Type"
  CONTENT="text/html;" CHARSET="UTF-8"/>

as the system will add its own meta element specifying the encoding it
used, so at best this will be superflous but at worst it will be
incorrect as the encoding specified in xsl:output is only a hint and a
system may output in some other encoding. 

David

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


Current Thread