Re: [xsl] What effect does DOCTYPE have

Subject: Re: [xsl] What effect does DOCTYPE have
From: "Rick Quatro" <frameexpert@xxxxxxxxxxxx>
Date: Tue, 31 Jan 2006 09:08:03 -0500
David,

Yes, now it is making sense; I am searching for a string instead of a node.

I am using Saxon 8 for testing, but the end user is using an XSLT 1 processor. Thanks for the help.

Rick


it takes a long time, and I finally get an out of
memory error. Does the XSLT processor try to read the DTD?

Yes but that isn't what is taking the time. You asked it to find every substring that matches "" and replace it by "" and recurse until it stops. This only stops when you run out of memory.

select="hide"

selects all child elements named <hide/> and since you use this in a
string context it takes the string value of the first one (or in this
case "" since there are none)  same for select="show". You probably
meant
select="'hide'"
to refer to a string not an element.

If you are using saxon 8 why don't you use XSLT2 and use the built in
replace() function which is much easier than using a template for this.

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