On Wednesday, February 23, 2011 5:49:24 AM UTC-5, elffikk wrote:
> you need a flash or javascript widget and a "comet" web2py controller that > will push data to the browser > when a step is done you will send a message to the browser wich will redraw > to show the progress > Also, it looks like you code is simply using the print statement to report progress. Although that will show up in the terminal window (as you have observed), that won't send any output to the web page (i.e., it won't affect the HTTP response). To send output to a web page, your controller function must return a dict to a view or return a string. See http://web2py.com/book/default/chapter/03#Say-Hello.

