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

AW: [xsl] Embedded Stylesheet : namespace problem


Subject: AW: [xsl] Embedded Stylesheet : namespace problem
From: Ronald Kent Gibson <Kent.Gibson@xxxxxxxxxxx>
Date: Wed, 11 Feb 2004 15:31:48 +0100

hey cool it worked! thanks.

-----Ursprüngliche Nachricht-----
Von: David Carlisle [mailto:davidc@xxxxxxxxx]
Gesendet: Mittwoch, 11. Februar 2004 15:14
An: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Betreff: Re: [xsl] Embedded Stylesheet : namespace problem



children of xsl:stylesheet have to be in a namespace: you can not have
no-namespace elements there.

However grandchildren of xsl:stylseet can be in no-namespace so if you
want to embed LETTER in no namespace, do:


<xsl:stylesheet....>

<x:wrapper xmlns:x="data:,x" xmlns="">
 <LETTER>
...

Then of course you would need to change
	<xsl:template match="xsl:stylesheet">
		<xsl:apply-templates select="icon:LETTER"/>

to
	<xsl:template match="xsl:stylesheet">
		<xsl:apply-templates select="*/LETTER"/>
and remove other instances of icon:

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
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

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



Current Thread