Re: [web2py] routes.py and anchor links

2012-10-23 Thread David Sorrentino
I tried the parametric router and it works super-fine! I wasn't using it because at the very beginning I found the pattern-based method more powerful. Thank you very much for your help Jonathan! I wish you a good Tuesday! ;) Cheers, David On 22 October 2012 18:55, Jonathan Lundell

[web2py] routes.py and anchor links

2012-10-22 Thread David Sorrentino
Hey there! :) I have got some doubts about the use of anchor links and the URL rewriting by means of *routes.py*. This is my *routes.py*: routes_out = ( ('/myapp/default/$f', '/$f') ) So* **/myapp/default/just_a_page* is rewritten in output like */just_a_page*. This works. The problem

Re: [web2py] routes.py and anchor links

2012-10-22 Thread Jonathan Lundell
On 22 Oct 2012, at 9:28 AM, David Sorrentino sorrentino...@gmail.com wrote: I have got some doubts about the use of anchor links and the URL rewriting by means of routes.py. This is my routes.py: routes_out = ( ('/myapp/default/$f', '/$f') ) So /myapp/default/just_a_page is