[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XPATH or 2 templates ?

Subject: Re: XPATH or 2 templates ?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 18 Nov 2002 13:19:49 GMT
xsl text line ending

> <?xml-stylesheet type="text/xsl" href="E:\Zvxml\XtraTest\Test.xsl"?>

If your processor finds the stylesheet from that href it is being
unnecessarily kind to you. It should be a URI, the above refers to
some unregistered uri scheme E:
it should be
file:///E:/Zvxml/XtraTest/Test.xsl"


> Why can I not have template match on <Concat> and <Concat/*> within the same
> stylesheet ? 

You can, why do you think you can not?


> <xsl:text>&#13;</xsl:text> 	

You should use 
<xsl:text>&#10;</xsl:text> 
to get a newline, using 10 will give you an XML normalised line end
which will most likely be output by as a line end suitable for your
machine type. If you generate a 13 then the results are less
predictable, most likely you will just get a single character 13, which
may or may not be the right line end marker for your machine type.

I _think_ you want one line for each child of <Concat> so your second
part should look like

<xsl:for-each select="*">
<xsl:text>&#10;</xsl:text>
<!--
 and on this line you want all the descendent text separated by ;
-->
<xsl:for-each select=".//*[not(*)]">
<xsl:value-of select="."/>
<xsl:if test="position()!=last()">;</xsl:if>
</xsl:for-each> 
</xsl:for-each> 


David


_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.