xsl-list
[Top] [All Lists]

Re: [xsl] question about namespace:

2009-05-12 09:34:20
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/

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