Re: [xsl] namespaces and xmlns=""

Subject: Re: [xsl] namespaces and xmlns=""
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 29 Nov 2005 11:14:23 GMT
<xsl:element name="image">

here you generate an element with local name image in no-namespace (as
the default namespace in the stylesheet is null.

You output this as a child of an element with local name channel in the
namespace http://purl.org/rss/1.0/.


The only way to express this in a conforming XML Namespace document is
to have

<image  xmlns=""/>

or to use a prefix on the channel element and use something like
<rss:channel xmlns:rss="http://purl.org/rss/1.0/"; 
 rdf:about="http://about.about.com/";>

leaving the unprefixed elements in no-namespace.

These are equivalent, it doesn't really make any difference which you
use.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread