5 # See the bottom of this file for the POD documentation. Search for the
8 # You can run this file through either pod2man or pod2html to produce pretty
9 # documentation in manual or html file format (these utilities are part of the
10 # Perl 5 distribution).
12 # Copyright 1995-1998 Lincoln D. Stein. All rights reserved.
13 # It may be used and modified freely, but I do request that this copyright
14 # notice remain attached to the file. You may modify this module as you
15 # wish, but if you redistribute a modified version, please attach a note
16 # listing the modifications you have made.
18 # The most recent version and complete docs are available at:
19 # http://stein.cshl.org/WWW/software/CGI/
21 $CGI::revision = '$Id: CGI.pm,v 1.62 2002/04/10 19:36:01 lstein Exp $';
24 # HARD-CODED LOCATION FOR FILE UPLOAD TEMPORARY FILES.
25 # UNCOMMENT THIS ONLY IF YOU KNOW WHAT YOU'RE DOING.
26 # $CGITempFile::TMPDIRECTORY = '/usr/tmp';
27 use CGI::Util qw(rearrange make_attributes unescape escape expires);
29 #use constant XHTML_DTD => ['-//W3C//DTD XHTML Basic 1.0//EN',
30 # 'http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd'];
32 use constant XHTML_DTD => ['-//W3C//DTD XHTML 1.0 Transitional//EN',
33 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'];
35 # >>>>> Here are some globals that you might want to adjust <<<<<<
36 sub initialize_globals {
37 # Set this to 1 to enable copious autoloader debugging messages
40 # Set this to 1 to generate XTML-compatible output
43 # Change this to the preferred DTD to print in start_html()
44 # or use default_dtd('text of DTD to use');
45 $DEFAULT_DTD = [ '-//W3C//DTD HTML 4.01 Transitional//EN',
46 'http://www.w3.org/TR/html4/loose.dtd' ] ;
48 # Set this to 1 to enable NOSTICKY scripts
50 # 1) use CGI qw(-nosticky)
51 # 2) $CGI::nosticky(1)
54 # Set this to 1 to enable NPH scripts
58 # 3) print header(-nph=>1)
61 # Set this to 1 to enable debugging from @ARGV
62 # Set to 2 to enable debugging from STDIN
65 # Set this to 1 to make the temporary files created
66 # during file uploads safe from prying eyes
68 # 1) use CGI qw(:private_tempfiles)
69 # 2) CGI::private_tempfiles(1);
70 $PRIVATE_TEMPFILES = 0;
72 # Set this to a positive value to limit the size of a POSTing
73 # to a certain number of bytes:
76 # Change this to 1 to disable uploads entirely:
79 # Automatically determined -- don't change
82 # Change this to 1 to suppress redundant HTTP headers
85 # separate the name=value pairs by semicolons rather than ampersands
86 $USE_PARAM_SEMICOLONS = 1;
88 # Do not include undefined params parsed from query string
89 # use CGI qw(-no_undef_params);
92 # Other globals that you shouldn't worry about.
98 undef %QUERY_FIELDNAMES;
100 # prevent complaints by mod_perl
104 # ------------------ START OF THE LIBRARY ------------
107 initialize_globals();
109 # FIGURE OUT THE OS WE'RE RUNNING UNDER
110 # Some systems support the $^O variable. If not
111 # available then require() the Config library
115 $OS = $Config::Config{'osname'};
118 if ($OS =~ /^MSWin/i) {
120 } elsif ($OS =~ /^VMS/i) {
122 } elsif ($OS =~ /^dos/i) {
124 } elsif ($OS =~ /^MacOS/i) {
126 } elsif ($OS =~ /^os2/i) {
128 } elsif ($OS =~ /^epoc/i) {
134 # Some OS logic. Binary mode enabled on DOS, NT and VMS
135 $needs_binmode = $OS=~/^(WINDOWS|DOS|OS2|MSWin)/;
137 # This is the default class for the CGI object to use when all else fails.
138 $DefaultClass = 'CGI' unless defined $CGI::DefaultClass;
140 # This is where to look for autoloaded routines.
141 $AutoloadClass = $DefaultClass unless defined $CGI::AutoloadClass;
143 # The path separator is a slash, backslash or semicolon, depending
146 UNIX=>'/', OS2=>'\\', EPOC=>'/',
147 WINDOWS=>'\\', DOS=>'\\', MACINTOSH=>':', VMS=>'/'
150 # This no longer seems to be necessary
151 # Turn on NPH scripts by default when running under IIS server!
152 # $NPH++ if defined($ENV{'SERVER_SOFTWARE'}) && $ENV{'SERVER_SOFTWARE'}=~/IIS/;
153 $IIS++ if defined($ENV{'SERVER_SOFTWARE'}) && $ENV{'SERVER_SOFTWARE'}=~/IIS/;
155 # Turn on special checking for Doug MacEachern's modperl
156 if (exists $ENV{'GATEWAY_INTERFACE'}
158 ($MOD_PERL = $ENV{'GATEWAY_INTERFACE'} =~ /^CGI-Perl\//))
163 # Turn on special checking for ActiveState's PerlEx
164 $PERLEX++ if defined($ENV{'GATEWAY_INTERFACE'}) && $ENV{'GATEWAY_INTERFACE'} =~ /^CGI-PerlEx/;
166 # Define the CRLF sequence. I can't use a simple "\r\n" because the meaning
167 # of "\n" is different on different OS's (sometimes it generates CRLF, sometimes LF
168 # and sometimes CR). The most popular VMS web server
169 # doesn't accept CRLF -- instead it wants a LR. EBCDIC machines don't
170 # use ASCII, so \015\012 means something different. I find this all
172 $EBCDIC = "\t" ne "\011";
181 if ($needs_binmode) {
182 $CGI::DefaultClass->binmode(main::STDOUT);
183 $CGI::DefaultClass->binmode(main::STDIN);
184 $CGI::DefaultClass->binmode(main::STDERR);
188 ':html2'=>['h1'..'h6',qw/p br hr ol ul li dl dt dd menu code var strong em
189 tt u i b blockquote pre img a address cite samp dfn html head
190 base body Link nextid title meta kbd start_html end_html
191 input Select option comment charset escapeHTML/],
192 ':html3'=>[qw/div table caption th td TR Tr sup Sub strike applet Param
193 embed basefont style span layer ilayer font frameset frame script small big/],
194 ':html4'=>[qw/abbr acronym bdo col colgroup del fieldset iframe
195 ins label legend noframes noscript object optgroup Q
197 ':netscape'=>[qw/blink fontsize center/],
198 ':form'=>[qw/textfield textarea filefield password_field hidden checkbox checkbox_group
199 submit reset defaults radio_group popup_menu button autoEscape
200 scrolling_list image_button start_form end_form startform endform
201 start_multipart_form end_multipart_form isindex tmpFileName uploadInfo URL_ENCODED MULTIPART/],
202 ':cgi'=>[qw/param upload path_info path_translated url self_url script_name cookie Dump
203 raw_cookie request_method query_string Accept user_agent remote_host content_type
204 remote_addr referer server_name server_software server_port server_protocol
205 virtual_host remote_ident auth_type http
206 save_parameters restore_parameters param_fetch
207 remote_user user_name header redirect import_names put
208 Delete Delete_all url_param cgi_error/],
209 ':ssl' => [qw/https/],
210 ':imagemap' => [qw/Area Map/],
211 ':cgi-lib' => [qw/ReadParse PrintHeader HtmlTop HtmlBot SplitParam Vars/],
212 ':html' => [qw/:html2 :html3 :html4 :netscape/],
213 ':standard' => [qw/:html2 :html3 :html4 :form :cgi/],
214 ':push' => [qw/multipart_init multipart_start multipart_end multipart_final/],
215 ':all' => [qw/:html2 :html3 :netscape :form :cgi :internal :html4/]
218 # to import symbols into caller
222 # This causes modules to clash.
226 $self->_setup_symbols(@_);
227 my ($callpack, $callfile, $callline) = caller;
229 # To allow overriding, search through the packages
230 # Till we find one in which the correct subroutine is defined.
231 my @packages = ($self,@{"$self\:\:ISA"});
232 foreach $sym (keys %EXPORT) {
234 my $def = ${"$self\:\:AutoloadClass"} || $DefaultClass;
235 foreach $pck (@packages) {
236 if (defined(&{"$pck\:\:$sym"})) {
241 *{"${callpack}::$sym"} = \&{"$def\:\:$sym"};
247 $pack->_setup_symbols('-compile',@_);
252 return ("start_$1","end_$1") if $tag=~/^(?:\*|start_|end_)(.+)/;
254 return ($tag) unless $EXPORT_TAGS{$tag};
255 foreach (@{$EXPORT_TAGS{$tag}}) {
256 push(@r,&expand_tags($_));
262 # The new routine. This will check the current environment
263 # for an existing query string, and initialize itself, if so.
266 my($class,$initializer) = @_;
268 bless $self,ref $class || $class || $DefaultClass;
269 if ($MOD_PERL && defined Apache->request) {
270 Apache->request->register_cleanup(\&CGI::_reset_globals);
273 $self->_reset_globals if $PERLEX;
274 $self->init($initializer);
278 # We provide a DESTROY method so that the autoloader
279 # doesn't bother trying to find it.
283 # Returns the value(s)of a named parameter.
284 # If invoked in a list context, returns the
285 # entire list. Otherwise returns the first
286 # member of the list.
287 # If name is not provided, return a list of all
288 # the known parameters names available.
289 # If more than one argument is provided, the
290 # second and subsequent arguments are used to
291 # set the value of the parameter.
294 my($self,@p) = self_or_default(@_);
295 return $self->all_parameters unless @p;
296 my($name,$value,@other);
298 # For compatibility between old calling style and use_named_parameters() style,
299 # we have to special case for a single parameter present.
301 ($name,$value,@other) = rearrange([NAME,[DEFAULT,VALUE,VALUES]],@p);
304 if (substr($p[0],0,1) eq '-') {
305 @values = defined($value) ? (ref($value) && ref($value) eq 'ARRAY' ? @{$value} : $value) : ();
307 foreach ($value,@other) {
308 push(@values,$_) if defined($_);
311 # If values is provided, then we set it.
313 $self->add_parameter($name);
314 $self->{$name}=[@values];
320 return unless defined($name) && $self->{$name};
321 return wantarray ? @{$self->{$name}} : $self->{$name}->[0];
324 sub self_or_default {
325 return @_ if defined($_[0]) && (!ref($_[0])) &&($_[0] eq 'CGI');
326 unless (defined($_[0]) &&
327 (ref($_[0]) eq 'CGI' || UNIVERSAL::isa($_[0],'CGI')) # slightly optimized for common case
329 $Q = $CGI::DefaultClass->new unless defined($Q);
332 return wantarray ? @_ : $Q;
336 local $^W=0; # prevent a warning
337 if (defined($_[0]) &&
338 (substr(ref($_[0]),0,3) eq 'CGI'
339 || UNIVERSAL::isa($_[0],'CGI'))) {
342 return ($DefaultClass,@_);
346 ########################################
347 # THESE METHODS ARE MORE OR LESS PRIVATE
348 # GO TO THE __DATA__ SECTION TO SEE MORE
350 ########################################
352 # Initialize the query object from the environment.
353 # If a parameter list is found, this object will be set
354 # to an associative array in which parameter names are keys
355 # and the values are stored as lists
356 # If a keyword list is found, this method creates a bogus
357 # parameter list with the single parameter 'keywords'.
360 my($self,$initializer) = @_;
361 my($query_string,$meth,$content_length,$fh,@lines) = ('','','','');
364 # if we get called more than once, we want to initialize
365 # ourselves from the original query (which may be gone
366 # if it was read from STDIN originally.)
367 if (defined(@QUERY_PARAM) && !defined($initializer)) {
368 foreach (@QUERY_PARAM) {
369 $self->param('-name'=>$_,'-value'=>$QUERY_PARAM{$_});
371 $self->charset($QUERY_CHARSET);
372 $self->{'.fieldnames'} = {%QUERY_FIELDNAMES};
376 $meth=$ENV{'REQUEST_METHOD'} if defined($ENV{'REQUEST_METHOD'});
377 $content_length = defined($ENV{'CONTENT_LENGTH'}) ? $ENV{'CONTENT_LENGTH'} : 0;
379 $fh = to_filehandle($initializer) if $initializer;
381 # set charset to the safe ISO-8859-1
382 $self->charset('ISO-8859-1');
386 # avoid unreasonably large postings
387 if (($POST_MAX > 0) && ($content_length > $POST_MAX)) {
388 $self->cgi_error("413 Request entity too large");
392 # Process multipart postings, but only if the initializer is
395 && defined($ENV{'CONTENT_TYPE'})
396 && $ENV{'CONTENT_TYPE'}=~m|^multipart/form-data|
397 && !defined($initializer)
399 my($boundary) = $ENV{'CONTENT_TYPE'} =~ /boundary=\"?([^\";,]+)\"?/;
400 $self->read_multipart($boundary,$content_length);
404 # If initializer is defined, then read parameters
406 if (defined($initializer)) {
407 if (UNIVERSAL::isa($initializer,'CGI')) {
408 $query_string = $initializer->query_string;
411 if (ref($initializer) && ref($initializer) eq 'HASH') {
412 foreach (keys %$initializer) {
413 $self->param('-name'=>$_,'-value'=>$initializer->{$_});
418 if (defined($fh) && ($fh ne '')) {
424 # massage back into standard format
425 if ("@lines" =~ /=/) {
426 $query_string=join("&",@lines);
428 $query_string=join("+",@lines);
433 # last chance -- treat it as a string
434 $initializer = $$initializer if ref($initializer) eq 'SCALAR';
435 $query_string = $initializer;
440 # If method is GET or HEAD, fetch the query from
442 if ($meth=~/^(GET|HEAD)$/) {
444 $query_string = Apache->request->args;
446 $query_string = $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
447 $query_string ||= $ENV{'REDIRECT_QUERY_STRING'} if defined $ENV{'REDIRECT_QUERY_STRING'};
452 if ($meth eq 'POST') {
453 $self->read_from_client(\*STDIN,\$query_string,$content_length,0)
454 if $content_length > 0;
455 # Some people want to have their cake and eat it too!
456 # Uncomment this line to have the contents of the query string
457 # APPENDED to the POST data.
458 # $query_string .= (length($query_string) ? '&' : '') . $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
462 # If $meth is not of GET, POST or HEAD, assume we're being debugged offline.
463 # Check the command line and then the standard input for data.
464 # We use the shellwords package in order to behave the way that
465 # UN*X programmers expect.
466 $query_string = read_from_cmdline() if $DEBUG;
469 # We now have the query string in hand. We do slightly
470 # different things for keyword lists and parameter lists.
471 if (defined $query_string && length $query_string) {
472 if ($query_string =~ /[&=;]/) {
473 $self->parse_params($query_string);
475 $self->add_parameter('keywords');
476 $self->{'keywords'} = [$self->parse_keywordlist($query_string)];
480 # Special case. Erase everything if there is a field named
482 if ($self->param('.defaults')) {
486 # Associative array containing our defined fieldnames
487 $self->{'.fieldnames'} = {};
488 foreach ($self->param('.cgifields')) {
489 $self->{'.fieldnames'}->{$_}++;
492 # Clear out our default submission button flag if present
493 $self->delete('.submit');
494 $self->delete('.cgifields');
496 $self->save_request unless $initializer;
499 # FUNCTIONS TO OVERRIDE:
500 # Turn a string into a filehandle
503 return undef unless $thingy;
504 return $thingy if UNIVERSAL::isa($thingy,'GLOB');
505 return $thingy if UNIVERSAL::isa($thingy,'FileHandle');
508 while (my $package = caller($caller++)) {
509 my($tmp) = $thingy=~/[\':]/ ? $thingy : "$package\:\:$thingy";
510 return $tmp if defined(fileno($tmp));
516 # send output to the browser
518 my($self,@p) = self_or_default(@_);
522 # print to standard output (for overriding in mod_perl)
528 # get/set last cgi_error
530 my ($self,$err) = self_or_default(@_);
531 $self->{'.cgi_error'} = $err if defined $err;
532 return $self->{'.cgi_error'};
537 # We're going to play with the package globals now so that if we get called
538 # again, we initialize ourselves in exactly the same way. This allows
539 # us to have several of these objects.
540 @QUERY_PARAM = $self->param; # save list of parameters
541 foreach (@QUERY_PARAM) {
542 next unless defined $_;
543 $QUERY_PARAM{$_}=$self->{$_};
545 $QUERY_CHARSET = $self->charset;
546 %QUERY_FIELDNAMES = %{$self->{'.fieldnames'}};
550 my($self,$tosplit) = @_;
551 my(@pairs) = split(/[&;]/,$tosplit);
554 ($param,$value) = split('=',$_,2);
555 next unless defined $param;
556 next if $NO_UNDEF_PARAMS and not defined $value;
557 $value = '' unless defined $value;
558 $param = unescape($param);
559 $value = unescape($value);
560 $self->add_parameter($param);
561 push (@{$self->{$param}},$value);
567 return unless defined $param;
568 push (@{$self->{'.parameters'}},$param)
569 unless defined($self->{$param});
574 return () unless defined($self) && $self->{'.parameters'};
575 return () unless @{$self->{'.parameters'}};
576 return @{$self->{'.parameters'}};
579 # put a filehandle into binary mode (DOS)
581 CORE::binmode($_[1]);
585 my ($self,$tagname) = @_;
590 (substr(ref(\$_[0]),0,3) eq 'CGI' ||
591 UNIVERSAL::isa(\$_[0],'CGI')));
593 if (ref(\$_[0]) && ref(\$_[0]) eq 'HASH') {
594 my(\@attr) = make_attributes(shift()||undef,1);
595 \$attr = " \@attr" if \@attr;
598 if ($tagname=~/start_(\w+)/i) {
599 $func .= qq! return "<\L$1\E\$attr>";} !;
600 } elsif ($tagname=~/end_(\w+)/i) {
601 $func .= qq! return "<\L/$1\E>"; } !;
604 return \$XHTML ? "\L<$tagname\E\$attr />" : "\L<$tagname\E\$attr>" unless \@_;
605 my(\$tag,\$untag) = ("\L<$tagname\E\$attr>","\L</$tagname>\E");
606 my \@result = map { "\$tag\$_\$untag" }
607 (ref(\$_[0]) eq 'ARRAY') ? \@{\$_[0]} : "\@_";
615 print STDERR "CGI::AUTOLOAD for $AUTOLOAD\n" if $CGI::AUTOLOAD_DEBUG;
616 my $func = &_compile;
621 my($func) = $AUTOLOAD;
622 my($pack,$func_name);
624 local($1,$2); # this fixes an obscure variable suicide problem.
625 $func=~/(.+)::([^:]+)$/;
626 ($pack,$func_name) = ($1,$2);
627 $pack=~s/::SUPER$//; # fix another obscure problem
628 $pack = ${"$pack\:\:AutoloadClass"} || $CGI::DefaultClass
629 unless defined(${"$pack\:\:AUTOLOADED_ROUTINES"});
631 my($sub) = \%{"$pack\:\:SUBS"};
633 my($auto) = \${"$pack\:\:AUTOLOADED_ROUTINES"};
634 eval "package $pack; $$auto";
635 croak("$AUTOLOAD: $@") if $@;
636 $$auto = ''; # Free the unneeded storage (but don't undef it!!!)
638 my($code) = $sub->{$func_name};
640 $code = "sub $AUTOLOAD { }" if (!$code and $func_name eq 'DESTROY');
642 (my $base = $func_name) =~ s/^(start_|end_)//i;
643 if ($EXPORT{':any'} ||
646 (%EXPORT_OK || grep(++$EXPORT_OK{$_},&expand_tags(':html')))
647 && $EXPORT_OK{$base}) {
648 $code = $CGI::DefaultClass->_make_tag_func($func_name);
651 croak("Undefined subroutine $AUTOLOAD\n") unless $code;
652 eval "package $pack; $code";
655 croak("$AUTOLOAD: $@");
658 CORE::delete($sub->{$func_name}); #free storage
659 return "$pack\:\:$func_name";
665 return '' unless $value;
666 return $XHTML ? qq( selected="selected") : qq( selected);
672 return '' unless $value;
673 return $XHTML ? qq( checked="checked") : qq( checked);
676 sub _reset_globals { initialize_globals(); }
682 # to avoid reexporting unwanted variables
686 $HEADERS_ONCE++, next if /^[:-]unique_headers$/;
687 $NPH++, next if /^[:-]nph$/;
688 $NOSTICKY++, next if /^[:-]nosticky$/;
689 $DEBUG=0, next if /^[:-]no_?[Dd]ebug$/;
690 $DEBUG=2, next if /^[:-][Dd]ebug$/;
691 $USE_PARAM_SEMICOLONS++, next if /^[:-]newstyle_urls$/;
692 $XHTML++, next if /^[:-]xhtml$/;
693 $XHTML=0, next if /^[:-]no_?xhtml$/;
694 $USE_PARAM_SEMICOLONS=0, next if /^[:-]oldstyle_urls$/;
695 $PRIVATE_TEMPFILES++, next if /^[:-]private_tempfiles$/;
696 $EXPORT{$_}++, next if /^[:-]any$/;
697 $compile++, next if /^[:-]compile$/;
698 $NO_UNDEF_PARAMS++, next if /^[:-]no_undef_params$/;
700 # This is probably extremely evil code -- to be deleted some day.
701 if (/^[-]autoload$/) {
702 my($pkg) = caller(1);
703 *{"${pkg}::AUTOLOAD"} = sub {
704 my($routine) = $AUTOLOAD;
705 $routine =~ s/^.*::/CGI::/;
711 foreach (&expand_tags($_)) {
712 tr/a-zA-Z0-9_//cd; # don't allow weird function names
716 _compile_all(keys %EXPORT) if $compile;
720 my ($self,$charset) = self_or_default(@_);
721 $self->{'.charset'} = $charset if defined $charset;
725 ###############################################################################
726 ################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
727 ###############################################################################
728 $AUTOLOADED_ROUTINES = ''; # get rid of -w warning
729 $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
733 'URL_ENCODED'=> <<'END_OF_FUNC',
734 sub URL_ENCODED { 'application/x-www-form-urlencoded'; }
737 'MULTIPART' => <<'END_OF_FUNC',
738 sub MULTIPART { 'multipart/form-data'; }
741 'SERVER_PUSH' => <<'END_OF_FUNC',
742 sub SERVER_PUSH { 'multipart/x-mixed-replace;boundary="' . shift() . '"'; }
745 'new_MultipartBuffer' => <<'END_OF_FUNC',
746 # Create a new multipart buffer
747 sub new_MultipartBuffer {
748 my($self,$boundary,$length,$filehandle) = @_;
749 return MultipartBuffer->new($self,$boundary,$length,$filehandle);
753 'read_from_client' => <<'END_OF_FUNC',
754 # Read data from a file handle
755 sub read_from_client {
756 my($self, $fh, $buff, $len, $offset) = @_;
757 local $^W=0; # prevent a warning
758 return undef unless defined($fh);
759 return read($fh, $$buff, $len, $offset);
763 'delete' => <<'END_OF_FUNC',
765 # Deletes the named parameter entirely.
768 my($self,@p) = self_or_default(@_);
769 my($name) = rearrange([NAME],@p);
770 CORE::delete $self->{$name};
771 CORE::delete $self->{'.fieldnames'}->{$name};
772 @{$self->{'.parameters'}}=grep($_ ne $name,$self->param());
773 return wantarray ? () : undef;
777 #### Method: import_names
778 # Import all parameters into the given namespace.
779 # Assumes namespace 'Q' if not specified
781 'import_names' => <<'END_OF_FUNC',
783 my($self,$namespace,$delete) = self_or_default(@_);
784 $namespace = 'Q' unless defined($namespace);
785 die "Can't import names into \"main\"\n" if \%{"${namespace}::"} == \%::;
786 if ($delete || $MOD_PERL || exists $ENV{'FCGI_ROLE'}) {
787 # can anyone find an easier way to do this?
788 foreach (keys %{"${namespace}::"}) {
789 local *symbol = "${namespace}::${_}";
795 my($param,@value,$var);
796 foreach $param ($self->param) {
797 # protect against silly names
798 ($var = $param)=~tr/a-zA-Z0-9_/_/c;
799 $var =~ s/^(?=\d)/_/;
800 local *symbol = "${namespace}::$var";
801 @value = $self->param($param);
808 #### Method: keywords
809 # Keywords acts a bit differently. Calling it in a list context
810 # returns the list of keywords.
811 # Calling it in a scalar context gives you the size of the list.
813 'keywords' => <<'END_OF_FUNC',
815 my($self,@values) = self_or_default(@_);
816 # If values is provided, then we set it.
817 $self->{'keywords'}=[@values] if @values;
818 my(@result) = defined($self->{'keywords'}) ? @{$self->{'keywords'}} : ();
823 # These are some tie() interfaces for compatibility
824 # with Steve Brenner's cgi-lib.pl routines
825 'Vars' => <<'END_OF_FUNC',
830 return %in if wantarray;
835 # These are some tie() interfaces for compatibility
836 # with Steve Brenner's cgi-lib.pl routines
837 'ReadParse' => <<'END_OF_FUNC',
847 return scalar(keys %in);
851 'PrintHeader' => <<'END_OF_FUNC',
853 my($self) = self_or_default(@_);
854 return $self->header();
858 'HtmlTop' => <<'END_OF_FUNC',
860 my($self,@p) = self_or_default(@_);
861 return $self->start_html(@p);
865 'HtmlBot' => <<'END_OF_FUNC',
867 my($self,@p) = self_or_default(@_);
868 return $self->end_html(@p);
872 'SplitParam' => <<'END_OF_FUNC',
875 my (@params) = split ("\0", $param);
876 return (wantarray ? @params : $params[0]);
880 'MethGet' => <<'END_OF_FUNC',
882 return request_method() eq 'GET';
886 'MethPost' => <<'END_OF_FUNC',
888 return request_method() eq 'POST';
892 'TIEHASH' => <<'END_OF_FUNC',
894 return $_[1] if defined $_[1];
895 return $Q ||= new shift;
899 'STORE' => <<'END_OF_FUNC',
904 my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals;
905 $self->param(-name=>$tag,-value=>\@vals);
909 'FETCH' => <<'END_OF_FUNC',
911 return $_[0] if $_[1] eq 'CGI';
912 return undef unless defined $_[0]->param($_[1]);
913 return join("\0",$_[0]->param($_[1]));
917 'FIRSTKEY' => <<'END_OF_FUNC',
919 $_[0]->{'.iterator'}=0;
920 $_[0]->{'.parameters'}->[$_[0]->{'.iterator'}++];
924 'NEXTKEY' => <<'END_OF_FUNC',
926 $_[0]->{'.parameters'}->[$_[0]->{'.iterator'}++];
930 'EXISTS' => <<'END_OF_FUNC',
932 exists $_[0]->{$_[1]};
936 'DELETE' => <<'END_OF_FUNC',
938 $_[0]->delete($_[1]);
942 'CLEAR' => <<'END_OF_FUNC',
950 # Append a new value to an existing query
955 my($name,$value) = rearrange([NAME,[VALUE,VALUES]],@p);
956 my(@values) = defined($value) ? (ref($value) ? @{$value} : $value) : ();
958 $self->add_parameter($name);
959 push(@{$self->{$name}},@values);
961 return $self->param($name);
965 #### Method: delete_all
966 # Delete all parameters
968 'delete_all' => <<'EOF',
970 my($self) = self_or_default(@_);
977 my($self,@p) = self_or_default(@_);
982 'Delete_all' => <<'EOF',
984 my($self,@p) = self_or_default(@_);
985 $self->delete_all(@p);
989 #### Method: autoescape
990 # If you want to turn off the autoescaping features,
991 # call this method with undef as the argument
992 'autoEscape' => <<'END_OF_FUNC',
994 my($self,$escape) = self_or_default(@_);
995 $self->{'dontescape'}=!$escape;
1000 #### Method: version
1001 # Return the current version
1003 'version' => <<'END_OF_FUNC',
1009 #### Method: url_param
1010 # Return a parameter in the QUERY_STRING, regardless of
1011 # whether this was a POST or a GET
1013 'url_param' => <<'END_OF_FUNC',
1015 my ($self,@p) = self_or_default(@_);
1016 my $name = shift(@p);
1017 return undef unless exists($ENV{QUERY_STRING});
1018 unless (exists($self->{'.url_param'})) {
1019 $self->{'.url_param'}={}; # empty hash
1020 if ($ENV{QUERY_STRING} =~ /=/) {
1021 my(@pairs) = split(/[&;]/,$ENV{QUERY_STRING});
1024 ($param,$value) = split('=',$_,2);
1025 $param = unescape($param);
1026 $value = unescape($value);
1027 push(@{$self->{'.url_param'}->{$param}},$value);
1030 $self->{'.url_param'}->{'keywords'} = [$self->parse_keywordlist($ENV{QUERY_STRING})];
1033 return keys %{$self->{'.url_param'}} unless defined($name);
1034 return () unless $self->{'.url_param'}->{$name};
1035 return wantarray ? @{$self->{'.url_param'}->{$name}}
1036 : $self->{'.url_param'}->{$name}->[0];
1041 # Returns a string in which all the known parameter/value
1042 # pairs are represented as nested lists, mainly for the purposes
1045 'Dump' => <<'END_OF_FUNC',
1047 my($self) = self_or_default(@_);
1048 my($param,$value,@result);
1049 return '<ul></ul>' unless $self->param;
1050 push(@result,"<ul>");
1051 foreach $param ($self->param) {
1052 my($name)=$self->escapeHTML($param);
1053 push(@result,"<li><strong>$param</strong>");
1054 push(@result,"<ul>");
1055 foreach $value ($self->param($param)) {
1056 $value = $self->escapeHTML($value);
1057 $value =~ s/\n/<br>\n/g;
1058 push(@result,"<li>$value");
1060 push(@result,"</ul>");
1062 push(@result,"</ul>");
1063 return join("\n",@result);
1067 #### Method as_string
1069 # synonym for "dump"
1071 'as_string' => <<'END_OF_FUNC',
1078 # Write values out to a filehandle in such a way that they can
1079 # be reinitialized by the filehandle form of the new() method
1081 'save' => <<'END_OF_FUNC',
1083 my($self,$filehandle) = self_or_default(@_);
1084 $filehandle = to_filehandle($filehandle);
1086 local($,) = ''; # set print field separator back to a sane value
1087 local($\) = ''; # set output line separator to a sane value
1088 foreach $param ($self->param) {
1089 my($escaped_param) = escape($param);
1091 foreach $value ($self->param($param)) {
1092 print $filehandle "$escaped_param=",escape("$value"),"\n";
1095 foreach (keys %{$self->{'.fieldnames'}}) {
1096 print $filehandle ".cgifields=",escape("$_"),"\n";
1098 print $filehandle "=\n"; # end of record
1103 #### Method: save_parameters
1104 # An alias for save() that is a better name for exportation.
1105 # Only intended to be used with the function (non-OO) interface.
1107 'save_parameters' => <<'END_OF_FUNC',
1108 sub save_parameters {
1110 return save(to_filehandle($fh));
1114 #### Method: restore_parameters
1115 # A way to restore CGI parameters from an initializer.
1116 # Only intended to be used with the function (non-OO) interface.
1118 'restore_parameters' => <<'END_OF_FUNC',
1119 sub restore_parameters {
1120 $Q = $CGI::DefaultClass->new(@_);
1124 #### Method: multipart_init
1125 # Return a Content-Type: style header for server-push
1126 # This has to be NPH on most web servers, and it is advisable to set $| = 1
1128 # Many thanks to Ed Jordan <ed@fidalgo.net> for this
1129 # contribution, updated by Andrew Benham (adsb@bigfoot.com)
1131 'multipart_init' => <<'END_OF_FUNC',
1132 sub multipart_init {
1133 my($self,@p) = self_or_default(@_);
1134 my($boundary,@other) = rearrange([BOUNDARY],@p);
1135 $boundary = $boundary || '------- =_aaaaaaaaaa0';
1136 $self->{'separator'} = "$CRLF--$boundary$CRLF";
1137 $self->{'final_separator'} = "$CRLF--$boundary--$CRLF";
1138 $type = SERVER_PUSH($boundary);
1139 return $self->header(
1142 (map { split "=", $_, 2 } @other),
1143 ) . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $self->multipart_end;
1148 #### Method: multipart_start
1149 # Return a Content-Type: style header for server-push, start of section
1151 # Many thanks to Ed Jordan <ed@fidalgo.net> for this
1152 # contribution, updated by Andrew Benham (adsb@bigfoot.com)
1154 'multipart_start' => <<'END_OF_FUNC',
1155 sub multipart_start {
1157 my($self,@p) = self_or_default(@_);
1158 my($type,@other) = rearrange([TYPE],@p);
1159 $type = $type || 'text/html';
1160 push(@header,"Content-Type: $type");
1162 # rearrange() was designed for the HTML portion, so we
1163 # need to fix it up a little.
1165 next unless my($header,$value) = /([^\s=]+)=\"?(.+?)\"?$/;
1166 ($_ = $header) =~ s/^(\w)(.*)/$1 . lc ($2) . ': '.$self->unescapeHTML($value)/e;
1168 push(@header,@other);
1169 my $header = join($CRLF,@header)."${CRLF}${CRLF}";
1175 #### Method: multipart_end
1176 # Return a MIME boundary separator for server-push, end of section
1178 # Many thanks to Ed Jordan <ed@fidalgo.net> for this
1181 'multipart_end' => <<'END_OF_FUNC',
1183 my($self,@p) = self_or_default(@_);
1184 return $self->{'separator'};
1189 #### Method: multipart_final
1190 # Return a MIME boundary separator for server-push, end of all sections
1192 # Contributed by Andrew Benham (adsb@bigfoot.com)
1194 'multipart_final' => <<'END_OF_FUNC',
1195 sub multipart_final {
1196 my($self,@p) = self_or_default(@_);
1197 return $self->{'final_separator'} . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $CRLF;
1203 # Return a Content-Type: style header
1206 'header' => <<'END_OF_FUNC',
1208 my($self,@p) = self_or_default(@_);
1211 return undef if $self->{'.header_printed'}++ and $HEADERS_ONCE;
1213 my($type,$status,$cookie,$target,$expires,$nph,$charset,$attachment,@other) =
1214 rearrange([['TYPE','CONTENT_TYPE','CONTENT-TYPE'],
1215 'STATUS',['COOKIE','COOKIES'],'TARGET',
1216 'EXPIRES','NPH','CHARSET',
1220 if (defined $charset) {
1221 $self->charset($charset);
1223 $charset = $self->charset;
1226 # rearrange() was designed for the HTML portion, so we
1227 # need to fix it up a little.
1229 next unless my($header,$value) = /([^\s=]+)=\"?(.+?)\"?$/;
1230 ($_ = $header) =~ s/^(\w)(.*)/$1 . lc ($2) . ': '.$self->unescapeHTML($value)/e;
1231 $header = ucfirst($header);
1234 $type ||= 'text/html' unless defined($type);
1235 $type .= "; charset=$charset" if $type ne '' and $type =~ m!^text/! and $type !~ /\bcharset\b/;
1237 # Maybe future compatibility. Maybe not.
1238 my $protocol = $ENV{SERVER_PROTOCOL} || 'HTTP/1.0';
1239 push(@header,$protocol . ' ' . ($status || '200 OK')) if $nph;
1240 push(@header,"Server: " . &server_software()) if $nph;
1242 push(@header,"Status: $status") if $status;
1243 push(@header,"Window-Target: $target") if $target;
1244 # push all the cookies -- there may be several
1246 my(@cookie) = ref($cookie) && ref($cookie) eq 'ARRAY' ? @{$cookie} : $cookie;
1248 my $cs = UNIVERSAL::isa($_,'CGI::Cookie') ? $_->as_string : $_;
1249 push(@header,"Set-Cookie: $cs") if $cs ne '';
1252 # if the user indicates an expiration time, then we need
1253 # both an Expires and a Date header (so that the browser is
1255 push(@header,"Expires: " . expires($expires,'http'))
1257 push(@header,"Date: " . expires(0,'http')) if $expires || $cookie || $nph;
1258 push(@header,"Pragma: no-cache") if $self->cache();
1259 push(@header,"Content-Disposition: attachment; filename=\"$attachment\"") if $attachment;
1260 push(@header,map {ucfirst $_} @other);
1261 push(@header,"Content-Type: $type") if $type ne '';
1263 my $header = join($CRLF,@header)."${CRLF}${CRLF}";
1264 if ($MOD_PERL and not $nph) {
1265 my $r = Apache->request;
1266 $r->send_cgi_header($header);
1275 # Control whether header() will produce the no-cache
1278 'cache' => <<'END_OF_FUNC',
1280 my($self,$new_value) = self_or_default(@_);
1281 $new_value = '' unless $new_value;
1282 if ($new_value ne '') {
1283 $self->{'cache'} = $new_value;
1285 return $self->{'cache'};
1290 #### Method: redirect
1291 # Return a Location: style header
1294 'redirect' => <<'END_OF_FUNC',
1296 my($self,@p) = self_or_default(@_);
1297 my($url,$target,$cookie,$nph,@other) = rearrange([[LOCATION,URI,URL],TARGET,COOKIE,NPH],@p);
1298 $url ||= $self->self_url;
1300 foreach (@other) { tr/\"//d; push(@o,split("=",$_,2)); }
1302 '-Status'=>'302 Moved',
1305 unshift(@o,'-Target'=>$target) if $target;
1306 unshift(@o,'-Cookie'=>$cookie) if $cookie;
1307 unshift(@o,'-Type'=>'');
1308 return $self->header(@o);
1313 #### Method: start_html
1314 # Canned HTML header
1317 # $title -> (optional) The title for this HTML document (-title)
1318 # $author -> (optional) e-mail address of the author (-author)
1319 # $base -> (optional) if set to true, will enter the BASE address of this document
1320 # for resolving relative references (-base)
1321 # $xbase -> (optional) alternative base at some remote location (-xbase)
1322 # $target -> (optional) target window to load all links into (-target)
1323 # $script -> (option) Javascript code (-script)
1324 # $no_script -> (option) Javascript <noscript> tag (-noscript)
1325 # $meta -> (optional) Meta information tags
1326 # $head -> (optional) any other elements you'd like to incorporate into the <head> tag
1327 # (a scalar or array ref)
1328 # $style -> (optional) reference to an external style sheet
1329 # @other -> (optional) any other named parameters you'd like to incorporate into
1332 'start_html' => <<'END_OF_FUNC',
1334 my($self,@p) = &self_or_default(@_);
1335 my($title,$author,$base,$xbase,$script,$noscript,
1336 $target,$meta,$head,$style,$dtd,$lang,$encoding,@other) =
1337 rearrange([TITLE,AUTHOR,BASE,XBASE,SCRIPT,NOSCRIPT,TARGET,META,HEAD,STYLE,DTD,LANG,ENCODING],@p);
1339 $encoding = 'iso-8859-1' unless defined $encoding;
1341 # strangely enough, the title needs to be escaped as HTML
1342 # while the author needs to be escaped as a URL
1343 $title = $self->escapeHTML($title || 'Untitled Document');
1344 $author = $self->escape($author);
1346 my(@result,$xml_dtd);
1348 if (defined(ref($dtd)) and (ref($dtd) eq 'ARRAY')) {
1349 $dtd = $DEFAULT_DTD unless $dtd->[0] =~ m|^-//|;
1351 $dtd = $DEFAULT_DTD unless $dtd =~ m|^-//|;
1354 $dtd = $XHTML ? XHTML_DTD : $DEFAULT_DTD;
1357 $xml_dtd++ if ref($dtd) eq 'ARRAY' && $dtd->[0] =~ /\bXHTML\b/i;
1358 $xml_dtd++ if ref($dtd) eq '' && $dtd =~ /\bXHTML\b/i;
1359 push @result,qq(<?xml version="1.0" encoding="$encoding"?>) if $xml_dtd;
1361 if (ref($dtd) && ref($dtd) eq 'ARRAY') {
1362 push(@result,qq(<!DOCTYPE html\n\tPUBLIC "$dtd->[0]"\n\t "$dtd->[1]">));
1364 push(@result,qq(<!DOCTYPE html\n\tPUBLIC "$dtd">));
1366 push(@result,$XHTML ? qq(<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang"><head><title>$title</title>)
1367 : qq(<html lang="$lang"><head><title>$title</title>));
1368 if (defined $author) {
1369 push(@result,$XHTML ? "<link rev=\"made\" href=\"mailto:$author\" />"
1370 : "<link rev=\"made\" href=\"mailto:$author\">");
1373 if ($base || $xbase || $target) {
1374 my $href = $xbase || $self->url('-path'=>1);
1375 my $t = $target ? qq/ target="$target"/ : '';
1376 push(@result,$XHTML ? qq(<base href="$href"$t />) : qq(<base href="$href"$t>));
1379 if ($meta && ref($meta) && (ref($meta) eq 'HASH')) {
1380 foreach (keys %$meta) { push(@result,$XHTML ? qq(<meta name="$_" content="$meta->{$_}" />)
1381 : qq(<meta name="$_" content="$meta->{$_}">)); }
1384 push(@result,ref($head) ? @$head : $head) if $head;
1386 # handle the infrequently-used -style and -script parameters
1387 push(@result,$self->_style($style)) if defined $style;
1388 push(@result,$self->_script($script)) if defined $script;
1390 # handle -noscript parameter
1391 push(@result,<<END) if $noscript;
1397 my($other) = @other ? " @other" : '';
1398 push(@result,"</head><body$other>");
1399 return join("\n",@result);
1404 # internal method for generating a CSS style section
1406 '_style' => <<'END_OF_FUNC',
1408 my ($self,$style) = @_;
1410 my $type = 'text/css';
1412 my $cdata_start = $XHTML ? "\n<!--/* <![CDATA[ */" : "\n<!-- ";
1413 my $cdata_end = $XHTML ? "\n/* ]]> */-->\n" : " -->\n";
1416 my($src,$code,$stype,@other) =
1417 rearrange([SRC,CODE,TYPE],
1418 '-foo'=>'bar', # a trick to allow the '-' to be omitted
1419 ref($style) eq 'ARRAY' ? @$style : %$style);
1420 $type = $stype if $stype;
1421 if (ref($src) eq "ARRAY") # Check to see if the $src variable is an array reference
1422 { # If it is, push a LINK tag for each one.
1423 foreach $src (@$src)
1425 push(@result,$XHTML ? qq(<link rel="stylesheet" type="$type" href="$src" />)
1426 : qq(<link rel="stylesheet" type="$type" href="$src">)) if $src;
1430 { # Otherwise, push the single -src, if it exists.
1431 push(@result,$XHTML ? qq(<link rel="stylesheet" type="$type" href="$src" />)
1432 : qq(<link rel="stylesheet" type="$type" href="$src">)
1435 push(@result,style({'type'=>$type},"$cdata_start\n$code\n$cdata_end")) if $code;
1437 push(@result,style({'type'=>$type},"$cdata_start\n$style\n$cdata_end"));
1443 '_script' => <<'END_OF_FUNC',
1445 my ($self,$script) = @_;
1448 my (@scripts) = ref($script) eq 'ARRAY' ? @$script : ($script);
1449 foreach $script (@scripts) {
1450 my($src,$code,$language);
1451 if (ref($script)) { # script is a hash
1452 ($src,$code,$language, $type) =
1453 rearrange([SRC,CODE,LANGUAGE,TYPE],
1454 '-foo'=>'bar', # a trick to allow the '-' to be omitted
1455 ref($script) eq 'ARRAY' ? @$script : %$script);
1456 # User may not have specified language
1457 $language ||= 'JavaScript';
1458 unless (defined $type) {
1459 $type = lc $language;
1460 # strip '1.2' from 'javascript1.2'
1461 $type =~ s/^(\D+).*$/text\/$1/;
1464 ($src,$code,$language, $type) = ('',$script,'JavaScript', 'text/javascript');
1467 my $comment = '//'; # javascript by default
1468 $comment = '#' if $type=~/perl|tcl/i;
1469 $comment = "'" if $type=~/vbscript/i;
1471 my $cdata_start = "\n<!-- Hide script\n";
1472 $cdata_start .= "$comment<![CDATA[\n" if $XHTML;
1473 my $cdata_end = $XHTML ? "\n$comment]]>" : $comment;
1474 $cdata_end .= " End script hiding -->\n";
1477 push(@satts,'src'=>$src) if $src;
1478 push(@satts,'language'=>$language);
1479 push(@satts,'type'=>$type);
1480 $code = "$cdata_start$code$cdata_end" if defined $code;
1481 push(@result,script({@satts},$code || ''));
1487 #### Method: end_html
1488 # End an HTML document.
1489 # Trivial method for completeness. Just returns "</body>"
1491 'end_html' => <<'END_OF_FUNC',
1493 return "</body></html>";
1498 ################################
1499 # METHODS USED IN BUILDING FORMS
1500 ################################
1502 #### Method: isindex
1503 # Just prints out the isindex tag.
1505 # $action -> optional URL of script to run
1507 # A string containing a <ISINDEX> tag
1508 'isindex' => <<'END_OF_FUNC',
1510 my($self,@p) = self_or_default(@_);
1511 my($action,@other) = rearrange([ACTION],@p);
1512 $action = qq/action="$action"/ if $action;
1513 my($other) = @other ? " @other" : '';
1514 return $XHTML ? "<isindex $action$other />" : "<isindex $action$other>";
1519 #### Method: startform
1522 # $method -> optional submission method to use (GET or POST)
1523 # $action -> optional URL of script to run
1524 # $enctype ->encoding to use (URL_ENCODED or MULTIPART)
1525 'startform' => <<'END_OF_FUNC',
1527 my($self,@p) = self_or_default(@_);
1529 my($method,$action,$enctype,@other) =
1530 rearrange([METHOD,ACTION,ENCTYPE],@p);
1532 $method = lc($method) || 'post';
1533 $enctype = $enctype || &URL_ENCODED;
1534 unless (defined $action) {
1535 $action = $self->url(-absolute=>1,-path=>1);
1536 $action .= "?$ENV{QUERY_STRING}" if $ENV{QUERY_STRING};
1538 $action = qq(action="$action");
1539 my($other) = @other ? " @other" : '';
1540 $self->{'.parametersToAdd'}={};
1541 return qq/<form method="$method" $action enctype="$enctype"$other>\n/;
1546 #### Method: start_form
1547 # synonym for startform
1548 'start_form' => <<'END_OF_FUNC',
1554 'end_multipart_form' => <<'END_OF_FUNC',
1555 sub end_multipart_form {
1560 #### Method: start_multipart_form
1561 # synonym for startform
1562 'start_multipart_form' => <<'END_OF_FUNC',
1563 sub start_multipart_form {
1564 my($self,@p) = self_or_default(@_);
1565 if (defined($param[0]) && substr($param[0],0,1) eq '-') {
1567 $p{'-enctype'}=&MULTIPART;
1568 return $self->startform(%p);
1570 my($method,$action,@other) =
1571 rearrange([METHOD,ACTION],@p);
1572 return $self->startform($method,$action,&MULTIPART,@other);
1578 #### Method: endform
1580 'endform' => <<'END_OF_FUNC',
1582 my($self,@p) = self_or_default(@_);
1584 return wantarray ? ("</form>") : "\n</form>";
1586 return wantarray ? ($self->get_fields,"</form>") :
1587 $self->get_fields ."\n</form>";
1593 #### Method: end_form
1594 # synonym for endform
1595 'end_form' => <<'END_OF_FUNC',
1602 '_textfield' => <<'END_OF_FUNC',
1604 my($self,$tag,@p) = self_or_default(@_);
1605 my($name,$default,$size,$maxlength,$override,@other) =
1606 rearrange([NAME,[DEFAULT,VALUE],SIZE,MAXLENGTH,[OVERRIDE,FORCE]],@p);
1608 my $current = $override ? $default :
1609 (defined($self->param($name)) ? $self->param($name) : $default);
1611 $current = defined($current) ? $self->escapeHTML($current,1) : '';
1612 $name = defined($name) ? $self->escapeHTML($name) : '';
1613 my($s) = defined($size) ? qq/ size="$size"/ : '';
1614 my($m) = defined($maxlength) ? qq/ maxlength="$maxlength"/ : '';
1615 my($other) = @other ? " @other" : '';
1616 # this entered at cristy's request to fix problems with file upload fields
1617 # and WebTV -- not sure it won't break stuff
1618 my($value) = $current ne '' ? qq(value="$current") : '';
1619 return $XHTML ? qq(<input type="$tag" name="$name" $value$s$m$other />)
1620 : qq(<input type="$tag" name="$name" $value$s$m$other>);
1624 #### Method: textfield
1626 # $name -> Name of the text field
1627 # $default -> Optional default value of the field if not
1629 # $size -> Optional width of field in characaters.
1630 # $maxlength -> Optional maximum number of characters.
1632 # A string containing a <INPUT TYPE="text"> field
1634 'textfield' => <<'END_OF_FUNC',
1636 my($self,@p) = self_or_default(@_);
1637 $self->_textfield('text',@p);
1642 #### Method: filefield
1644 # $name -> Name of the file upload field
1645 # $size -> Optional width of field in characaters.
1646 # $maxlength -> Optional maximum number of characters.
1648 # A string containing a <INPUT TYPE="text"> field
1650 'filefield' => <<'END_OF_FUNC',
1652 my($self,@p) = self_or_default(@_);
1653 $self->_textfield('file',@p);
1658 #### Method: password
1659 # Create a "secret password" entry field
1661 # $name -> Name of the field
1662 # $default -> Optional default value of the field if not
1664 # $size -> Optional width of field in characters.
1665 # $maxlength -> Optional maximum characters that can be entered.
1667 # A string containing a <INPUT TYPE="password"> field
1669 'password_field' => <<'END_OF_FUNC',
1670 sub password_field {
1671 my ($self,@p) = self_or_default(@_);
1672 $self->_textfield('password',@p);
1676 #### Method: textarea
1678 # $name -> Name of the text field
1679 # $default -> Optional default value of the field if not
1681 # $rows -> Optional number of rows in text area
1682 # $columns -> Optional number of columns in text area
1684 # A string containing a <textarea></textarea> tag
1686 'textarea' => <<'END_OF_FUNC',
1688 my($self,@p) = self_or_default(@_);
1690 my($name,$default,$rows,$cols,$override,@other) =
1691 rearrange([NAME,[DEFAULT,VALUE],ROWS,[COLS,COLUMNS],[OVERRIDE,FORCE]],@p);
1693 my($current)= $override ? $default :
1694 (defined($self->param($name)) ? $self->param($name) : $default);
1696 $name = defined($name) ? $self->escapeHTML($name) : '';
1697 $current = defined($current) ? $self->escapeHTML($current) : '';
1698 my($r) = $rows ? qq/ rows="$rows"/ : '';
1699 my($c) = $cols ? qq/ cols="$cols"/ : '';
1700 my($other) = @other ? " @other" : '';
1701 return qq{<textarea name="$name"$r$c$other>$current</textarea>};
1707 # Create a javascript button.
1709 # $name -> (optional) Name for the button. (-name)
1710 # $value -> (optional) Value of the button when selected (and visible name) (-value)
1711 # $onclick -> (optional) Text of the JavaScript to run when the button is
1714 # A string containing a <INPUT TYPE="button"> tag
1716 'button' => <<'END_OF_FUNC',
1718 my($self,@p) = self_or_default(@_);
1720 my($label,$value,$script,@other) = rearrange([NAME,[VALUE,LABEL],
1721 [ONCLICK,SCRIPT]],@p);
1723 $label=$self->escapeHTML($label);
1724 $value=$self->escapeHTML($value,1);
1725 $script=$self->escapeHTML($script);
1728 $name = qq/ name="$label"/ if $label;
1729 $value = $value || $label;
1731 $val = qq/ value="$value"/ if $value;
1732 $script = qq/ onclick="$script"/ if $script;
1733 my($other) = @other ? " @other" : '';
1734 return $XHTML ? qq(<input type="button"$name$val$script$other />)
1735 : qq(<input type="button"$name$val$script$other>);
1741 # Create a "submit query" button.
1743 # $name -> (optional) Name for the button.
1744 # $value -> (optional) Value of the button when selected (also doubles as label).
1745 # $label -> (optional) Label printed on the button(also doubles as the value).
1747 # A string containing a <INPUT TYPE="submit"> tag
1749 'submit' => <<'END_OF_FUNC',
1751 my($self,@p) = self_or_default(@_);
1753 my($label,$value,@other) = rearrange([NAME,[VALUE,LABEL]],@p);
1755 $label=$self->escapeHTML($label);
1756 $value=$self->escapeHTML($value,1);
1758 my($name) = ' name=".submit"' unless $NOSTICKY;
1759 $name = qq/ name="$label"/ if defined($label);
1760 $value = defined($value) ? $value : $label;
1762 $val = qq/ value="$value"/ if defined($value);
1763 my($other) = @other ? " @other" : '';
1764 return $XHTML ? qq(<input type="submit"$name$val$other />)
1765 : qq(<input type="submit"$name$val$other>);
1771 # Create a "reset" button.
1773 # $name -> (optional) Name for the button.
1775 # A string containing a <INPUT TYPE="reset"> tag
1777 'reset' => <<'END_OF_FUNC',
1779 my($self,@p) = self_or_default(@_);
1780 my($label,@other) = rearrange([NAME],@p);
1781 $label=$self->escapeHTML($label);
1782 my($value) = defined($label) ? qq/ value="$label"/ : '';
1783 my($other) = @other ? " @other" : '';
1784 return $XHTML ? qq(<input type="reset"$value$other />)
1785 : qq(<input type="reset"$value$other>);
1790 #### Method: defaults
1791 # Create a "defaults" button.
1793 # $name -> (optional) Name for the button.
1795 # A string containing a <INPUT TYPE="submit" NAME=".defaults"> tag
1797 # Note: this button has a special meaning to the initialization script,
1798 # and tells it to ERASE the current query string so that your defaults
1801 'defaults' => <<'END_OF_FUNC',
1803 my($self,@p) = self_or_default(@_);
1805 my($label,@other) = rearrange([[NAME,VALUE]],@p);
1807 $label=$self->escapeHTML($label,1);
1808 $label = $label || "Defaults";
1809 my($value) = qq/ value="$label"/;
1810 my($other) = @other ? " @other" : '';
1811 return $XHTML ? qq(<input type="submit" name=".defaults"$value$other />)
1812 : qq/<input type="submit" NAME=".defaults"$value$other>/;
1817 #### Method: comment
1818 # Create an HTML <!-- comment -->
1819 # Parameters: a string
1820 'comment' => <<'END_OF_FUNC',
1822 my($self,@p) = self_or_CGI(@_);
1823 return "<!-- @p -->";
1827 #### Method: checkbox
1828 # Create a checkbox that is not logically linked to any others.
1829 # The field value is "on" when the button is checked.
1831 # $name -> Name of the checkbox
1832 # $checked -> (optional) turned on by default if true
1833 # $value -> (optional) value of the checkbox, 'on' by default
1834 # $label -> (optional) a user-readable label printed next to the box.
1835 # Otherwise the checkbox name is used.
1837 # A string containing a <INPUT TYPE="checkbox"> field
1839 'checkbox' => <<'END_OF_FUNC',
1841 my($self,@p) = self_or_default(@_);
1843 my($name,$checked,$value,$label,$override,@other) =
1844 rearrange([NAME,[CHECKED,SELECTED,ON],VALUE,LABEL,[OVERRIDE,FORCE]],@p);
1846 $value = defined $value ? $value : 'on';
1848 if (!$override && ($self->{'.fieldnames'}->{$name} ||
1849 defined $self->param($name))) {
1850 $checked = grep($_ eq $value,$self->param($name)) ? $self->_checked(1) : '';
1852 $checked = $self->_checked($checked);
1854 my($the_label) = defined $label ? $label : $name;
1855 $name = $self->escapeHTML($name);
1856 $value = $self->escapeHTML($value,1);
1857 $the_label = $self->escapeHTML($the_label);
1858 my($other) = @other ? " @other" : '';
1859 $self->register_parameter($name);
1860 return $XHTML ? qq{<input type="checkbox" name="$name" value="$value"$checked$other />$the_label}
1861 : qq{<input type="checkbox" name="$name" value="$value"$checked$other>$the_label};
1866 #### Method: checkbox_group
1867 # Create a list of logically-linked checkboxes.
1869 # $name -> Common name for all the check boxes
1870 # $values -> A pointer to a regular array containing the
1871 # values for each checkbox in the group.
1872 # $defaults -> (optional)
1873 # 1. If a pointer to a regular array of checkbox values,
1874 # then this will be used to decide which
1875 # checkboxes to turn on by default.
1876 # 2. If a scalar, will be assumed to hold the
1877 # value of a single checkbox in the group to turn on.
1878 # $linebreak -> (optional) Set to true to place linebreaks
1879 # between the buttons.
1880 # $labels -> (optional)
1881 # A pointer to an associative array of labels to print next to each checkbox
1882 # in the form $label{'value'}="Long explanatory label".
1883 # Otherwise the provided values are used as the labels.
1885 # An ARRAY containing a series of <INPUT TYPE="checkbox"> fields
1887 'checkbox_group' => <<'END_OF_FUNC',
1888 sub checkbox_group {
1889 my($self,@p) = self_or_default(@_);
1891 my($name,$values,$defaults,$linebreak,$labels,$rows,$columns,
1892 $rowheaders,$colheaders,$override,$nolabels,@other) =
1893 rearrange([NAME,[VALUES,VALUE],[DEFAULTS,DEFAULT],
1894 LINEBREAK,LABELS,ROWS,[COLUMNS,COLS],
1895 ROWHEADERS,COLHEADERS,
1896 [OVERRIDE,FORCE],NOLABELS],@p);
1898 my($checked,$break,$result,$label);
1900 my(%checked) = $self->previous_or_default($name,$defaults,$override);
1903 $break = $XHTML ? "<br />" : "<br>";
1908 $name=$self->escapeHTML($name);
1910 # Create the elements
1911 my(@elements,@values);
1913 @values = $self->_set_values_and_labels($values,\$labels,$name);
1915 my($other) = @other ? " @other" : '';
1917 $checked = $self->_checked($checked{$_});
1919 unless (defined($nolabels) && $nolabels) {
1921 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
1922 $label = $self->escapeHTML($label);
1924 $_ = $self->escapeHTML($_,1);
1925 push(@elements,$XHTML ? qq(<input type="checkbox" name="$name" value="$_"$checked$other />${label}${break})
1926 : qq/<input type="checkbox" name="$name" value="$_"$checked$other>${label}${break}/);
1928 $self->register_parameter($name);
1929 return wantarray ? @elements : join(' ',@elements)
1930 unless defined($columns) || defined($rows);
1931 return _tableize($rows,$columns,$rowheaders,$colheaders,@elements);
1935 # Escape HTML -- used internally
1936 'escapeHTML' => <<'END_OF_FUNC',
1938 # hack to work around earlier hacks
1939 push @_,$_[0] if @_==1 && $_[0] eq 'CGI';
1940 my ($self,$toencode,$newlinestoo) = CGI::self_or_default(@_);
1941 return undef unless defined($toencode);
1942 return $toencode if ref($self) && $self->{'dontescape'};
1943 $toencode =~ s{&}{&}gso;
1944 $toencode =~ s{<}{<}gso;
1945 $toencode =~ s{>}{>}gso;
1946 $toencode =~ s{"}{"}gso;
1947 my $latin = uc $self->{'.charset'} eq 'ISO-8859-1' ||
1948 uc $self->{'.charset'} eq 'WINDOWS-1252';
1949 if ($latin) { # bug in some browsers
1950 $toencode =~ s{'}{'}gso;
1951 $toencode =~ s{\x8b}{‹}gso;
1952 $toencode =~ s{\x9b}{›}gso;
1953 if (defined $newlinestoo && $newlinestoo) {
1954 $toencode =~ s{\012}{ }gso;
1955 $toencode =~ s{\015}{ }gso;
1962 # unescape HTML -- used internally
1963 'unescapeHTML' => <<'END_OF_FUNC',
1965 my ($self,$string) = CGI::self_or_default(@_);
1966 return undef unless defined($string);
1967 my $latin = defined $self->{'.charset'} ? $self->{'.charset'} =~ /^(ISO-8859-1|WINDOWS-1252)$/i
1969 # thanks to Randal Schwartz for the correct solution to this one
1970 $string=~ s[&(.*?);]{
1976 /^#(\d+)$/ && $latin ? chr($1) :
1977 /^#x([0-9a-f]+)$/i && $latin ? chr(hex($1)) :
1984 # Internal procedure - don't use
1985 '_tableize' => <<'END_OF_FUNC',
1987 my($rows,$columns,$rowheaders,$colheaders,@elements) = @_;
1988 $rowheaders = [] unless defined $rowheaders;
1989 $colheaders = [] unless defined $colheaders;
1992 if (defined($columns)) {
1993 $rows = int(0.99 + @elements/$columns) unless defined($rows);
1995 if (defined($rows)) {
1996 $columns = int(0.99 + @elements/$rows) unless defined($columns);
1999 # rearrange into a pretty table
2000 $result = "<table>";
2002 unshift(@$colheaders,'') if @$colheaders && @$rowheaders;
2003 $result .= "<tr>" if @{$colheaders};
2004 foreach (@{$colheaders}) {
2005 $result .= "<th>$_</th>";
2007 for ($row=0;$row<$rows;$row++) {
2009 $result .= "<th>$rowheaders->[$row]</th>" if @$rowheaders;
2010 for ($column=0;$column<$columns;$column++) {
2011 $result .= "<td>" . $elements[$column*$rows + $row] . "</td>"
2012 if defined($elements[$column*$rows + $row]);
2016 $result .= "</table>";
2022 #### Method: radio_group
2023 # Create a list of logically-linked radio buttons.
2025 # $name -> Common name for all the buttons.
2026 # $values -> A pointer to a regular array containing the
2027 # values for each button in the group.
2028 # $default -> (optional) Value of the button to turn on by default. Pass '-'
2029 # to turn _nothing_ on.
2030 # $linebreak -> (optional) Set to true to place linebreaks
2031 # between the buttons.
2032 # $labels -> (optional)
2033 # A pointer to an associative array of labels to print next to each checkbox
2034 # in the form $label{'value'}="Long explanatory label".
2035 # Otherwise the provided values are used as the labels.
2037 # An ARRAY containing a series of <INPUT TYPE="radio"> fields
2039 'radio_group' => <<'END_OF_FUNC',
2041 my($self,@p) = self_or_default(@_);
2043 my($name,$values,$default,$linebreak,$labels,
2044 $rows,$columns,$rowheaders,$colheaders,$override,$nolabels,@other) =
2045 rearrange([NAME,[VALUES,VALUE],DEFAULT,LINEBREAK,LABELS,
2046 ROWS,[COLUMNS,COLS],
2047 ROWHEADERS,COLHEADERS,
2048 [OVERRIDE,FORCE],NOLABELS],@p);
2049 my($result,$checked);
2051 if (!$override && defined($self->param($name))) {
2052 $checked = $self->param($name);
2054 $checked = $default;
2056 my(@elements,@values);
2057 @values = $self->_set_values_and_labels($values,\$labels,$name);
2059 # If no check array is specified, check the first by default
2060 $checked = $values[0] unless defined($checked) && $checked ne '';
2061 $name=$self->escapeHTML($name);
2063 my($other) = @other ? " @other" : '';
2065 my($checkit) = $checked eq $_ ? qq/ checked="checked"/ : '';
2068 $break = $XHTML ? "<br />" : "<br>";
2074 unless (defined($nolabels) && $nolabels) {
2076 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2077 $label = $self->escapeHTML($label,1);
2079 $_=$self->escapeHTML($_);
2080 push(@elements,$XHTML ? qq(<input type="radio" name="$name" value="$_"$checkit$other />${label}${break})
2081 : qq/<input type="radio" name="$name" value="$_"$checkit$other>${label}${break}/);
2083 $self->register_parameter($name);
2084 return wantarray ? @elements : join(' ',@elements)
2085 unless defined($columns) || defined($rows);
2086 return _tableize($rows,$columns,$rowheaders,$colheaders,@elements);
2091 #### Method: popup_menu
2092 # Create a popup menu.
2094 # $name -> Name for all the menu
2095 # $values -> A pointer to a regular array containing the
2096 # text of each menu item.
2097 # $default -> (optional) Default item to display
2098 # $labels -> (optional)
2099 # A pointer to an associative array of labels to print next to each checkbox
2100 # in the form $label{'value'}="Long explanatory label".
2101 # Otherwise the provided values are used as the labels.
2103 # A string containing the definition of a popup menu.
2105 'popup_menu' => <<'END_OF_FUNC',
2107 my($self,@p) = self_or_default(@_);
2109 my($name,$values,$default,$labels,$override,@other) =
2110 rearrange([NAME,[VALUES,VALUE],[DEFAULT,DEFAULTS],LABELS,[OVERRIDE,FORCE]],@p);
2111 my($result,$selected);
2113 if (!$override && defined($self->param($name))) {
2114 $selected = $self->param($name);
2116 $selected = $default;
2118 $name=$self->escapeHTML($name);
2119 my($other) = @other ? " @other" : '';
2122 @values = $self->_set_values_and_labels($values,\$labels,$name);
2124 $result = qq/<select name="$name"$other>\n/;
2126 my($selectit) = defined($selected) ? $self->_selected($selected eq $_) : '';
2128 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2129 my($value) = $self->escapeHTML($_);
2130 $label=$self->escapeHTML($label,1);
2131 $result .= "<option$selectit value=\"$value\">$label</option>\n";
2134 $result .= "</select>";
2140 #### Method: scrolling_list
2141 # Create a scrolling list.
2143 # $name -> name for the list
2144 # $values -> A pointer to a regular array containing the
2145 # values for each option line in the list.
2146 # $defaults -> (optional)
2147 # 1. If a pointer to a regular array of options,
2148 # then this will be used to decide which
2149 # lines to turn on by default.
2150 # 2. Otherwise holds the value of the single line to turn on.
2151 # $size -> (optional) Size of the list.
2152 # $multiple -> (optional) If set, allow multiple selections.
2153 # $labels -> (optional)
2154 # A pointer to an associative array of labels to print next to each checkbox
2155 # in the form $label{'value'}="Long explanatory label".
2156 # Otherwise the provided values are used as the labels.
2158 # A string containing the definition of a scrolling list.
2160 'scrolling_list' => <<'END_OF_FUNC',
2161 sub scrolling_list {
2162 my($self,@p) = self_or_default(@_);
2163 my($name,$values,$defaults,$size,$multiple,$labels,$override,@other)
2164 = rearrange([NAME,[VALUES,VALUE],[DEFAULTS,DEFAULT],
2165 SIZE,MULTIPLE,LABELS,[OVERRIDE,FORCE]],@p);
2167 my($result,@values);
2168 @values = $self->_set_values_and_labels($values,\$labels,$name);
2170 $size = $size || scalar(@values);
2172 my(%selected) = $self->previous_or_default($name,$defaults,$override);
2173 my($is_multiple) = $multiple ? qq/ multiple="multiple"/ : '';
2174 my($has_size) = $size ? qq/ size="$size"/: '';
2175 my($other) = @other ? " @other" : '';
2177 $name=$self->escapeHTML($name);
2178 $result = qq/<select name="$name"$has_size$is_multiple$other>\n/;
2180 my($selectit) = $self->_selected($selected{$_});
2182 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2183 $label=$self->escapeHTML($label);
2184 my($value)=$self->escapeHTML($_,1);
2185 $result .= "<option$selectit value=\"$value\">$label</option>\n";
2187 $result .= "</select>";
2188 $self->register_parameter($name);
2196 # $name -> Name of the hidden field
2197 # @default -> (optional) Initial values of field (may be an array)
2199 # $default->[initial values of field]
2201 # A string containing a <INPUT TYPE="hidden" NAME="name" VALUE="value">
2203 'hidden' => <<'END_OF_FUNC',
2205 my($self,@p) = self_or_default(@_);
2207 # this is the one place where we departed from our standard
2208 # calling scheme, so we have to special-case (darn)
2210 my($name,$default,$override,@other) =
2211 rearrange([NAME,[DEFAULT,VALUE,VALUES],[OVERRIDE,FORCE]],@p);
2213 my $do_override = 0;
2214 if ( ref($p[0]) || substr($p[0],0,1) eq '-') {
2215 @value = ref($default) ? @{$default} : $default;
2216 $do_override = $override;
2218 foreach ($default,$override,@other) {
2219 push(@value,$_) if defined($_);
2223 # use previous values if override is not set
2224 my @prev = $self->param($name);
2225 @value = @prev if !$do_override && @prev;
2227 $name=$self->escapeHTML($name);
2229 $_ = defined($_) ? $self->escapeHTML($_,1) : '';
2230 push @result,$XHTML ? qq(<input type="hidden" name="$name" value="$_" />)
2231 : qq(<input type="hidden" name="$name" value="$_">);
2233 return wantarray ? @result : join('',@result);
2238 #### Method: image_button
2240 # $name -> Name of the button
2241 # $src -> URL of the image source
2242 # $align -> Alignment style (TOP, BOTTOM or MIDDLE)
2244 # A string containing a <INPUT TYPE="image" NAME="name" SRC="url" ALIGN="alignment">
2246 'image_button' => <<'END_OF_FUNC',
2248 my($self,@p) = self_or_default(@_);
2250 my($name,$src,$alignment,@other) =
2251 rearrange([NAME,SRC,ALIGN],@p);
2253 my($align) = $alignment ? " align=\U\"$alignment\"" : '';
2254 my($other) = @other ? " @other" : '';
2255 $name=$self->escapeHTML($name);
2256 return $XHTML ? qq(<input type="image" name="$name" src="$src"$align$other />)
2257 : qq/<input type="image" name="$name" src="$src"$align$other>/;
2262 #### Method: self_url
2263 # Returns a URL containing the current script and all its
2264 # param/value pairs arranged as a query. You can use this
2265 # to create a link that, when selected, will reinvoke the
2266 # script with all its state information preserved.
2268 'self_url' => <<'END_OF_FUNC',
2270 my($self,@p) = self_or_default(@_);
2271 return $self->url('-path_info'=>1,'-query'=>1,'-full'=>1,@p);
2276 # This is provided as a synonym to self_url() for people unfortunate
2277 # enough to have incorporated it into their programs already!
2278 'state' => <<'END_OF_FUNC',
2286 # Like self_url, but doesn't return the query string part of
2289 'url' => <<'END_OF_FUNC',
2291 my($self,@p) = self_or_default(@_);
2292 my ($relative,$absolute,$full,$path_info,$query,$base) =
2293 rearrange(['RELATIVE','ABSOLUTE','FULL',['PATH','PATH_INFO'],['QUERY','QUERY_STRING'],'BASE'],@p);
2295 $full++ if $base || !($relative || $absolute);
2297 my $path = $self->path_info;
2298 my $script_name = $self->script_name;
2300 # for compatibility with Apache's MultiViews
2301 if (exists($ENV{REQUEST_URI})) {
2303 $script_name = $ENV{REQUEST_URI};
2304 $script_name =~ s/\?.+$//; # strip query string
2306 if (exists($ENV{PATH_INFO})) {
2307 (my $encoded_path = $ENV{PATH_INFO}) =~ s/([^a-zA-Z0-9_.%;&?\/\\:+=~-])/sprintf("%%%02X",ord($1))/eg;
2308 $script_name =~ s/$encoded_path$//i;
2313 my $protocol = $self->protocol();
2314 $url = "$protocol://";
2315 my $vh = http('host');
2319 $url .= server_name();
2320 my $port = $self->server_port;
2322 unless (lc($protocol) eq 'http' && $port == 80)
2323 || (lc($protocol) eq 'https' && $port == 443);
2325 return $url if $base;
2326 $url .= $script_name;
2327 } elsif ($relative) {
2328 ($url) = $script_name =~ m!([^/]+)$!;
2329 } elsif ($absolute) {
2330 $url = $script_name;
2333 $url .= $path if $path_info and defined $path;
2334 $url .= "?" . $self->query_string if $query and $self->query_string;
2335 $url = '' unless defined $url;
2336 $url =~ s/([^a-zA-Z0-9_.%;&?\/\\:+=~-])/sprintf("%%%02X",ord($1))/eg;
2343 # Set or read a cookie from the specified name.
2344 # Cookie can then be passed to header().
2345 # Usual rules apply to the stickiness of -value.
2347 # -name -> name for this cookie (optional)
2348 # -value -> value of this cookie (scalar, array or hash)
2349 # -path -> paths for which this cookie is valid (optional)
2350 # -domain -> internet domain in which this cookie is valid (optional)
2351 # -secure -> if true, cookie only passed through secure channel (optional)
2352 # -expires -> expiry date in format Wdy, DD-Mon-YYYY HH:MM:SS GMT (optional)
2354 'cookie' => <<'END_OF_FUNC',
2356 my($self,@p) = self_or_default(@_);
2357 my($name,$value,$path,$domain,$secure,$expires) =
2358 rearrange([NAME,[VALUE,VALUES],PATH,DOMAIN,SECURE,EXPIRES],@p);
2360 require CGI::Cookie;
2362 # if no value is supplied, then we retrieve the
2363 # value of the cookie, if any. For efficiency, we cache the parsed
2364 # cookies in our state variables.
2365 unless ( defined($value) ) {
2366 $self->{'.cookies'} = CGI::Cookie->fetch
2367 unless $self->{'.cookies'};
2369 # If no name is supplied, then retrieve the names of all our cookies.
2370 return () unless $self->{'.cookies'};
2371 return keys %{$self->{'.cookies'}} unless $name;
2372 return () unless $self->{'.cookies'}->{$name};
2373 return $self->{'.cookies'}->{$name}->value if defined($name) && $name ne '';
2376 # If we get here, we're creating a new cookie
2377 return undef unless defined($name) && $name ne ''; # this is an error
2380 push(@param,'-name'=>$name);
2381 push(@param,'-value'=>$value);
2382 push(@param,'-domain'=>$domain) if $domain;
2383 push(@param,'-path'=>$path) if $path;
2384 push(@param,'-expires'=>$expires) if $expires;
2385 push(@param,'-secure'=>$secure) if $secure;
2387 return new CGI::Cookie(@param);
2391 'parse_keywordlist' => <<'END_OF_FUNC',
2392 sub parse_keywordlist {
2393 my($self,$tosplit) = @_;
2394 $tosplit = unescape($tosplit); # unescape the keywords
2395 $tosplit=~tr/+/ /; # pluses to spaces
2396 my(@keywords) = split(/\s+/,$tosplit);
2401 'param_fetch' => <<'END_OF_FUNC',
2403 my($self,@p) = self_or_default(@_);
2404 my($name) = rearrange([NAME],@p);
2405 unless (exists($self->{$name})) {
2406 $self->add_parameter($name);
2407 $self->{$name} = [];
2410 return $self->{$name};
2414 ###############################################
2415 # OTHER INFORMATION PROVIDED BY THE ENVIRONMENT
2416 ###############################################
2418 #### Method: path_info
2419 # Return the extra virtual path information provided
2420 # after the URL (if any)
2422 'path_info' => <<'END_OF_FUNC',
2424 my ($self,$info) = self_or_default(@_);
2425 if (defined($info)) {
2426 $info = "/$info" if $info ne '' && substr($info,0,1) ne '/';
2427 $self->{'.path_info'} = $info;
2428 } elsif (! defined($self->{'.path_info'}) ) {
2429 $self->{'.path_info'} = defined($ENV{'PATH_INFO'}) ?
2430 $ENV{'PATH_INFO'} : '';
2432 # hack to fix broken path info in IIS
2433 $self->{'.path_info'} =~ s/^\Q$ENV{'SCRIPT_NAME'}\E// if $IIS;
2436 return $self->{'.path_info'};
2441 #### Method: request_method
2442 # Returns 'POST', 'GET', 'PUT' or 'HEAD'
2444 'request_method' => <<'END_OF_FUNC',
2445 sub request_method {
2446 return $ENV{'REQUEST_METHOD'};
2450 #### Method: content_type
2451 # Returns the content_type string
2453 'content_type' => <<'END_OF_FUNC',
2455 return $ENV{'CONTENT_TYPE'};
2459 #### Method: path_translated
2460 # Return the physical path information provided
2461 # by the URL (if any)
2463 'path_translated' => <<'END_OF_FUNC',
2464 sub path_translated {
2465 return $ENV{'PATH_TRANSLATED'};
2470 #### Method: query_string
2471 # Synthesize a query string from our current
2474 'query_string' => <<'END_OF_FUNC',
2476 my($self) = self_or_default(@_);
2477 my($param,$value,@pairs);
2478 foreach $param ($self->param) {
2479 my($eparam) = escape($param);
2480 foreach $value ($self->param($param)) {
2481 $value = escape($value);
2482 next unless defined $value;
2483 push(@pairs,"$eparam=$value");
2486 foreach (keys %{$self->{'.fieldnames'}}) {
2487 push(@pairs,".cgifields=".escape("$_"));
2489 return join($USE_PARAM_SEMICOLONS ? ';' : '&',@pairs);
2495 # Without parameters, returns an array of the
2496 # MIME types the browser accepts.
2497 # With a single parameter equal to a MIME
2498 # type, will return undef if the browser won't
2499 # accept it, 1 if the browser accepts it but
2500 # doesn't give a preference, or a floating point
2501 # value between 0.0 and 1.0 if the browser
2502 # declares a quantitative score for it.
2503 # This handles MIME type globs correctly.
2505 'Accept' => <<'END_OF_FUNC',
2507 my($self,$search) = self_or_CGI(@_);
2508 my(%prefs,$type,$pref,$pat);
2510 my(@accept) = split(',',$self->http('accept'));
2513 ($pref) = /q=(\d\.\d+|\d+)/;
2514 ($type) = m#(\S+/[^;]+)#;
2516 $prefs{$type}=$pref || 1;
2519 return keys %prefs unless $search;
2521 # if a search type is provided, we may need to
2522 # perform a pattern matching operation.
2523 # The MIME types use a glob mechanism, which
2524 # is easily translated into a perl pattern match
2526 # First return the preference for directly supported
2528 return $prefs{$search} if $prefs{$search};
2530 # Didn't get it, so try pattern matching.
2531 foreach (keys %prefs) {
2532 next unless /\*/; # not a pattern match
2533 ($pat = $_) =~ s/([^\w*])/\\$1/g; # escape meta characters
2534 $pat =~ s/\*/.*/g; # turn it into a pattern
2535 return $prefs{$_} if $search=~/$pat/;
2541 #### Method: user_agent
2542 # If called with no parameters, returns the user agent.
2543 # If called with one parameter, does a pattern match (case
2544 # insensitive) on the user agent.
2546 'user_agent' => <<'END_OF_FUNC',
2548 my($self,$match)=self_or_CGI(@_);
2549 return $self->http('user_agent') unless $match;
2550 return $self->http('user_agent') =~ /$match/i;
2555 #### Method: raw_cookie
2556 # Returns the magic cookies for the session.
2557 # The cookies are not parsed or altered in any way, i.e.
2558 # cookies are returned exactly as given in the HTTP
2559 # headers. If a cookie name is given, only that cookie's
2560 # value is returned, otherwise the entire raw cookie
2563 'raw_cookie' => <<'END_OF_FUNC',
2565 my($self,$key) = self_or_CGI(@_);
2567 require CGI::Cookie;
2569 if (defined($key)) {
2570 $self->{'.raw_cookies'} = CGI::Cookie->raw_fetch
2571 unless $self->{'.raw_cookies'};
2573 return () unless $self->{'.raw_cookies'};
2574 return () unless $self->{'.raw_cookies'}->{$key};
2575 return $self->{'.raw_cookies'}->{$key};
2577 return $self->http('cookie') || $ENV{'COOKIE'} || '';
2581 #### Method: virtual_host
2582 # Return the name of the virtual_host, which
2583 # is not always the same as the server
2585 'virtual_host' => <<'END_OF_FUNC',
2587 my $vh = http('host') || server_name();
2588 $vh =~ s/:\d+$//; # get rid of port number
2593 #### Method: remote_host
2594 # Return the name of the remote host, or its IP
2595 # address if unavailable. If this variable isn't
2596 # defined, it returns "localhost" for debugging
2599 'remote_host' => <<'END_OF_FUNC',
2601 return $ENV{'REMOTE_HOST'} || $ENV{'REMOTE_ADDR'}
2607 #### Method: remote_addr
2608 # Return the IP addr of the remote host.
2610 'remote_addr' => <<'END_OF_FUNC',
2612 return $ENV{'REMOTE_ADDR'} || '127.0.0.1';
2617 #### Method: script_name
2618 # Return the partial URL to this script for
2619 # self-referencing scripts. Also see
2620 # self_url(), which returns a URL with all state information
2623 'script_name' => <<'END_OF_FUNC',
2625 return $ENV{'SCRIPT_NAME'} if defined($ENV{'SCRIPT_NAME'});
2626 # These are for debugging
2627 return "/$0" unless $0=~/^\//;
2633 #### Method: referer
2634 # Return the HTTP_REFERER: useful for generating
2637 'referer' => <<'END_OF_FUNC',
2639 my($self) = self_or_CGI(@_);
2640 return $self->http('referer');
2645 #### Method: server_name
2646 # Return the name of the server
2648 'server_name' => <<'END_OF_FUNC',
2650 return $ENV{'SERVER_NAME'} || 'localhost';
2654 #### Method: server_software
2655 # Return the name of the server software
2657 'server_software' => <<'END_OF_FUNC',
2658 sub server_software {
2659 return $ENV{'SERVER_SOFTWARE'} || 'cmdline';
2663 #### Method: server_port
2664 # Return the tcp/ip port the server is running on
2666 'server_port' => <<'END_OF_FUNC',
2668 return $ENV{'SERVER_PORT'} || 80; # for debugging
2672 #### Method: server_protocol
2673 # Return the protocol (usually HTTP/1.0)
2675 'server_protocol' => <<'END_OF_FUNC',
2676 sub server_protocol {
2677 return $ENV{'SERVER_PROTOCOL'} || 'HTTP/1.0'; # for debugging
2682 # Return the value of an HTTP variable, or
2683 # the list of variables if none provided
2685 'http' => <<'END_OF_FUNC',
2687 my ($self,$parameter) = self_or_CGI(@_);
2688 return $ENV{$parameter} if $parameter=~/^HTTP/;
2689 $parameter =~ tr/-/_/;
2690 return $ENV{"HTTP_\U$parameter\E"} if $parameter;
2692 foreach (keys %ENV) {
2693 push(@p,$_) if /^HTTP/;
2700 # Return the value of HTTPS
2702 'https' => <<'END_OF_FUNC',
2705 my ($self,$parameter) = self_or_CGI(@_);
2706 return $ENV{HTTPS} unless $parameter;
2707 return $ENV{$parameter} if $parameter=~/^HTTPS/;
2708 $parameter =~ tr/-/_/;
2709 return $ENV{"HTTPS_\U$parameter\E"} if $parameter;
2711 foreach (keys %ENV) {
2712 push(@p,$_) if /^HTTPS/;
2718 #### Method: protocol
2719 # Return the protocol (http or https currently)
2721 'protocol' => <<'END_OF_FUNC',
2725 return 'https' if uc($self->https()) eq 'ON';
2726 return 'https' if $self->server_port == 443;
2727 my $prot = $self->server_protocol;
2728 my($protocol,$version) = split('/',$prot);
2729 return "\L$protocol\E";
2733 #### Method: remote_ident
2734 # Return the identity of the remote user
2735 # (but only if his host is running identd)
2737 'remote_ident' => <<'END_OF_FUNC',
2739 return $ENV{'REMOTE_IDENT'};
2744 #### Method: auth_type
2745 # Return the type of use verification/authorization in use, if any.
2747 'auth_type' => <<'END_OF_FUNC',
2749 return $ENV{'AUTH_TYPE'};
2754 #### Method: remote_user
2755 # Return the authorization name used for user
2758 'remote_user' => <<'END_OF_FUNC',
2760 return $ENV{'REMOTE_USER'};
2765 #### Method: user_name
2766 # Try to return the remote user's name by hook or by
2769 'user_name' => <<'END_OF_FUNC',
2771 my ($self) = self_or_CGI(@_);
2772 return $self->http('from') || $ENV{'REMOTE_IDENT'} || $ENV{'REMOTE_USER'};
2776 #### Method: nosticky
2777 # Set or return the NOSTICKY global flag
2779 'nosticky' => <<'END_OF_FUNC',
2781 my ($self,$param) = self_or_CGI(@_);
2782 $CGI::NOSTICKY = $param if defined($param);
2783 return $CGI::NOSTICKY;
2788 # Set or return the NPH global flag
2790 'nph' => <<'END_OF_FUNC',
2792 my ($self,$param) = self_or_CGI(@_);
2793 $CGI::NPH = $param if defined($param);
2798 #### Method: private_tempfiles
2799 # Set or return the private_tempfiles global flag
2801 'private_tempfiles' => <<'END_OF_FUNC',
2802 sub private_tempfiles {
2803 my ($self,$param) = self_or_CGI(@_);
2804 $CGI::PRIVATE_TEMPFILES = $param if defined($param);
2805 return $CGI::PRIVATE_TEMPFILES;
2809 #### Method: default_dtd
2810 # Set or return the default_dtd global
2812 'default_dtd' => <<'END_OF_FUNC',
2814 my ($self,$param,$param2) = self_or_CGI(@_);
2815 if (defined $param2 && defined $param) {
2816 $CGI::DEFAULT_DTD = [ $param, $param2 ];
2817 } elsif (defined $param) {
2818 $CGI::DEFAULT_DTD = $param;
2820 return $CGI::DEFAULT_DTD;
2824 # -------------- really private subroutines -----------------
2825 'previous_or_default' => <<'END_OF_FUNC',
2826 sub previous_or_default {
2827 my($self,$name,$defaults,$override) = @_;
2830 if (!$override && ($self->{'.fieldnames'}->{$name} ||
2831 defined($self->param($name)) ) ) {
2832 grep($selected{$_}++,$self->param($name));
2833 } elsif (defined($defaults) && ref($defaults) &&
2834 (ref($defaults) eq 'ARRAY')) {
2835 grep($selected{$_}++,@{$defaults});
2837 $selected{$defaults}++ if defined($defaults);
2844 'register_parameter' => <<'END_OF_FUNC',
2845 sub register_parameter {
2846 my($self,$param) = @_;
2847 $self->{'.parametersToAdd'}->{$param}++;
2851 'get_fields' => <<'END_OF_FUNC',
2854 return $self->CGI::hidden('-name'=>'.cgifields',
2855 '-values'=>[keys %{$self->{'.parametersToAdd'}}],
2860 'read_from_cmdline' => <<'END_OF_FUNC',
2861 sub read_from_cmdline {
2864 if ($DEBUG && @ARGV) {
2866 } elsif ($DEBUG > 1) {
2867 require "shellwords.pl";
2868 print STDERR "(offline mode: enter name=value pairs on standard input)\n";
2869 chomp(@lines = <STDIN>); # remove newlines
2870 $input = join(" ",@lines);
2871 @words = &shellwords($input);
2878 if ("@words"=~/=/) {
2879 $query_string = join('&',@words);
2881 $query_string = join('+',@words);
2883 return $query_string;
2888 # subroutine: read_multipart
2890 # Read multipart data and store it into our parameters.
2891 # An interesting feature is that if any of the parts is a file, we
2892 # create a temporary file and open up a filehandle on it so that the
2893 # caller can read from it if necessary.
2895 'read_multipart' => <<'END_OF_FUNC',
2896 sub read_multipart {
2897 my($self,$boundary,$length,$filehandle) = @_;
2898 my($buffer) = $self->new_MultipartBuffer($boundary,$length,$filehandle);
2899 return unless $buffer;
2902 while (!$buffer->eof) {
2903 %header = $buffer->readHeader;
2906 $self->cgi_error("400 Bad request (malformed multipart POST)");
2910 my($param)= $header{'Content-Disposition'}=~/ name="?([^\";]*)"?/;
2912 # Bug: Netscape doesn't escape quotation marks in file names!!!
2913 my($filename) = $header{'Content-Disposition'}=~/ filename="?([^\"]*)"?/;
2915 # add this parameter to our list
2916 $self->add_parameter($param);
2918 # If no filename specified, then just read the data and assign it
2919 # to our parameter list.
2920 if ( !defined($filename) || $filename eq '' ) {
2921 my($value) = $buffer->readBody;
2922 push(@{$self->{$param}},$value);
2926 my ($tmpfile,$tmp,$filehandle);
2928 # If we get here, then we are dealing with a potentially large
2929 # uploaded form. Save the data to a temporary file, then open
2930 # the file for reading.
2932 # skip the file if uploads disabled
2933 if ($DISABLE_UPLOADS) {
2934 while (defined($data = $buffer->read)) { }
2938 # choose a relatively unpredictable tmpfile sequence number
2939 my $seqno = unpack("%16C*",join('',localtime,values %ENV));
2940 for (my $cnt=10;$cnt>0;$cnt--) {
2941 next unless $tmpfile = new CGITempFile($seqno);
2942 $tmp = $tmpfile->as_string;
2943 last if defined($filehandle = Fh->new($filename,$tmp,$PRIVATE_TEMPFILES));
2944 $seqno += int rand(100);
2946 die "CGI open of tmpfile: $!\n" unless defined $filehandle;
2947 $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode;
2951 while (defined($data = $buffer->read)) {
2952 print $filehandle $data;
2955 # back up to beginning of file
2956 seek($filehandle,0,0);
2957 $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode;
2959 # Save some information about the uploaded file where we can get
2961 $self->{'.tmpfiles'}->{fileno($filehandle)}= {
2965 push(@{$self->{$param}},$filehandle);
2971 'upload' =><<'END_OF_FUNC',
2973 my($self,$param_name) = self_or_default(@_);
2974 my @param = grep(ref && fileno($_), $self->param($param_name));
2975 return unless @param;
2976 return wantarray ? @param : $param[0];
2980 'tmpFileName' => <<'END_OF_FUNC',
2982 my($self,$filename) = self_or_default(@_);
2983 return $self->{'.tmpfiles'}->{fileno($filename)}->{name} ?
2984 $self->{'.tmpfiles'}->{fileno($filename)}->{name}->as_string
2989 'uploadInfo' => <<'END_OF_FUNC',
2991 my($self,$filename) = self_or_default(@_);
2992 return $self->{'.tmpfiles'}->{fileno($filename)}->{info};
2996 # internal routine, don't use
2997 '_set_values_and_labels' => <<'END_OF_FUNC',
2998 sub _set_values_and_labels {
3001 $$l = $v if ref($v) eq 'HASH' && !ref($$l);
3002 return $self->param($n) if !defined($v);
3003 return $v if !ref($v);
3004 return ref($v) eq 'HASH' ? keys %$v : @$v;
3008 '_compile_all' => <<'END_OF_FUNC',
3011 next if defined(&$_);
3012 $AUTOLOAD = "CGI::$_";
3022 #########################################################
3023 # Globals and stubs for other packages that we use.
3024 #########################################################
3026 ################### Fh -- lightweight filehandle ###############
3035 *Fh::AUTOLOAD = \&CGI::AUTOLOAD;
3037 $AUTOLOADED_ROUTINES = ''; # prevent -w error
3038 $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
3040 'asString' => <<'END_OF_FUNC',
3043 # get rid of package name
3044 (my $i = $$self) =~ s/^\*(\w+::fh\d{5})+//;
3045 $i =~ s/%(..)/ chr(hex($1)) /eg;
3048 # This was an extremely clever patch that allowed "use strict refs".
3049 # Unfortunately it relied on another bug that caused leaky file descriptors.
3050 # The underlying bug has been fixed, so this no longer works. However
3051 # "strict refs" still works for some reason.
3053 # return ${*{$self}{SCALAR}};
3058 'compare' => <<'END_OF_FUNC',
3062 return "$self" cmp $value;
3066 'new' => <<'END_OF_FUNC',
3068 my($pack,$name,$file,$delete) = @_;
3069 require Fcntl unless defined &Fcntl::O_RDWR;
3070 (my $safename = $name) =~ s/([':%])/ sprintf '%%%02X', ord $1 /eg;
3071 my $fv = ++$FH . $safename;
3072 my $ref = \*{"Fh::$fv"};
3073 sysopen($ref,$file,Fcntl::O_RDWR()|Fcntl::O_CREAT()|Fcntl::O_EXCL(),0600) || return;
3074 unlink($file) if $delete;
3075 CORE::delete $Fh::{$fv};
3076 return bless $ref,$pack;
3080 'DESTROY' => <<'END_OF_FUNC',
3090 ######################## MultipartBuffer ####################
3091 package MultipartBuffer;
3093 # how many bytes to read at a time. We use
3094 # a 4K buffer by default.
3095 $INITIAL_FILLUNIT = 1024 * 4;
3096 $TIMEOUT = 240*60; # 4 hour timeout for big files
3097 $SPIN_LOOP_MAX = 2000; # bug fix for some Netscape servers
3100 #reuse the autoload function
3101 *MultipartBuffer::AUTOLOAD = \&CGI::AUTOLOAD;
3103 # avoid autoloader warnings
3106 ###############################################################################
3107 ################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
3108 ###############################################################################
3109 $AUTOLOADED_ROUTINES = ''; # prevent -w error
3110 $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
3113 'new' => <<'END_OF_FUNC',
3115 my($package,$interface,$boundary,$length,$filehandle) = @_;
3116 $FILLUNIT = $INITIAL_FILLUNIT;
3119 my($package) = caller;
3120 # force into caller's package if necessary
3121 $IN = $filehandle=~/[':]/ ? $filehandle : "$package\:\:$filehandle";
3123 $IN = "main::STDIN" unless $IN;
3125 $CGI::DefaultClass->binmode($IN) if $CGI::needs_binmode;
3127 # If the user types garbage into the file upload field,
3128 # then Netscape passes NOTHING to the server (not good).
3129 # We may hang on this read in that case. So we implement
3130 # a read timeout. If nothing is ready to read
3131 # by then, we return.
3133 # Netscape seems to be a little bit unreliable
3134 # about providing boundary strings.
3135 my $boundary_read = 0;
3138 # Under the MIME spec, the boundary consists of the
3139 # characters "--" PLUS the Boundary string
3141 # BUG: IE 3.01 on the Macintosh uses just the boundary -- not
3142 # the two extra hyphens. We do a special case here on the user-agent!!!!
3143 $boundary = "--$boundary" unless CGI::user_agent('MSIE\s+3\.0[12];\s*Mac|DreamPassport');
3145 } else { # otherwise we find it ourselves
3147 ($old,$/) = ($/,$CRLF); # read a CRLF-delimited line
3148 $boundary = <$IN>; # BUG: This won't work correctly under mod_perl
3149 $length -= length($boundary);
3150 chomp($boundary); # remove the CRLF
3151 $/ = $old; # restore old line separator
3155 my $self = {LENGTH=>$length,
3156 BOUNDARY=>$boundary,
3158 INTERFACE=>$interface,
3162 $FILLUNIT = length($boundary)
3163 if length($boundary) > $FILLUNIT;
3165 my $retval = bless $self,ref $package || $package;
3167 # Read the preamble and the topmost (boundary) line plus the CRLF.
3168 unless ($boundary_read) {
3169 while ($self->read(0)) { }
3171 die "Malformed multipart POST\n" if $self->eof;
3177 'readHeader' => <<'END_OF_FUNC',
3184 local($CRLF) = "\015\012" if $CGI::OS eq 'VMS';
3187 $self->fillBuffer($FILLUNIT);
3188 $ok++ if ($end = index($self->{BUFFER},"${CRLF}${CRLF}")) >= 0;
3189 $ok++ if $self->{BUFFER} eq '';
3190 $bad++ if !$ok && $self->{LENGTH} <= 0;
3191 # this was a bad idea
3192 # $FILLUNIT *= 2 if length($self->{BUFFER}) >= $FILLUNIT;
3193 } until $ok || $bad;
3196 my($header) = substr($self->{BUFFER},0,$end+2);
3197 substr($self->{BUFFER},0,$end+4) = '';
3201 # See RFC 2045 Appendix A and RFC 822 sections 3.4.8
3202 # (Folding Long Header Fields), 3.4.3 (Comments)
3203 # and 3.4.5 (Quoted-Strings).
3205 my $token = '[-\w!\#$%&\'*+.^_\`|{}~]';
3206 $header=~s/$CRLF\s+/ /og; # merge continuation lines
3207 while ($header=~/($token+):\s+([^$CRLF]*)/mgox) {
3208 my ($field_name,$field_value) = ($1,$2); # avoid taintedness
3209 $field_name =~ s/\b(\w)/uc($1)/eg; #canonicalize
3210 $return{$field_name}=$field_value;
3216 # This reads and returns the body as a single scalar value.
3217 'readBody' => <<'END_OF_FUNC',
3222 while (defined($data = $self->read)) {
3223 $returnval .= $data;
3229 # This will read $bytes or until the boundary is hit, whichever happens
3230 # first. After the boundary is hit, we return undef. The next read will
3231 # skip over the boundary and begin reading again;
3232 'read' => <<'END_OF_FUNC',
3234 my($self,$bytes) = @_;
3236 # default number of bytes to read
3237 $bytes = $bytes || $FILLUNIT;
3239 # Fill up our internal buffer in such a way that the boundary
3240 # is never split between reads.
3241 $self->fillBuffer($bytes);
3243 # Find the boundary in the buffer (it may not be there).
3244 my $start = index($self->{BUFFER},$self->{BOUNDARY});
3245 # protect against malformed multipart POST operations
3246 die "Malformed multipart POST\n" unless ($start >= 0) || ($self->{LENGTH} > 0);
3248 # If the boundary begins the data, then skip past it
3252 # clear us out completely if we've hit the last boundary.
3253 if (index($self->{BUFFER},"$self->{BOUNDARY}--")==0) {
3259 # just remove the boundary.
3260 substr($self->{BUFFER},0,length($self->{BOUNDARY}))='';
3261 $self->{BUFFER} =~ s/^\012\015?//;
3266 if ($start > 0) { # read up to the boundary
3267 $bytesToReturn = $start > $bytes ? $bytes : $start;
3268 } else { # read the requested number of bytes
3269 # leave enough bytes in the buffer to allow us to read
3270 # the boundary. Thanks to Kevin Hendrick for finding
3272 $bytesToReturn = $bytes - (length($self->{BOUNDARY})+1);
3275 my $returnval=substr($self->{BUFFER},0,$bytesToReturn);
3276 substr($self->{BUFFER},0,$bytesToReturn)='';
3278 # If we hit the boundary, remove the CRLF from the end.
3279 return (($start > 0) && ($start <= $bytes))
3280 ? substr($returnval,0,-2) : $returnval;
3285 # This fills up our internal buffer in such a way that the
3286 # boundary is never split between reads
3287 'fillBuffer' => <<'END_OF_FUNC',
3289 my($self,$bytes) = @_;
3290 return unless $self->{LENGTH};
3292 my($boundaryLength) = length($self->{BOUNDARY});
3293 my($bufferLength) = length($self->{BUFFER});
3294 my($bytesToRead) = $bytes - $bufferLength + $boundaryLength + 2;
3295 $bytesToRead = $self->{LENGTH} if $self->{LENGTH} < $bytesToRead;
3297 # Try to read some data. We may hang here if the browser is screwed up.
3298 my $bytesRead = $self->{INTERFACE}->read_from_client($self->{IN},
3302 $self->{BUFFER} = '' unless defined $self->{BUFFER};
3304 # An apparent bug in the Apache server causes the read()
3305 # to return zero bytes repeatedly without blocking if the
3306 # remote user aborts during a file transfer. I don't know how
3307 # they manage this, but the workaround is to abort if we get
3308 # more than SPIN_LOOP_MAX consecutive zero reads.
3309 if ($bytesRead == 0) {
3310 die "CGI.pm: Server closed socket during multipart read (client aborted?).\n"
3311 if ($self->{ZERO_LOOP_COUNTER}++ >= $SPIN_LOOP_MAX);
3313 $self->{ZERO_LOOP_COUNTER}=0;
3316 $self->{LENGTH} -= $bytesRead;
3321 # Return true when we've finished reading
3322 'eof' => <<'END_OF_FUNC'
3325 return 1 if (length($self->{BUFFER}) == 0)
3326 && ($self->{LENGTH} <= 0);
3334 ####################################################################################
3335 ################################## TEMPORARY FILES #################################
3336 ####################################################################################
3337 package CGITempFile;
3340 $MAC = $CGI::OS eq 'MACINTOSH';
3341 my ($vol) = $MAC ? MacPerl::Volumes() =~ /:(.*)/ : "";
3342 unless ($TMPDIRECTORY) {
3343 @TEMP=("${SL}usr${SL}tmp","${SL}var${SL}tmp",
3344 "C:${SL}temp","${SL}tmp","${SL}temp",
3345 "${vol}${SL}Temporary Items",
3346 "${SL}WWW_ROOT", "${SL}SYS\$SCRATCH",
3347 "C:${SL}system${SL}temp");
3348 unshift(@TEMP,$ENV{'TMPDIR'}) if exists $ENV{'TMPDIR'};
3350 # this feature was supposed to provide per-user tmpfiles, but
3351 # it is problematic.
3352 # unshift(@TEMP,(getpwuid($<))[7].'/tmp') if $CGI::OS eq 'UNIX';
3353 # Rob: getpwuid() is unfortunately UNIX specific. On brain dead OS'es this
3354 # : can generate a 'getpwuid() not implemented' exception, even though
3355 # : it's never called. Found under DOS/Win with the DJGPP perl port.
3356 # : Refer to getpwuid() only at run-time if we're fortunate and have UNIX.
3357 # unshift(@TEMP,(eval {(getpwuid($>))[7]}).'/tmp') if $CGI::OS eq 'UNIX' and $> != 0;
3360 do {$TMPDIRECTORY = $_; last} if -d $_ && -w _;
3364 $TMPDIRECTORY = $MAC ? "" : "." unless $TMPDIRECTORY;
3367 # cute feature, but overload implementation broke it
3368 # %OVERLOAD = ('""'=>'as_string');
3369 *CGITempFile::AUTOLOAD = \&CGI::AUTOLOAD;
3373 unlink $$self; # get rid of the file
3376 ###############################################################################
3377 ################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
3378 ###############################################################################
3379 $AUTOLOADED_ROUTINES = ''; # prevent -w error
3380 $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
3383 'new' => <<'END_OF_FUNC',
3385 my($package,$sequence) = @_;
3387 for (my $i = 0; $i < $MAXTRIES; $i++) {
3388 last if ! -f ($filename = sprintf("${TMPDIRECTORY}${SL}CGItemp%d",$sequence++));
3390 # untaint the darn thing
3391 return unless $filename =~ m!^([a-zA-Z0-9_ '":/.\$\\-]+)$!;
3393 return bless \$filename;
3397 'as_string' => <<'END_OF_FUNC'
3409 # We get a whole bunch of warnings about "possibly uninitialized variables"
3410 # when running with the -w switch. Touch them all once to get rid of the
3411 # warnings. This is ugly and I hate it.
3416 $MultipartBuffer::SPIN_LOOP_MAX;
3417 $MultipartBuffer::CRLF;
3418 $MultipartBuffer::TIMEOUT;
3419 $MultipartBuffer::INITIAL_FILLUNIT;
3430 CGI - Simple Common Gateway Interface Class
3434 # CGI script that creates a fill-out form
3435 # and echoes back its values.
3437 use CGI qw/:standard/;
3439 start_html('A Simple Example'),
3440 h1('A Simple Example'),
3442 "What's your name? ",textfield('name'),p,
3443 "What's the combination?", p,
3444 checkbox_group(-name=>'words',
3445 -values=>['eenie','meenie','minie','moe'],
3446 -defaults=>['eenie','minie']), p,
3447 "What's your favorite color? ",
3448 popup_menu(-name=>'color',
3449 -values=>['red','green','blue','chartreuse']),p,
3455 print "Your name is",em(param('name')),p,
3456 "The keywords are: ",em(join(", ",param('words'))),p,
3457 "Your favorite color is ",em(param('color')),
3463 This perl library uses perl5 objects to make it easy to create Web
3464 fill-out forms and parse their contents. This package defines CGI
3465 objects, entities that contain the values of the current query string
3466 and other state variables. Using a CGI object's methods, you can
3467 examine keywords and parameters passed to your script, and create
3468 forms whose initial values are taken from the current query (thereby
3469 preserving state information). The module provides shortcut functions
3470 that produce boilerplate HTML, reducing typing and coding errors. It
3471 also provides functionality for some of the more advanced features of
3472 CGI scripting, including support for file uploads, cookies, cascading
3473 style sheets, server push, and frames.
3475 CGI.pm also provides a simple function-oriented programming style for
3476 those who don't need its object-oriented features.
3478 The current version of CGI.pm is available at
3480 http://www.genome.wi.mit.edu/ftp/pub/software/WWW/cgi_docs.html
3481 ftp://ftp-genome.wi.mit.edu/pub/software/WWW/
3485 =head2 PROGRAMMING STYLE
3487 There are two styles of programming with CGI.pm, an object-oriented
3488 style and a function-oriented style. In the object-oriented style you
3489 create one or more CGI objects and then use object methods to create
3490 the various elements of the page. Each CGI object starts out with the
3491 list of named parameters that were passed to your CGI script by the
3492 server. You can modify the objects, save them to a file or database
3493 and recreate them. Because each object corresponds to the "state" of
3494 the CGI script, and because each object's parameter list is
3495 independent of the others, this allows you to save the state of the
3496 script and restore it later.
3498 For example, using the object oriented style, here is how you create
3499 a simple "Hello World" HTML page:
3501 #!/usr/local/bin/perl -w
3502 use CGI; # load CGI routines
3503 $q = new CGI; # create new CGI object
3504 print $q->header, # create the HTTP header
3505 $q->start_html('hello world'), # start the HTML
3506 $q->h1('hello world'), # level 1 header
3507 $q->end_html; # end the HTML
3509 In the function-oriented style, there is one default CGI object that
3510 you rarely deal with directly. Instead you just call functions to
3511 retrieve CGI parameters, create HTML tags, manage cookies, and so
3512 on. This provides you with a cleaner programming interface, but
3513 limits you to using one CGI object at a time. The following example
3514 prints the same page, but uses the function-oriented interface.
3515 The main differences are that we now need to import a set of functions
3516 into our name space (usually the "standard" functions), and we don't
3517 need to create the CGI object.
3519 #!/usr/local/bin/perl
3520 use CGI qw/:standard/; # load standard CGI routines
3521 print header, # create the HTTP header
3522 start_html('hello world'), # start the HTML
3523 h1('hello world'), # level 1 header
3524 end_html; # end the HTML
3526 The examples in this document mainly use the object-oriented style.
3527 See HOW TO IMPORT FUNCTIONS for important information on
3528 function-oriented programming in CGI.pm
3530 =head2 CALLING CGI.PM ROUTINES
3532 Most CGI.pm routines accept several arguments, sometimes as many as 20
3533 optional ones! To simplify this interface, all routines use a named
3534 argument calling style that looks like this:
3536 print $q->header(-type=>'image/gif',-expires=>'+3d');
3538 Each argument name is preceded by a dash. Neither case nor order
3539 matters in the argument list. -type, -Type, and -TYPE are all
3540 acceptable. In fact, only the first argument needs to begin with a
3541 dash. If a dash is present in the first argument, CGI.pm assumes
3542 dashes for the subsequent ones.
3544 Several routines are commonly called with just one argument. In the
3545 case of these routines you can provide the single argument without an
3546 argument name. header() happens to be one of these routines. In this
3547 case, the single argument is the document type.
3549 print $q->header('text/html');
3551 Other such routines are documented below.
3553 Sometimes named arguments expect a scalar, sometimes a reference to an
3554 array, and sometimes a reference to a hash. Often, you can pass any
3555 type of argument and the routine will do whatever is most appropriate.
3556 For example, the param() routine is used to set a CGI parameter to a
3557 single or a multi-valued value. The two cases are shown below:
3559 $q->param(-name=>'veggie',-value=>'tomato');
3560 $q->param(-name=>'veggie',-value=>['tomato','tomahto','potato','potahto']);
3562 A large number of routines in CGI.pm actually aren't specifically
3563 defined in the module, but are generated automatically as needed.
3564 These are the "HTML shortcuts," routines that generate HTML tags for
3565 use in dynamically-generated pages. HTML tags have both attributes
3566 (the attribute="value" pairs within the tag itself) and contents (the
3567 part between the opening and closing pairs.) To distinguish between
3568 attributes and contents, CGI.pm uses the convention of passing HTML
3569 attributes as a hash reference as the first argument, and the
3570 contents, if any, as any subsequent arguments. It works out like
3576 h1('some','contents'); <h1>some contents</h1>
3577 h1({-align=>left}); <h1 ALIGN="LEFT">
3578 h1({-align=>left},'contents'); <h1 ALIGN="LEFT">contents</h1>
3580 HTML tags are described in more detail later.
3582 Many newcomers to CGI.pm are puzzled by the difference between the
3583 calling conventions for the HTML shortcuts, which require curly braces
3584 around the HTML tag attributes, and the calling conventions for other
3585 routines, which manage to generate attributes without the curly
3586 brackets. Don't be confused. As a convenience the curly braces are
3587 optional in all but the HTML shortcuts. If you like, you can use
3588 curly braces when calling any routine that takes named arguments. For
3591 print $q->header( {-type=>'image/gif',-expires=>'+3d'} );
3593 If you use the B<-w> switch, you will be warned that some CGI.pm argument
3594 names conflict with built-in Perl functions. The most frequent of
3595 these is the -values argument, used to create multi-valued menus,
3596 radio button clusters and the like. To get around this warning, you
3597 have several choices:
3603 Use another name for the argument, if one is available.
3604 For example, -value is an alias for -values.
3608 Change the capitalization, e.g. -Values
3612 Put quotes around the argument name, e.g. '-values'
3616 Many routines will do something useful with a named argument that it
3617 doesn't recognize. For example, you can produce non-standard HTTP
3618 header fields by providing them as named arguments:
3620 print $q->header(-type => 'text/html',
3621 -cost => 'Three smackers',
3622 -annoyance_level => 'high',
3623 -complaints_to => 'bit bucket');
3625 This will produce the following nonstandard HTTP header:
3628 Cost: Three smackers
3629 Annoyance-level: high
3630 Complaints-to: bit bucket
3631 Content-type: text/html
3633 Notice the way that underscores are translated automatically into
3634 hyphens. HTML-generating routines perform a different type of
3637 This feature allows you to keep up with the rapidly changing HTTP and
3640 =head2 CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
3644 This will parse the input (from both POST and GET methods) and store
3645 it into a perl5 object called $query.
3647 =head2 CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
3649 $query = new CGI(INPUTFILE);
3651 If you provide a file handle to the new() method, it will read
3652 parameters from the file (or STDIN, or whatever). The file can be in
3653 any of the forms describing below under debugging (i.e. a series of
3654 newline delimited TAG=VALUE pairs will work). Conveniently, this type
3655 of file is created by the save() method (see below). Multiple records
3656 can be saved and restored.
3658 Perl purists will be pleased to know that this syntax accepts
3659 references to file handles, or even references to filehandle globs,
3660 which is the "official" way to pass a filehandle:
3662 $query = new CGI(\*STDIN);
3664 You can also initialize the CGI object with a FileHandle or IO::File
3667 If you are using the function-oriented interface and want to
3668 initialize CGI state from a file handle, the way to do this is with
3669 B<restore_parameters()>. This will (re)initialize the
3670 default CGI object from the indicated file handle.
3672 open (IN,"test.in") || die;
3673 restore_parameters(IN);
3676 You can also initialize the query object from an associative array
3679 $query = new CGI( {'dinosaur'=>'barney',
3680 'song'=>'I love you',
3681 'friends'=>[qw/Jessica George Nancy/]}
3684 or from a properly formatted, URL-escaped query string:
3686 $query = new CGI('dinosaur=barney&color=purple');
3688 or from a previously existing CGI object (currently this clones the
3689 parameter list, but none of the other object-specific fields, such as
3692 $old_query = new CGI;
3693 $new_query = new CGI($old_query);
3695 To create an empty query, initialize it from an empty string or hash:
3697 $empty_query = new CGI("");
3701 $empty_query = new CGI({});
3703 =head2 FETCHING A LIST OF KEYWORDS FROM THE QUERY:
3705 @keywords = $query->keywords
3707 If the script was invoked as the result of an <ISINDEX> search, the
3708 parsed keywords can be obtained as an array using the keywords() method.
3710 =head2 FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
3712 @names = $query->param
3714 If the script was invoked with a parameter list
3715 (e.g. "name1=value1&name2=value2&name3=value3"), the param() method
3716 will return the parameter names as a list. If the script was invoked
3717 as an <ISINDEX> script and contains a string without ampersands
3718 (e.g. "value1+value2+value3") , there will be a single parameter named
3719 "keywords" containing the "+"-delimited keywords.
3721 NOTE: As of version 1.5, the array of parameter names returned will
3722 be in the same order as they were submitted by the browser.
3723 Usually this order is the same as the order in which the
3724 parameters are defined in the form (however, this isn't part
3725 of the spec, and so isn't guaranteed).
3727 =head2 FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
3729 @values = $query->param('foo');
3733 $value = $query->param('foo');
3735 Pass the param() method a single argument to fetch the value of the
3736 named parameter. If the parameter is multivalued (e.g. from multiple
3737 selections in a scrolling list), you can ask to receive an array. Otherwise
3738 the method will return a single value.
3740 If a value is not given in the query string, as in the queries
3741 "name1=&name2=" or "name1&name2", it will be returned as an empty
3742 string. This feature is new in 2.63.
3744 =head2 SETTING THE VALUE(S) OF A NAMED PARAMETER:
3746 $query->param('foo','an','array','of','values');
3748 This sets the value for the named parameter 'foo' to an array of
3749 values. This is one way to change the value of a field AFTER
3750 the script has been invoked once before. (Another way is with
3751 the -override parameter accepted by all methods that generate
3754 param() also recognizes a named parameter style of calling described
3755 in more detail later:
3757 $query->param(-name=>'foo',-values=>['an','array','of','values']);
3761 $query->param(-name=>'foo',-value=>'the value');
3763 =head2 APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
3765 $query->append(-name=>'foo',-values=>['yet','more','values']);
3767 This adds a value or list of values to the named parameter. The
3768 values are appended to the end of the parameter if it already exists.
3769 Otherwise the parameter is created. Note that this method only
3770 recognizes the named argument calling syntax.
3772 =head2 IMPORTING ALL PARAMETERS INTO A NAMESPACE:
3774 $query->import_names('R');
3776 This creates a series of variables in the 'R' namespace. For example,
3777 $R::foo, @R:foo. For keyword lists, a variable @R::keywords will appear.
3778 If no namespace is given, this method will assume 'Q'.
3779 WARNING: don't import anything into 'main'; this is a major security
3782 In older versions, this method was called B<import()>. As of version 2.20,
3783 this name has been removed completely to avoid conflict with the built-in
3784 Perl module B<import> operator.
3786 =head2 DELETING A PARAMETER COMPLETELY:
3788 $query->delete('foo');
3790 This completely clears a parameter. It sometimes useful for
3791 resetting parameters that you don't want passed down between
3794 If you are using the function call interface, use "Delete()" instead
3795 to avoid conflicts with Perl's built-in delete operator.
3797 =head2 DELETING ALL PARAMETERS:
3799 $query->delete_all();
3801 This clears the CGI object completely. It might be useful to ensure
3802 that all the defaults are taken when you create a fill-out form.
3804 Use Delete_all() instead if you are using the function call interface.
3806 =head2 DIRECT ACCESS TO THE PARAMETER LIST:
3808 $q->param_fetch('address')->[1] = '1313 Mockingbird Lane';
3809 unshift @{$q->param_fetch(-name=>'address')},'George Munster';
3811 If you need access to the parameter list in a way that isn't covered
3812 by the methods above, you can obtain a direct reference to it by
3813 calling the B<param_fetch()> method with the name of the . This
3814 will return an array reference to the named parameters, which you then
3815 can manipulate in any way you like.
3817 You can also use a named argument style using the B<-name> argument.
3819 =head2 FETCHING THE PARAMETER LIST AS A HASH:
3822 print $params->{'address'};
3823 @foo = split("\0",$params->{'foo'});
3829 Many people want to fetch the entire parameter list as a hash in which
3830 the keys are the names of the CGI parameters, and the values are the
3831 parameters' values. The Vars() method does this. Called in a scalar
3832 context, it returns the parameter list as a tied hash reference.
3833 Changing a key changes the value of the parameter in the underlying
3834 CGI parameter list. Called in a list context, it returns the
3835 parameter list as an ordinary hash. This allows you to read the
3836 contents of the parameter list, but not to change it.
3838 When using this, the thing you must watch out for are multivalued CGI
3839 parameters. Because a hash cannot distinguish between scalar and
3840 list context, multivalued parameters will be returned as a packed
3841 string, separated by the "\0" (null) character. You must split this
3842 packed string in order to get at the individual values. This is the
3843 convention introduced long ago by Steve Brenner in his cgi-lib.pl
3844 module for Perl version 4.
3846 If you wish to use Vars() as a function, import the I<:cgi-lib> set of
3847 function calls (also see the section on CGI-LIB compatibility).
3849 =head2 SAVING THE STATE OF THE SCRIPT TO A FILE:
3851 $query->save(FILEHANDLE)
3853 This will write the current state of the form to the provided
3854 filehandle. You can read it back in by providing a filehandle
3855 to the new() method. Note that the filehandle can be a file, a pipe,
3858 The format of the saved file is:
3866 Both name and value are URL escaped. Multi-valued CGI parameters are
3867 represented as repeated names. A session record is delimited by a
3868 single = symbol. You can write out multiple records and read them
3869 back in with several calls to B<new>. You can do this across several
3870 sessions by opening the file in append mode, allowing you to create
3871 primitive guest books, or to keep a history of users' queries. Here's
3872 a short example of creating multiple session records:
3876 open (OUT,">>test.out") || die;
3878 foreach (0..$records) {
3880 $q->param(-name=>'counter',-value=>$_);
3885 # reopen for reading
3886 open (IN,"test.out") || die;
3888 my $q = new CGI(IN);
3889 print $q->param('counter'),"\n";
3892 The file format used for save/restore is identical to that used by the
3893 Whitehead Genome Center's data exchange format "Boulderio", and can be
3894 manipulated and even databased using Boulderio utilities. See
3896 http://stein.cshl.org/boulder/
3898 for further details.
3900 If you wish to use this method from the function-oriented (non-OO)
3901 interface, the exported name for this method is B<save_parameters()>.
3903 =head2 RETRIEVING CGI ERRORS
3905 Errors can occur while processing user input, particularly when
3906 processing uploaded files. When these errors occur, CGI will stop
3907 processing and return an empty parameter list. You can test for
3908 the existence and nature of errors using the I<cgi_error()> function.
3909 The error messages are formatted as HTTP status codes. You can either
3910 incorporate the error text into an HTML page, or use it as the value
3913 my $error = $q->cgi_error;
3915 print $q->header(-status=>$error),
3916 $q->start_html('Problems'),
3917 $q->h2('Request not processed'),
3922 When using the function-oriented interface (see the next section),
3923 errors may only occur the first time you call I<param()>. Be ready
3926 =head2 USING THE FUNCTION-ORIENTED INTERFACE
3928 To use the function-oriented interface, you must specify which CGI.pm
3929 routines or sets of routines to import into your script's namespace.
3930 There is a small overhead associated with this importation, but it
3933 use CGI <list of methods>;
3935 The listed methods will be imported into the current package; you can
3936 call them directly without creating a CGI object first. This example
3937 shows how to import the B<param()> and B<header()>
3938 methods, and then use them directly:
3940 use CGI 'param','header';
3941 print header('text/plain');
3942 $zipcode = param('zipcode');
3944 More frequently, you'll import common sets of functions by referring
3945 to the groups by name. All function sets are preceded with a ":"
3946 character as in ":html3" (for tags defined in the HTML 3 standard).
3948 Here is a list of the function sets you can import:
3954 Import all CGI-handling methods, such as B<param()>, B<path_info()>
3959 Import all fill-out form generating methods, such as B<textfield()>.
3963 Import all methods that generate HTML 2.0 standard elements.
3967 Import all methods that generate HTML 3.0 elements (such as
3968 <table>, <super> and <sub>).
3972 Import all methods that generate HTML 4 elements (such as
3973 <abbrev>, <acronym> and <thead>).
3977 Import all methods that generate Netscape-specific HTML extensions.
3981 Import all HTML-generating shortcuts (i.e. 'html2' + 'html3' +
3986 Import "standard" features, 'html2', 'html3', 'html4', 'form' and 'cgi'.
3990 Import all the available methods. For the full list, see the CGI.pm
3991 code, where the variable %EXPORT_TAGS is defined.
3995 If you import a function name that is not part of CGI.pm, the module
3996 will treat it as a new HTML tag and generate the appropriate
3997 subroutine. You can then use it like any other HTML tag. This is to
3998 provide for the rapidly-evolving HTML "standard." For example, say
3999 Microsoft comes out with a new tag called <gradient> (which causes the
4000 user's desktop to be flooded with a rotating gradient fill until his
4001 machine reboots). You don't need to wait for a new version of CGI.pm
4002 to start using it immediately:
4004 use CGI qw/:standard :html3 gradient/;
4005 print gradient({-start=>'red',-end=>'blue'});
4007 Note that in the interests of execution speed CGI.pm does B<not> use
4008 the standard L<Exporter> syntax for specifying load symbols. This may
4009 change in the future.
4011 If you import any of the state-maintaining CGI or form-generating
4012 methods, a default CGI object will be created and initialized
4013 automatically the first time you use any of the methods that require
4014 one to be present. This includes B<param()>, B<textfield()>,
4015 B<submit()> and the like. (If you need direct access to the CGI
4016 object, you can find it in the global variable B<$CGI::Q>). By
4017 importing CGI.pm methods, you can create visually elegant scripts:
4019 use CGI qw/:standard/;
4022 start_html('Simple Script'),
4023 h1('Simple Script'),
4025 "What's your name? ",textfield('name'),p,
4026 "What's the combination?",
4027 checkbox_group(-name=>'words',
4028 -values=>['eenie','meenie','minie','moe'],
4029 -defaults=>['eenie','moe']),p,
4030 "What's your favorite color?",
4031 popup_menu(-name=>'color',
4032 -values=>['red','green','blue','chartreuse']),p,
4039 "Your name is ",em(param('name')),p,
4040 "The keywords are: ",em(join(", ",param('words'))),p,
4041 "Your favorite color is ",em(param('color')),".\n";
4047 In addition to the function sets, there are a number of pragmas that
4048 you can import. Pragmas, which are always preceded by a hyphen,
4049 change the way that CGI.pm functions in various ways. Pragmas,
4050 function sets, and individual functions can all be imported in the
4051 same use() line. For example, the following use statement imports the
4052 standard set of functions and enables debugging mode (pragma
4055 use CGI qw/:standard -debug/;
4057 The current list of pragmas is as follows:
4063 When you I<use CGI -any>, then any method that the query object
4064 doesn't recognize will be interpreted as a new HTML tag. This allows
4065 you to support the next I<ad hoc> Netscape or Microsoft HTML
4066 extension. This lets you go wild with new and unsupported tags:
4070 print $q->gradient({speed=>'fast',start=>'red',end=>'blue'});
4072 Since using <cite>any</cite> causes any mistyped method name
4073 to be interpreted as an HTML tag, use it with care or not at
4078 This causes the indicated autoloaded methods to be compiled up front,
4079 rather than deferred to later. This is useful for scripts that run
4080 for an extended period of time under FastCGI or mod_perl, and for
4081 those destined to be crunched by Malcom Beattie's Perl compiler. Use
4082 it in conjunction with the methods or method families you plan to use.
4084 use CGI qw(-compile :standard :html3);
4088 use CGI qw(-compile :all);
4090 Note that using the -compile pragma in this way will always have
4091 the effect of importing the compiled functions into the current
4092 namespace. If you want to compile without importing use the
4093 compile() method instead (see below).
4097 This makes CGI.pm not generating the hidden fields .submit
4098 and .cgifields. It is very useful if you don't want to
4099 have the hidden fields appear in the querystring in a GET method.
4100 For example, a search script generated this way will have
4101 a very nice url with search parameters for bookmarking.
4103 =item -no_undef_params
4105 This keeps CGI.pm from including undef params in the parameter list.
4109 By default, CGI.pm versions 2.69 and higher emit XHTML
4110 (http://www.w3.org/TR/xhtml1/). The -no_xhtml pragma disables this
4111 feature. Thanks to Michalis Kabrianis <kabrianis@hellug.gr> for this
4116 This makes CGI.pm produce a header appropriate for an NPH (no
4117 parsed header) script. You may need to do other things as well
4118 to tell the server that the script is NPH. See the discussion
4119 of NPH scripts below.
4121 =item -newstyle_urls
4123 Separate the name=value pairs in CGI parameter query strings with
4124 semicolons rather than ampersands. For example:
4126 ?name=fred;age=24;favorite_color=3
4128 Semicolon-delimited query strings are always accepted, but will not be
4129 emitted by self_url() and query_string() unless the -newstyle_urls
4130 pragma is specified.
4132 This became the default in version 2.64.
4134 =item -oldstyle_urls
4136 Separate the name=value pairs in CGI parameter query strings with
4137 ampersands rather than semicolons. This is no longer the default.
4141 This overrides the autoloader so that any function in your program
4142 that is not recognized is referred to CGI.pm for possible evaluation.
4143 This allows you to use all the CGI.pm functions without adding them to
4144 your symbol table, which is of concern for mod_perl users who are
4145 worried about memory consumption. I<Warning:> when
4146 I<-autoload> is in effect, you cannot use "poetry mode"
4147 (functions without the parenthesis). Use I<hr()> rather
4148 than I<hr>, or add something like I<use subs qw/hr p header/>
4149 to the top of your script.
4153 This turns off the command-line processing features. If you want to
4154 run a CGI.pm script from the command line to produce HTML, and you
4155 don't want it to read CGI parameters from the command line or STDIN,
4156 then use this pragma:
4158 use CGI qw(-no_debug :standard);
4162 This turns on full debugging. In addition to reading CGI arguments
4163 from the command-line processing, CGI.pm will pause and try to read
4164 arguments from STDIN, producing the message "(offline mode: enter
4165 name=value pairs on standard input)" features.
4167 See the section on debugging for more details.
4169 =item -private_tempfiles
4171 CGI.pm can process uploaded file. Ordinarily it spools the uploaded
4172 file to a temporary directory, then deletes the file when done.
4173 However, this opens the risk of eavesdropping as described in the file
4174 upload section. Another CGI script author could peek at this data
4175 during the upload, even if it is confidential information. On Unix
4176 systems, the -private_tempfiles pragma will cause the temporary file
4177 to be unlinked as soon as it is opened and before any data is written
4178 into it, reducing, but not eliminating the risk of eavesdropping
4179 (there is still a potential race condition). To make life harder for
4180 the attacker, the program chooses tempfile names by calculating a 32
4181 bit checksum of the incoming HTTP headers.
4183 To ensure that the temporary file cannot be read by other CGI scripts,
4184 use suEXEC or a CGI wrapper program to run your script. The temporary
4185 file is created with mode 0600 (neither world nor group readable).
4187 The temporary directory is selected using the following algorithm:
4189 1. if the current user (e.g. "nobody") has a directory named
4190 "tmp" in its home directory, use that (Unix systems only).
4192 2. if the environment variable TMPDIR exists, use the location
4195 3. Otherwise try the locations /usr/tmp, /var/tmp, C:\temp,
4196 /tmp, /temp, ::Temporary Items, and \WWW_ROOT.
4198 Each of these locations is checked that it is a directory and is
4199 writable. If not, the algorithm tries the next choice.
4203 =head2 SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
4205 Many of the methods generate HTML tags. As described below, tag
4206 functions automatically generate both the opening and closing tags.
4209 print h1('Level 1 Header');
4213 <h1>Level 1 Header</h1>
4215 There will be some times when you want to produce the start and end
4216 tags yourself. In this case, you can use the form start_I<tag_name>
4217 and end_I<tag_name>, as in:
4219 print start_h1,'Level 1 Header',end_h1;
4221 With a few exceptions (described below), start_I<tag_name> and
4222 end_I<tag_name> functions are not generated automatically when you
4223 I<use CGI>. However, you can specify the tags you want to generate
4224 I<start/end> functions for by putting an asterisk in front of their
4225 name, or, alternatively, requesting either "start_I<tag_name>" or
4226 "end_I<tag_name>" in the import list.
4230 use CGI qw/:standard *table start_ul/;
4232 In this example, the following functions are generated in addition to
4237 =item 1. start_table() (generates a <table> tag)
4239 =item 2. end_table() (generates a </table> tag)
4241 =item 3. start_ul() (generates a <ul> tag)
4243 =item 4. end_ul() (generates a </ul> tag)
4247 =head1 GENERATING DYNAMIC DOCUMENTS
4249 Most of CGI.pm's functions deal with creating documents on the fly.
4250 Generally you will produce the HTTP header first, followed by the
4251 document itself. CGI.pm provides functions for generating HTTP
4252 headers of various types as well as for generating HTML. For creating
4253 GIF images, see the GD.pm module.
4255 Each of these functions produces a fragment of HTML or HTTP which you
4256 can print out directly so that it displays in the browser window,
4257 append to a string, or save to a file for later use.
4259 =head2 CREATING A STANDARD HTTP HEADER:
4261 Normally the first thing you will do in any CGI script is print out an
4262 HTTP header. This tells the browser what type of document to expect,
4263 and gives other optional information, such as the language, expiration
4264 date, and whether to cache the document. The header can also be
4265 manipulated for special purposes, such as server push and pay per view
4268 print $query->header;
4272 print $query->header('image/gif');
4276 print $query->header('text/html','204 No response');
4280 print $query->header(-type=>'image/gif',
4282 -status=>'402 Payment required',
4286 -attachment=>'foo.gif',
4289 header() returns the Content-type: header. You can provide your own
4290 MIME type if you choose, otherwise it defaults to text/html. An
4291 optional second parameter specifies the status code and a human-readable
4292 message. For example, you can specify 204, "No response" to create a
4293 script that tells the browser to do nothing at all.
4295 The last example shows the named argument style for passing arguments
4296 to the CGI methods using named parameters. Recognized parameters are
4297 B<-type>, B<-status>, B<-expires>, and B<-cookie>. Any other named
4298 parameters will be stripped of their initial hyphens and turned into
4299 header fields, allowing you to specify any HTTP header you desire.
4300 Internal underscores will be turned into hyphens:
4302 print $query->header(-Content_length=>3002);
4304 Most browsers will not cache the output from CGI scripts. Every time
4305 the browser reloads the page, the script is invoked anew. You can
4306 change this behavior with the B<-expires> parameter. When you specify
4307 an absolute or relative expiration interval with this parameter, some
4308 browsers and proxy servers will cache the script's output until the
4309 indicated expiration date. The following forms are all valid for the
4312 +30s 30 seconds from now
4313 +10m ten minutes from now
4314 +1h one hour from now
4315 -1d yesterday (i.e. "ASAP!")
4318 +10y in ten years time
4319 Thursday, 25-Apr-1999 00:40:33 GMT at the indicated time & date
4321 The B<-cookie> parameter generates a header that tells the browser to provide
4322 a "magic cookie" during all subsequent transactions with your script.
4323 Netscape cookies have a special format that includes interesting attributes
4324 such as expiration time. Use the cookie() method to create and retrieve
4327 The B<-nph> parameter, if set to a true value, will issue the correct
4328 headers to work with an NPH (no-parse-header) script. This is important
4329 to use with certain servers that expect all their scripts to be NPH.
4331 The B<-charset> parameter can be used to control the character set
4332 sent to the browser. If not provided, defaults to ISO-8859-1. As a
4333 side effect, this sets the charset() method as well.
4335 The B<-attachment> parameter can be used to turn the page into an
4336 attachment. Instead of displaying the page, some browsers will prompt
4337 the user to save it to disk. The value of the argument is the
4338 suggested name for the saved file. In order for this to work, you may
4339 have to set the B<-type> to "application/octet-stream".
4341 =head2 GENERATING A REDIRECTION HEADER
4343 print $query->redirect('http://somewhere.else/in/movie/land');
4345 Sometimes you don't want to produce a document yourself, but simply
4346 redirect the browser elsewhere, perhaps choosing a URL based on the
4347 time of day or the identity of the user.
4349 The redirect() function redirects the browser to a different URL. If
4350 you use redirection like this, you should B<not> print out a header as
4353 One hint I can offer is that relative links may not work correctly
4354 when you generate a redirection to another document on your site.
4355 This is due to a well-intentioned optimization that some servers use.
4356 The solution to this is to use the full URL (including the http: part)
4357 of the document you are redirecting to.
4359 You can also use named arguments:
4361 print $query->redirect(-uri=>'http://somewhere.else/in/movie/land',
4364 The B<-nph> parameter, if set to a true value, will issue the correct
4365 headers to work with an NPH (no-parse-header) script. This is important
4366 to use with certain servers, such as Microsoft Internet Explorer, which
4367 expect all their scripts to be NPH.
4369 =head2 CREATING THE HTML DOCUMENT HEADER
4371 print $query->start_html(-title=>'Secrets of the Pyramids',
4372 -author=>'fred@capricorn.org',
4375 -meta=>{'keywords'=>'pharaoh secret mummy',
4376 'copyright'=>'copyright 1996 King Tut'},
4377 -style=>{'src'=>'/styles/style1.css'},
4380 After creating the HTTP header, most CGI scripts will start writing
4381 out an HTML document. The start_html() routine creates the top of the
4382 page, along with a lot of optional information that controls the
4383 page's appearance and behavior.
4385 This method returns a canned HTML header and the opening <body> tag.
4386 All parameters are optional. In the named parameter form, recognized
4387 parameters are -title, -author, -base, -xbase, -dtd, -lang and -target
4388 (see below for the explanation). Any additional parameters you
4389 provide, such as the Netscape unofficial BGCOLOR attribute, are added
4390 to the <body> tag. Additional parameters must be proceeded by a
4393 The argument B<-xbase> allows you to provide an HREF for the <base> tag
4394 different from the current location, as in
4396 -xbase=>"http://home.mcom.com/"
4398 All relative links will be interpreted relative to this tag.
4400 The argument B<-target> allows you to provide a default target frame
4401 for all the links and fill-out forms on the page. B<This is a
4402 non-standard HTTP feature which only works with Netscape browsers!>
4403 See the Netscape documentation on frames for details of how to
4406 -target=>"answer_window"
4408 All relative links will be interpreted relative to this tag.
4409 You add arbitrary meta information to the header with the B<-meta>
4410 argument. This argument expects a reference to an associative array
4411 containing name/value pairs of meta information. These will be turned
4412 into a series of header <meta> tags that look something like this:
4414 <meta name="keywords" content="pharaoh secret mummy">
4415 <meta name="description" content="copyright 1996 King Tut">
4417 To create an HTTP-EQUIV type of <meta> tag, use B<-head>, described
4420 The B<-style> argument is used to incorporate cascading stylesheets
4421 into your code. See the section on CASCADING STYLESHEETS for more
4424 The B<-lang> argument is used to incorporate a language attribute into
4425 the <html> tag. The default if not specified is "en-US" for US
4426 English. For example:
4428 print $q->start_html(-lang=>'fr-CA');
4430 The B<-encoding> argument can be used to specify the character set for
4431 XHTML. It defaults to iso-8859-1 if not specified.
4433 You can place other arbitrary HTML elements to the <head> section with the
4434 B<-head> tag. For example, to place the rarely-used <link> element in the
4435 head section, use this:
4437 print start_html(-head=>Link({-rel=>'next',
4438 -href=>'http://www.capricorn.com/s2.html'}));
4440 To incorporate multiple HTML elements into the <head> section, just pass an
4443 print start_html(-head=>[
4445 -href=>'http://www.capricorn.com/s2.html'}),
4446 Link({-rel=>'previous',
4447 -href=>'http://www.capricorn.com/s1.html'})
4451 And here's how to create an HTTP-EQUIV <meta> tag:
4453 print start_html(-head=>meta({-http_equiv => 'Content-Type',
4454 -content => 'text/html'}))
4457 JAVASCRIPTING: The B<-script>, B<-noScript>, B<-onLoad>,
4458 B<-onMouseOver>, B<-onMouseOut> and B<-onUnload> parameters are used
4459 to add Netscape JavaScript calls to your pages. B<-script> should
4460 point to a block of text containing JavaScript function definitions.
4461 This block will be placed within a <script> block inside the HTML (not
4462 HTTP) header. The block is placed in the header in order to give your
4463 page a fighting chance of having all its JavaScript functions in place
4464 even if the user presses the stop button before the page has loaded
4465 completely. CGI.pm attempts to format the script in such a way that
4466 JavaScript-naive browsers will not choke on the code: unfortunately
4467 there are some browsers, such as Chimera for Unix, that get confused
4470 The B<-onLoad> and B<-onUnload> parameters point to fragments of JavaScript
4471 code to execute when the page is respectively opened and closed by the
4472 browser. Usually these parameters are calls to functions defined in the
4476 print $query->header;
4478 // Ask a silly question
4479 function riddle_me_this() {
4480 var r = prompt("What walks on four legs in the morning, " +
4481 "two legs in the afternoon, " +
4482 "and three legs in the evening?");
4485 // Get a silly answer
4486 function response(answer) {
4487 if (answer == "man")
4488 alert("Right you are!");
4490 alert("Wrong! Guess again.");
4493 print $query->start_html(-title=>'The Riddle of the Sphinx',
4496 Use the B<-noScript> parameter to pass some HTML text that will be displayed on
4497 browsers that do not have JavaScript (or browsers where JavaScript is turned
4500 Netscape 3.0 recognizes several attributes of the <script> tag,
4501 including LANGUAGE and SRC. The latter is particularly interesting,
4502 as it allows you to keep the JavaScript code in a file or CGI script
4503 rather than cluttering up each page with the source. To use these
4504 attributes pass a HASH reference in the B<-script> parameter containing
4505 one or more of -language, -src, or -code:
4507 print $q->start_html(-title=>'The Riddle of the Sphinx',
4508 -script=>{-language=>'JAVASCRIPT',
4509 -src=>'/javascript/sphinx.js'}
4512 print $q->(-title=>'The Riddle of the Sphinx',
4513 -script=>{-language=>'PERLSCRIPT',
4514 -code=>'print "hello world!\n;"'}
4518 A final feature allows you to incorporate multiple <script> sections into the
4519 header. Just pass the list of script sections as an array reference.
4520 this allows you to specify different source files for different dialects
4521 of JavaScript. Example:
4523 print $q->start_html(-title=>'The Riddle of the Sphinx',
4525 { -language => 'JavaScript1.0',
4526 -src => '/javascript/utilities10.js'
4528 { -language => 'JavaScript1.1',
4529 -src => '/javascript/utilities11.js'
4531 { -language => 'JavaScript1.2',
4532 -src => '/javascript/utilities12.js'
4534 { -language => 'JavaScript28.2',
4535 -src => '/javascript/utilities219.js'
4540 If this looks a bit extreme, take my advice and stick with straight CGI scripting.
4544 http://home.netscape.com/eng/mozilla/2.0/handbook/javascript/
4546 for more information about JavaScript.
4548 The old-style positional parameters are as follows:
4552 =item B<Parameters:>
4560 The author's e-mail address (will create a <link rev="MADE"> tag if present
4564 A 'true' flag if you want to include a <base> tag in the header. This
4565 helps resolve relative addresses to absolute ones when the document is moved,
4566 but makes the document hierarchy non-portable. Use with care!
4570 Any other parameters you want to include in the <body> tag. This is a good
4571 place to put Netscape extensions, such as colors and wallpaper patterns.
4575 =head2 ENDING THE HTML DOCUMENT:
4577 print $query->end_html
4579 This ends an HTML document by printing the </body></html> tags.
4581 =head2 CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
4583 $myself = $query->self_url;
4584 print q(<a href="$myself">I'm talking to myself.</a>);
4586 self_url() will return a URL, that, when selected, will reinvoke
4587 this script with all its state information intact. This is most
4588 useful when you want to jump around within the document using
4589 internal anchors but you don't want to disrupt the current contents
4590 of the form(s). Something like this will do the trick.
4592 $myself = $query->self_url;
4593 print "<a href=$myself#table1>See table 1</a>";
4594 print "<a href=$myself#table2>See table 2</a>";
4595 print "<a href=$myself#yourself>See for yourself</a>";
4597 If you want more control over what's returned, using the B<url()>
4600 You can also retrieve the unprocessed query string with query_string():
4602 $the_string = $query->query_string;
4604 =head2 OBTAINING THE SCRIPT'S URL
4606 $full_url = $query->url();
4607 $full_url = $query->url(-full=>1); #alternative syntax
4608 $relative_url = $query->url(-relative=>1);
4609 $absolute_url = $query->url(-absolute=>1);
4610 $url_with_path = $query->url(-path_info=>1);
4611 $url_with_path_and_query = $query->url(-path_info=>1,-query=>1);
4612 $netloc = $query->url(-base => 1);
4614 B<url()> returns the script's URL in a variety of formats. Called
4615 without any arguments, it returns the full form of the URL, including
4616 host name and port number
4618 http://your.host.com/path/to/script.cgi
4620 You can modify this format with the following named arguments:
4626 If true, produce an absolute URL, e.g.
4632 Produce a relative URL. This is useful if you want to reinvoke your
4633 script with different parameters. For example:
4639 Produce the full URL, exactly as if called without any arguments.
4640 This overrides the -relative and -absolute arguments.
4642 =item B<-path> (B<-path_info>)
4644 Append the additional path information to the URL. This can be
4645 combined with B<-full>, B<-absolute> or B<-relative>. B<-path_info>
4646 is provided as a synonym.
4648 =item B<-query> (B<-query_string>)
4650 Append the query string to the URL. This can be combined with
4651 B<-full>, B<-absolute> or B<-relative>. B<-query_string> is provided
4656 Generate just the protocol and net location, as in http://www.foo.com:8000
4660 =head2 MIXING POST AND URL PARAMETERS
4662 $color = $query->url_param('color');
4664 It is possible for a script to receive CGI parameters in the URL as
4665 well as in the fill-out form by creating a form that POSTs to a URL
4666 containing a query string (a "?" mark followed by arguments). The
4667 B<param()> method will always return the contents of the POSTed
4668 fill-out form, ignoring the URL's query string. To retrieve URL
4669 parameters, call the B<url_param()> method. Use it in the same way as
4670 B<param()>. The main difference is that it allows you to read the
4671 parameters, but not set them.
4674 Under no circumstances will the contents of the URL query string
4675 interfere with similarly-named CGI parameters in POSTed forms. If you
4676 try to mix a URL query string with a form submitted with the GET
4677 method, the results will not be what you expect.
4679 =head1 CREATING STANDARD HTML ELEMENTS:
4681 CGI.pm defines general HTML shortcut methods for most, if not all of
4682 the HTML 3 and HTML 4 tags. HTML shortcuts are named after a single
4683 HTML element and return a fragment of HTML text that you can then
4684 print or manipulate as you like. Each shortcut returns a fragment of
4685 HTML code that you can append to a string, save to a file, or, most
4686 commonly, print out so that it displays in the browser window.
4688 This example shows how to use the HTML methods:
4691 print $q->blockquote(
4692 "Many years ago on the island of",
4693 $q->a({href=>"http://crete.org/"},"Crete"),
4694 "there lived a Minotaur named",
4695 $q->strong("Fred."),
4699 This results in the following HTML code (extra newlines have been
4700 added for readability):
4703 Many years ago on the island of
4704 <a href="http://crete.org/">Crete</a> there lived
4705 a minotaur named <strong>Fred.</strong>
4709 If you find the syntax for calling the HTML shortcuts awkward, you can
4710 import them into your namespace and dispense with the object syntax
4711 completely (see the next section for more details):
4713 use CGI ':standard';
4715 "Many years ago on the island of",
4716 a({href=>"http://crete.org/"},"Crete"),
4717 "there lived a minotaur named",
4722 =head2 PROVIDING ARGUMENTS TO HTML SHORTCUTS
4724 The HTML methods will accept zero, one or multiple arguments. If you
4725 provide no arguments, you get a single tag:
4729 If you provide one or more string arguments, they are concatenated
4730 together with spaces and placed between opening and closing tags:
4732 print h1("Chapter","1"); # <h1>Chapter 1</h1>"
4734 If the first argument is an associative array reference, then the keys
4735 and values of the associative array become the HTML tag's attributes:
4737 print a({-href=>'fred.html',-target=>'_new'},
4738 "Open a new frame");
4740 <a href="fred.html",target="_new">Open a new frame</a>
4742 You may dispense with the dashes in front of the attribute names if
4745 print img {src=>'fred.gif',align=>'LEFT'};
4747 <img align="LEFT" src="fred.gif">
4749 Sometimes an HTML tag attribute has no argument. For example, ordered
4750 lists can be marked as COMPACT. The syntax for this is an argument
4751 that points to an undef string:
4753 print ol({compact=>undef},li('one'),li('two'),li('three'));
4755 Prior to CGI.pm version 2.41, providing an empty ('') string as an
4756 attribute argument was the same as providing undef. However, this has
4757 changed in order to accommodate those who want to create tags of the form
4758 <img alt="">. The difference is shown in these two pieces of code:
4761 img({alt=>undef}) <img alt>
4762 img({alt=>''}) <img alt="">
4764 =head2 THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
4766 One of the cool features of the HTML shortcuts is that they are
4767 distributive. If you give them an argument consisting of a
4768 B<reference> to a list, the tag will be distributed across each
4769 element of the list. For example, here's one way to make an ordered
4773 li({-type=>'disc'},['Sneezy','Doc','Sleepy','Happy'])
4776 This example will result in HTML output that looks like this:
4779 <li type="disc">Sneezy</li>
4780 <li type="disc">Doc</li>
4781 <li type="disc">Sleepy</li>
4782 <li type="disc">Happy</li>
4785 This is extremely useful for creating tables. For example:
4787 print table({-border=>undef},
4788 caption('When Should You Eat Your Vegetables?'),
4789 Tr({-align=>CENTER,-valign=>TOP},
4791 th(['Vegetable', 'Breakfast','Lunch','Dinner']),
4792 td(['Tomatoes' , 'no', 'yes', 'yes']),
4793 td(['Broccoli' , 'no', 'no', 'yes']),
4794 td(['Onions' , 'yes','yes', 'yes'])
4799 =head2 HTML SHORTCUTS AND LIST INTERPOLATION
4801 Consider this bit of code:
4803 print blockquote(em('Hi'),'mom!'));
4805 It will ordinarily return the string that you probably expect, namely:
4807 <blockquote><em>Hi</em> mom!</blockquote>
4809 Note the space between the element "Hi" and the element "mom!".
4810 CGI.pm puts the extra space there using array interpolation, which is
4811 controlled by the magic $" variable. Sometimes this extra space is
4812 not what you want, for example, when you are trying to align a series
4813 of images. In this case, you can simply change the value of $" to an
4818 print blockquote(em('Hi'),'mom!'));
4821 I suggest you put the code in a block as shown here. Otherwise the
4822 change to $" will affect all subsequent code until you explicitly
4825 =head2 NON-STANDARD HTML SHORTCUTS
4827 A few HTML tags don't follow the standard pattern for various
4830 B<comment()> generates an HTML comment (<!-- comment -->). Call it
4833 print comment('here is my comment');
4835 Because of conflicts with built-in Perl functions, the following functions
4836 begin with initial caps:
4845 In addition, start_html(), end_html(), start_form(), end_form(),
4846 start_multipart_form() and all the fill-out form tags are special.
4847 See their respective sections.
4849 =head2 AUTOESCAPING HTML
4851 By default, all HTML that is emitted by the form-generating functions
4852 is passed through a function called escapeHTML():
4856 =item $escaped_string = escapeHTML("unescaped string");
4858 Escape HTML formatting characters in a string.
4862 Provided that you have specified a character set of ISO-8859-1 (the
4863 default), the standard HTML escaping rules will be used. The "<"
4864 character becomes "<", ">" becomes ">", "&" becomes "&", and
4865 the quote character becomes """. In addition, the hexadecimal
4866 0x8b and 0x9b characters, which many windows-based browsers interpret
4867 as the left and right angle-bracket characters, are replaced by their
4868 numeric HTML entities ("‹" and "›"). If you manually change
4869 the charset, either by calling the charset() method explicitly or by
4870 passing a -charset argument to header(), then B<all> characters will
4871 be replaced by their numeric entities, since CGI.pm has no lookup
4872 table for all the possible encodings.
4874 The automatic escaping does not apply to other shortcuts, such as
4875 h1(). You should call escapeHTML() yourself on untrusted data in
4876 order to protect your pages against nasty tricks that people may enter
4877 into guestbooks, etc.. To change the character set, use charset().
4878 To turn autoescaping off completely, use autoescape():
4882 =item $charset = charset([$charset]);
4884 Get or set the current character set.
4886 =item $flag = autoEscape([$flag]);
4888 Get or set the value of the autoescape flag.
4892 =head2 PRETTY-PRINTING HTML
4894 By default, all the HTML produced by these functions comes out as one
4895 long line without carriage returns or indentation. This is yuck, but
4896 it does reduce the size of the documents by 10-20%. To get
4897 pretty-printed output, please use L<CGI::Pretty>, a subclass
4898 contributed by Brian Paulsen.
4900 =head1 CREATING FILL-OUT FORMS:
4902 I<General note> The various form-creating methods all return strings
4903 to the caller, containing the tag or tags that will create the requested
4904 form element. You are responsible for actually printing out these strings.
4905 It's set up this way so that you can place formatting tags
4906 around the form elements.
4908 I<Another note> The default values that you specify for the forms are only
4909 used the B<first> time the script is invoked (when there is no query
4910 string). On subsequent invocations of the script (when there is a query
4911 string), the former values are used even if they are blank.
4913 If you want to change the value of a field from its previous value, you have two
4916 (1) call the param() method to set it.
4918 (2) use the -override (alias -force) parameter (a new feature in version 2.15).
4919 This forces the default value to be used, regardless of the previous value:
4921 print $query->textfield(-name=>'field_name',
4922 -default=>'starting value',
4927 I<Yet another note> By default, the text and labels of form elements are
4928 escaped according to HTML rules. This means that you can safely use
4929 "<CLICK ME>" as the label for a button. However, it also interferes with
4930 your ability to incorporate special HTML character sequences, such as Á,
4931 into your fields. If you wish to turn off automatic escaping, call the
4932 autoEscape() method with a false value immediately after creating the CGI object:
4935 $query->autoEscape(undef);
4937 =head2 CREATING AN ISINDEX TAG
4939 print $query->isindex(-action=>$action);
4943 print $query->isindex($action);
4945 Prints out an <isindex> tag. Not very exciting. The parameter
4946 -action specifies the URL of the script to process the query. The
4947 default is to process the query with the current script.
4949 =head2 STARTING AND ENDING A FORM
4951 print $query->start_form(-method=>$method,
4953 -enctype=>$encoding);
4954 <... various form stuff ...>
4955 print $query->endform;
4959 print $query->start_form($method,$action,$encoding);
4960 <... various form stuff ...>
4961 print $query->endform;
4963 start_form() will return a <form> tag with the optional method,
4964 action and form encoding that you specify. The defaults are:
4968 enctype: application/x-www-form-urlencoded
4970 endform() returns the closing </form> tag.
4972 Start_form()'s enctype argument tells the browser how to package the various
4973 fields of the form before sending the form to the server. Two
4974 values are possible:
4976 B<Note:> This method was previously named startform(), and startform()
4977 is still recognized as an alias.
4981 =item B<application/x-www-form-urlencoded>
4983 This is the older type of encoding used by all browsers prior to
4984 Netscape 2.0. It is compatible with many CGI scripts and is
4985 suitable for short fields containing text data. For your
4986 convenience, CGI.pm stores the name of this encoding
4987 type in B<&CGI::URL_ENCODED>.
4989 =item B<multipart/form-data>
4991 This is the newer type of encoding introduced by Netscape 2.0.
4992 It is suitable for forms that contain very large fields or that
4993 are intended for transferring binary data. Most importantly,
4994 it enables the "file upload" feature of Netscape 2.0 forms. For
4995 your convenience, CGI.pm stores the name of this encoding type
4996 in B<&CGI::MULTIPART>
4998 Forms that use this type of encoding are not easily interpreted
4999 by CGI scripts unless they use CGI.pm or another library designed
5004 For compatibility, the start_form() method uses the older form of
5005 encoding by default. If you want to use the newer form of encoding
5006 by default, you can call B<start_multipart_form()> instead of
5009 JAVASCRIPTING: The B<-name> and B<-onSubmit> parameters are provided
5010 for use with JavaScript. The -name parameter gives the
5011 form a name so that it can be identified and manipulated by
5012 JavaScript functions. -onSubmit should point to a JavaScript
5013 function that will be executed just before the form is submitted to your
5014 server. You can use this opportunity to check the contents of the form
5015 for consistency and completeness. If you find something wrong, you
5016 can put up an alert box or maybe fix things up yourself. You can
5017 abort the submission by returning false from this function.
5019 Usually the bulk of JavaScript functions are defined in a <script>
5020 block in the HTML header and -onSubmit points to one of these function
5021 call. See start_html() for details.
5023 =head2 CREATING A TEXT FIELD
5025 print $query->textfield(-name=>'field_name',
5026 -default=>'starting value',
5031 print $query->textfield('field_name','starting value',50,80);
5033 textfield() will return a text input field.
5041 The first parameter is the required name for the field (-name).
5045 The optional second parameter is the default starting value for the field
5046 contents (-default).
5050 The optional third parameter is the size of the field in
5055 The optional fourth parameter is the maximum number of characters the
5056 field will accept (-maxlength).
5060 As with all these methods, the field will be initialized with its
5061 previous contents from earlier invocations of the script.
5062 When the form is processed, the value of the text field can be
5065 $value = $query->param('foo');
5067 If you want to reset it from its initial value after the script has been
5068 called once, you can do so like this:
5070 $query->param('foo',"I'm taking over this value!");
5072 NEW AS OF VERSION 2.15: If you don't want the field to take on its previous
5073 value, you can force its current value by using the -override (alias -force)
5076 print $query->textfield(-name=>'field_name',
5077 -default=>'starting value',
5082 JAVASCRIPTING: You can also provide B<-onChange>, B<-onFocus>,
5083 B<-onBlur>, B<-onMouseOver>, B<-onMouseOut> and B<-onSelect>
5084 parameters to register JavaScript event handlers. The onChange
5085 handler will be called whenever the user changes the contents of the
5086 text field. You can do text validation if you like. onFocus and
5087 onBlur are called respectively when the insertion point moves into and
5088 out of the text field. onSelect is called when the user changes the
5089 portion of the text that is selected.
5091 =head2 CREATING A BIG TEXT FIELD
5093 print $query->textarea(-name=>'foo',
5094 -default=>'starting value',
5100 print $query->textarea('foo','starting value',10,50);
5102 textarea() is just like textfield, but it allows you to specify
5103 rows and columns for a multiline text entry box. You can provide
5104 a starting value for the field, which can be long and contain
5107 JAVASCRIPTING: The B<-onChange>, B<-onFocus>, B<-onBlur> ,
5108 B<-onMouseOver>, B<-onMouseOut>, and B<-onSelect> parameters are
5109 recognized. See textfield().
5111 =head2 CREATING A PASSWORD FIELD
5113 print $query->password_field(-name=>'secret',
5114 -value=>'starting value',
5119 print $query->password_field('secret','starting value',50,80);
5121 password_field() is identical to textfield(), except that its contents
5122 will be starred out on the web page.
5124 JAVASCRIPTING: The B<-onChange>, B<-onFocus>, B<-onBlur>,
5125 B<-onMouseOver>, B<-onMouseOut> and B<-onSelect> parameters are
5126 recognized. See textfield().
5128 =head2 CREATING A FILE UPLOAD FIELD
5130 print $query->filefield(-name=>'uploaded_file',
5131 -default=>'starting value',
5136 print $query->filefield('uploaded_file','starting value',50,80);
5138 filefield() will return a file upload field for Netscape 2.0 browsers.
5139 In order to take full advantage of this I<you must use the new
5140 multipart encoding scheme> for the form. You can do this either
5141 by calling B<start_form()> with an encoding type of B<&CGI::MULTIPART>,
5142 or by calling the new method B<start_multipart_form()> instead of
5143 vanilla B<start_form()>.
5151 The first parameter is the required name for the field (-name).
5155 The optional second parameter is the starting value for the field contents
5156 to be used as the default file name (-default).
5158 For security reasons, browsers don't pay any attention to this field,
5159 and so the starting value will always be blank. Worse, the field
5160 loses its "sticky" behavior and forgets its previous contents. The
5161 starting value field is called for in the HTML specification, however,
5162 and possibly some browser will eventually provide support for it.
5166 The optional third parameter is the size of the field in
5171 The optional fourth parameter is the maximum number of characters the
5172 field will accept (-maxlength).
5176 When the form is processed, you can retrieve the entered filename
5179 $filename = $query->param('uploaded_file');
5181 Different browsers will return slightly different things for the
5182 name. Some browsers return the filename only. Others return the full
5183 path to the file, using the path conventions of the user's machine.
5184 Regardless, the name returned is always the name of the file on the
5185 I<user's> machine, and is unrelated to the name of the temporary file
5186 that CGI.pm creates during upload spooling (see below).
5188 The filename returned is also a file handle. You can read the contents
5189 of the file using standard Perl file reading calls:
5191 # Read a text file and print it out
5192 while (<$filename>) {
5196 # Copy a binary file to somewhere safe
5197 open (OUTFILE,">>/usr/local/web/users/feedback");
5198 while ($bytesread=read($filename,$buffer,1024)) {
5199 print OUTFILE $buffer;
5202 However, there are problems with the dual nature of the upload fields.
5203 If you C<use strict>, then Perl will complain when you try to use a
5204 string as a filehandle. You can get around this by placing the file
5205 reading code in a block containing the C<no strict> pragma. More
5206 seriously, it is possible for the remote user to type garbage into the
5207 upload field, in which case what you get from param() is not a
5208 filehandle at all, but a string.
5210 To be safe, use the I<upload()> function (new in version 2.47). When
5211 called with the name of an upload field, I<upload()> returns a
5212 filehandle, or undef if the parameter is not a valid filehandle.
5214 $fh = $query->upload('uploaded_file');
5219 In an array context, upload() will return an array of filehandles.
5220 This makes it possible to create forms that use the same name for
5221 multiple upload fields.
5223 This is the recommended idiom.
5225 When a file is uploaded the browser usually sends along some
5226 information along with it in the format of headers. The information
5227 usually includes the MIME content type. Future browsers may send
5228 other information as well (such as modification date and size). To
5229 retrieve this information, call uploadInfo(). It returns a reference to
5230 an associative array containing all the document headers.
5232 $filename = $query->param('uploaded_file');
5233 $type = $query->uploadInfo($filename)->{'Content-Type'};
5234 unless ($type eq 'text/html') {
5235 die "HTML FILES ONLY!";
5238 If you are using a machine that recognizes "text" and "binary" data
5239 modes, be sure to understand when and how to use them (see the Camel book).
5240 Otherwise you may find that binary files are corrupted during file
5243 There are occasionally problems involving parsing the uploaded file.
5244 This usually happens when the user presses "Stop" before the upload is
5245 finished. In this case, CGI.pm will return undef for the name of the
5246 uploaded file and set I<cgi_error()> to the string "400 Bad request
5247 (malformed multipart POST)". This error message is designed so that
5248 you can incorporate it into a status code to be sent to the browser.
5251 $file = $query->upload('uploaded_file');
5252 if (!$file && $query->cgi_error) {
5253 print $query->header(-status=>$query->cgi_error);
5257 You are free to create a custom HTML page to complain about the error,
5260 If you are using CGI.pm on a Windows platform and find that binary
5261 files get slightly larger when uploaded but that text files remain the
5262 same, then you have forgotten to activate binary mode on the output
5263 filehandle. Be sure to call binmode() on any handle that you create
5264 to write the uploaded file to disk.
5266 JAVASCRIPTING: The B<-onChange>, B<-onFocus>, B<-onBlur>,
5267 B<-onMouseOver>, B<-onMouseOut> and B<-onSelect> parameters are
5268 recognized. See textfield() for details.
5270 =head2 CREATING A POPUP MENU
5272 print $query->popup_menu('menu_name',
5273 ['eenie','meenie','minie'],
5278 %labels = ('eenie'=>'your first choice',
5279 'meenie'=>'your second choice',
5280 'minie'=>'your third choice');
5281 print $query->popup_menu('menu_name',
5282 ['eenie','meenie','minie'],
5285 -or (named parameter style)-
5287 print $query->popup_menu(-name=>'menu_name',
5288 -values=>['eenie','meenie','minie'],
5292 popup_menu() creates a menu.
5298 The required first argument is the menu's name (-name).
5302 The required second argument (-values) is an array B<reference>
5303 containing the list of menu items in the menu. You can pass the
5304 method an anonymous array, as shown in the example, or a reference to
5305 a named array, such as "\@foo".
5309 The optional third parameter (-default) is the name of the default
5310 menu choice. If not specified, the first item will be the default.
5311 The values of the previous choice will be maintained across queries.
5315 The optional fourth parameter (-labels) is provided for people who
5316 want to use different values for the user-visible label inside the
5317 popup menu nd the value returned to your script. It's a pointer to an
5318 associative array relating menu values to user-visible labels. If you
5319 leave this parameter blank, the menu values will be displayed by
5320 default. (You can also leave a label undefined if you want to).
5324 When the form is processed, the selected value of the popup menu can
5327 $popup_menu_value = $query->param('menu_name');
5329 JAVASCRIPTING: popup_menu() recognizes the following event handlers:
5330 B<-onChange>, B<-onFocus>, B<-onMouseOver>, B<-onMouseOut>, and
5331 B<-onBlur>. See the textfield() section for details on when these
5332 handlers are called.
5334 =head2 CREATING A SCROLLING LIST
5336 print $query->scrolling_list('list_name',
5337 ['eenie','meenie','minie','moe'],
5338 ['eenie','moe'],5,'true');
5341 print $query->scrolling_list('list_name',
5342 ['eenie','meenie','minie','moe'],
5343 ['eenie','moe'],5,'true',
5348 print $query->scrolling_list(-name=>'list_name',
5349 -values=>['eenie','meenie','minie','moe'],
5350 -default=>['eenie','moe'],
5355 scrolling_list() creates a scrolling list.
5359 =item B<Parameters:>
5363 The first and second arguments are the list name (-name) and values
5364 (-values). As in the popup menu, the second argument should be an
5369 The optional third argument (-default) can be either a reference to a
5370 list containing the values to be selected by default, or can be a
5371 single value to select. If this argument is missing or undefined,
5372 then nothing is selected when the list first appears. In the named
5373 parameter version, you can use the synonym "-defaults" for this
5378 The optional fourth argument is the size of the list (-size).
5382 The optional fifth argument can be set to true to allow multiple
5383 simultaneous selections (-multiple). Otherwise only one selection
5384 will be allowed at a time.
5388 The optional sixth argument is a pointer to an associative array
5389 containing long user-visible labels for the list items (-labels).
5390 If not provided, the values will be displayed.
5392 When this form is processed, all selected list items will be returned as
5393 a list under the parameter name 'list_name'. The values of the
5394 selected items can be retrieved with:
5396 @selected = $query->param('list_name');
5400 JAVASCRIPTING: scrolling_list() recognizes the following event
5401 handlers: B<-onChange>, B<-onFocus>, B<-onMouseOver>, B<-onMouseOut>
5402 and B<-onBlur>. See textfield() for the description of when these
5403 handlers are called.
5405 =head2 CREATING A GROUP OF RELATED CHECKBOXES
5407 print $query->checkbox_group(-name=>'group_name',
5408 -values=>['eenie','meenie','minie','moe'],
5409 -default=>['eenie','moe'],
5413 print $query->checkbox_group('group_name',
5414 ['eenie','meenie','minie','moe'],
5415 ['eenie','moe'],'true',\%labels);
5417 HTML3-COMPATIBLE BROWSERS ONLY:
5419 print $query->checkbox_group(-name=>'group_name',
5420 -values=>['eenie','meenie','minie','moe'],
5421 -rows=2,-columns=>2);
5424 checkbox_group() creates a list of checkboxes that are related
5429 =item B<Parameters:>
5433 The first and second arguments are the checkbox name and values,
5434 respectively (-name and -values). As in the popup menu, the second
5435 argument should be an array reference. These values are used for the
5436 user-readable labels printed next to the checkboxes as well as for the
5437 values passed to your script in the query string.
5441 The optional third argument (-default) can be either a reference to a
5442 list containing the values to be checked by default, or can be a
5443 single value to checked. If this argument is missing or undefined,
5444 then nothing is selected when the list first appears.
5448 The optional fourth argument (-linebreak) can be set to true to place
5449 line breaks between the checkboxes so that they appear as a vertical
5450 list. Otherwise, they will be strung together on a horizontal line.
5454 The optional fifth argument is a pointer to an associative array
5455 relating the checkbox values to the user-visible labels that will
5456 be printed next to them (-labels). If not provided, the values will
5457 be used as the default.
5461 B<HTML3-compatible browsers> (such as Netscape) can take advantage of
5462 the optional parameters B<-rows>, and B<-columns>. These parameters
5463 cause checkbox_group() to return an HTML3 compatible table containing
5464 the checkbox group formatted with the specified number of rows and
5465 columns. You can provide just the -columns parameter if you wish;
5466 checkbox_group will calculate the correct number of rows for you.
5468 To include row and column headings in the returned table, you
5469 can use the B<-rowheaders> and B<-colheaders> parameters. Both
5470 of these accept a pointer to an array of headings to use.
5471 The headings are just decorative. They don't reorganize the
5472 interpretation of the checkboxes -- they're still a single named
5477 When the form is processed, all checked boxes will be returned as
5478 a list under the parameter name 'group_name'. The values of the
5479 "on" checkboxes can be retrieved with:
5481 @turned_on = $query->param('group_name');
5483 The value returned by checkbox_group() is actually an array of button
5484 elements. You can capture them and use them within tables, lists,
5485 or in other creative ways:
5487 @h = $query->checkbox_group(-name=>'group_name',-values=>\@values);
5488 &use_in_creative_way(@h);
5490 JAVASCRIPTING: checkbox_group() recognizes the B<-onClick>
5491 parameter. This specifies a JavaScript code fragment or
5492 function call to be executed every time the user clicks on
5493 any of the buttons in the group. You can retrieve the identity
5494 of the particular button clicked on using the "this" variable.
5496 =head2 CREATING A STANDALONE CHECKBOX
5498 print $query->checkbox(-name=>'checkbox_name',
5501 -label=>'CLICK ME');
5505 print $query->checkbox('checkbox_name','checked','ON','CLICK ME');
5507 checkbox() is used to create an isolated checkbox that isn't logically
5508 related to any others.
5512 =item B<Parameters:>
5516 The first parameter is the required name for the checkbox (-name). It
5517 will also be used for the user-readable label printed next to the
5522 The optional second parameter (-checked) specifies that the checkbox
5523 is turned on by default. Synonyms are -selected and -on.
5527 The optional third parameter (-value) specifies the value of the
5528 checkbox when it is checked. If not provided, the word "on" is
5533 The optional fourth parameter (-label) is the user-readable label to
5534 be attached to the checkbox. If not provided, the checkbox name is
5539 The value of the checkbox can be retrieved using:
5541 $turned_on = $query->param('checkbox_name');
5543 JAVASCRIPTING: checkbox() recognizes the B<-onClick>
5544 parameter. See checkbox_group() for further details.
5546 =head2 CREATING A RADIO BUTTON GROUP
5548 print $query->radio_group(-name=>'group_name',
5549 -values=>['eenie','meenie','minie'],
5556 print $query->radio_group('group_name',['eenie','meenie','minie'],
5557 'meenie','true',\%labels);
5560 HTML3-COMPATIBLE BROWSERS ONLY:
5562 print $query->radio_group(-name=>'group_name',
5563 -values=>['eenie','meenie','minie','moe'],
5564 -rows=2,-columns=>2);
5566 radio_group() creates a set of logically-related radio buttons
5567 (turning one member of the group on turns the others off)
5571 =item B<Parameters:>
5575 The first argument is the name of the group and is required (-name).
5579 The second argument (-values) is the list of values for the radio
5580 buttons. The values and the labels that appear on the page are
5581 identical. Pass an array I<reference> in the second argument, either
5582 using an anonymous array, as shown, or by referencing a named array as
5587 The optional third parameter (-default) is the name of the default
5588 button to turn on. If not specified, the first item will be the
5589 default. You can provide a nonexistent button name, such as "-" to
5590 start up with no buttons selected.
5594 The optional fourth parameter (-linebreak) can be set to 'true' to put
5595 line breaks between the buttons, creating a vertical list.
5599 The optional fifth parameter (-labels) is a pointer to an associative
5600 array relating the radio button values to user-visible labels to be
5601 used in the display. If not provided, the values themselves are
5606 B<HTML3-compatible browsers> (such as Netscape) can take advantage
5608 parameters B<-rows>, and B<-columns>. These parameters cause
5609 radio_group() to return an HTML3 compatible table containing
5610 the radio group formatted with the specified number of rows
5611 and columns. You can provide just the -columns parameter if you
5612 wish; radio_group will calculate the correct number of rows
5615 To include row and column headings in the returned table, you
5616 can use the B<-rowheader> and B<-colheader> parameters. Both
5617 of these accept a pointer to an array of headings to use.
5618 The headings are just decorative. They don't reorganize the
5619 interpretation of the radio buttons -- they're still a single named
5624 When the form is processed, the selected radio button can
5627 $which_radio_button = $query->param('group_name');
5629 The value returned by radio_group() is actually an array of button
5630 elements. You can capture them and use them within tables, lists,
5631 or in other creative ways:
5633 @h = $query->radio_group(-name=>'group_name',-values=>\@values);
5634 &use_in_creative_way(@h);
5636 =head2 CREATING A SUBMIT BUTTON
5638 print $query->submit(-name=>'button_name',
5643 print $query->submit('button_name','value');
5645 submit() will create the query submission button. Every form
5646 should have one of these.
5650 =item B<Parameters:>
5654 The first argument (-name) is optional. You can give the button a
5655 name if you have several submission buttons in your form and you want
5656 to distinguish between them. The name will also be used as the
5657 user-visible label. Be aware that a few older browsers don't deal with this correctly and
5658 B<never> send back a value from a button.
5662 The second argument (-value) is also optional. This gives the button
5663 a value that will be passed to your script in the query string.
5667 You can figure out which button was pressed by using different
5668 values for each one:
5670 $which_one = $query->param('button_name');
5672 JAVASCRIPTING: radio_group() recognizes the B<-onClick>
5673 parameter. See checkbox_group() for further details.
5675 =head2 CREATING A RESET BUTTON
5679 reset() creates the "reset" button. Note that it restores the
5680 form to its value from the last time the script was called,
5681 NOT necessarily to the defaults.
5683 Note that this conflicts with the Perl reset() built-in. Use
5684 CORE::reset() to get the original reset function.
5686 =head2 CREATING A DEFAULT BUTTON
5688 print $query->defaults('button_label')
5690 defaults() creates a button that, when invoked, will cause the
5691 form to be completely reset to its defaults, wiping out all the
5692 changes the user ever made.
5694 =head2 CREATING A HIDDEN FIELD
5696 print $query->hidden(-name=>'hidden_name',
5697 -default=>['value1','value2'...]);
5701 print $query->hidden('hidden_name','value1','value2'...);
5703 hidden() produces a text field that can't be seen by the user. It
5704 is useful for passing state variable information from one invocation
5705 of the script to the next.
5709 =item B<Parameters:>
5713 The first argument is required and specifies the name of this
5718 The second argument is also required and specifies its value
5719 (-default). In the named parameter style of calling, you can provide
5720 a single value here or a reference to a whole list
5724 Fetch the value of a hidden field this way:
5726 $hidden_value = $query->param('hidden_name');
5728 Note, that just like all the other form elements, the value of a
5729 hidden field is "sticky". If you want to replace a hidden field with
5730 some other values after the script has been called once you'll have to
5733 $query->param('hidden_name','new','values','here');
5735 =head2 CREATING A CLICKABLE IMAGE BUTTON
5737 print $query->image_button(-name=>'button_name',
5738 -src=>'/source/URL',
5743 print $query->image_button('button_name','/source/URL','MIDDLE');
5745 image_button() produces a clickable image. When it's clicked on the
5746 position of the click is returned to your script as "button_name.x"
5747 and "button_name.y", where "button_name" is the name you've assigned
5750 JAVASCRIPTING: image_button() recognizes the B<-onClick>
5751 parameter. See checkbox_group() for further details.
5755 =item B<Parameters:>
5759 The first argument (-name) is required and specifies the name of this
5764 The second argument (-src) is also required and specifies the URL
5768 The third option (-align, optional) is an alignment type, and may be
5769 TOP, BOTTOM or MIDDLE
5773 Fetch the value of the button this way:
5774 $x = $query->param('button_name.x');
5775 $y = $query->param('button_name.y');
5777 =head2 CREATING A JAVASCRIPT ACTION BUTTON
5779 print $query->button(-name=>'button_name',
5780 -value=>'user visible label',
5781 -onClick=>"do_something()");
5785 print $query->button('button_name',"do_something()");
5787 button() produces a button that is compatible with Netscape 2.0's
5788 JavaScript. When it's pressed the fragment of JavaScript code
5789 pointed to by the B<-onClick> parameter will be executed. On
5790 non-Netscape browsers this form element will probably not even
5795 Netscape browsers versions 1.1 and higher, and all versions of
5796 Internet Explorer, support a so-called "cookie" designed to help
5797 maintain state within a browser session. CGI.pm has several methods
5798 that support cookies.
5800 A cookie is a name=value pair much like the named parameters in a CGI
5801 query string. CGI scripts create one or more cookies and send
5802 them to the browser in the HTTP header. The browser maintains a list
5803 of cookies that belong to a particular Web server, and returns them
5804 to the CGI script during subsequent interactions.
5806 In addition to the required name=value pair, each cookie has several
5807 optional attributes:
5811 =item 1. an expiration time
5813 This is a time/date string (in a special GMT format) that indicates
5814 when a cookie expires. The cookie will be saved and returned to your
5815 script until this expiration date is reached if the user exits
5816 the browser and restarts it. If an expiration date isn't specified, the cookie
5817 will remain active until the user quits the browser.
5821 This is a partial or complete domain name for which the cookie is
5822 valid. The browser will return the cookie to any host that matches
5823 the partial domain name. For example, if you specify a domain name
5824 of ".capricorn.com", then the browser will return the cookie to
5825 Web servers running on any of the machines "www.capricorn.com",
5826 "www2.capricorn.com", "feckless.capricorn.com", etc. Domain names
5827 must contain at least two periods to prevent attempts to match
5828 on top level domains like ".edu". If no domain is specified, then
5829 the browser will only return the cookie to servers on the host the
5830 cookie originated from.
5834 If you provide a cookie path attribute, the browser will check it
5835 against your script's URL before returning the cookie. For example,
5836 if you specify the path "/cgi-bin", then the cookie will be returned
5837 to each of the scripts "/cgi-bin/tally.pl", "/cgi-bin/order.pl",
5838 and "/cgi-bin/customer_service/complain.pl", but not to the script
5839 "/cgi-private/site_admin.pl". By default, path is set to "/", which
5840 causes the cookie to be sent to any CGI script on your site.
5842 =item 4. a "secure" flag
5844 If the "secure" attribute is set, the cookie will only be sent to your
5845 script if the CGI request is occurring on a secure channel, such as SSL.
5849 The interface to HTTP cookies is the B<cookie()> method:
5851 $cookie = $query->cookie(-name=>'sessionID',
5854 -path=>'/cgi-bin/database',
5855 -domain=>'.capricorn.org',
5857 print $query->header(-cookie=>$cookie);
5859 B<cookie()> creates a new cookie. Its parameters include:
5865 The name of the cookie (required). This can be any string at all.
5866 Although browsers limit their cookie names to non-whitespace
5867 alphanumeric characters, CGI.pm removes this restriction by escaping
5868 and unescaping cookies behind the scenes.
5872 The value of the cookie. This can be any scalar value,
5873 array reference, or even associative array reference. For example,
5874 you can store an entire associative array into a cookie this way:
5876 $cookie=$query->cookie(-name=>'family information',
5877 -value=>\%childrens_ages);
5881 The optional partial path for which this cookie will be valid, as described
5886 The optional partial domain for which this cookie will be valid, as described
5891 The optional expiration date for this cookie. The format is as described
5892 in the section on the B<header()> method:
5894 "+1h" one hour from now
5898 If set to true, this cookie will only be used within a secure
5903 The cookie created by cookie() must be incorporated into the HTTP
5904 header within the string returned by the header() method:
5906 print $query->header(-cookie=>$my_cookie);
5908 To create multiple cookies, give header() an array reference:
5910 $cookie1 = $query->cookie(-name=>'riddle_name',
5911 -value=>"The Sphynx's Question");
5912 $cookie2 = $query->cookie(-name=>'answers',
5914 print $query->header(-cookie=>[$cookie1,$cookie2]);
5916 To retrieve a cookie, request it by name by calling cookie() method
5917 without the B<-value> parameter:
5921 $riddle = $query->cookie('riddle_name');
5922 %answers = $query->cookie('answers');
5924 Cookies created with a single scalar value, such as the "riddle_name"
5925 cookie, will be returned in that form. Cookies with array and hash
5926 values can also be retrieved.
5928 The cookie and CGI namespaces are separate. If you have a parameter
5929 named 'answers' and a cookie named 'answers', the values retrieved by
5930 param() and cookie() are independent of each other. However, it's
5931 simple to turn a CGI parameter into a cookie, and vice-versa:
5933 # turn a CGI parameter into a cookie
5934 $c=$q->cookie(-name=>'answers',-value=>[$q->param('answers')]);
5936 $q->param(-name=>'answers',-value=>[$q->cookie('answers')]);
5938 See the B<cookie.cgi> example script for some ideas on how to use
5939 cookies effectively.
5941 =head1 WORKING WITH FRAMES
5943 It's possible for CGI.pm scripts to write into several browser panels
5944 and windows using the HTML 4 frame mechanism. There are three
5945 techniques for defining new frames programmatically:
5949 =item 1. Create a <Frameset> document
5951 After writing out the HTTP header, instead of creating a standard
5952 HTML document using the start_html() call, create a <frameset>
5953 document that defines the frames on the page. Specify your script(s)
5954 (with appropriate parameters) as the SRC for each of the frames.
5956 There is no specific support for creating <frameset> sections
5957 in CGI.pm, but the HTML is very simple to write. See the frame
5958 documentation in Netscape's home pages for details
5960 http://home.netscape.com/assist/net_sites/frames.html
5962 =item 2. Specify the destination for the document in the HTTP header
5964 You may provide a B<-target> parameter to the header() method:
5966 print $q->header(-target=>'ResultsWindow');
5968 This will tell the browser to load the output of your script into the
5969 frame named "ResultsWindow". If a frame of that name doesn't already
5970 exist, the browser will pop up a new window and load your script's
5971 document into that. There are a number of magic names that you can
5972 use for targets. See the frame documents on Netscape's home pages for
5975 =item 3. Specify the destination for the document in the <form> tag
5977 You can specify the frame to load in the FORM tag itself. With
5978 CGI.pm it looks like this:
5980 print $q->start_form(-target=>'ResultsWindow');
5982 When your script is reinvoked by the form, its output will be loaded
5983 into the frame named "ResultsWindow". If one doesn't already exist
5984 a new window will be created.
5988 The script "frameset.cgi" in the examples directory shows one way to
5989 create pages in which the fill-out form and the response live in
5990 side-by-side frames.
5992 =head1 LIMITED SUPPORT FOR CASCADING STYLE SHEETS
5994 CGI.pm has limited support for HTML3's cascading style sheets (css).
5995 To incorporate a stylesheet into your document, pass the
5996 start_html() method a B<-style> parameter. The value of this
5997 parameter may be a scalar, in which case it is incorporated directly
5998 into a <style> section, or it may be a hash reference. In the latter
5999 case you should provide the hash with one or more of B<-src> or
6000 B<-code>. B<-src> points to a URL where an externally-defined
6001 stylesheet can be found. B<-code> points to a scalar value to be
6002 incorporated into a <style> section. Style definitions in B<-code>
6003 override similarly-named ones in B<-src>, hence the name "cascading."
6005 You may also specify the type of the stylesheet by adding the optional
6006 B<-type> parameter to the hash pointed to by B<-style>. If not
6007 specified, the style defaults to 'text/css'.
6009 To refer to a style within the body of your document, add the
6010 B<-class> parameter to any HTML element:
6012 print h1({-class=>'Fancy'},'Welcome to the Party');
6014 Or define styles on the fly with the B<-style> parameter:
6016 print h1({-style=>'Color: red;'},'Welcome to Hell');
6018 You may also use the new B<span()> element to apply a style to a
6021 print span({-style=>'Color: red;'},
6022 h1('Welcome to Hell'),
6023 "Where did that handbasket get to?"
6026 Note that you must import the ":html3" definitions to have the
6027 B<span()> method available. Here's a quick and dirty example of using
6028 CSS's. See the CSS specification at
6029 http://www.w3.org/pub/WWW/TR/Wd-css-1.html for more information.
6031 use CGI qw/:standard :html3/;
6033 #here's a stylesheet incorporated directly into the page
6043 font-family: sans-serif;
6049 print start_html( -title=>'CGI with Style',
6050 -style=>{-src=>'http://www.capricorn.com/style/st1.css',
6053 print h1('CGI with Style'),
6055 "Better read the cascading style sheet spec before playing with this!"),
6056 span({-style=>'color: magenta'},
6057 "Look Mom, no hands!",
6063 Pass an array reference to B<-style> in order to incorporate multiple
6064 stylesheets into your document.
6068 If you are running the script from the command line or in the perl
6069 debugger, you can pass the script a list of keywords or
6070 parameter=value pairs on the command line or from standard input (you
6071 don't have to worry about tricking your script into reading from
6072 environment variables). You can pass keywords like this:
6074 your_script.pl keyword1 keyword2 keyword3
6078 your_script.pl keyword1+keyword2+keyword3
6082 your_script.pl name1=value1 name2=value2
6086 your_script.pl name1=value1&name2=value2
6088 To turn off this feature, use the -no_debug pragma.
6090 To test the POST method, you may enable full debugging with the -debug
6091 pragma. This will allow you to feed newline-delimited name=value
6092 pairs to the script on standard input.
6094 When debugging, you can use quotes and backslashes to escape
6095 characters in the familiar shell manner, letting you place
6096 spaces and other funny characters in your parameter=value
6099 your_script.pl "name1='I am a long value'" "name2=two\ words"
6101 =head2 DUMPING OUT ALL THE NAME/VALUE PAIRS
6103 The Dump() method produces a string consisting of all the query's
6104 name/value pairs formatted nicely as a nested list. This is useful
6105 for debugging purposes:
6110 Produces something that looks like:
6124 As a shortcut, you can interpolate the entire CGI object into a string
6125 and it will be replaced with the a nice HTML dump shown above:
6128 print "<h2>Current Values</h2> $query\n";
6130 =head1 FETCHING ENVIRONMENT VARIABLES
6132 Some of the more useful environment variables can be fetched
6133 through this interface. The methods are as follows:
6139 Return a list of MIME types that the remote browser accepts. If you
6140 give this method a single argument corresponding to a MIME type, as in
6141 $query->Accept('text/html'), it will return a floating point value
6142 corresponding to the browser's preference for this type from 0.0
6143 (don't want) to 1.0. Glob types (e.g. text/*) in the browser's accept
6144 list are handled correctly.
6146 Note that the capitalization changed between version 2.43 and 2.44 in
6147 order to avoid conflict with Perl's accept() function.
6149 =item B<raw_cookie()>
6151 Returns the HTTP_COOKIE variable, an HTTP extension implemented by
6152 Netscape browsers version 1.1 and higher, and all versions of Internet
6153 Explorer. Cookies have a special format, and this method call just
6154 returns the raw form (?cookie dough). See cookie() for ways of
6155 setting and retrieving cooked cookies.
6157 Called with no parameters, raw_cookie() returns the packed cookie
6158 structure. You can separate it into individual cookies by splitting
6159 on the character sequence "; ". Called with the name of a cookie,
6160 retrieves the B<unescaped> form of the cookie. You can use the
6161 regular cookie() method to get the names, or use the raw_fetch()
6162 method from the CGI::Cookie module.
6164 =item B<user_agent()>
6166 Returns the HTTP_USER_AGENT variable. If you give
6167 this method a single argument, it will attempt to
6168 pattern match on it, allowing you to do something
6169 like $query->user_agent(netscape);
6171 =item B<path_info()>
6173 Returns additional path information from the script URL.
6174 E.G. fetching /cgi-bin/your_script/additional/stuff will result in
6175 $query->path_info() returning "/additional/stuff".
6177 NOTE: The Microsoft Internet Information Server
6178 is broken with respect to additional path information. If
6179 you use the Perl DLL library, the IIS server will attempt to
6180 execute the additional path information as a Perl script.
6181 If you use the ordinary file associations mapping, the
6182 path information will be present in the environment,
6183 but incorrect. The best thing to do is to avoid using additional
6184 path information in CGI scripts destined for use with IIS.
6186 =item B<path_translated()>
6188 As per path_info() but returns the additional
6189 path information translated into a physical path, e.g.
6190 "/usr/local/etc/httpd/htdocs/additional/stuff".
6192 The Microsoft IIS is broken with respect to the translated
6195 =item B<remote_host()>
6197 Returns either the remote host name or IP address.
6198 if the former is unavailable.
6200 =item B<script_name()>
6202 Return the script name as a partial URL, for self-refering
6207 Return the URL of the page the browser was viewing
6208 prior to fetching your script. Not available for all
6211 =item B<auth_type ()>
6213 Return the authorization/verification method in use for this
6216 =item B<server_name ()>
6218 Returns the name of the server, usually the machine's host
6221 =item B<virtual_host ()>
6223 When using virtual hosts, returns the name of the host that
6224 the browser attempted to contact
6226 =item B<server_port ()>
6228 Return the port that the server is listening on.
6230 =item B<server_software ()>
6232 Returns the server software and version number.
6234 =item B<remote_user ()>
6236 Return the authorization/verification name used for user
6237 verification, if this script is protected.
6239 =item B<user_name ()>
6241 Attempt to obtain the remote user's name, using a variety of different
6242 techniques. This only works with older browsers such as Mosaic.
6243 Newer browsers do not report the user name for privacy reasons!
6245 =item B<request_method()>
6247 Returns the method used to access your script, usually
6248 one of 'POST', 'GET' or 'HEAD'.
6250 =item B<content_type()>
6252 Returns the content_type of data submitted in a POST, generally
6253 multipart/form-data or application/x-www-form-urlencoded
6257 Called with no arguments returns the list of HTTP environment
6258 variables, including such things as HTTP_USER_AGENT,
6259 HTTP_ACCEPT_LANGUAGE, and HTTP_ACCEPT_CHARSET, corresponding to the
6260 like-named HTTP header fields in the request. Called with the name of
6261 an HTTP header field, returns its value. Capitalization and the use
6262 of hyphens versus underscores are not significant.
6264 For example, all three of these examples are equivalent:
6266 $requested_language = $q->http('Accept-language');
6267 $requested_language = $q->http('Accept_language');
6268 $requested_language = $q->http('HTTP_ACCEPT_LANGUAGE');
6272 The same as I<http()>, but operates on the HTTPS environment variables
6273 present when the SSL protocol is in effect. Can be used to determine
6274 whether SSL is turned on.
6278 =head1 USING NPH SCRIPTS
6280 NPH, or "no-parsed-header", scripts bypass the server completely by
6281 sending the complete HTTP header directly to the browser. This has
6282 slight performance benefits, but is of most use for taking advantage
6283 of HTTP extensions that are not directly supported by your server,
6284 such as server push and PICS headers.
6286 Servers use a variety of conventions for designating CGI scripts as
6287 NPH. Many Unix servers look at the beginning of the script's name for
6288 the prefix "nph-". The Macintosh WebSTAR server and Microsoft's
6289 Internet Information Server, in contrast, try to decide whether a
6290 program is an NPH script by examining the first line of script output.
6293 CGI.pm supports NPH scripts with a special NPH mode. When in this
6294 mode, CGI.pm will output the necessary extra header information when
6295 the header() and redirect() methods are
6298 The Microsoft Internet Information Server requires NPH mode. As of
6299 version 2.30, CGI.pm will automatically detect when the script is
6300 running under IIS and put itself into this mode. You do not need to
6301 do this manually, although it won't hurt anything if you do. However,
6302 note that if you have applied Service Pack 6, much of the
6303 functionality of NPH scripts, including the ability to redirect while
6304 setting a cookie, b<do not work at all> on IIS without a special patch
6306 http://support.microsoft.com/support/kb/articles/Q280/3/41.ASP:
6307 Non-Parsed Headers Stripped From CGI Applications That Have nph-
6312 =item In the B<use> statement
6314 Simply add the "-nph" pragmato the list of symbols to be imported into
6317 use CGI qw(:standard -nph)
6319 =item By calling the B<nph()> method:
6321 Call B<nph()> with a non-zero parameter at any point after using CGI.pm in your program.
6325 =item By using B<-nph> parameters
6327 in the B<header()> and B<redirect()> statements:
6329 print $q->header(-nph=>1);
6335 CGI.pm provides four simple functions for producing multipart
6336 documents of the type needed to implement server push. These
6337 functions were graciously provided by Ed Jordan <ed@fidalgo.net>. To
6338 import these into your namespace, you must import the ":push" set.
6339 You are also advised to put the script into NPH mode and to set $| to
6340 1 to avoid buffering problems.
6342 Here is a simple script that demonstrates server push:
6344 #!/usr/local/bin/perl
6345 use CGI qw/:push -nph/;
6347 print multipart_init(-boundary=>'----here we go!');
6349 print multipart_start(-type=>'text/plain'),
6350 "The current time is ",scalar(localtime),"\n";
6352 print multipart_end;
6354 print multipart_final;
6359 This script initializes server push by calling B<multipart_init()>.
6360 It then enters a loop in which it begins a new multipart section by
6361 calling B<multipart_start()>, prints the current local time,
6362 and ends a multipart section with B<multipart_end()>. It then sleeps
6363 a second, and begins again. On the final iteration, it ends the
6364 multipart section with B<multipart_final()> rather than with
6369 =item multipart_init()
6371 multipart_init(-boundary=>$boundary);
6373 Initialize the multipart system. The -boundary argument specifies
6374 what MIME boundary string to use to separate parts of the document.
6375 If not provided, CGI.pm chooses a reasonable boundary for you.
6377 =item multipart_start()
6379 multipart_start(-type=>$type)
6381 Start a new part of the multipart document using the specified MIME
6382 type. If not specified, text/html is assumed.
6384 =item multipart_end()
6388 End a part. You must remember to call multipart_end() once for each
6389 multipart_start(), except at the end of the last part of the multipart
6390 document when multipart_final() should be called instead of multipart_end().
6392 =item multipart_final()
6396 End all parts. You should call multipart_final() rather than
6397 multipart_end() at the end of the last part of the multipart document.
6401 Users interested in server push applications should also have a look
6402 at the CGI::Push module.
6404 Only Netscape Navigator supports server push. Internet Explorer
6407 =head1 Avoiding Denial of Service Attacks
6409 A potential problem with CGI.pm is that, by default, it attempts to
6410 process form POSTings no matter how large they are. A wily hacker
6411 could attack your site by sending a CGI script a huge POST of many
6412 megabytes. CGI.pm will attempt to read the entire POST into a
6413 variable, growing hugely in size until it runs out of memory. While
6414 the script attempts to allocate the memory the system may slow down
6415 dramatically. This is a form of denial of service attack.
6417 Another possible attack is for the remote user to force CGI.pm to
6418 accept a huge file upload. CGI.pm will accept the upload and store it
6419 in a temporary directory even if your script doesn't expect to receive
6420 an uploaded file. CGI.pm will delete the file automatically when it
6421 terminates, but in the meantime the remote user may have filled up the
6422 server's disk space, causing problems for other programs.
6424 The best way to avoid denial of service attacks is to limit the amount
6425 of memory, CPU time and disk space that CGI scripts can use. Some Web
6426 servers come with built-in facilities to accomplish this. In other
6427 cases, you can use the shell I<limit> or I<ulimit>
6428 commands to put ceilings on CGI resource usage.
6431 CGI.pm also has some simple built-in protections against denial of
6432 service attacks, but you must activate them before you can use them.
6433 These take the form of two global variables in the CGI name space:
6437 =item B<$CGI::POST_MAX>
6439 If set to a non-negative integer, this variable puts a ceiling
6440 on the size of POSTings, in bytes. If CGI.pm detects a POST
6441 that is greater than the ceiling, it will immediately exit with an error
6442 message. This value will affect both ordinary POSTs and
6443 multipart POSTs, meaning that it limits the maximum size of file
6444 uploads as well. You should set this to a reasonably high
6445 value, such as 1 megabyte.
6447 =item B<$CGI::DISABLE_UPLOADS>
6449 If set to a non-zero value, this will disable file uploads
6450 completely. Other fill-out form values will work as usual.
6454 You can use these variables in either of two ways.
6458 =item B<1. On a script-by-script basis>
6460 Set the variable at the top of the script, right after the "use" statement:
6462 use CGI qw/:standard/;
6463 use CGI::Carp 'fatalsToBrowser';
6464 $CGI::POST_MAX=1024 * 100; # max 100K posts
6465 $CGI::DISABLE_UPLOADS = 1; # no uploads
6467 =item B<2. Globally for all scripts>
6469 Open up CGI.pm, find the definitions for $POST_MAX and
6470 $DISABLE_UPLOADS, and set them to the desired values. You'll
6471 find them towards the top of the file in a subroutine named
6472 initialize_globals().
6476 An attempt to send a POST larger than $POST_MAX bytes will cause
6477 I<param()> to return an empty CGI parameter list. You can test for
6478 this event by checking I<cgi_error()>, either after you create the CGI
6479 object or, if you are using the function-oriented interface, call
6480 <param()> for the first time. If the POST was intercepted, then
6481 cgi_error() will return the message "413 POST too large".
6483 This error message is actually defined by the HTTP protocol, and is
6484 designed to be returned to the browser as the CGI script's status
6487 $uploaded_file = param('upload');
6488 if (!$uploaded_file && cgi_error()) {
6489 print header(-status=>cgi_error());
6493 However it isn't clear that any browser currently knows what to do
6494 with this status code. It might be better just to create an
6495 HTML page that warns the user of the problem.
6497 =head1 COMPATIBILITY WITH CGI-LIB.PL
6499 To make it easier to port existing programs that use cgi-lib.pl the
6500 compatibility routine "ReadParse" is provided. Porting is simple:
6503 require "cgi-lib.pl";
6505 print "The value of the antique is $in{antique}.\n";
6510 print "The value of the antique is $in{antique}.\n";
6512 CGI.pm's ReadParse() routine creates a tied variable named %in,
6513 which can be accessed to obtain the query variables. Like
6514 ReadParse, you can also provide your own variable. Infrequently
6515 used features of ReadParse, such as the creation of @in and $in
6516 variables, are not supported.
6518 Once you use ReadParse, you can retrieve the query object itself
6522 print $q->textfield(-name=>'wow',
6523 -value=>'does this really work?');
6525 This allows you to start using the more interesting features
6526 of CGI.pm without rewriting your old scripts from scratch.
6528 =head1 AUTHOR INFORMATION
6530 Copyright 1995-1998, Lincoln D. Stein. All rights reserved.
6532 This library is free software; you can redistribute it and/or modify
6533 it under the same terms as Perl itself.
6535 Address bug reports and comments to: lstein@cshl.org. When sending
6536 bug reports, please provide the version of CGI.pm, the version of
6537 Perl, the name and version of your Web server, and the name and
6538 version of the operating system you are using. If the problem is even
6539 remotely browser dependent, please provide information about the
6540 affected browers as well.
6544 Thanks very much to:
6548 =item Matt Heffron (heffron@falstaff.css.beckman.com)
6550 =item James Taylor (james.taylor@srs.gov)
6552 =item Scott Anguish <sanguish@digifix.com>
6554 =item Mike Jewell (mlj3u@virginia.edu)
6556 =item Timothy Shimmin (tes@kbs.citri.edu.au)
6558 =item Joergen Haegg (jh@axis.se)
6560 =item Laurent Delfosse (delfosse@delfosse.com)
6562 =item Richard Resnick (applepi1@aol.com)
6564 =item Craig Bishop (csb@barwonwater.vic.gov.au)
6566 =item Tony Curtis (tc@vcpc.univie.ac.at)
6568 =item Tim Bunce (Tim.Bunce@ig.co.uk)
6570 =item Tom Christiansen (tchrist@convex.com)
6572 =item Andreas Koenig (k@franz.ww.TU-Berlin.DE)
6574 =item Tim MacKenzie (Tim.MacKenzie@fulcrum.com.au)
6576 =item Kevin B. Hendricks (kbhend@dogwood.tyler.wm.edu)
6578 =item Stephen Dahmen (joyfire@inxpress.net)
6580 =item Ed Jordan (ed@fidalgo.net)
6582 =item David Alan Pisoni (david@cnation.com)
6584 =item Doug MacEachern (dougm@opengroup.org)
6586 =item Robin Houston (robin@oneworld.org)
6588 =item ...and many many more...
6590 for suggestions and bug fixes.
6594 =head1 A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
6597 #!/usr/local/bin/perl
6603 print $query->header;
6604 print $query->start_html("Example CGI.pm Form");
6605 print "<h1> Example CGI.pm Form</h1>\n";
6606 &print_prompt($query);
6609 print $query->end_html;
6614 print $query->start_form;
6615 print "<em>What's your name?</em><br>";
6616 print $query->textfield('name');
6617 print $query->checkbox('Not my real name');
6619 print "<p><em>Where can you find English Sparrows?</em><br>";
6620 print $query->checkbox_group(
6621 -name=>'Sparrow locations',
6622 -values=>[England,France,Spain,Asia,Hoboken],
6624 -defaults=>[England,Asia]);
6626 print "<p><em>How far can they fly?</em><br>",
6627 $query->radio_group(
6629 -values=>['10 ft','1 mile','10 miles','real far'],
6630 -default=>'1 mile');
6632 print "<p><em>What's your favorite color?</em> ";
6633 print $query->popup_menu(-name=>'Color',
6634 -values=>['black','brown','red','yellow'],
6637 print $query->hidden('Reference','Monty Python and the Holy Grail');
6639 print "<p><em>What have you got there?</em><br>";
6640 print $query->scrolling_list(
6641 -name=>'possessions',
6642 -values=>['A Coconut','A Grail','An Icon',
6643 'A Sword','A Ticket'],
6647 print "<p><em>Any parting comments?</em><br>";
6648 print $query->textarea(-name=>'Comments',
6652 print "<p>",$query->reset;
6653 print $query->submit('Action','Shout');
6654 print $query->submit('Action','Scream');
6655 print $query->endform;
6663 print "<h2>Here are the current settings in this form</h2>";
6665 foreach $key ($query->param) {
6666 print "<strong>$key</strong> -> ";
6667 @values = $query->param($key);
6668 print join(", ",@values),"<br>\n";
6675 <address>Lincoln D. Stein</address><br>
6676 <a href="/">Home Page</a>
6682 This module has grown large and monolithic. Furthermore it's doing many
6683 things, such as handling URLs, parsing CGI input, writing HTML, etc., that
6684 are also done in the LWP modules. It should be discarded in favor of
6685 the CGI::* modules, but somehow I continue to work on it.
6687 Note that the code is truly contorted in order to avoid spurious
6688 warnings when programs are run with the B<-w> switch.
6692 L<CGI::Carp>, L<CGI::Fast>, L<CGI::Pretty>