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

Re: Applying text nodes: 2 processors, 2 behaviours

Subject: Re: Applying text nodes: 2 processors, 2 behaviours
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Mon, 18 Nov 2002 18:49:13 +0100
Re:  Applying text nodes: 2 processors
<xsl:template match="root">
<html>
  <body>
    <xsl:call-template name="msg">
      <xsl:with-param name="title">A Title</xsl:with-param>
      <xsl:with-param name="body">Body: <xsl:value-of select="node" /></xsl:with-param>
    </xsl:call-template>
  </body>
</html>
</xsl:template>

<xsl:template name="msg">
  <xsl:param name="title" />
  <xsl:param name="body" />
>   <p><strong><xsl:apply-templates select="$title" /></strong></p>
>   <p><em><xsl:apply-templates select="$body" /></em></p>
> </xsl:template>
>
> </xsl:stylesheet>

Both parameters store Result Tree Fragments in them. They can only be evaluated to strings.

You have 2 possibilities:

1. Change the RTFs to node sets, but this does not make sense in your case I think. The needed extension functions are mostly called node-set().

2. Do not use apply-templates, but value-of.

>   <p><strong><xsl:value-of select="$title" /></strong></p>
>   <p><em><xsl:value-of select="$body" /></em></p>

Furthermore you can then avoid the RTF to string conversion, you can store the strings directly:

> <xsl:with-param name="title" select="'A Title'"/>
> <xsl:with-param name="body" select="concat('Body: ', node)"/>

Regards,

Joerg


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.