[web2py] Re: Routing help with url helper

2012-11-28 Thread Ashu Verma
' ), ( ''/init/$c/$f/$anything' , '/$c/$f/$anything' ) ) notice you cannot reverse the routes with . On Friday, 9 November 2012 12:37:38 UTC-6, Ashu Verma wrote: Hi, i am having the basic routing where i omitted the application name in url. Below is the content of my routes.py default_application

[web2py] Routing help with url helper

2012-11-09 Thread Ashu Verma
Hi, i am having the basic routing where i omitted the application name in url. Below is the content of my routes.py default_application = 'init' default_controller = 'default' default_function = 'index' routes_in = ( ( '/$c/$f' , '/init/$c/$f' ), ( '/$c/$f/$anything' ,