RE: [xsl] Reusing templates and params

Subject: RE: [xsl] Reusing templates and params
From: "Carl Radley" <Carl.Radley@xxxxxxxxxxx>
Date: Wed, 14 May 2008 14:59:08 +0100
Thank you David.
It now works.

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: 14 May 2008 14:49
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Cc: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Reusing templates and params



> I fear I must suffer the wrath of posting a full stylesheet
not a full stylesheet you removed the xsl:stylesheet lines (which just
means anyone running it has to put them back)

it's looping on readString which if passed a zero length string just
calls itself forever, adding a test for that in the when as here
(no need to test string-length > 0, a non empty string test as true.




  <xsl:template name="readString">
    <xsl:param name="inputString" />
    <xsl:choose>
      <xsl:when test="string($inputString)"/>

then I get output
<myOutput><Line><Value/><Value/><Value/><Value/></Line><Line><Value/><Value/>
<Value/><Value/></Line><Line><Value/><Value/><Value/><Value/></Line></myOutpu
t>

I think you want non empty value eleemnts but i didn't trace all your
logic, and I don't think you specified your desired output.

If you are using xslt2, I think you just want a couple of calls to
tokenize() (tokenizing on #10 to get the lines, and , to get the
values.) In which case you don't need explict recursion at all.


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________



----------------------------------------------------------------
This e-mail (which includes any files attached to it) is not
contractually binding on its own, it is intended solely for
the named recipient and may contain CONFIDENTIAL, legally
privileged or trade secret information protected by law.
If you have received this message in error please delete it
and notify us immediately by telephoning +44(0)2476421213.
If you are not the intended recipient you must not use, disclose,
distribute, reproduce, retransmit, retain or rely on any
information contained in this e-mail. Please note that Severn
Trent Laboratories Limited reserve the right to monitor email
communications in accordance with applicable law and regulations.

To the extent permitted by law, neither Severn Trent Laboratories
Limited or any of its subsidiaries, nor any employee, director
or officer thereof, accepts any liability whatsoever in relation
to this e-mail including liability arising from any external breach
of security or confidentiality or for virus infection or for statements
made by the sender as these are not necessarily made on behalf of
Severn Trent Laboratories Limited.

Severn Trent Laboratories Limited is a limited company registered in
England and Wales under registered number 2148934 with its registered
office at 2297 Coventry Road, Birmingham B26 3PU.
-----------------------------------------------------------------------

Current Thread