xsl-list
[Top] [All Lists]

Re: Semantics of deep-equal function

2005-07-20 02:18:53
Thanks David for your comments.. I am happy with xsl:strip-space
elements="*". It works for me.

Regards,
Mukul

On 7/20/05, David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk> wrote:
 The results are as expected. It seems deep-equal considers white
 spaces significant. Is there any way I can do deep equals comparison
 ignoring the white spaces?


The WG have had many comments on the official commentlist to teh efect
taht deep-equal is essentially useless (and has been inconsistently, and
differently, defined in every draft but the current one, as far as I can
rememeber). the problem is that in any real case people don't want a
fixed deep-equals they need to tune whetherwhite space or comments or
attribute or whatever are considered significant.

That said, you have a few choices.

a)
add xsl:strip-space elements="*" so that much of the white space in your
input is ignored

or

b)
before using deep-equal process the nodes (into a variable) with a mode
that normalizes space (ie do a modified identity trasform with a special
template matching text().

or

c)
use a collation that considers white space insignificant. (I'm not sure
what collations saxon currently offers)

or

d)
ignore deep-equal and write your own recursive function (this is likely
to be more efficient than (b) but less efficient than eitherr (a) or (c).



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



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