xsl-list
[Top] [All Lists]

RE: Namespace problem

2004-09-11 02:25:03
I went through agonies making sure that you could follow the parent axis
correctly from a namespace node, thinking that the code would only ever by
used by conformance tests... Nice to know I was wrong.

Michael Kay 
http://www.saxonica.com/

-----Original Message-----
From: George Cristian Bina [mailto:george(_at_)sync(_dot_)ro] 
Sent: 11 September 2004 08:00
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Namespace problem

Hi,

If you rewrite

 > <xsl:value-of
 > 
select="namespace::*[starts-with(name(),substring-before(paren
t::node()/@nam
 > e,':'))]"/>

as

<xsl:value-of 
select="namespace::*[starts-with(name(),substring-before(curre
nt()/parent::node()/@name,':'))]"/>

or as

<xsl:variable name="prefix" 
select="substring-before(parent::node()/@name,':')"/>
                 <xsl:value-of 
select="namespace::*[starts-with(name(),$prefix)]"/>

then Xalan will give the expected result.

Hope that helps,
George
------------------------------------------------
George Cristian Bina mailto:george(_at_)oxygenxml(_dot_)com
<oXygen/> XML Editor and XSLT Editor/Debugger
http://www.oxygenxml.com/



--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--





<Prev in Thread] Current Thread [Next in Thread>