Subject: Re: how to define a namespace-prefix for null-namespace
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 17 Mar 2005 17:47:58 GMT
|
In my XSLT-stylesheet I wanted to define a xmlns-prefix for that
null-namespace,
The XML Namespaces rec does not allow a prefix to be used with
no-namespaace.
With XML Namespace 1.0 (which is the version used by almost all systems)
xmlns:my=""
is a syntax error.
With WXML Namespace 1.1 xmlns:my="" is allowed but it does not make
<my:foo/> refer to foo in no-namespace it unbinds the prefix my (if it
had already been bound) so making <my:foo/> an error.
So your requested result isn't conformant to the XML namespaces rec, and
XSLT won't generate it for you.
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
________________________________________________________________________
|