RE: [xsl] namespace value output at weird location

Subject: RE: [xsl] namespace value output at weird location
From: "Jacobs, Robert A." <ra.jacobs@xxxxxxx>
Date: Thu, 31 Mar 2005 18:10:10 -0600
That did it, thanks.

I guess what I don't understand, then, is why that
namespace value didn't show up in the following lines(<li><br><ul>):

--------------
TUTOR: Select Colors for House Painting<br
xmlns:jtt="http://mil.jcsj2t.jtt30";><ol xmlns:jtt="http://mil.jcsj2t.jtt30";>
   <li>Select one of the following:<br><ul>
----------

So is "exclude-result-prefixes=" boilerplate then when
namespaces other than xsl are included in a stylesheet?

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Thursday, March 31, 2005 5:59 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] namespace value output at weird location



When you use a literal result eleemnt such as <br/> in your stylesheet
it gets copied to the result along with all its namespace nodes (except
those namespaces that are not copied) Initially th eonly namespace that
isn't copied is the xsl one, but you also have jtt in scope which you
don't want copied so add
add exclude-result-prefixes="jtt" to xsl:stylesheet.

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