I'm having a problem where my page is delivered on the network at the same
time -- after the delay (I used wireshark to
monitor this)
What I want tried is:
ui_print_header('please wait');
footer();
sleep(5);
print "final\n<BR>";
I would have expected to see the header render, a delay, and "final".
Its all happening after the delay.
What I really want to do is:
display "please wait"
run a long command
redirect to another page (after the command runs)
marty
On Tue, May 20, 2014 at 4:19 PM, Jamie Cameron <jca...@we...> wrote:
> On 20/May/2014 09:27 marty leisner <mal...@gm...> wrote ..
> > When having a custom module in webmin execute time consuming commands,
> how
> > would I add a
> > "please wait" message until the command is finished (without user
> > interaction).
> >
> > I.e.:
> >
> > start_please_wait();
> > system("long_command");
> > stop_please_wait();
>
> In some modules, I've had Webmin print out a series of dots (one per
> second)
> while performing some long operation. The code is like :
>
> print "Doing something slow ..";
> launch_slow_op_in_background();
> while(!done_slow_op()) {
> sleep(1);
> print ".";
> }
> print "<br>\n";
> print ".. done<p>\n";
>
> - Jamie
>
>
> ------------------------------------------------------------------------------
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
> Instantly run your Selenium tests across 300+ browser/OS combos.
> Get unparalleled scalability from the best Selenium testing platform
> available
> Simple to use. Nothing to install. Get started now for free."
> http://p.sf.net/sfu/SauceLabs
> -
> Forwarded by the Webmin development list at web...@we...
> To remove yourself from this list, go to
> http://lists.sourceforge.net/lists/listinfo/webadmin-devel
>
|