Re: [web2py] URL filter chain

2013-08-05 Thread Anthony
There's also the possibility of using wsgi middleware, though depending on what you're doing, it may be easier to just do something in the models as viniciusban suggests. On Monday, August 5, 2013 10:22:27 PM UTC-4, vi

Re: [web2py] URL filter chain

2013-08-05 Thread Vinicius Assef
In web2py you have conditional models. See this here http://web2py.com/books/default/chapter/29/04/the-core#Workflow in "some caveats" sub-section. On Mon, Aug 5, 2013 at 11:15 PM, Marcio Andrey Oliveira wrote: > Hi. > > In Java there is the concept of URL filter chain (implemented by one or more

[web2py] URL filter chain

2013-08-05 Thread Marcio Andrey Oliveira
Hi. In Java there is the concept of URL filter chain (implemented by one or more servlets). These filters may intercept requests to a specif URL or a bunch of them prior the request arrive to the controller(servlet) responsible to handle it. Is there such concept on web2py? How could I implem