On 11 Jun 2003 at 10:41, [EMAIL PROTECTED] wrote:

> Just a question about your code, I try to use parameter like you, but
> from another page. What is wrong here???
> 
> Sitemap :
> =========
> <map:transform type="xslt" src="test.xsl">
>  <map:parameter name="use-request-parameters" value="true"/>
> </map:transform>      
> 
> XSL :
> =====
> 
> <xsl:variable name="password"><xsl:param
> name="password"/></xsl:variable>
> ...
>  <user>
>   <name><xsl:value-of select="cn"/></name>
>   <password>normalize-space(password)</password>
>  </user>

You should have 
<xsl:stylesheet........>
  <xsl:param name="password"/>

  <xsl:template match="......
     ..
    <password><xsl:value-of select="normalize-space($password)"/></password>
    ...

But this is more of an XSLT question than a Cocoon one: perhaps you should be 
checking these things out on the Mulbery XSLT list.

Regards, Upayavira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to