CGI::Push (3)
Leading comments
Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) Standard preamble: ========================================================================
NAME
CGI::Push - Simple Interface to Server PushSYNOPSIS
use strict; use warnings; use CGI::Push qw(:standard); do_push( -next_page => \&next_page, -last_page => \&last_page, -delay => 0.5 ); sub next_page { my($q,$counter) = @_; return undef if $counter >= 10; .... } sub last_page { my($q,$counter) = @_; return ... }
DESCRIPTION
CGI::Push is a subclass of theYou provide CGI::Push with a pointer to a subroutine that will draw one page. Every time your subroutine is called, it generates a new page. The contents of the page will be transmitted to the browser in such a way that it will replace what was there beforehand. The technique will work with
Only Netscape Navigator supports server push. Internet Explorer browsers do not.
USING CGI::Push
CGI::Push adds one new method to the standardYou may call do_push() in the object oriented manner or not, as you prefer:
use CGI::Push; $q = CGI::Push->new; $q->do_push(-next_page=>\&draw_a_page); -or- use CGI::Push qw(:standard); do_push(-next_page=>\&draw_a_page);
Parameters are as follows:
- -next_page
-
do_push(-next_page=>\&my_draw_routine);
This required parameter points to a reference to a subroutine responsible for drawing each new page. The subroutine should expect two parameters consisting of the
CGIobject and a counter indicating the number of times the subroutine has been called. It should return the contents of the page as an array of one or more items to print. It can return a false value (or an empty array) in order to abort the redrawing loop and print out the final page (if any)sub my_draw_routine { my($q,$counter) = @_; return undef if $counter > 100; ... }
You are of course free to refer to create and use global variables within your draw routine in order to achieve special effects.
- -last_page
- This optional parameter points to a reference to the subroutine responsible for drawing the last page of the series. It is called after the -next_page routine returns a false value. The subroutine itself should have exactly the same calling conventions as the -next_page routine.
- -type
-
This optional parameter indicates the content type of each page. It
defaults to ``text/html''. Normally the module assumes that each page
is of a homogeneous MIMEtype. However if you provide either of the magic values ``heterogeneous'' or ``dynamic'' (the latter provided for the convenience of those who hate long parameter names), you can specify theMIMEtype --- and other header fields --- on a per-page basis. See ``heterogeneous pages'' for more details.
- -delay
-
This indicates the delay, in seconds, between frames. Smaller delays
refresh the page faster. Fractional values are allowed.
If not specified, -delay will default to 1 second
- -cookie, -target, -expires, -nph
-
These have the same meaning as the like-named parameters in
CGI::header().
If not specified, -nph will default to 1 (as needed for many servers, see below).
Heterogeneous Pages
Ordinarily all pages displayed by CGI::Push share a commonIf you use this option, you will be responsible for producing the
sub my_draw_routine { my($q,$counter) = @_; return header('text/html'), # note we're producing the header here .... }
You can add any header fields that you like, but some (cookies and status fields included) may not be interpreted by the browser. One interesting effect is to display a series of pages, then, after the last page, to redirect the browser to a new
sub my_draw_routine { my($q,$counter) = @_; return undef if $counter > 10; return header('text/html'), # note we're producing the header here ... } sub my_last_page { return header(-refresh=>'5; URL=somewhere.else/finished.html -type=>'text/html'), ... }
Changing the Page Delay on the Fly
If you would like to control the delay between pages on a page-by-page basis, call push_delay() from within your draw routine. push_delay() takes a single numeric argument representing the number of seconds you wish to delay after the current page is displayed and before displaying the next one. The delay may be fractional. Without parameters, push_delay() just returns the current delay.INSTALLING CGI::Push SCRIPTS
Server push scripts must be installed as no-parsed-header (Apache web server from version 1.3b2 on does not need server push scripts installed as
AUTHOR INFORMATION
TheAddress bug reports and comments to: github.com/leejo/CGI.pm/issues
The original bug tracker can be found at: rt.cpan.org/Public/Dist/Display.html?Queue=CGI.pm
When sending bug reports, please provide the version of