Hi all, I have problem wit / char in a request uri. I am constructing request in following way:
http://site/arg0/arg1/arg_with%2Fslash I'd expect that Catalyst would create 3 arguments out of it, however it will unescape last argument, and so I will have 4 arguments in reality. $c->request->arguments->[0] => arg0 $c->request->arguments->[1] => arg1 $c->request->arguments->[2] => arg_with $c->request->arguments->[0] => slash Also Action itself will log following: [debug] "GET" request for "arg0/arg1/arg_with/slash" from .... Is there any way how avoid such escaping of arguments? Many thanks, Jaro
_______________________________________________ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http://dev.catalyst.perl.org/