RE: parametrized xsl

Subject: RE: parametrized xsl
From: Jonathan Asbell <jonathan.asbell@xxxxxxxxxxxxxx>
Date: Tue, 23 May 2000 12:14:48 -0400
Can anyone point me to the xsl api javadoc section that discusses this, and
or the w3c recommendation section.

Thanx

-----Original Message-----
From: Jonathan Asbell [mailto:jonathan.asbell@xxxxxxxxxxxxxx]
Sent: Tuesday, May 23, 2000 9:34 AM
To: 'xsl-list@xxxxxxxxxxxxxxxx'
Subject: RE: parametrized xsl


Is their a direct association with xsl and request objects in the xsl api
????

-----Original Message-----
From: Jeni Tennison [mailto:Jeni.Tennison@xxxxxxxxxxxxxxxx]
Sent: Tuesday, May 23, 2000 5:44 AM
To: Evgenii Bazarov
Cc: xsl-list@xxxxxxxxxxxxxxxx
Subject: Re: parametrized xsl


Evg,

>and I would like somehow to output only one chapter (e.g. "c4").
>The chapter number is based on the input from client.
>The xsl is more or less static, does it mean that I will
>have to deal with DOM representation
>of the XSL sheet, change it each time and run processor. Or
>maybe there is way to do this without touching Java?

If you can pass parameters to the stylesheet, then the following will work:

<xsl:param name="chapter" />

<xsl:template match="chapter">
  <xsl:if test="@no = $chapter">
    <xsl:copy-of select="." />
  </xsl:if>
</xsl:template>

How you pass parameters to the stylesheet will depend on the XSLT processor
you're using and how you're using it.

Hope that helps,

Jeni

Dr Jeni Tennison
Epistemics Ltd, Strelley Hall, Nottingham, NG8 6PE
Telephone 0115 9061301 * Fax 0115 9061304 * Email
jeni.tennison@xxxxxxxxxxxxxxxx



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


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


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


Current Thread