Re: [xsl] Namespace name from node?

Subject: Re: [xsl] Namespace name from node?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 6 Dec 2001 10:22:31 GMT
> > 
> > 			<!-- If the namespace name equal to "xhtml" , then -->

> Try with
> 
>    <xsl:when test="substring-before(name(),':')='xhtml'">

no, that assumes a particular prefix (and the name() function might use
any prefix at all, it's not forced to use the same prefixes as in the
source). The namespace-uri(.) function will return the namespace name
of the node. But probably all that is needed here is
<xsl:when test="self::xhtml:*"> if xhtml is the namespace prefix for
XHTML in the stylesheet.


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread