RE: [xsl] passing parameters to xsl stylesheets

Subject: RE: [xsl] passing parameters to xsl stylesheets
From: "Youness HAFFANE" <youness254@xxxxxxxxx>
Date: Sun, 20 May 2007 17:58:55 +0200
Thanks a lot Xmlize,I tried it an it works very fine.
I've also tried this and it works too:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
  <xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:param name="toto" />
  <xsl:template match="/">
     <html>
     <body>
      <xsl:value-of select="note[to=$toto]/to" />
  </body>
  </html>
 </xsl:template>
 </xsl:stylesheet>

Best regards

Youness 
-----Original Message-----
From: mozer [mailto:xmlizer@xxxxxxxxx] 
Sent: dimanche 20 mai 2007 17:06
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] passing parameters to xsl stylesheets

You are passing parameter !
you said to xsltproc that $toto is equal to 'from'
And it did what you wanted

In fact, it seems you want more
you want to tell to xproc to "use the value 'from' as the name of the
element where to get value"

you need to change your xslt for that


<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:param name="toto" />
  <xsl:template match="/note">
    <html>
     <body>
      <xsl:value-of select="*[local-name()=$toto]" />
    </body>
   </html>
  </xsl:template>
  </xsl:stylesheet>

Regards,

Xmlizer

On 5/20/07, Youness HAFFANE <youness254@xxxxxxxxx> wrote:
>
> Hi all
> Will you  help me please?
> I'm trying to pass a parameter to the following  xsl stylesheet:
>
>
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> - <xsl:stylesheet version="1.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
>  <xsl:param name="toto" />
> - <xsl:template match="/note">
> -    <html>
> -    <body>
>      <xsl:value-of select="$toto" />
>  </body>
>  </html>
> </xsl:template>
> </xsl:stylesheet>
>
> The xml file which uses the xsl file is simply:
>
> <?xml version="1.0" ?>
> - <note>
>    <to>Tove</to>
>    <from>Jani</from>
> </note>
>
> To pass the parameter I use this command:
> $ xsltproc --stringparam toto 'from' myxslfile.xsl myxmlfile.xml
>
> The result is:
> <html><body>from</body></html>
> While I was expecting <html><body>Jani</body></html>
>
> Thank you in advance!!
> Youness (france)

Current Thread