> in file " tran.js ":
>
> function selectcol(){
> var colle= cocoon.request.get("collection");
> cocoon.sendpage("browse/", {col:colle});
> }
>
> in sitemap.xmap:
>
> <map:match pattern="browse/**">
> <map:generate src="file:///Users/{1}" type= "directory"/>
> <map:transform src="dir.xsl"/>
> .....
>
you could try to do the following:
<map:transform src="dir.xsl">
<map:parameter name="parameter_name" value="{request-param:col}"/>
</map:transform>
and in your xsl:
<xsl:param name="parameter_name"/>
and use it like this:
<blabla value="{$parameter_name}/" />
I have not tested this code, but i think it could be working ;-)
hth,
peter
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]