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]
Other format: [Raw text]

Re: the difference between xsl:variable and xsl:param


> > Secondly, can anyone tell me 
> >how to pass a variable to an xsl (e.g. <xsl:template 
> >match=".//c="?variable"/> where as ?variable is pass down to the stylesheet 
> >through javascript.
> 
> I am not sure what you are trying to do with that match pattern.  What
> do you think it means?
> 
> Given something like
> 
> <xsl:stylesheet ...>
>    <xsl:param name="variable" />
>    <xsl:template match="c[. = $variable]" ...

Unfortunately, variables aren't allowed inside of match patterns.
I.e. Kit needs something like

<xsl:param name="variable" />
<xsl:template match="c">
  <xsl:if test=".=$variable"> ...

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]