Correct. You'd need to url encode those characters...
http://docs.python.org/library/urllib.html#urllib.urlencode
and then use the 'unquote' to get back the original characters.
On Monday, April 9, 2012 8:29:43 PM UTC-7, pbreit wrote:
>
> I don't think you can have those characters in a URL. And URL's should not
> have spaces.
>
> In the view, it usually looks like this: <a href={{=URL('default'...
>
> In this URL: http://mysite.com/app/controller/function/25-test
> str(request.args(0)).split('-')[0] should get '25' as you expect.
>
>
>