📄 cgi::push.3
字号:
.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05).\".\" Standard preamble:.\" ========================================================================.de Sh \" Subsection heading.br.if t .Sp.ne 5.PP\fB\\$1\fR.PP...de Sp \" Vertical space (when we can't use .PP).if t .sp .5v.if n .sp...de Vb \" Begin verbatim text.ft CW.nf.ne \\$1...de Ve \" End verbatim text.ft R.fi...\" Set up some character translations and predefined strings. \*(-- will.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left.\" double quote, and \*(R" will give a right double quote. \*(C+ will.\" give a nicer C++. Capital omega is used to do unbreakable dashes and.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,.\" nothing in troff, for use with C<>..tr \(*W-.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'.ie n \{\. ds -- \(*W-. ds PI pi. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch. ds L" "". ds R" "". ds C` "". ds C' ""'br\}.el\{\. ds -- \|\(em\|. ds PI \(*p. ds L" ``. ds R" '''br\}.\".\" Escape single quotes in literal strings from groff's Unicode transform..ie \n(.g .ds Aq \(aq.el .ds Aq '.\".\" If the F register is turned on, we'll generate index entries on stderr for.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index.\" entries marked with X<> in POD. Of course, you'll have to process the.\" output yourself in some meaningful fashion..ie \nF \{\. de IX. tm Index:\\$1\t\\n%\t"\\$2"... nr % 0. rr F.\}.el \{\. de IX...\}.\".\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2)..\" Fear. Run. Save yourself. No user-serviceable parts.. \" fudge factors for nroff and troff.if n \{\. ds #H 0. ds #V .8m. ds #F .3m. ds #[ \f1. ds #] \fP.\}.if t \{\. ds #H ((1u-(\\\\n(.fu%2u))*.13m). ds #V .6m. ds #F 0. ds #[ \&. ds #] \&.\}. \" simple accents for nroff and troff.if n \{\. ds ' \&. ds ` \&. ds ^ \&. ds , \&. ds ~ ~. ds /.\}.if t \{\. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u". ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'.\}. \" troff and (daisy-wheel) nroff accents.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'.ds 8 \h'\*(#H'\(*b\h'-\*(#H'.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#].ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#].ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#].ds ae a\h'-(\w'a'u*4/10)'e.ds Ae A\h'-(\w'A'u*4/10)'E. \" corrections for vroff.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'. \" for low resolution devices (crt and lpr).if \n(.H>23 .if \n(.V>19 \\{\. ds : e. ds 8 ss. ds o a. ds d- d\h'-1'\(ga. ds D- D\h'-1'\(hy. ds th \o'bp'. ds Th \o'LP'. ds ae ae. ds Ae AE.\}.rm #[ #] #H #V #F C.\" ========================================================================.\".IX Title "CGI::Push 3".TH CGI::Push 3 "2007-12-18" "perl v5.10.0" "Perl Programmers Reference Guide".\" For nroff, turn off justification. Always turn off hyphenation; it makes.\" way too many mistakes in technical documents..if n .ad l.nh.SH "NAME"CGI::Push \- Simple Interface to Server Push.SH "SYNOPSIS".IX Header "SYNOPSIS".Vb 1\& use CGI::Push qw(:standard);\&\& do_push(\-next_page=>\e&next_page,\& \-last_page=>\e&last_page,\& \-delay=>0.5);\&\& sub next_page {\& my($q,$counter) = @_;\& return undef if $counter >= 10;\& return start_html(\*(AqTest\*(Aq),\& h1(\*(AqVisible\*(Aq),"\en",\& "This page has been called ", strong($counter)," times",\& end_html();\& }\&\& sub last_page {\& my($q,$counter) = @_;\& return start_html(\*(AqDone\*(Aq),\& h1(\*(AqFinished\*(Aq),\& strong($counter \- 1),\*(Aq iterations.\*(Aq,\& end_html;\& }.Ve.SH "DESCRIPTION".IX Header "DESCRIPTION"CGI::Push is a subclass of the \s-1CGI\s0 object created by \s-1CGI\s0.pm. It isspecialized for server push operations, which allow you to createanimated pages whose content changes at regular intervals..PPYou provide CGI::Push with a pointer to a subroutine that will drawone page. Every time your subroutine is called, it generates a newpage. The contents of the page will be transmitted to the browserin such a way that it will replace what was there beforehand. Thetechnique will work with \s-1HTML\s0 pages as well as with graphics files, allowing you to create animated GIFs..PPOnly Netscape Navigator supports server push. Internet Explorerbrowsers do not..SH "USING CGI::Push".IX Header "USING CGI::Push"CGI::Push adds one new method to the standard \s-1CGI\s0 suite, \fIdo_push()\fR.When you call this method, you pass it a reference to a subroutinethat is responsible for drawing each new page, an interval delay, andan optional subroutine for drawing the last page. Other optionalparameters include most of those recognized by the \s-1CGI\s0 \fIheader()\fRmethod..PPYou may call \fIdo_push()\fR in the object oriented manner or not, as youprefer:.PP.Vb 3\& use CGI::Push;\& $q = new CGI::Push;\& $q\->do_push(\-next_page=>\e&draw_a_page);\&\& \-or\-\&\& use CGI::Push qw(:standard);\& do_push(\-next_page=>\e&draw_a_page);.Ve.PPParameters are as follows:.IP "\-next_page" 4.IX Item "-next_page".Vb 1\& do_push(\-next_page=>\e&my_draw_routine);.Ve.SpThis required parameter points to a reference to a subroutine responsible fordrawing each new page. The subroutine should expect two parametersconsisting of the \s-1CGI\s0 object and a counter indicating the numberof times the subroutine has been called. It should return thecontents of the page as an \fBarray\fR of one or more items to print. It can return a false value (or an empty array) in order to abort theredrawing loop and print out the final page (if any).Sp.Vb 7\& sub my_draw_routine {\& my($q,$counter) = @_;\& return undef if $counter > 100;\& return start_html(\*(Aqtesting\*(Aq),\& h1(\*(Aqtesting\*(Aq),\& "This page called $counter times";\& }.Ve.SpYou are of course free to refer to create and use global variableswithin your draw routine in order to achieve special effects..IP "\-last_page" 4.IX Item "-last_page"This optional parameter points to a reference to the subroutineresponsible for drawing the last page of the series. It is calledafter the \-next_page routine returns a false value. The subroutineitself should have exactly the same calling conventions as the\&\-next_page routine..IP "\-type" 4.IX Item "-type"This optional parameter indicates the content type of each page. Itdefaults to \*(L"text/html\*(R". Normally the module assumes that each pageis of a homogenous \s-1MIME\s0 type. However if you provide either of themagic values \*(L"heterogeneous\*(R" or \*(L"dynamic\*(R" (the latter provided for theconvenience of those who hate long parameter names), you can specifythe \s-1MIME\s0 type \*(-- and other header fields \*(-- on a per-page basis. See \&\*(L"heterogeneous pages\*(R" for more details..IP "\-delay" 4.IX Item "-delay"This indicates the delay, in seconds, between frames. Smaller delaysrefresh the page faster. Fractional values are allowed..Sp\&\fBIf not specified, \-delay will default to 1 second\fR.IP "\-cookie, \-target, \-expires, \-nph" 4.IX Item "-cookie, -target, -expires, -nph"These have the same meaning as the like-named parameters in\&\fICGI::header()\fR..SpIf not specified, \-nph will default to 1 (as needed for many servers, see below)..Sh "Heterogeneous Pages".IX Subsection "Heterogeneous Pages"Ordinarily all pages displayed by CGI::Push share a common \s-1MIME\s0 type.However by providing a value of \*(L"heterogeneous\*(R" or \*(L"dynamic\*(R" in the\&\fIdo_push()\fR \-type parameter, you can specify the \s-1MIME\s0 type of each pageon a case-by-case basis..PPIf you use this option, you will be responsible for producing the\&\s-1HTTP\s0 header for each page. Simply modify your draw routine tolook like this:.PP.Vb 7\& sub my_draw_routine {\& my($q,$counter) = @_;\& return header(\*(Aqtext/html\*(Aq), # note we\*(Aqre producing the header here\& start_html(\*(Aqtesting\*(Aq),\& h1(\*(Aqtesting\*(Aq),\& "This page called $counter times";\& }.Ve.PPYou can add any header fields that you like, but some (cookies andstatus fields included) may not be interpreted by the browser. Oneinteresting effect is to display a series of pages, then, after thelast page, to redirect the browser to a new \s-1URL\s0. Because \fIredirect()\fR does b<not> work, the easiest way is with a \-refresh header field,as shown below:.PP.Vb 8\& sub my_draw_routine {\& my($q,$counter) = @_;\& return undef if $counter > 10;\& return header(\*(Aqtext/html\*(Aq), # note we\*(Aqre producing the header here\& start_html(\*(Aqtesting\*(Aq),\& h1(\*(Aqtesting\*(Aq),\& "This page called $counter times";\& }\&\& sub my_last_page {\& return header(\-refresh=>\*(Aq5; URL=http://somewhere.else/finished.html\*(Aq,\& \-type=>\*(Aqtext/html\*(Aq),\& start_html(\*(AqMoved\*(Aq),\& h1(\*(AqThis is the last page\*(Aq),\& \*(AqGoodbye!\*(Aq\& hr,\& end_html; \& }.Ve.Sh "Changing the Page Delay on the Fly".IX Subsection "Changing the Page Delay on the Fly"If you would like to control the delay between pages on a page-by-pagebasis, call \fIpush_delay()\fR from within your draw routine. \fIpush_delay()\fRtakes a single numeric argument representing the number of seconds youwish to delay after the current page is displayed and beforedisplaying the next one. The delay may be fractional. Withoutparameters, \fIpush_delay()\fR just returns the current delay..SH "INSTALLING CGI::Push SCRIPTS".IX Header "INSTALLING CGI::Push SCRIPTS"Server push scripts must be installed as no-parsed-header (\s-1NPH\s0)scripts in order to work correctly on many servers. On Unix systems,this is most often accomplished by prefixing the script's name with \*(L"nph\-\*(R". Recognition of \s-1NPH\s0 scripts happens automatically with WebSTAR and Microsoft \s-1IIS\s0. Users of other servers should see their documentationfor help..PPApache web server from version 1.3b2 on does not need serverpush scripts installed as \s-1NPH\s0 scripts: the \-nph parameter to \fIdo_push()\fRmay be set to a false value to disable the extra headers needed by an\&\s-1NPH\s0 script..SH "AUTHOR INFORMATION".IX Header "AUTHOR INFORMATION"Copyright 1995\-1998, Lincoln D. Stein. All rights reserved..PPThis library is free software; you can redistribute it and/or modifyit under the same terms as Perl itself..PPAddress bug reports and comments to: lstein@cshl.org.SH "BUGS".IX Header "BUGS"This section intentionally left blank..SH "SEE ALSO".IX Header "SEE ALSO"CGI::Carp, \s-1CGI\s0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -