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
--