Hi,

In one point of my sitemap, all requests come in and are send to a flow-function.
...
<map:match pattern="*">
    <map:call function="start">
          <map:parameter name="param" value="{1}"/>
</map:call> </map:match>
...


The function:
function start() {
   var param = cocoon.parameters["param"];
// now I want to call the function, that is "requested" by the parameter.
   // For example:
// If param was "hello" , I want the function hello() executed and so on.
}

How can I call a function from a (request)-string?


Thanks
Jonny








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

Reply via email to