Re: [web2py] Re: How to access functions inside other controller files other than default

2010-10-20 Thread Jason Brower
Woah... I thought you had to do... URL(r=request, c='defaut', f='index',args=[1,2,3]) I am such an old school web2py'r :) Jason On Wed, 2010-10-20 at 15:22 -0700, Eric Vicenti wrote: > Vlad, > > URL is quite versatile. Not only can you do URL('function') for a > function in the current controller

[web2py] Re: How to access functions inside other controller files other than default

2010-10-20 Thread Eric Vicenti
Vlad, URL is quite versatile. Not only can you do URL('function') for a function in the current controller, you can use URL('controller','function') or even URL('application','controller','function') if you need. I hope I was able to help. -Eric On Oct 20, 11:37 am, Alucard wrote: > Hey there,