xsl-list
[Top] [All Lists]

Re: unwanted xmlns and shape attributes

2005-09-09 07:01:31

a. The inserted anchor shows xmlns="" as an attribute,
   but how do I to get rid of it?  

the namespace is part of the name so essentially you change the
namespace the same way as you would change letters in the local part of
the element name.
If you are generating everything in xhtml putting
xmlns="http://www.w3.org/1999/xhtml"; on your xsl:stylesheet is the most
natural way, but if you only want to generate this one element in xhtml
namespace you can put the namespace declaration on the literal result
element <a> in the stylesheet.

b. The second anchor shows a shape="rect" attribute,
   which is not in the source and again the question
   is how do I to get rid of it?  

It is in the source tree as seen by xslt: it is defaulted by the dtd so
added by the xml parser while building the input tree before xslt starts.

You either need to stop the dtd being read by either removing teh
<!DOCTYPE or using an entity resolver that ignores it, or change your
styleshet not to copy but instead traverse down the tree and omit this
attribute. Note that if you remove the dtd you may need to explictly add
an xmlns="http://www.w3.org/1999/xhtml"; to your source (as it is
defaulted by the dtd, and otherwise teh elements will be in no-namespace
if you remove the dtd)

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
________________________________________________________________________

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