I agree that currently the URL is validated even if you
have routes_apps_raw.
Please an issue in google code and it will be addresses asap.
massimo
On Saturday, 20 October 2012 05:40:22 UTC-5, Vasile Ermicioi wrote:
>
> I need unicode urls, so I enabled routes_apps_raw for my app,
> and in models I have a file 0.py where I have this code
>
> if not request.args:
> request.args = List(request.raw_args.split('/')) if request.raw_args
> else []
> if not request.args:
> request.args = List()
>
> and when going to /app/default/user/login
>
> I got an error 404
>
> it works fine for 1.99.4 but doesn't work with trunk
>
> if I disable routes_app_raw then it works
>
> so I propose to enable unicode urls by default,
> flask routing supports unicode args and vars
>
--