This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: changing the value of a parameter



> <xsl:template name="AddGoButtons">
> 	<xsl:param name="Action" />
> 	<xsl:param name="Color" />
> 	<xsl:param name="Name" select="substring-before($Name, "'")" />
> 	<!-- Now $Name would give me everything before its first apostrophe. -->
> </xsl:template>
> 
> Is this possible? Otherwise I'm going to have to change this value
> everywhere I pass it to the template.

Create a new variable within your template:
<xsl:variable name="Name1" select="substring-before($Name, "'")" />
No need to change the passed value in the calls for this template.

Cheers,
Oliver

/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@informatik.hu-berlin.de             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]