xsl-list
[Top] [All Lists]

AW: Embedded Stylesheet : namespace problem

2004-02-11 07:31:48
hey cool it worked! thanks.

-----Ursprüngliche Nachricht-----
Von: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk]
Gesendet: Mittwoch, 11. Februar 2004 15:14
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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



<Prev in Thread] Current Thread [Next in Thread>
  • AW: Embedded Stylesheet : namespace problem, Ronald Kent Gibson <=