hi, I propose to enable unicode urls by default (before going 2.0)
to enable unicode urls in my apps I am doing that
1) in routes.py
routes_apps_raw = ['app1', 'app2']
2)
in applications models in __.py file
if not request.args:
request.args = List(request.raw_args.split('/')) if request.raw_args
else []
if not request.args: #if is None request.args(0) raises an error and we
make it empty list
request.args = List()
--

