xsl-list
[Top] [All Lists]

Re: [xsl] position() affected by xsl:strip-space

2006-04-11 11:02:19

The second example, fortest3b, doesn't. It does not contain xsl:strip-space, 
nor the xml
contains line feeds. So what's its issue? Might this be a bug?

your 3b xml file does have line feeds as posted

<genericSiteDoc>
 <cityInstal>India</cityInstal><cityI

so the first child of genericSiteDoc is a text node and the cityInstall
elements
will have positions 2,3,4... if you use select="node()" (which is the
default for apply-templates. you seem to get 2 4 6 which wouldimply that
there is some space or comments that you are not seeing.
Generally it's betterto use an explicit select="cityInstall" if you want
to number with position() so you are sure that you are counting what you
expect, or use xsl:number.

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>