Re: [xsl] Schema declarations showing up in my html

Subject: Re: [xsl] Schema declarations showing up in my html
From: David Carlisle <davidc@xxxxxxxxx>
Date: Sat, 2 Apr 2005 23:24:11 +0100
If you want to try xslt2 then copy-of in xslt2 has an extra attribute to
stop it copying in scope namespaces, but with xslt1 you need to avoid
copy-of altogether, unless of course you have the option of using the
easiest fix which is to remove the

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:noNamespaceSchemaLocation="../Styles/ActSchema.xsd"

from your source. The fact that XSD schema polute the instance documents
with this namespace is one of their less attractive features. Relax NG
for example explictly does not provide any inline schema declaration
method exactly to avoid this kind of problem. Even if you are using XSD
for validating, most validators will allow the schema to be specified
explicitly at validation time, so not need xsl:schemaLocation "hints".

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