[Zope] Zope html progress result generate

fowlertrainer at anonym.hu fowlertrainer at anonym.hu
Wed Mar 10 02:56:16 EST 2004


Hello !

In mod_python I can send the result to the browser with
o.write(Msg) command immediately (o is the object of the connection).

So I can show the progress of the long operation like this:

o.content_type="html"
o.write("Long process with progress")
for i in range(1,101):
    o.write(str(i)+"% processed");
    sleep(100)
o.write("Finished...")

So I can see the whole progress in the browser.

I want to create same function in zope.
Can I do it ?

Thanx for every help !

-- 
Best regards,
 fowlertrainer                          mailto:fowlertrainer at anonym.hu




More information about the Zope mailing list