Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xsl] How to return values from sub-template?

From: "Andrew Welch" <ajwelch@--------------->
To:
Date: 12/1/2004 11:15:00 AM
> I think it should be sufficient to use
>
> <?xml version="1.0" encoding="UTF-8"?>
> <xsl:stylesheet version="2.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> 	<xsl:output method="xml" version="1.0" encoding="UTF-8"
> indent="yes"/>
> 	<xsl:template match="/">
> 		Age exists=
> 		<xsl:call-template name="subtemp">
> 			<xsl:with-param name="parm"
> select="//myelement[@name = 'karl']"/>
> 		</xsl:call-template>
> 	</xsl:template>
> 	<xsl:template name="subtemp">
> 		<xsl:param name="parm"/>
> 		<xsl:value-of select="exists(@age)"/>
> 	</xsl:template>
> </xsl:stylesheet>

..but here you aren't doing anything with the parameter 'parm', the
exists() test would applied to the root and not to <myelement>.

The whole thing could be rewritten as:

<xsl:template match="/">
  Age exists = <xsl:value-of select="boolean(//myelement[@name =
'karl'])"/>
</xsl:template>

If you really wanted it as a named template then you would need:

<xsl:template name="subtemp">
    <xsl:param name="parm"/>
    <xsl:for-each select="$parm">
        <xsl:value-of select="boolean(@age)"/>
    </xsl:for-each>
</xsl:template>

cheers
andrew


transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent