urlFor not performing an accurate url

2010-06-25 Thread Fernando Wermus
Hi all, I need a url similar to the following example www.example/test?url=map/myMap.swf But urlFor constructs the followng www.example/text/url/map/myMap.swf/ The last slash makes that the swf will not be correctly added. Why RequestCycle.get().urlFor is not doing what I do expect?

Re: urlFor not performing an accurate url

2010-06-25 Thread Jeremy Thomerson
your page is probably mounted with the default mounting strategy, which uses the seo-friendly folder style parameters. instead, you should mount that page with the QueryStringUrlCodingStrategy On Fri, Jun 25, 2010 at 3:07 PM, Fernando Wermus fernando.wer...@gmail.comwrote: Hi all, I need a

Re: urlFor not performing an accurate url

2010-06-25 Thread Fernando Wermus
thanks On Fri, Jun 25, 2010 at 5:09 PM, Jeremy Thomerson jer...@wickettraining.com wrote: your page is probably mounted with the default mounting strategy, which uses the seo-friendly folder style parameters. instead, you should mount that page with the QueryStringUrlCodingStrategy On