[web2py] Re: defer query in controller

2015-12-07 Thread Brian Craft
ave a suggestion for how this can be achieved (i.e., something the > framework could do differently)? > > Anthony > > On Friday, December 4, 2015 at 3:42:00 PM UTC-5, Brian Craft wrote: >> >> Ah, I see. I'm not sure that helps me, because I want the browser to >&g

[web2py] Re: defer query in controller

2015-12-04 Thread Brian Craft
On Thursday, December 3, 2015 at 4:27:19 PM UTC-8, Anthony wrote: > > On Thursday, December 3, 2015 at 5:37:51 PM UTC-5, Brian Craft wrote: >> >> I don't know what this means. >> > > He's saying to load a parent page (that does not run the query or re

[web2py] Re: defer query in controller

2015-12-03 Thread Brian Craft
rue) helper. > > On Thursday, 3 December 2015 15:33:04 UTC-6, Brian Craft wrote: >> >> A large query is causing the client (browser) to become unresponsive, >> because web2py doesn't return anything to the client until the controller >> function has completed.

[web2py] defer query in controller

2015-12-03 Thread Brian Craft
A large query is causing the client (browser) to become unresponsive, because web2py doesn't return anything to the client until the controller function has completed. It needs, instead, to return a chunked response header immediately, with the data to follow. From the controller I can return a

[web2py] managing project source

2015-11-25 Thread Brian Craft
Just looking at web2py for the first time, and I'm not sure what to do with it: can't manage it with pip, and app code is edited in-place with the web2py code? I was expecting to be able to install & manage web2py with standard python tools & manage my app code separately, in its own repo. How