Thank you, Niphlod.

I just had to spin my head for all day today and I figured that 

- I was using parameter-based routes and didn't know that I had to use 
pattern-based routes to use routes_in and routes_out. No-mixing two 
different routes.
- I couldn't activate request.raw_args with my parameter-based routes file
- I couldn't figure out how to set up languages for pattern-based routes
For example, I have this snippet on my parameter-based routes
routers = {
    app: dict(
        default_language = 'en',
        languages =['ko']
    )
}

Is it possible to use request.raw_args with parameter-baed routes file?

For now, I will just pause on this issue since I don't think I'd be able to 
reconfigure all my apps to work properly with patter-based routes. :P

Thank you for great replies as always, Niphlod.

On Friday, May 6, 2016 at 3:15:38 AM UTC-4, Niphlod wrote:
>
> you need to think it through.
> web2py's defaults to have /a/c/f with a being your app, c the name of a 
> controller file and f a valid python function identifier.
>
> if you want to support /whatever you NEED to use routes.py
>
> a simple 
>
>
> routes_in = ( ('/welcome/static/$anything', '/welcome/static/$anything'), 
> ('/(?P<any>.*)', '/welcome/default/index/\g<any>'), ) 
> routes_out = ( ('/welcome/static/$anything', '/welcome/static/$anything'), 
> ('/welcome/default/index/(?P<any>.*)', '/\g<any>'), )
>
>
> will route /与 <http://localhost:8080/%E4%B8%8E> to /welcome/default/index/
> 与 <http://localhost:8080/%E4%B8%8E> . request.args won't be usable for 
> the aforementioned "bug" (or lack of feature), but request.raw_args will be 
> there for you to parse as you wish
>
> On Friday, May 6, 2016 at 3:02:02 AM UTC+2, Kenneth wrote:
>>
>> Just filed an issue. thank you, Leonel.
>>
>> Is there any interim solution to this problem? 
>>
>> On Wednesday, May 4, 2016 at 2:31:17 PM UTC-4, Leonel Câmara wrote:
>>>
>>> For functions, specially since in python 2 the identifiers must be 
>>> ascii. If percent encoded args don't work then that's actually a 
>>> bug/missing feature of web2py which doesn't unquote args. Please file an 
>>> issue in github so the devs get properly motivated to close it. In the 
>>> meantime you will have to use request.vars to put stuff.
>>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to