Re: [xsl] question about namespace:

Subject: Re: [xsl] question about namespace:
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Tue, 12 May 2009 15:33:38 +0200
Dmitri Snytkine wrote:
Is it true that child elements don't automatically inherit namespace
of parent element?
In this example the tr_string element is not automatically in 'trans' namespace?

<trans:tr page_id="global">
        <tr_string str="recent_albums">

As the 'tr_string' element does not have any prefix at all it is either in no namespace or it is in the namespace declared on an ancestor with a default namespace declaration (e.g. xmlns="http://example.com/ns";).
You would need to have
<trans:tr page_id="global">
<trans:tr_string str="recent_albums">
...
to have the 'tr_string' element in the same namespace as the 'tr' element.



--


	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

Current Thread