This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Namespace name from node?


> > 
> > 			<!-- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]