This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
For now, remove the 'cannot remove [dir] when cwd is [dir]' message,
[perl5.git] / lib / CGI.pm
CommitLineData
54310121 1package CGI;
424ec8fa 2require 5.004;
ba056755 3use Carp 'croak';
54310121 4
5# See the bottom of this file for the POD documentation. Search for the
6# string '=head'.
7
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).
11
424ec8fa 12# Copyright 1995-1998 Lincoln D. Stein. All rights reserved.
54310121 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.
17
18# The most recent version and complete docs are available at:
71f3e297 19# http://stein.cshl.org/WWW/software/CGI/
54310121 20
f8a128a9
NC
21$CGI::revision = '$Id: CGI.pm,v 1.260 2008/09/08 14:13:23 lstein Exp $';
22$CGI::VERSION='3.42';
54310121 23
24# HARD-CODED LOCATION FOR FILE UPLOAD TEMPORARY FILES.
25# UNCOMMENT THIS ONLY IF YOU KNOW WHAT YOU'RE DOING.
ac734d8b 26# $CGITempFile::TMPDIRECTORY = '/usr/tmp';
f8a128a9 27use CGI::Util qw(rearrange rearrange_header make_attributes unescape escape expires ebcdic2ascii ascii2ebcdic);
54310121 28
3acbd4f5
JH
29#use constant XHTML_DTD => ['-//W3C//DTD XHTML Basic 1.0//EN',
30# 'http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd'];
31
32use constant XHTML_DTD => ['-//W3C//DTD XHTML 1.0 Transitional//EN',
33 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'];
6b4ac661 34
8f3ccfa2
JH
35{
36 local $^W = 0;
37 $TAINTED = substr("$0$^X",0,0);
38}
188ba755 39
ebb7c588
SP
40$MOD_PERL = 0; # no mod_perl by default
41
42#global settings
43$POST_MAX = -1; # no limit to uploaded files
44$DISABLE_UPLOADS = 0;
45
13548fdf 46@SAVED_SYMBOLS = ();
8f3ccfa2 47
adb86593 48
424ec8fa
GS
49# >>>>> Here are some globals that you might want to adjust <<<<<<
50sub initialize_globals {
51 # Set this to 1 to enable copious autoloader debugging messages
52 $AUTOLOAD_DEBUG = 0;
2371fea9 53
6b4ac661
JH
54 # Set this to 1 to generate XTML-compatible output
55 $XHTML = 1;
424ec8fa
GS
56
57 # Change this to the preferred DTD to print in start_html()
58 # or use default_dtd('text of DTD to use');
3d1a2ec4
GS
59 $DEFAULT_DTD = [ '-//W3C//DTD HTML 4.01 Transitional//EN',
60 'http://www.w3.org/TR/html4/loose.dtd' ] ;
61
62 # Set this to 1 to enable NOSTICKY scripts
63 # or:
64 # 1) use CGI qw(-nosticky)
65 # 2) $CGI::nosticky(1)
66 $NOSTICKY = 0;
424ec8fa
GS
67
68 # Set this to 1 to enable NPH scripts
69 # or:
70 # 1) use CGI qw(-nph)
3d1a2ec4 71 # 2) CGI::nph(1)
424ec8fa
GS
72 # 3) print header(-nph=>1)
73 $NPH = 0;
74
3d1a2ec4
GS
75 # Set this to 1 to enable debugging from @ARGV
76 # Set to 2 to enable debugging from STDIN
77 $DEBUG = 1;
424ec8fa
GS
78
79 # Set this to 1 to make the temporary files created
80 # during file uploads safe from prying eyes
81 # or do...
82 # 1) use CGI qw(:private_tempfiles)
3d1a2ec4 83 # 2) CGI::private_tempfiles(1);
424ec8fa
GS
84 $PRIVATE_TEMPFILES = 0;
85
0a9bdad4
SP
86 # Set this to 1 to generate automatic tab indexes
87 $TABINDEX = 0;
88
8f3ccfa2
JH
89 # Set this to 1 to cause files uploaded in multipart documents
90 # to be closed, instead of caching the file handle
91 # or:
92 # 1) use CGI qw(:close_upload_files)
93 # 2) $CGI::close_upload_files(1);
94 # Uploads with many files run out of file handles.
95 # Also, for performance, since the file is already on disk,
96 # it can just be renamed, instead of read and written.
97 $CLOSE_UPLOAD_FILES = 0;
98
3538e1d5
GS
99 # Automatically determined -- don't change
100 $EBCDIC = 0;
101
71f3e297
JH
102 # Change this to 1 to suppress redundant HTTP headers
103 $HEADERS_ONCE = 0;
104
105 # separate the name=value pairs by semicolons rather than ampersands
3d1a2ec4 106 $USE_PARAM_SEMICOLONS = 1;
71f3e297 107
2371fea9
JH
108 # Do not include undefined params parsed from query string
109 # use CGI qw(-no_undef_params);
110 $NO_UNDEF_PARAMS = 0;
199d4a26 111
bb8b3399
SP
112 # return everything as utf-8
113 $PARAM_UTF8 = 0;
114
424ec8fa
GS
115 # Other globals that you shouldn't worry about.
116 undef $Q;
117 $BEEN_THERE = 0;
13548fdf 118 $DTD_PUBLIC_IDENTIFIER = "";
424ec8fa
GS
119 undef @QUERY_PARAM;
120 undef %EXPORT;
d45d855d
JH
121 undef $QUERY_CHARSET;
122 undef %QUERY_FIELDNAMES;
681699b9 123 undef %QUERY_TMPFILES;
424ec8fa
GS
124
125 # prevent complaints by mod_perl
126 1;
127}
128
54310121 129# ------------------ START OF THE LIBRARY ------------
130
13548fdf
RGS
131*end_form = \&endform;
132
424ec8fa
GS
133# make mod_perlhappy
134initialize_globals();
135
54310121 136# FIGURE OUT THE OS WE'RE RUNNING UNDER
137# Some systems support the $^O variable. If not
138# available then require() the Config library
139unless ($OS) {
140 unless ($OS = $^O) {
141 require Config;
142 $OS = $Config::Config{'osname'};
143 }
144}
ac1855b3 145if ($OS =~ /^MSWin/i) {
3538e1d5 146 $OS = 'WINDOWS';
ac1855b3 147} elsif ($OS =~ /^VMS/i) {
3538e1d5 148 $OS = 'VMS';
ac1855b3 149} elsif ($OS =~ /^dos/i) {
3538e1d5 150 $OS = 'DOS';
ac1855b3 151} elsif ($OS =~ /^MacOS/i) {
54310121 152 $OS = 'MACINTOSH';
ac1855b3 153} elsif ($OS =~ /^os2/i) {
54310121 154 $OS = 'OS2';
ac1855b3 155} elsif ($OS =~ /^epoc/i) {
fa6a1c44 156 $OS = 'EPOC';
188ba755
JH
157} elsif ($OS =~ /^cygwin/i) {
158 $OS = 'CYGWIN';
54310121 159} else {
160 $OS = 'UNIX';
161}
162
163# Some OS logic. Binary mode enabled on DOS, NT and VMS
188ba755 164$needs_binmode = $OS=~/^(WINDOWS|DOS|OS2|MSWin|CYGWIN)/;
54310121 165
166# This is the default class for the CGI object to use when all else fails.
167$DefaultClass = 'CGI' unless defined $CGI::DefaultClass;
424ec8fa 168
54310121 169# This is where to look for autoloaded routines.
170$AutoloadClass = $DefaultClass unless defined $CGI::AutoloadClass;
171
172# The path separator is a slash, backslash or semicolon, depending
173# on the paltform.
174$SL = {
8f3ccfa2
JH
175 UNIX => '/', OS2 => '\\', EPOC => '/', CYGWIN => '/',
176 WINDOWS => '\\', DOS => '\\', MACINTOSH => ':', VMS => '/'
54310121 177 }->{$OS};
178
424ec8fa 179# This no longer seems to be necessary
54310121 180# Turn on NPH scripts by default when running under IIS server!
424ec8fa
GS
181# $NPH++ if defined($ENV{'SERVER_SOFTWARE'}) && $ENV{'SERVER_SOFTWARE'}=~/IIS/;
182$IIS++ if defined($ENV{'SERVER_SOFTWARE'}) && $ENV{'SERVER_SOFTWARE'}=~/IIS/;
54310121 183
184# Turn on special checking for Doug MacEachern's modperl
8f3ccfa2 185if (exists $ENV{MOD_PERL}) {
8f3ccfa2
JH
186 # mod_perl handlers may run system() on scripts using CGI.pm;
187 # Make sure so we don't get fooled by inherited $ENV{MOD_PERL}
70194bd6 188 if (exists $ENV{MOD_PERL_API_VERSION} && $ENV{MOD_PERL_API_VERSION} == 2) {
741ff09d
RGS
189 $MOD_PERL = 2;
190 require Apache2::Response;
191 require Apache2::RequestRec;
192 require Apache2::RequestUtil;
70194bd6 193 require Apache2::RequestIO;
741ff09d
RGS
194 require APR::Pool;
195 } else {
196 $MOD_PERL = 1;
197 require Apache;
188ba755 198 }
8f3ccfa2 199}
188ba755 200
424ec8fa
GS
201# Turn on special checking for ActiveState's PerlEx
202$PERLEX++ if defined($ENV{'GATEWAY_INTERFACE'}) && $ENV{'GATEWAY_INTERFACE'} =~ /^CGI-PerlEx/;
203
204# Define the CRLF sequence. I can't use a simple "\r\n" because the meaning
205# of "\n" is different on different OS's (sometimes it generates CRLF, sometimes LF
206# and sometimes CR). The most popular VMS web server
207# doesn't accept CRLF -- instead it wants a LR. EBCDIC machines don't
208# use ASCII, so \015\012 means something different. I find this all
209# really annoying.
210$EBCDIC = "\t" ne "\011";
211if ($OS eq 'VMS') {
3538e1d5 212 $CRLF = "\n";
424ec8fa 213} elsif ($EBCDIC) {
3538e1d5 214 $CRLF= "\r\n";
424ec8fa 215} else {
3538e1d5
GS
216 $CRLF = "\015\012";
217}
218
54310121 219if ($needs_binmode) {
2ed511ec
RGS
220 $CGI::DefaultClass->binmode(\*main::STDOUT);
221 $CGI::DefaultClass->binmode(\*main::STDIN);
222 $CGI::DefaultClass->binmode(\*main::STDERR);
54310121 223}
224
54310121 225%EXPORT_TAGS = (
424ec8fa
GS
226 ':html2'=>['h1'..'h6',qw/p br hr ol ul li dl dt dd menu code var strong em
227 tt u i b blockquote pre img a address cite samp dfn html head
228 base body Link nextid title meta kbd start_html end_html
3d1a2ec4 229 input Select option comment charset escapeHTML/],
e0ef849f 230 ':html3'=>[qw/div table caption th td TR Tr sup Sub strike applet Param nobr
1c87da1d 231 embed basefont style span layer ilayer font frameset frame script small big Area Map/],
3acbd4f5
JH
232 ':html4'=>[qw/abbr acronym bdo col colgroup del fieldset iframe
233 ins label legend noframes noscript object optgroup Q
234 thead tbody tfoot/],
424ec8fa
GS
235 ':netscape'=>[qw/blink fontsize center/],
236 ':form'=>[qw/textfield textarea filefield password_field hidden checkbox checkbox_group
237 submit reset defaults radio_group popup_menu button autoEscape
238 scrolling_list image_button start_form end_form startform endform
71f3e297 239 start_multipart_form end_multipart_form isindex tmpFileName uploadInfo URL_ENCODED MULTIPART/],
7dc108d1
SP
240 ':cgi'=>[qw/param upload path_info path_translated request_uri url self_url script_name
241 cookie Dump
3538e1d5 242 raw_cookie request_method query_string Accept user_agent remote_host content_type
2ed511ec
RGS
243 remote_addr referer server_name server_software server_port server_protocol virtual_port
244 virtual_host remote_ident auth_type http append
424ec8fa 245 save_parameters restore_parameters param_fetch
3538e1d5
GS
246 remote_user user_name header redirect import_names put
247 Delete Delete_all url_param cgi_error/],
424ec8fa 248 ':ssl' => [qw/https/],
3538e1d5 249 ':cgi-lib' => [qw/ReadParse PrintHeader HtmlTop HtmlBot SplitParam Vars/],
3acbd4f5
JH
250 ':html' => [qw/:html2 :html3 :html4 :netscape/],
251 ':standard' => [qw/:html2 :html3 :html4 :form :cgi/],
ba056755 252 ':push' => [qw/multipart_init multipart_start multipart_end multipart_final/],
3acbd4f5 253 ':all' => [qw/:html2 :html3 :netscape :form :cgi :internal :html4/]
424ec8fa 254 );
54310121 255
29ddc2a4
RGS
256# Custom 'can' method for both autoloaded and non-autoloaded subroutines.
257# Author: Cees Hek <cees@sitesuite.com.au>
258
259sub can {
260 my($class, $method) = @_;
261
262 # See if UNIVERSAL::can finds it.
263
264 if (my $func = $class -> SUPER::can($method) ){
265 return $func;
266 }
267
268 # Try to compile the function.
269
270 eval {
271 # _compile looks at $AUTOLOAD for the function name.
272
273 local $AUTOLOAD = join "::", $class, $method;
274 &_compile;
275 };
276
277 # Now that the function is loaded (if it exists)
278 # just use UNIVERSAL::can again to do the work.
279
280 return $class -> SUPER::can($method);
281}
282
54310121 283# to import symbols into caller
284sub import {
285 my $self = shift;
424ec8fa 286
188ba755 287 # This causes modules to clash.
b2d0d414
JH
288 undef %EXPORT_OK;
289 undef %EXPORT;
424ec8fa
GS
290
291 $self->_setup_symbols(@_);
54310121 292 my ($callpack, $callfile, $callline) = caller;
424ec8fa 293
54310121 294 # To allow overriding, search through the packages
295 # Till we find one in which the correct subroutine is defined.
296 my @packages = ($self,@{"$self\:\:ISA"});
297 foreach $sym (keys %EXPORT) {
298 my $pck;
299 my $def = ${"$self\:\:AutoloadClass"} || $DefaultClass;
300 foreach $pck (@packages) {
301 if (defined(&{"$pck\:\:$sym"})) {
302 $def = $pck;
303 last;
304 }
305 }
306 *{"${callpack}::$sym"} = \&{"$def\:\:$sym"};
307 }
308}
309
424ec8fa
GS
310sub compile {
311 my $pack = shift;
312 $pack->_setup_symbols('-compile',@_);
313}
314
54310121 315sub expand_tags {
316 my($tag) = @_;
71f3e297 317 return ("start_$1","end_$1") if $tag=~/^(?:\*|start_|end_)(.+)/;
54310121 318 my(@r);
319 return ($tag) unless $EXPORT_TAGS{$tag};
320 foreach (@{$EXPORT_TAGS{$tag}}) {
321 push(@r,&expand_tags($_));
322 }
323 return @r;
324}
325
326#### Method: new
327# The new routine. This will check the current environment
328# for an existing query string, and initialize itself, if so.
329####
330sub new {
8f3ccfa2
JH
331 my($class,@initializer) = @_;
332 my $self = {};
2ed511ec 333
8f3ccfa2 334 bless $self,ref $class || $class || $DefaultClass;
cb3b230c
SP
335
336 # always use a tempfile
337 $self->{'use_tempfile'} = 1;
338
8f3ccfa2
JH
339 if (ref($initializer[0])
340 && (UNIVERSAL::isa($initializer[0],'Apache')
341 ||
741ff09d 342 UNIVERSAL::isa($initializer[0],'Apache2::RequestRec')
8f3ccfa2
JH
343 )) {
344 $self->r(shift @initializer);
345 }
efc8e943
NC
346 if (ref($initializer[0])
347 && (UNIVERSAL::isa($initializer[0],'CODE'))) {
348 $self->upload_hook(shift @initializer, shift @initializer);
cb3b230c 349 $self->{'use_tempfile'} = shift @initializer if (@initializer > 0);
efc8e943 350 }
8f3ccfa2 351 if ($MOD_PERL) {
8f3ccfa2 352 if ($MOD_PERL == 1) {
741ff09d
RGS
353 $self->r(Apache->request) unless $self->r;
354 my $r = $self->r;
8f3ccfa2 355 $r->register_cleanup(\&CGI::_reset_globals);
ebb7c588 356 $self->_setup_symbols(@SAVED_SYMBOLS) if @SAVED_SYMBOLS;
8f3ccfa2
JH
357 }
358 else {
359 # XXX: once we have the new API
360 # will do a real PerlOptions -SetupEnv check
741ff09d
RGS
361 $self->r(Apache2::RequestUtil->request) unless $self->r;
362 my $r = $self->r;
8f3ccfa2
JH
363 $r->subprocess_env unless exists $ENV{REQUEST_METHOD};
364 $r->pool->cleanup_register(\&CGI::_reset_globals);
ebb7c588 365 $self->_setup_symbols(@SAVED_SYMBOLS) if @SAVED_SYMBOLS;
424ec8fa 366 }
8f3ccfa2
JH
367 undef $NPH;
368 }
369 $self->_reset_globals if $PERLEX;
370 $self->init(@initializer);
371 return $self;
54310121 372}
373
2ed511ec
RGS
374# We provide a DESTROY method so that we can ensure that
375# temporary files are closed (via Fh->DESTROY) before they
376# are unlinked (via CGITempFile->DESTROY) because it is not
377# possible to unlink an open file on Win32. We explicitly
378# call DESTROY on each, rather than just undefing them and
379# letting Perl DESTROY them by garbage collection, in case the
380# user is still holding any reference to them as well.
381sub DESTROY {
382 my $self = shift;
0a9bdad4
SP
383 if ($OS eq 'WINDOWS') {
384 foreach my $href (values %{$self->{'.tmpfiles'}}) {
385 $href->{hndl}->DESTROY if defined $href->{hndl};
386 $href->{name}->DESTROY if defined $href->{name};
387 }
2ed511ec
RGS
388 }
389}
54310121 390
8f3ccfa2
JH
391sub r {
392 my $self = shift;
393 my $r = $self->{'.r'};
394 $self->{'.r'} = shift if @_;
395 $r;
396}
397
2ed511ec 398sub upload_hook {
0a9bdad4
SP
399 my $self;
400 if (ref $_[0] eq 'CODE') {
401 $CGI::Q = $self = $CGI::DefaultClass->new(@_);
402 } else {
403 $self = shift;
404 }
cb3b230c 405 my ($hook,$data,$use_tempfile) = @_;
2ed511ec
RGS
406 $self->{'.upload_hook'} = $hook;
407 $self->{'.upload_data'} = $data;
cb3b230c 408 $self->{'use_tempfile'} = $use_tempfile if defined $use_tempfile;
2ed511ec
RGS
409}
410
54310121 411#### Method: param
412# Returns the value(s)of a named parameter.
413# If invoked in a list context, returns the
414# entire list. Otherwise returns the first
415# member of the list.
416# If name is not provided, return a list of all
417# the known parameters names available.
418# If more than one argument is provided, the
419# second and subsequent arguments are used to
420# set the value of the parameter.
421####
422sub param {
423 my($self,@p) = self_or_default(@_);
424 return $self->all_parameters unless @p;
425 my($name,$value,@other);
426
427 # For compatibility between old calling style and use_named_parameters() style,
428 # we have to special case for a single parameter present.
429 if (@p > 1) {
3d1a2ec4 430 ($name,$value,@other) = rearrange([NAME,[DEFAULT,VALUE,VALUES]],@p);
54310121 431 my(@values);
432
3d1a2ec4 433 if (substr($p[0],0,1) eq '-') {
54310121 434 @values = defined($value) ? (ref($value) && ref($value) eq 'ARRAY' ? @{$value} : $value) : ();
435 } else {
436 foreach ($value,@other) {
437 push(@values,$_) if defined($_);
438 }
439 }
440 # If values is provided, then we set it.
fc786e8b 441 if (@values or defined $value) {
54310121 442 $self->add_parameter($name);
e0ef849f 443 $self->{param}{$name}=[@values];
54310121 444 }
445 } else {
446 $name = $p[0];
447 }
448
e0ef849f 449 return unless defined($name) && $self->{param}{$name};
fc786e8b 450
e0ef849f 451 my @result = @{$self->{param}{$name}};
bb8b3399
SP
452
453 if ($PARAM_UTF8) {
454 eval "require Encode; 1;" unless Encode->can('decode'); # bring in these functions
455 @result = map {ref $_ ? $_ : Encode::decode(utf8=>$_) } @result;
fc786e8b 456 }
bb8b3399
SP
457
458 return wantarray ? @result : $result[0];
54310121 459}
460
54310121 461sub self_or_default {
424ec8fa 462 return @_ if defined($_[0]) && (!ref($_[0])) &&($_[0] eq 'CGI');
54310121 463 unless (defined($_[0]) &&
424ec8fa
GS
464 (ref($_[0]) eq 'CGI' || UNIVERSAL::isa($_[0],'CGI')) # slightly optimized for common case
465 ) {
54310121 466 $Q = $CGI::DefaultClass->new unless defined($Q);
467 unshift(@_,$Q);
468 }
3d1a2ec4 469 return wantarray ? @_ : $Q;
54310121 470}
471
54310121 472sub self_or_CGI {
473 local $^W=0; # prevent a warning
474 if (defined($_[0]) &&
475 (substr(ref($_[0]),0,3) eq 'CGI'
424ec8fa 476 || UNIVERSAL::isa($_[0],'CGI'))) {
54310121 477 return @_;
478 } else {
479 return ($DefaultClass,@_);
480 }
481}
482
54310121 483########################################
484# THESE METHODS ARE MORE OR LESS PRIVATE
485# GO TO THE __DATA__ SECTION TO SEE MORE
486# PUBLIC METHODS
487########################################
488
489# Initialize the query object from the environment.
490# If a parameter list is found, this object will be set
491# to an associative array in which parameter names are keys
492# and the values are stored as lists
493# If a keyword list is found, this method creates a bogus
494# parameter list with the single parameter 'keywords'.
495
496sub init {
8f3ccfa2
JH
497 my $self = shift;
498 my($query_string,$meth,$content_length,$fh,@lines) = ('','','','');
499
8869a4b7
SP
500 my $is_xforms;
501
8f3ccfa2
JH
502 my $initializer = shift; # for backward compatibility
503 local($/) = "\n";
504
505 # set autoescaping on by default
506 $self->{'escape'} = 1;
54310121 507
508 # if we get called more than once, we want to initialize
509 # ourselves from the original query (which may be gone
510 # if it was read from STDIN originally.)
d45d855d 511 if (defined(@QUERY_PARAM) && !defined($initializer)) {
681699b9
SP
512 for my $name (@QUERY_PARAM) {
513 my $val = $QUERY_PARAM{$name}; # always an arrayref;
514 $self->param('-name'=>$name,'-value'=> $val);
515 if (defined $val and ref $val eq 'ARRAY') {
516 for my $fh (grep {defined(fileno($_))} @$val) {
517 seek($fh,0,0); # reset the filehandle.
518 }
519
520 }
521 }
522 $self->charset($QUERY_CHARSET);
523 $self->{'.fieldnames'} = {%QUERY_FIELDNAMES};
524 $self->{'.tmpfiles'} = {%QUERY_TMPFILES};
525 return;
54310121 526 }
527
528 $meth=$ENV{'REQUEST_METHOD'} if defined($ENV{'REQUEST_METHOD'});
424ec8fa 529 $content_length = defined($ENV{'CONTENT_LENGTH'}) ? $ENV{'CONTENT_LENGTH'} : 0;
3538e1d5 530
424ec8fa 531 $fh = to_filehandle($initializer) if $initializer;
54310121 532
a3b3a725
JH
533 # set charset to the safe ISO-8859-1
534 $self->charset('ISO-8859-1');
535
54310121 536 METHOD: {
54310121 537
3538e1d5
GS
538 # avoid unreasonably large postings
539 if (($POST_MAX > 0) && ($content_length > $POST_MAX)) {
fc786e8b
SP
540 #discard the post, unread
541 $self->cgi_error("413 Request entity too large");
542 last METHOD;
543 }
3538e1d5 544
424ec8fa
GS
545 # Process multipart postings, but only if the initializer is
546 # not defined.
547 if ($meth eq 'POST'
548 && defined($ENV{'CONTENT_TYPE'})
549 && $ENV{'CONTENT_TYPE'}=~m|^multipart/form-data|
550 && !defined($initializer)
551 ) {
71f3e297 552 my($boundary) = $ENV{'CONTENT_TYPE'} =~ /boundary=\"?([^\";,]+)\"?/;
424ec8fa
GS
553 $self->read_multipart($boundary,$content_length);
554 last METHOD;
555 }
556
8869a4b7
SP
557 # Process XForms postings. We know that we have XForms in the
558 # following cases:
559 # method eq 'POST' && content-type eq 'application/xml'
560 # method eq 'POST' && content-type =~ /multipart\/related.+start=/
561 # There are more cases, actually, but for now, we don't support other
562 # methods for XForm posts.
563 # In a XForm POST, the QUERY_STRING is parsed normally.
564 # If the content-type is 'application/xml', we just set the param
565 # XForms:Model (referring to the xml syntax) param containing the
566 # unparsed XML data.
567 # In the case of multipart/related we set XForms:Model as above, but
568 # the other parts are available as uploads with the Content-ID as the
569 # the key.
570 # See the URL below for XForms specs on this issue.
571 # http://www.w3.org/TR/2006/REC-xforms-20060314/slice11.html#submit-options
572 if ($meth eq 'POST' && defined($ENV{'CONTENT_TYPE'})) {
573 if ($ENV{'CONTENT_TYPE'} eq 'application/xml') {
574 my($param) = 'XForms:Model';
575 my($value) = '';
576 $self->add_parameter($param);
577 $self->read_from_client(\$value,$content_length,0)
578 if $content_length > 0;
e0ef849f 579 push (@{$self->{param}{$param}},$value);
8869a4b7
SP
580 $is_xforms = 1;
581 } elsif ($ENV{'CONTENT_TYPE'} =~ /multipart\/related.+boundary=\"?([^\";,]+)\"?.+start=\"?\<?([^\"\>]+)\>?\"?/) {
582 my($boundary,$start) = ($1,$2);
583 my($param) = 'XForms:Model';
584 $self->add_parameter($param);
585 my($value) = $self->read_multipart_related($start,$boundary,$content_length,0);
e0ef849f 586 push (@{$self->{param}{$param}},$value);
8869a4b7
SP
587 if ($MOD_PERL) {
588 $query_string = $self->r->args;
589 } else {
590 $query_string = $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
591 $query_string ||= $ENV{'REDIRECT_QUERY_STRING'} if defined $ENV{'REDIRECT_QUERY_STRING'};
592 }
593 $is_xforms = 1;
594 }
595 }
596
597
424ec8fa
GS
598 # If initializer is defined, then read parameters
599 # from it.
8869a4b7 600 if (!$is_xforms && defined($initializer)) {
424ec8fa
GS
601 if (UNIVERSAL::isa($initializer,'CGI')) {
602 $query_string = $initializer->query_string;
603 last METHOD;
604 }
54310121 605 if (ref($initializer) && ref($initializer) eq 'HASH') {
606 foreach (keys %$initializer) {
607 $self->param('-name'=>$_,'-value'=>$initializer->{$_});
608 }
609 last METHOD;
610 }
424ec8fa 611
2ed511ec
RGS
612 if (defined($fh) && ($fh ne '')) {
613 while (<$fh>) {
614 chomp;
615 last if /^=/;
616 push(@lines,$_);
617 }
618 # massage back into standard format
619 if ("@lines" =~ /=/) {
620 $query_string=join("&",@lines);
621 } else {
622 $query_string=join("+",@lines);
623 }
624 last METHOD;
625 }
626
424ec8fa
GS
627 # last chance -- treat it as a string
628 $initializer = $$initializer if ref($initializer) eq 'SCALAR';
54310121 629 $query_string = $initializer;
424ec8fa 630
54310121 631 last METHOD;
632 }
54310121 633
424ec8fa
GS
634 # If method is GET or HEAD, fetch the query from
635 # the environment.
8869a4b7 636 if ($is_xforms || $meth=~/^(GET|HEAD)$/) {
3538e1d5 637 if ($MOD_PERL) {
8f3ccfa2 638 $query_string = $self->r->args;
3538e1d5
GS
639 } else {
640 $query_string = $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
3d1a2ec4 641 $query_string ||= $ENV{'REDIRECT_QUERY_STRING'} if defined $ENV{'REDIRECT_QUERY_STRING'};
3538e1d5 642 }
424ec8fa
GS
643 last METHOD;
644 }
54310121 645
bb8b3399 646 if ($meth eq 'POST' || $meth eq 'PUT') {
2ed511ec 647 $self->read_from_client(\$query_string,$content_length,0)
424ec8fa 648 if $content_length > 0;
54310121 649 # Some people want to have their cake and eat it too!
650 # Uncomment this line to have the contents of the query string
651 # APPENDED to the POST data.
424ec8fa 652 # $query_string .= (length($query_string) ? '&' : '') . $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
54310121 653 last METHOD;
654 }
424ec8fa
GS
655
656 # If $meth is not of GET, POST or HEAD, assume we're being debugged offline.
54310121 657 # Check the command line and then the standard input for data.
658 # We use the shellwords package in order to behave the way that
659 # UN*X programmers expect.
2ed511ec
RGS
660 if ($DEBUG)
661 {
662 my $cmdline_ret = read_from_cmdline();
663 $query_string = $cmdline_ret->{'query_string'};
664 if (defined($cmdline_ret->{'subpath'}))
665 {
666 $self->path_info($cmdline_ret->{'subpath'});
667 }
668 }
54310121 669 }
424ec8fa 670
8f3ccfa2 671# YL: Begin Change for XML handler 10/19/2001
bb8b3399 672 if (!$is_xforms && ($meth eq 'POST' || $meth eq 'PUT')
8f3ccfa2 673 && defined($ENV{'CONTENT_TYPE'})
1c87da1d
JH
674 && $ENV{'CONTENT_TYPE'} !~ m|^application/x-www-form-urlencoded|
675 && $ENV{'CONTENT_TYPE'} !~ m|^multipart/form-data| ) {
bb8b3399 676 my($param) = $meth . 'DATA' ;
8f3ccfa2 677 $self->add_parameter($param) ;
e0ef849f 678 push (@{$self->{param}{$param}},$query_string);
8f3ccfa2
JH
679 undef $query_string ;
680 }
681# YL: End Change for XML handler 10/19/2001
682
54310121 683 # We now have the query string in hand. We do slightly
684 # different things for keyword lists and parameter lists.
ba056755 685 if (defined $query_string && length $query_string) {
3d1a2ec4 686 if ($query_string =~ /[&=;]/) {
54310121 687 $self->parse_params($query_string);
688 } else {
689 $self->add_parameter('keywords');
e0ef849f 690 $self->{param}{'keywords'} = [$self->parse_keywordlist($query_string)];
54310121 691 }
692 }
693
694 # Special case. Erase everything if there is a field named
695 # .defaults.
696 if ($self->param('.defaults')) {
e70cb7eb 697 $self->delete_all();
54310121 698 }
699
700 # Associative array containing our defined fieldnames
701 $self->{'.fieldnames'} = {};
702 foreach ($self->param('.cgifields')) {
703 $self->{'.fieldnames'}->{$_}++;
704 }
705
706 # Clear out our default submission button flag if present
707 $self->delete('.submit');
708 $self->delete('.cgifields');
3d1a2ec4 709
8f3ccfa2 710 $self->save_request unless defined $initializer;
54310121 711}
712
54310121 713# FUNCTIONS TO OVERRIDE:
54310121 714# Turn a string into a filehandle
715sub to_filehandle {
424ec8fa
GS
716 my $thingy = shift;
717 return undef unless $thingy;
718 return $thingy if UNIVERSAL::isa($thingy,'GLOB');
719 return $thingy if UNIVERSAL::isa($thingy,'FileHandle');
720 if (!ref($thingy)) {
721 my $caller = 1;
722 while (my $package = caller($caller++)) {
723 my($tmp) = $thingy=~/[\':]/ ? $thingy : "$package\:\:$thingy";
724 return $tmp if defined(fileno($tmp));
725 }
54310121 726 }
424ec8fa 727 return undef;
54310121 728}
729
730# send output to the browser
731sub put {
732 my($self,@p) = self_or_default(@_);
733 $self->print(@p);
734}
735
736# print to standard output (for overriding in mod_perl)
737sub print {
738 shift;
739 CORE::print(@_);
740}
741
3538e1d5
GS
742# get/set last cgi_error
743sub cgi_error {
744 my ($self,$err) = self_or_default(@_);
745 $self->{'.cgi_error'} = $err if defined $err;
746 return $self->{'.cgi_error'};
747}
748
54310121 749sub save_request {
750 my($self) = @_;
751 # We're going to play with the package globals now so that if we get called
752 # again, we initialize ourselves in exactly the same way. This allows
753 # us to have several of these objects.
754 @QUERY_PARAM = $self->param; # save list of parameters
755 foreach (@QUERY_PARAM) {
3d1a2ec4 756 next unless defined $_;
e0ef849f 757 $QUERY_PARAM{$_}=$self->{param}{$_};
54310121 758 }
d45d855d
JH
759 $QUERY_CHARSET = $self->charset;
760 %QUERY_FIELDNAMES = %{$self->{'.fieldnames'}};
681699b9 761 %QUERY_TMPFILES = %{ $self->{'.tmpfiles'} || {} };
54310121 762}
763
54310121 764sub parse_params {
765 my($self,$tosplit) = @_;
71f3e297 766 my(@pairs) = split(/[&;]/,$tosplit);
54310121 767 my($param,$value);
768 foreach (@pairs) {
424ec8fa 769 ($param,$value) = split('=',$_,2);
b2d0d414 770 next unless defined $param;
69c89ae7 771 next if $NO_UNDEF_PARAMS and not defined $value;
3d1a2ec4 772 $value = '' unless defined $value;
424ec8fa
GS
773 $param = unescape($param);
774 $value = unescape($value);
54310121 775 $self->add_parameter($param);
e0ef849f 776 push (@{$self->{param}{$param}},$value);
54310121 777 }
778}
779
780sub add_parameter {
781 my($self,$param)=@_;
3d1a2ec4 782 return unless defined $param;
54310121 783 push (@{$self->{'.parameters'}},$param)
e0ef849f 784 unless defined($self->{param}{$param});
54310121 785}
786
787sub all_parameters {
788 my $self = shift;
789 return () unless defined($self) && $self->{'.parameters'};
790 return () unless @{$self->{'.parameters'}};
791 return @{$self->{'.parameters'}};
792}
793
424ec8fa
GS
794# put a filehandle into binary mode (DOS)
795sub binmode {
2ed511ec 796 return unless defined($_[1]) && defined fileno($_[1]);
424ec8fa
GS
797 CORE::binmode($_[1]);
798}
799
800sub _make_tag_func {
71f3e297 801 my ($self,$tagname) = @_;
3538e1d5 802 my $func = qq(
3d1a2ec4 803 sub $tagname {
8f3ccfa2
JH
804 my (\$q,\$a,\@rest) = self_or_default(\@_);
805 my(\$attr) = '';
806 if (ref(\$a) && ref(\$a) eq 'HASH') {
807 my(\@attr) = make_attributes(\$a,\$q->{'escape'});
808 \$attr = " \@attr" if \@attr;
809 } else {
1c87da1d 810 unshift \@rest,\$a if defined \$a;
8f3ccfa2 811 }
3538e1d5 812 );
71f3e297 813 if ($tagname=~/start_(\w+)/i) {
6b4ac661 814 $func .= qq! return "<\L$1\E\$attr>";} !;
71f3e297 815 } elsif ($tagname=~/end_(\w+)/i) {
6b4ac661 816 $func .= qq! return "<\L/$1\E>"; } !;
71f3e297
JH
817 } else {
818 $func .= qq#
1c87da1d 819 return \$XHTML ? "\L<$tagname\E\$attr />" : "\L<$tagname\E\$attr>" unless \@rest;
6b4ac661 820 my(\$tag,\$untag) = ("\L<$tagname\E\$attr>","\L</$tagname>\E");
3d1a2ec4 821 my \@result = map { "\$tag\$_\$untag" }
8f3ccfa2 822 (ref(\$rest[0]) eq 'ARRAY') ? \@{\$rest[0]} : "\@rest";
424ec8fa 823 return "\@result";
71f3e297
JH
824 }#;
825 }
826return $func;
54310121 827}
828
829sub AUTOLOAD {
830 print STDERR "CGI::AUTOLOAD for $AUTOLOAD\n" if $CGI::AUTOLOAD_DEBUG;
424ec8fa
GS
831 my $func = &_compile;
832 goto &$func;
54310121 833}
834
424ec8fa
GS
835sub _compile {
836 my($func) = $AUTOLOAD;
837 my($pack,$func_name);
838 {
839 local($1,$2); # this fixes an obscure variable suicide problem.
840 $func=~/(.+)::([^:]+)$/;
841 ($pack,$func_name) = ($1,$2);
842 $pack=~s/::SUPER$//; # fix another obscure problem
843 $pack = ${"$pack\:\:AutoloadClass"} || $CGI::DefaultClass
844 unless defined(${"$pack\:\:AUTOLOADED_ROUTINES"});
845
846 my($sub) = \%{"$pack\:\:SUBS"};
847 unless (%$sub) {
848 my($auto) = \${"$pack\:\:AUTOLOADED_ROUTINES"};
29ddc2a4 849 local ($@,$!);
424ec8fa 850 eval "package $pack; $$auto";
ba056755 851 croak("$AUTOLOAD: $@") if $@;
424ec8fa
GS
852 $$auto = ''; # Free the unneeded storage (but don't undef it!!!)
853 }
854 my($code) = $sub->{$func_name};
855
856 $code = "sub $AUTOLOAD { }" if (!$code and $func_name eq 'DESTROY');
857 if (!$code) {
71f3e297 858 (my $base = $func_name) =~ s/^(start_|end_)//i;
424ec8fa
GS
859 if ($EXPORT{':any'} ||
860 $EXPORT{'-any'} ||
71f3e297 861 $EXPORT{$base} ||
424ec8fa 862 (%EXPORT_OK || grep(++$EXPORT_OK{$_},&expand_tags(':html')))
71f3e297
JH
863 && $EXPORT_OK{$base}) {
864 $code = $CGI::DefaultClass->_make_tag_func($func_name);
424ec8fa
GS
865 }
866 }
ba056755 867 croak("Undefined subroutine $AUTOLOAD\n") unless $code;
29ddc2a4 868 local ($@,$!);
424ec8fa
GS
869 eval "package $pack; $code";
870 if ($@) {
871 $@ =~ s/ at .*\n//;
ba056755 872 croak("$AUTOLOAD: $@");
424ec8fa
GS
873 }
874 }
3538e1d5 875 CORE::delete($sub->{$func_name}); #free storage
424ec8fa
GS
876 return "$pack\:\:$func_name";
877}
878
3acbd4f5
JH
879sub _selected {
880 my $self = shift;
881 my $value = shift;
882 return '' unless $value;
0a9bdad4 883 return $XHTML ? qq(selected="selected" ) : qq(selected );
3acbd4f5
JH
884}
885
886sub _checked {
887 my $self = shift;
888 my $value = shift;
889 return '' unless $value;
0a9bdad4 890 return $XHTML ? qq(checked="checked" ) : qq(checked );
3acbd4f5
JH
891}
892
424ec8fa
GS
893sub _reset_globals { initialize_globals(); }
894
895sub _setup_symbols {
896 my $self = shift;
897 my $compile = 0;
b2d0d414
JH
898
899 # to avoid reexporting unwanted variables
900 undef %EXPORT;
901
424ec8fa 902 foreach (@_) {
71f3e297
JH
903 $HEADERS_ONCE++, next if /^[:-]unique_headers$/;
904 $NPH++, next if /^[:-]nph$/;
3d1a2ec4
GS
905 $NOSTICKY++, next if /^[:-]nosticky$/;
906 $DEBUG=0, next if /^[:-]no_?[Dd]ebug$/;
907 $DEBUG=2, next if /^[:-][Dd]ebug$/;
71f3e297 908 $USE_PARAM_SEMICOLONS++, next if /^[:-]newstyle_urls$/;
bb8b3399 909 $PARAM_UTF8++, next if /^[:-]utf8$/;
6b4ac661
JH
910 $XHTML++, next if /^[:-]xhtml$/;
911 $XHTML=0, next if /^[:-]no_?xhtml$/;
3d1a2ec4 912 $USE_PARAM_SEMICOLONS=0, next if /^[:-]oldstyle_urls$/;
71f3e297 913 $PRIVATE_TEMPFILES++, next if /^[:-]private_tempfiles$/;
0a9bdad4 914 $TABINDEX++, next if /^[:-]tabindex$/;
13548fdf 915 $CLOSE_UPLOAD_FILES++, next if /^[:-]close_upload_files$/;
71f3e297
JH
916 $EXPORT{$_}++, next if /^[:-]any$/;
917 $compile++, next if /^[:-]compile$/;
199d4a26 918 $NO_UNDEF_PARAMS++, next if /^[:-]no_undef_params$/;
424ec8fa 919
71f3e297 920 # This is probably extremely evil code -- to be deleted some day.
424ec8fa
GS
921 if (/^[-]autoload$/) {
922 my($pkg) = caller(1);
923 *{"${pkg}::AUTOLOAD"} = sub {
924 my($routine) = $AUTOLOAD;
925 $routine =~ s/^.*::/CGI::/;
926 &$routine;
927 };
928 next;
929 }
930
931 foreach (&expand_tags($_)) {
932 tr/a-zA-Z0-9_//cd; # don't allow weird function names
933 $EXPORT{$_}++;
54310121 934 }
54310121 935 }
424ec8fa 936 _compile_all(keys %EXPORT) if $compile;
188ba755 937 @SAVED_SYMBOLS = @_;
54310121 938}
939
3d1a2ec4
GS
940sub charset {
941 my ($self,$charset) = self_or_default(@_);
942 $self->{'.charset'} = $charset if defined $charset;
943 $self->{'.charset'};
944}
945
29ddc2a4
RGS
946sub element_id {
947 my ($self,$new_value) = self_or_default(@_);
948 $self->{'.elid'} = $new_value if defined $new_value;
949 sprintf('%010d',$self->{'.elid'}++);
950}
951
952sub element_tab {
953 my ($self,$new_value) = self_or_default(@_);
70194bd6 954 $self->{'.etab'} ||= 1;
29ddc2a4 955 $self->{'.etab'} = $new_value if defined $new_value;
0a9bdad4
SP
956 my $tab = $self->{'.etab'}++;
957 return '' unless $TABINDEX or defined $new_value;
958 return qq(tabindex="$tab" );
29ddc2a4
RGS
959}
960
54310121 961###############################################################################
962################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
963###############################################################################
964$AUTOLOADED_ROUTINES = ''; # get rid of -w warning
965$AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
966
967%SUBS = (
968
969'URL_ENCODED'=> <<'END_OF_FUNC',
970sub URL_ENCODED { 'application/x-www-form-urlencoded'; }
971END_OF_FUNC
972
973'MULTIPART' => <<'END_OF_FUNC',
974sub MULTIPART { 'multipart/form-data'; }
975END_OF_FUNC
976
424ec8fa 977'SERVER_PUSH' => <<'END_OF_FUNC',
ba056755 978sub SERVER_PUSH { 'multipart/x-mixed-replace;boundary="' . shift() . '"'; }
424ec8fa
GS
979END_OF_FUNC
980
424ec8fa
GS
981'new_MultipartBuffer' => <<'END_OF_FUNC',
982# Create a new multipart buffer
983sub new_MultipartBuffer {
2ed511ec
RGS
984 my($self,$boundary,$length) = @_;
985 return MultipartBuffer->new($self,$boundary,$length);
424ec8fa
GS
986}
987END_OF_FUNC
988
989'read_from_client' => <<'END_OF_FUNC',
990# Read data from a file handle
991sub read_from_client {
2ed511ec 992 my($self, $buff, $len, $offset) = @_;
424ec8fa 993 local $^W=0; # prevent a warning
2ed511ec
RGS
994 return $MOD_PERL
995 ? $self->r->read($$buff, $len, $offset)
996 : read(\*STDIN, $$buff, $len, $offset);
424ec8fa
GS
997}
998END_OF_FUNC
999
1000'delete' => <<'END_OF_FUNC',
1001#### Method: delete
1002# Deletes the named parameter entirely.
1003####
1004sub delete {
6b4ac661 1005 my($self,@p) = self_or_default(@_);
1c87da1d
JH
1006 my(@names) = rearrange([NAME],@p);
1007 my @to_delete = ref($names[0]) eq 'ARRAY' ? @$names[0] : @names;
8f3ccfa2
JH
1008 my %to_delete;
1009 foreach my $name (@to_delete)
1010 {
e0ef849f 1011 CORE::delete $self->{param}{$name};
8f3ccfa2
JH
1012 CORE::delete $self->{'.fieldnames'}->{$name};
1013 $to_delete{$name}++;
188ba755 1014 }
8f3ccfa2 1015 @{$self->{'.parameters'}}=grep { !exists($to_delete{$_}) } $self->param();
13548fdf 1016 return;
424ec8fa
GS
1017}
1018END_OF_FUNC
1019
1020#### Method: import_names
1021# Import all parameters into the given namespace.
1022# Assumes namespace 'Q' if not specified
1023####
1024'import_names' => <<'END_OF_FUNC',
1025sub import_names {
1026 my($self,$namespace,$delete) = self_or_default(@_);
1027 $namespace = 'Q' unless defined($namespace);
1028 die "Can't import names into \"main\"\n" if \%{"${namespace}::"} == \%::;
3538e1d5 1029 if ($delete || $MOD_PERL || exists $ENV{'FCGI_ROLE'}) {
424ec8fa
GS
1030 # can anyone find an easier way to do this?
1031 foreach (keys %{"${namespace}::"}) {
1032 local *symbol = "${namespace}::${_}";
1033 undef $symbol;
1034 undef @symbol;
1035 undef %symbol;
54310121 1036 }
424ec8fa
GS
1037 }
1038 my($param,@value,$var);
1039 foreach $param ($self->param) {
1040 # protect against silly names
1041 ($var = $param)=~tr/a-zA-Z0-9_/_/c;
1042 $var =~ s/^(?=\d)/_/;
1043 local *symbol = "${namespace}::$var";
1044 @value = $self->param($param);
1045 @symbol = @value;
1046 $symbol = $value[0];
54310121 1047 }
1048}
1049END_OF_FUNC
1050
1051#### Method: keywords
1052# Keywords acts a bit differently. Calling it in a list context
1053# returns the list of keywords.
1054# Calling it in a scalar context gives you the size of the list.
1055####
1056'keywords' => <<'END_OF_FUNC',
1057sub keywords {
1058 my($self,@values) = self_or_default(@_);
1059 # If values is provided, then we set it.
e0ef849f
SP
1060 $self->{param}{'keywords'}=[@values] if @values;
1061 my(@result) = defined($self->{param}{'keywords'}) ? @{$self->{param}{'keywords'}} : ();
54310121 1062 @result;
1063}
1064END_OF_FUNC
1065
1066# These are some tie() interfaces for compatibility
1067# with Steve Brenner's cgi-lib.pl routines
3538e1d5
GS
1068'Vars' => <<'END_OF_FUNC',
1069sub Vars {
ffd2dff2 1070 my $q = shift;
3538e1d5 1071 my %in;
ffd2dff2 1072 tie(%in,CGI,$q);
3538e1d5
GS
1073 return %in if wantarray;
1074 return \%in;
1075}
1076END_OF_FUNC
1077
1078# These are some tie() interfaces for compatibility
1079# with Steve Brenner's cgi-lib.pl routines
54310121 1080'ReadParse' => <<'END_OF_FUNC',
1081sub ReadParse {
1082 local(*in);
1083 if (@_) {
1084 *in = $_[0];
1085 } else {
1086 my $pkg = caller();
1087 *in=*{"${pkg}::in"};
1088 }
1089 tie(%in,CGI);
424ec8fa 1090 return scalar(keys %in);
54310121 1091}
1092END_OF_FUNC
1093
1094'PrintHeader' => <<'END_OF_FUNC',
1095sub PrintHeader {
1096 my($self) = self_or_default(@_);
1097 return $self->header();
1098}
1099END_OF_FUNC
1100
1101'HtmlTop' => <<'END_OF_FUNC',
1102sub HtmlTop {
1103 my($self,@p) = self_or_default(@_);
1104 return $self->start_html(@p);
1105}
1106END_OF_FUNC
1107
1108'HtmlBot' => <<'END_OF_FUNC',
1109sub HtmlBot {
1110 my($self,@p) = self_or_default(@_);
1111 return $self->end_html(@p);
1112}
1113END_OF_FUNC
1114
1115'SplitParam' => <<'END_OF_FUNC',
1116sub SplitParam {
1117 my ($param) = @_;
1118 my (@params) = split ("\0", $param);
1119 return (wantarray ? @params : $params[0]);
1120}
1121END_OF_FUNC
1122
1123'MethGet' => <<'END_OF_FUNC',
1124sub MethGet {
1125 return request_method() eq 'GET';
1126}
1127END_OF_FUNC
1128
1129'MethPost' => <<'END_OF_FUNC',
1130sub MethPost {
1131 return request_method() eq 'POST';
1132}
1133END_OF_FUNC
1134
1135'TIEHASH' => <<'END_OF_FUNC',
8f3ccfa2
JH
1136sub TIEHASH {
1137 my $class = shift;
1138 my $arg = $_[0];
1139 if (ref($arg) && UNIVERSAL::isa($arg,'CGI')) {
1140 return $arg;
1141 }
1142 return $Q ||= $class->new(@_);
54310121 1143}
1144END_OF_FUNC
1145
1146'STORE' => <<'END_OF_FUNC',
1147sub STORE {
3d1a2ec4
GS
1148 my $self = shift;
1149 my $tag = shift;
6b4ac661
JH
1150 my $vals = shift;
1151 my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals;
3d1a2ec4 1152 $self->param(-name=>$tag,-value=>\@vals);
54310121 1153}
1154END_OF_FUNC
1155
1156'FETCH' => <<'END_OF_FUNC',
1157sub FETCH {
1158 return $_[0] if $_[1] eq 'CGI';
1159 return undef unless defined $_[0]->param($_[1]);
1160 return join("\0",$_[0]->param($_[1]));
1161}
1162END_OF_FUNC
1163
1164'FIRSTKEY' => <<'END_OF_FUNC',
1165sub FIRSTKEY {
1166 $_[0]->{'.iterator'}=0;
1167 $_[0]->{'.parameters'}->[$_[0]->{'.iterator'}++];
1168}
1169END_OF_FUNC
1170
1171'NEXTKEY' => <<'END_OF_FUNC',
1172sub NEXTKEY {
1173 $_[0]->{'.parameters'}->[$_[0]->{'.iterator'}++];
1174}
1175END_OF_FUNC
1176
1177'EXISTS' => <<'END_OF_FUNC',
1178sub EXISTS {
e0ef849f 1179 exists $_[0]->{param}{$_[1]};
54310121 1180}
1181END_OF_FUNC
1182
1183'DELETE' => <<'END_OF_FUNC',
1184sub DELETE {
1185 $_[0]->delete($_[1]);
1186}
1187END_OF_FUNC
1188
1189'CLEAR' => <<'END_OF_FUNC',
1190sub CLEAR {
1191 %{$_[0]}=();
1192}
1193####
1194END_OF_FUNC
1195
1196####
1197# Append a new value to an existing query
1198####
1199'append' => <<'EOF',
1200sub append {
7dc108d1 1201 my($self,@p) = self_or_default(@_);
3d1a2ec4 1202 my($name,$value) = rearrange([NAME,[VALUE,VALUES]],@p);
54310121 1203 my(@values) = defined($value) ? (ref($value) ? @{$value} : $value) : ();
1204 if (@values) {
1205 $self->add_parameter($name);
e0ef849f 1206 push(@{$self->{param}{$name}},@values);
54310121 1207 }
1208 return $self->param($name);
1209}
1210EOF
1211
1212#### Method: delete_all
1213# Delete all parameters
1214####
1215'delete_all' => <<'EOF',
1216sub delete_all {
1217 my($self) = self_or_default(@_);
1c87da1d 1218 my @param = $self->param();
8f3ccfa2 1219 $self->delete(@param);
54310121 1220}
1221EOF
1222
424ec8fa
GS
1223'Delete' => <<'EOF',
1224sub Delete {
1225 my($self,@p) = self_or_default(@_);
1226 $self->delete(@p);
1227}
1228EOF
1229
1230'Delete_all' => <<'EOF',
1231sub Delete_all {
1232 my($self,@p) = self_or_default(@_);
1233 $self->delete_all(@p);
1234}
1235EOF
1236
54310121 1237#### Method: autoescape
1238# If you want to turn off the autoescaping features,
1239# call this method with undef as the argument
1240'autoEscape' => <<'END_OF_FUNC',
1241sub autoEscape {
1242 my($self,$escape) = self_or_default(@_);
188ba755
JH
1243 my $d = $self->{'escape'};
1244 $self->{'escape'} = $escape;
1245 $d;
54310121 1246}
1247END_OF_FUNC
1248
1249
1250#### Method: version
1251# Return the current version
1252####
1253'version' => <<'END_OF_FUNC',
1254sub version {
1255 return $VERSION;
1256}
1257END_OF_FUNC
1258
424ec8fa
GS
1259#### Method: url_param
1260# Return a parameter in the QUERY_STRING, regardless of
1261# whether this was a POST or a GET
1262####
1263'url_param' => <<'END_OF_FUNC',
1264sub url_param {
1265 my ($self,@p) = self_or_default(@_);
1266 my $name = shift(@p);
1267 return undef unless exists($ENV{QUERY_STRING});
1268 unless (exists($self->{'.url_param'})) {
1269 $self->{'.url_param'}={}; # empty hash
1270 if ($ENV{QUERY_STRING} =~ /=/) {
71f3e297 1271 my(@pairs) = split(/[&;]/,$ENV{QUERY_STRING});
424ec8fa
GS
1272 my($param,$value);
1273 foreach (@pairs) {
1274 ($param,$value) = split('=',$_,2);
1275 $param = unescape($param);
1276 $value = unescape($value);
1277 push(@{$self->{'.url_param'}->{$param}},$value);
1278 }
1279 } else {
1280 $self->{'.url_param'}->{'keywords'} = [$self->parse_keywordlist($ENV{QUERY_STRING})];
1281 }
1282 }
1283 return keys %{$self->{'.url_param'}} unless defined($name);
1284 return () unless $self->{'.url_param'}->{$name};
1285 return wantarray ? @{$self->{'.url_param'}->{$name}}
1286 : $self->{'.url_param'}->{$name}->[0];
1287}
1288END_OF_FUNC
1289
3d1a2ec4 1290#### Method: Dump
54310121 1291# Returns a string in which all the known parameter/value
1292# pairs are represented as nested lists, mainly for the purposes
1293# of debugging.
1294####
3d1a2ec4
GS
1295'Dump' => <<'END_OF_FUNC',
1296sub Dump {
54310121 1297 my($self) = self_or_default(@_);
1298 my($param,$value,@result);
3acbd4f5
JH
1299 return '<ul></ul>' unless $self->param;
1300 push(@result,"<ul>");
54310121 1301 foreach $param ($self->param) {
1302 my($name)=$self->escapeHTML($param);
1c87da1d 1303 push(@result,"<li><strong>$param</strong></li>");
3acbd4f5 1304 push(@result,"<ul>");
54310121 1305 foreach $value ($self->param($param)) {
1306 $value = $self->escapeHTML($value);
58129083 1307 $value =~ s/\n/<br \/>\n/g;
1c87da1d 1308 push(@result,"<li>$value</li>");
54310121 1309 }
3acbd4f5 1310 push(@result,"</ul>");
54310121 1311 }
3acbd4f5 1312 push(@result,"</ul>");
54310121 1313 return join("\n",@result);
1314}
1315END_OF_FUNC
1316
424ec8fa
GS
1317#### Method as_string
1318#
1319# synonym for "dump"
1320####
1321'as_string' => <<'END_OF_FUNC',
1322sub as_string {
3d1a2ec4 1323 &Dump(@_);
424ec8fa
GS
1324}
1325END_OF_FUNC
1326
1327#### Method: save
1328# Write values out to a filehandle in such a way that they can
1329# be reinitialized by the filehandle form of the new() method
54310121 1330####
1331'save' => <<'END_OF_FUNC',
1332sub save {
1333 my($self,$filehandle) = self_or_default(@_);
54310121 1334 $filehandle = to_filehandle($filehandle);
424ec8fa
GS
1335 my($param);
1336 local($,) = ''; # set print field separator back to a sane value
71f3e297 1337 local($\) = ''; # set output line separator to a sane value
54310121 1338 foreach $param ($self->param) {
424ec8fa 1339 my($escaped_param) = escape($param);
54310121 1340 my($value);
1341 foreach $value ($self->param($param)) {
3538e1d5 1342 print $filehandle "$escaped_param=",escape("$value"),"\n";
54310121 1343 }
1344 }
d45d855d
JH
1345 foreach (keys %{$self->{'.fieldnames'}}) {
1346 print $filehandle ".cgifields=",escape("$_"),"\n";
1347 }
54310121 1348 print $filehandle "=\n"; # end of record
1349}
1350END_OF_FUNC
1351
1352
424ec8fa
GS
1353#### Method: save_parameters
1354# An alias for save() that is a better name for exportation.
1355# Only intended to be used with the function (non-OO) interface.
1356####
1357'save_parameters' => <<'END_OF_FUNC',
1358sub save_parameters {
1359 my $fh = shift;
1360 return save(to_filehandle($fh));
1361}
1362END_OF_FUNC
1363
1364#### Method: restore_parameters
1365# A way to restore CGI parameters from an initializer.
1366# Only intended to be used with the function (non-OO) interface.
1367####
1368'restore_parameters' => <<'END_OF_FUNC',
1369sub restore_parameters {
1370 $Q = $CGI::DefaultClass->new(@_);
1371}
1372END_OF_FUNC
1373
1374#### Method: multipart_init
1375# Return a Content-Type: style header for server-push
ba056755 1376# This has to be NPH on most web servers, and it is advisable to set $| = 1
424ec8fa
GS
1377#
1378# Many thanks to Ed Jordan <ed@fidalgo.net> for this
ba056755 1379# contribution, updated by Andrew Benham (adsb@bigfoot.com)
424ec8fa
GS
1380####
1381'multipart_init' => <<'END_OF_FUNC',
1382sub multipart_init {
1383 my($self,@p) = self_or_default(@_);
f8a128a9 1384 my($boundary,@other) = rearrange_header([BOUNDARY],@p);
424ec8fa 1385 $boundary = $boundary || '------- =_aaaaaaaaaa0';
ba056755
JH
1386 $self->{'separator'} = "$CRLF--$boundary$CRLF";
1387 $self->{'final_separator'} = "$CRLF--$boundary--$CRLF";
424ec8fa
GS
1388 $type = SERVER_PUSH($boundary);
1389 return $self->header(
13548fdf 1390 -nph => 0,
424ec8fa
GS
1391 -type => $type,
1392 (map { split "=", $_, 2 } @other),
ba056755 1393 ) . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $self->multipart_end;
424ec8fa
GS
1394}
1395END_OF_FUNC
1396
1397
1398#### Method: multipart_start
1399# Return a Content-Type: style header for server-push, start of section
1400#
1401# Many thanks to Ed Jordan <ed@fidalgo.net> for this
ba056755 1402# contribution, updated by Andrew Benham (adsb@bigfoot.com)
424ec8fa
GS
1403####
1404'multipart_start' => <<'END_OF_FUNC',
1405sub multipart_start {
ba056755 1406 my(@header);
424ec8fa 1407 my($self,@p) = self_or_default(@_);
3d1a2ec4 1408 my($type,@other) = rearrange([TYPE],@p);
424ec8fa 1409 $type = $type || 'text/html';
ba056755
JH
1410 push(@header,"Content-Type: $type");
1411
1412 # rearrange() was designed for the HTML portion, so we
1413 # need to fix it up a little.
1414 foreach (@other) {
8f3ccfa2
JH
1415 # Don't use \s because of perl bug 21951
1416 next unless my($header,$value) = /([^ \r\n\t=]+)=\"?(.+?)\"?$/;
ba056755
JH
1417 ($_ = $header) =~ s/^(\w)(.*)/$1 . lc ($2) . ': '.$self->unescapeHTML($value)/e;
1418 }
1419 push(@header,@other);
1420 my $header = join($CRLF,@header)."${CRLF}${CRLF}";
1421 return $header;
424ec8fa
GS
1422}
1423END_OF_FUNC
1424
1425
1426#### Method: multipart_end
ba056755 1427# Return a MIME boundary separator for server-push, end of section
424ec8fa
GS
1428#
1429# Many thanks to Ed Jordan <ed@fidalgo.net> for this
1430# contribution
1431####
1432'multipart_end' => <<'END_OF_FUNC',
1433sub multipart_end {
1434 my($self,@p) = self_or_default(@_);
1435 return $self->{'separator'};
1436}
1437END_OF_FUNC
1438
1439
ba056755
JH
1440#### Method: multipart_final
1441# Return a MIME boundary separator for server-push, end of all sections
1442#
1443# Contributed by Andrew Benham (adsb@bigfoot.com)
1444####
1445'multipart_final' => <<'END_OF_FUNC',
1446sub multipart_final {
1447 my($self,@p) = self_or_default(@_);
1448 return $self->{'final_separator'} . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $CRLF;
1449}
1450END_OF_FUNC
1451
1452
54310121 1453#### Method: header
1454# Return a Content-Type: style header
1455#
1456####
1457'header' => <<'END_OF_FUNC',
1458sub header {
1459 my($self,@p) = self_or_default(@_);
1460 my(@header);
1461
2ed511ec 1462 return "" if $self->{'.header_printed'}++ and $HEADERS_ONCE;
71f3e297 1463
8f3ccfa2 1464 my($type,$status,$cookie,$target,$expires,$nph,$charset,$attachment,$p3p,@other) =
3d1a2ec4
GS
1465 rearrange([['TYPE','CONTENT_TYPE','CONTENT-TYPE'],
1466 'STATUS',['COOKIE','COOKIES'],'TARGET',
6b4ac661 1467 'EXPIRES','NPH','CHARSET',
8f3ccfa2 1468 'ATTACHMENT','P3P'],@p);
3d1a2ec4
GS
1469
1470 $nph ||= $NPH;
55b5d700
SP
1471
1472 $type ||= 'text/html' unless defined($type);
1473
3d1a2ec4
GS
1474 if (defined $charset) {
1475 $self->charset($charset);
1476 } else {
55b5d700 1477 $charset = $self->charset if $type =~ /^text\//;
3d1a2ec4 1478 }
cb3b230c 1479 $charset ||= '';
54310121 1480
1481 # rearrange() was designed for the HTML portion, so we
1482 # need to fix it up a little.
1483 foreach (@other) {
8f3ccfa2
JH
1484 # Don't use \s because of perl bug 21951
1485 next unless my($header,$value) = /([^ \r\n\t=]+)=\"?(.+?)\"?$/;
1486 ($_ = $header) =~ s/^(\w)(.*)/"\u$1\L$2" . ': '.$self->unescapeHTML($value)/e;
54310121 1487 }
1488
cd755de4
JJ
1489 $type .= "; charset=$charset"
1490 if $type ne ''
1491 and $type !~ /\bcharset\b/
1492 and defined $charset
1493 and $charset ne '';
54310121 1494
424ec8fa
GS
1495 # Maybe future compatibility. Maybe not.
1496 my $protocol = $ENV{SERVER_PROTOCOL} || 'HTTP/1.0';
1497 push(@header,$protocol . ' ' . ($status || '200 OK')) if $nph;
ba056755 1498 push(@header,"Server: " . &server_software()) if $nph;
424ec8fa 1499
54310121 1500 push(@header,"Status: $status") if $status;
424ec8fa 1501 push(@header,"Window-Target: $target") if $target;
8f3ccfa2
JH
1502 if ($p3p) {
1503 $p3p = join ' ',@$p3p if ref($p3p) eq 'ARRAY';
1504 push(@header,qq(P3P: policyref="/w3c/p3p.xml", CP="$p3p"));
1505 }
54310121 1506 # push all the cookies -- there may be several
1507 if ($cookie) {
424ec8fa 1508 my(@cookie) = ref($cookie) && ref($cookie) eq 'ARRAY' ? @{$cookie} : $cookie;
54310121 1509 foreach (@cookie) {
71f3e297
JH
1510 my $cs = UNIVERSAL::isa($_,'CGI::Cookie') ? $_->as_string : $_;
1511 push(@header,"Set-Cookie: $cs") if $cs ne '';
54310121 1512 }
1513 }
1514 # if the user indicates an expiration time, then we need
1515 # both an Expires and a Date header (so that the browser is
1516 # uses OUR clock)
424ec8fa 1517 push(@header,"Expires: " . expires($expires,'http'))
7d37aa8e 1518 if $expires;
ba056755 1519 push(@header,"Date: " . expires(0,'http')) if $expires || $cookie || $nph;
54310121 1520 push(@header,"Pragma: no-cache") if $self->cache();
6b4ac661 1521 push(@header,"Content-Disposition: attachment; filename=\"$attachment\"") if $attachment;
69c89ae7 1522 push(@header,map {ucfirst $_} @other);
71f3e297 1523 push(@header,"Content-Type: $type") if $type ne '';
424ec8fa 1524 my $header = join($CRLF,@header)."${CRLF}${CRLF}";
ead6d9e1 1525 if (($MOD_PERL >= 1) && !$nph) {
8f3ccfa2
JH
1526 $self->r->send_cgi_header($header);
1527 return '';
424ec8fa
GS
1528 }
1529 return $header;
54310121 1530}
1531END_OF_FUNC
1532
1533
1534#### Method: cache
1535# Control whether header() will produce the no-cache
1536# Pragma directive.
1537####
1538'cache' => <<'END_OF_FUNC',
1539sub cache {
1540 my($self,$new_value) = self_or_default(@_);
1541 $new_value = '' unless $new_value;
1542 if ($new_value ne '') {
1543 $self->{'cache'} = $new_value;
1544 }
1545 return $self->{'cache'};
1546}
1547END_OF_FUNC
1548
1549
1550#### Method: redirect
1551# Return a Location: style header
1552#
1553####
1554'redirect' => <<'END_OF_FUNC',
1555sub redirect {
1556 my($self,@p) = self_or_default(@_);
13548fdf
RGS
1557 my($url,$target,$status,$cookie,$nph,@other) =
1558 rearrange([[LOCATION,URI,URL],TARGET,STATUS,['COOKIE','COOKIES'],NPH],@p);
55b5d700 1559 $status = '302 Found' unless defined $status;
6b4ac661 1560 $url ||= $self->self_url;
54310121 1561 my(@o);
424ec8fa
GS
1562 foreach (@other) { tr/\"//d; push(@o,split("=",$_,2)); }
1563 unshift(@o,
13548fdf 1564 '-Status' => $status,
8f3ccfa2
JH
1565 '-Location'=> $url,
1566 '-nph' => $nph);
424ec8fa 1567 unshift(@o,'-Target'=>$target) if $target;
71f3e297 1568 unshift(@o,'-Type'=>'');
8f3ccfa2
JH
1569 my @unescaped;
1570 unshift(@unescaped,'-Cookie'=>$cookie) if $cookie;
1571 return $self->header((map {$self->unescapeHTML($_)} @o),@unescaped);
54310121 1572}
1573END_OF_FUNC
1574
1575
1576#### Method: start_html
1577# Canned HTML header
1578#
1579# Parameters:
1580# $title -> (optional) The title for this HTML document (-title)
1581# $author -> (optional) e-mail address of the author (-author)
1582# $base -> (optional) if set to true, will enter the BASE address of this document
1583# for resolving relative references (-base)
1584# $xbase -> (optional) alternative base at some remote location (-xbase)
1585# $target -> (optional) target window to load all links into (-target)
1586# $script -> (option) Javascript code (-script)
47e3cabd 1587# $no_script -> (option) Javascript <noscript> tag (-noscript)
54310121 1588# $meta -> (optional) Meta information tags
3acbd4f5 1589# $head -> (optional) any other elements you'd like to incorporate into the <head> tag
7d37aa8e
LS
1590# (a scalar or array ref)
1591# $style -> (optional) reference to an external style sheet
54310121 1592# @other -> (optional) any other named parameters you'd like to incorporate into
3acbd4f5 1593# the <body> tag.
54310121 1594####
1595'start_html' => <<'END_OF_FUNC',
1596sub start_html {
1597 my($self,@p) = &self_or_default(@_);
ac734d8b 1598 my($title,$author,$base,$xbase,$script,$noscript,
29ddc2a4
RGS
1599 $target,$meta,$head,$style,$dtd,$lang,$encoding,$declare_xml,@other) =
1600 rearrange([TITLE,AUTHOR,BASE,XBASE,SCRIPT,NOSCRIPT,TARGET,
1601 META,HEAD,STYLE,DTD,LANG,ENCODING,DECLARE_XML],@p);
1602
1603 $self->element_id(0);
1604 $self->element_tab(0);
ac734d8b 1605
55b5d700 1606 $encoding = lc($self->charset) unless defined $encoding;
54310121 1607
13548fdf 1608 # Need to sort out the DTD before it's okay to call escapeHTML().
ba056755 1609 my(@result,$xml_dtd);
3d1a2ec4 1610 if ($dtd) {
6b4ac661 1611 if (defined(ref($dtd)) and (ref($dtd) eq 'ARRAY')) {
3d1a2ec4
GS
1612 $dtd = $DEFAULT_DTD unless $dtd->[0] =~ m|^-//|;
1613 } else {
1614 $dtd = $DEFAULT_DTD unless $dtd =~ m|^-//|;
1615 }
1616 } else {
6b4ac661 1617 $dtd = $XHTML ? XHTML_DTD : $DEFAULT_DTD;
3d1a2ec4 1618 }
ba056755
JH
1619
1620 $xml_dtd++ if ref($dtd) eq 'ARRAY' && $dtd->[0] =~ /\bXHTML\b/i;
1621 $xml_dtd++ if ref($dtd) eq '' && $dtd =~ /\bXHTML\b/i;
29ddc2a4 1622 push @result,qq(<?xml version="1.0" encoding="$encoding"?>) if $xml_dtd && $declare_xml;
ba056755 1623
3d1a2ec4 1624 if (ref($dtd) && ref($dtd) eq 'ARRAY') {
b2d0d414 1625 push(@result,qq(<!DOCTYPE html\n\tPUBLIC "$dtd->[0]"\n\t "$dtd->[1]">));
13548fdf 1626 $DTD_PUBLIC_IDENTIFIER = $dtd->[0];
3d1a2ec4 1627 } else {
03b9648d 1628 push(@result,qq(<!DOCTYPE html\n\tPUBLIC "$dtd">));
13548fdf
RGS
1629 $DTD_PUBLIC_IDENTIFIER = $dtd;
1630 }
1631
1632 # Now that we know whether we're using the HTML 3.2 DTD or not, it's okay to
1633 # call escapeHTML(). Strangely enough, the title needs to be escaped as
1634 # HTML while the author needs to be escaped as a URL.
1635 $title = $self->escapeHTML($title || 'Untitled Document');
1636 $author = $self->escape($author);
1637
1638 if ($DTD_PUBLIC_IDENTIFIER =~ /[^X]HTML (2\.0|3\.2)/i) {
1639 $lang = "" unless defined $lang;
1640 $XHTML = 0;
3d1a2ec4 1641 }
13548fdf
RGS
1642 else {
1643 $lang = 'en-US' unless defined $lang;
1644 }
1645
29ddc2a4
RGS
1646 my $lang_bits = $lang ne '' ? qq( lang="$lang" xml:lang="$lang") : '';
1647 my $meta_bits = qq(<meta http-equiv="Content-Type" content="text/html; charset=$encoding" />)
1648 if $XHTML && $encoding && !$declare_xml;
1649
1650 push(@result,$XHTML ? qq(<html xmlns="http://www.w3.org/1999/xhtml"$lang_bits>\n<head>\n<title>$title</title>)
1651 : ($lang ? qq(<html lang="$lang">) : "<html>")
8f3ccfa2 1652 . "<head><title>$title</title>");
6b4ac661
JH
1653 if (defined $author) {
1654 push(@result,$XHTML ? "<link rev=\"made\" href=\"mailto:$author\" />"
29ddc2a4 1655 : "<link rev=\"made\" href=\"mailto:$author\">");
6b4ac661 1656 }
54310121 1657
1658 if ($base || $xbase || $target) {
424ec8fa 1659 my $href = $xbase || $self->url('-path'=>1);
6b4ac661
JH
1660 my $t = $target ? qq/ target="$target"/ : '';
1661 push(@result,$XHTML ? qq(<base href="$href"$t />) : qq(<base href="$href"$t>));
54310121 1662 }
1663
1664 if ($meta && ref($meta) && (ref($meta) eq 'HASH')) {
6b4ac661
JH
1665 foreach (keys %$meta) { push(@result,$XHTML ? qq(<meta name="$_" content="$meta->{$_}" />)
1666 : qq(<meta name="$_" content="$meta->{$_}">)); }
54310121 1667 }
7d37aa8e 1668
e0ef849f
SP
1669 my $meta_bits_set = 0;
1670 if( $head ) {
1671 if( ref $head ) {
1672 push @result, @$head;
1673 $meta_bits_set = 1 if grep { /http-equiv=["']Content-Type/i }@$head;
1674 }
1675 else {
1676 push @result, $head;
1677 $meta_bits_set = 1 if $head =~ /http-equiv=["']Content-Type/i;
1678 }
1679 }
7d37aa8e 1680
424ec8fa 1681 # handle the infrequently-used -style and -script parameters
13548fdf 1682 push(@result,$self->_style($style)) if defined $style;
424ec8fa 1683 push(@result,$self->_script($script)) if defined $script;
e0ef849f 1684 push(@result,$meta_bits) if defined $meta_bits and !$meta_bits_set;
424ec8fa
GS
1685
1686 # handle -noscript parameter
1687 push(@result,<<END) if $noscript;
6b4ac661 1688<noscript>
424ec8fa 1689$noscript
6b4ac661 1690</noscript>
424ec8fa
GS
1691END
1692 ;
1693 my($other) = @other ? " @other" : '';
29ddc2a4 1694 push(@result,"</head>\n<body$other>\n");
424ec8fa
GS
1695 return join("\n",@result);
1696}
1697END_OF_FUNC
1698
1699### Method: _style
1700# internal method for generating a CSS style section
1701####
1702'_style' => <<'END_OF_FUNC',
1703sub _style {
1704 my ($self,$style) = @_;
1705 my (@result);
8869a4b7 1706
424ec8fa 1707 my $type = 'text/css';
0664a57d 1708 my $rel = 'stylesheet';
a3b3a725 1709
8869a4b7 1710
a3b3a725
JH
1711 my $cdata_start = $XHTML ? "\n<!--/* <![CDATA[ */" : "\n<!-- ";
1712 my $cdata_end = $XHTML ? "\n/* ]]> */-->\n" : " -->\n";
1713
13548fdf 1714 my @s = ref($style) eq 'ARRAY' ? @$style : $style;
bb8b3399 1715 my $other = '';
13548fdf
RGS
1716
1717 for my $s (@s) {
1718 if (ref($s)) {
0664a57d
SP
1719 my($src,$code,$verbatim,$stype,$alternate,$foo,@other) =
1720 rearrange([qw(SRC CODE VERBATIM TYPE ALTERNATE FOO)],
13548fdf
RGS
1721 ('-foo'=>'bar',
1722 ref($s) eq 'ARRAY' ? @$s : %$s));
8869a4b7
SP
1723 my $type = defined $stype ? $stype : 'text/css';
1724 my $rel = $alternate ? 'alternate stylesheet' : 'stylesheet';
bb8b3399 1725 $other = "@other" if @other;
13548fdf
RGS
1726
1727 if (ref($src) eq "ARRAY") # Check to see if the $src variable is an array reference
1728 { # If it is, push a LINK tag for each one
1729 foreach $src (@$src)
1730 {
0664a57d
SP
1731 push(@result,$XHTML ? qq(<link rel="$rel" type="$type" href="$src" $other/>)
1732 : qq(<link rel="$rel" type="$type" href="$src"$other>)) if $src;
13548fdf 1733 }
6b4ac661 1734 }
13548fdf
RGS
1735 else
1736 { # Otherwise, push the single -src, if it exists.
0664a57d
SP
1737 push(@result,$XHTML ? qq(<link rel="$rel" type="$type" href="$src" $other/>)
1738 : qq(<link rel="$rel" type="$type" href="$src"$other>)
13548fdf
RGS
1739 ) if $src;
1740 }
1741 if ($verbatim) {
1742 my @v = ref($verbatim) eq 'ARRAY' ? @$verbatim : $verbatim;
1743 push(@result, "<style type=\"text/css\">\n$_\n</style>") foreach @v;
1744 }
1745 my @c = ref($code) eq 'ARRAY' ? @$code : $code if $code;
1746 push(@result,style({'type'=>$type},"$cdata_start\n$_\n$cdata_end")) foreach @c;
1747
1748 } else {
1749 my $src = $s;
0664a57d
SP
1750 push(@result,$XHTML ? qq(<link rel="$rel" type="$type" href="$src" $other/>)
1751 : qq(<link rel="$rel" type="$type" href="$src"$other>));
13548fdf 1752 }
7d37aa8e 1753 }
424ec8fa
GS
1754 @result;
1755}
1756END_OF_FUNC
1757
424ec8fa
GS
1758'_script' => <<'END_OF_FUNC',
1759sub _script {
1760 my ($self,$script) = @_;
1761 my (@result);
a3b3a725 1762
424ec8fa
GS
1763 my (@scripts) = ref($script) eq 'ARRAY' ? @$script : ($script);
1764 foreach $script (@scripts) {
7d37aa8e
LS
1765 my($src,$code,$language);
1766 if (ref($script)) { # script is a hash
8869a4b7
SP
1767 ($src,$code,$type) =
1768 rearrange(['SRC','CODE',['LANGUAGE','TYPE']],
7d37aa8e 1769 '-foo'=>'bar', # a trick to allow the '-' to be omitted
3538e1d5 1770 ref($script) eq 'ARRAY' ? @$script : %$script);
8869a4b7
SP
1771 $type ||= 'text/javascript';
1772 unless ($type =~ m!\w+/\w+!) {
1773 $type =~ s/[\d.]+$//;
1774 $type = "text/$type";
3d1a2ec4 1775 }
7d37aa8e 1776 } else {
8869a4b7 1777 ($src,$code,$type) = ('',$script, 'text/javascript');
7d37aa8e 1778 }
a3b3a725
JH
1779
1780 my $comment = '//'; # javascript by default
1781 $comment = '#' if $type=~/perl|tcl/i;
1782 $comment = "'" if $type=~/vbscript/i;
1783
58129083
JH
1784 my ($cdata_start,$cdata_end);
1785 if ($XHTML) {
1786 $cdata_start = "$comment<![CDATA[\n";
1787 $cdata_end .= "\n$comment]]>";
1788 } else {
1789 $cdata_start = "\n<!-- Hide script\n";
1790 $cdata_end = $comment;
1791 $cdata_end .= " End script hiding -->\n";
1792 }
1793 my(@satts);
1794 push(@satts,'src'=>$src) if $src;
58129083 1795 push(@satts,'type'=>$type);
29ddc2a4
RGS
1796 $code = $cdata_start . $code . $cdata_end if defined $code;
1797 push(@result,$self->script({@satts},$code || ''));
7d37aa8e 1798 }
424ec8fa 1799 @result;
54310121 1800}
1801END_OF_FUNC
1802
54310121 1803#### Method: end_html
1804# End an HTML document.
3acbd4f5 1805# Trivial method for completeness. Just returns "</body>"
54310121 1806####
1807'end_html' => <<'END_OF_FUNC',
1808sub end_html {
29ddc2a4 1809 return "\n</body>\n</html>";
54310121 1810}
1811END_OF_FUNC
1812
1813
1814################################
1815# METHODS USED IN BUILDING FORMS
1816################################
1817
1818#### Method: isindex
1819# Just prints out the isindex tag.
1820# Parameters:
1821# $action -> optional URL of script to run
1822# Returns:
188ba755 1823# A string containing a <isindex> tag
54310121 1824'isindex' => <<'END_OF_FUNC',
1825sub isindex {
1826 my($self,@p) = self_or_default(@_);
3d1a2ec4 1827 my($action,@other) = rearrange([ACTION],@p);
188ba755 1828 $action = qq/ action="$action"/ if $action;
54310121 1829 my($other) = @other ? " @other" : '';
188ba755 1830 return $XHTML ? "<isindex$action$other />" : "<isindex$action$other>";
54310121 1831}
1832END_OF_FUNC
1833
1834
1835#### Method: startform
1836# Start a form
1837# Parameters:
1838# $method -> optional submission method to use (GET or POST)
1839# $action -> optional URL of script to run
1840# $enctype ->encoding to use (URL_ENCODED or MULTIPART)
1841'startform' => <<'END_OF_FUNC',
1842sub startform {
1843 my($self,@p) = self_or_default(@_);
1844
1845 my($method,$action,$enctype,@other) =
3d1a2ec4 1846 rearrange([METHOD,ACTION,ENCTYPE],@p);
54310121 1847
8c32f149 1848 $method = $self->escapeHTML(lc($method || 'post'));
13548fdf
RGS
1849 $enctype = $self->escapeHTML($enctype || &URL_ENCODED);
1850 if (defined $action) {
1851 $action = $self->escapeHTML($action);
1852 }
1853 else {
0664a57d 1854 $action = $self->escapeHTML($self->request_uri || $self->self_url);
03b9648d
JH
1855 }
1856 $action = qq(action="$action");
54310121 1857 my($other) = @other ? " @other" : '';
1858 $self->{'.parametersToAdd'}={};
6b4ac661 1859 return qq/<form method="$method" $action enctype="$enctype"$other>\n/;
54310121 1860}
1861END_OF_FUNC
1862
1863
1864#### Method: start_form
1865# synonym for startform
1866'start_form' => <<'END_OF_FUNC',
1867sub start_form {
29ddc2a4 1868 $XHTML ? &start_multipart_form : &startform;
54310121 1869}
1870END_OF_FUNC
1871
71f3e297
JH
1872'end_multipart_form' => <<'END_OF_FUNC',
1873sub end_multipart_form {
1874 &endform;
1875}
1876END_OF_FUNC
54310121 1877
1878#### Method: start_multipart_form
1879# synonym for startform
1880'start_multipart_form' => <<'END_OF_FUNC',
1881sub start_multipart_form {
1882 my($self,@p) = self_or_default(@_);
0a9bdad4 1883 if (defined($p[0]) && substr($p[0],0,1) eq '-') {
adb86593 1884 return $self->startform(-enctype=>&MULTIPART,@p);
54310121 1885 } else {
1886 my($method,$action,@other) =
3d1a2ec4 1887 rearrange([METHOD,ACTION],@p);
54310121 1888 return $self->startform($method,$action,&MULTIPART,@other);
1889 }
1890}
1891END_OF_FUNC
1892
1893
1894#### Method: endform
1895# End a form
1896'endform' => <<'END_OF_FUNC',
1897sub endform {
0a9bdad4 1898 my($self,@p) = self_or_default(@_);
3d1a2ec4 1899 if ( $NOSTICKY ) {
6b4ac661 1900 return wantarray ? ("</form>") : "\n</form>";
3d1a2ec4 1901 } else {
0a9bdad4
SP
1902 if (my @fields = $self->get_fields) {
1903 return wantarray ? ("<div>",@fields,"</div>","</form>")
1904 : "<div>".(join '',@fields)."</div>\n</form>";
1905 } else {
1906 return "</form>";
1907 }
3d1a2ec4 1908 }
54310121 1909}
1910END_OF_FUNC
1911
1912
424ec8fa
GS
1913'_textfield' => <<'END_OF_FUNC',
1914sub _textfield {
1915 my($self,$tag,@p) = self_or_default(@_);
29ddc2a4
RGS
1916 my($name,$default,$size,$maxlength,$override,$tabindex,@other) =
1917 rearrange([NAME,[DEFAULT,VALUE,VALUES],SIZE,MAXLENGTH,[OVERRIDE,FORCE],TABINDEX],@p);
424ec8fa
GS
1918
1919 my $current = $override ? $default :
1920 (defined($self->param($name)) ? $self->param($name) : $default);
1921
a3b3a725 1922 $current = defined($current) ? $self->escapeHTML($current,1) : '';
424ec8fa 1923 $name = defined($name) ? $self->escapeHTML($name) : '';
ba056755
JH
1924 my($s) = defined($size) ? qq/ size="$size"/ : '';
1925 my($m) = defined($maxlength) ? qq/ maxlength="$maxlength"/ : '';
71f3e297
JH
1926 my($other) = @other ? " @other" : '';
1927 # this entered at cristy's request to fix problems with file upload fields
1928 # and WebTV -- not sure it won't break stuff
6b4ac661 1929 my($value) = $current ne '' ? qq(value="$current") : '';
29ddc2a4 1930 $tabindex = $self->element_tab($tabindex);
0a9bdad4 1931 return $XHTML ? qq(<input type="$tag" name="$name" $tabindex$value$s$m$other />)
b2d0d414 1932 : qq(<input type="$tag" name="$name" $value$s$m$other>);
424ec8fa
GS
1933}
1934END_OF_FUNC
1935
54310121 1936#### Method: textfield
1937# Parameters:
1938# $name -> Name of the text field
1939# $default -> Optional default value of the field if not
1940# already defined.
1941# $size -> Optional width of field in characaters.
1942# $maxlength -> Optional maximum number of characters.
1943# Returns:
188ba755 1944# A string containing a <input type="text"> field
54310121 1945#
1946'textfield' => <<'END_OF_FUNC',
1947sub textfield {
1948 my($self,@p) = self_or_default(@_);
424ec8fa 1949 $self->_textfield('text',@p);
54310121 1950}
1951END_OF_FUNC
1952
1953
1954#### Method: filefield
1955# Parameters:
1956# $name -> Name of the file upload field
1957# $size -> Optional width of field in characaters.
1958# $maxlength -> Optional maximum number of characters.
1959# Returns:
188ba755 1960# A string containing a <input type="file"> field
54310121 1961#
1962'filefield' => <<'END_OF_FUNC',
1963sub filefield {
1964 my($self,@p) = self_or_default(@_);
424ec8fa 1965 $self->_textfield('file',@p);
54310121 1966}
1967END_OF_FUNC
1968
1969
1970#### Method: password
1971# Create a "secret password" entry field
1972# Parameters:
1973# $name -> Name of the field
1974# $default -> Optional default value of the field if not
1975# already defined.
1976# $size -> Optional width of field in characters.
1977# $maxlength -> Optional maximum characters that can be entered.
1978# Returns:
188ba755 1979# A string containing a <input type="password"> field
54310121 1980#
1981'password_field' => <<'END_OF_FUNC',
1982sub password_field {
1983 my ($self,@p) = self_or_default(@_);
424ec8fa 1984 $self->_textfield('password',@p);
54310121 1985}
1986END_OF_FUNC
1987
54310121 1988#### Method: textarea
1989# Parameters:
1990# $name -> Name of the text field
1991# $default -> Optional default value of the field if not
1992# already defined.
1993# $rows -> Optional number of rows in text area
1994# $columns -> Optional number of columns in text area
1995# Returns:
3acbd4f5 1996# A string containing a <textarea></textarea> tag
54310121 1997#
1998'textarea' => <<'END_OF_FUNC',
1999sub textarea {
2000 my($self,@p) = self_or_default(@_);
29ddc2a4
RGS
2001 my($name,$default,$rows,$cols,$override,$tabindex,@other) =
2002 rearrange([NAME,[DEFAULT,VALUE],ROWS,[COLS,COLUMNS],[OVERRIDE,FORCE],TABINDEX],@p);
54310121 2003
2004 my($current)= $override ? $default :
2005 (defined($self->param($name)) ? $self->param($name) : $default);
2006
2007 $name = defined($name) ? $self->escapeHTML($name) : '';
2008 $current = defined($current) ? $self->escapeHTML($current) : '';
3acbd4f5
JH
2009 my($r) = $rows ? qq/ rows="$rows"/ : '';
2010 my($c) = $cols ? qq/ cols="$cols"/ : '';
54310121 2011 my($other) = @other ? " @other" : '';
29ddc2a4 2012 $tabindex = $self->element_tab($tabindex);
0a9bdad4 2013 return qq{<textarea name="$name" $tabindex$r$c$other>$current</textarea>};
54310121 2014}
2015END_OF_FUNC
2016
2017
2018#### Method: button
2019# Create a javascript button.
2020# Parameters:
2021# $name -> (optional) Name for the button. (-name)
2022# $value -> (optional) Value of the button when selected (and visible name) (-value)
2023# $onclick -> (optional) Text of the JavaScript to run when the button is
2024# clicked.
2025# Returns:
188ba755 2026# A string containing a <input type="button"> tag
54310121 2027####
2028'button' => <<'END_OF_FUNC',
2029sub button {
2030 my($self,@p) = self_or_default(@_);
2031
29ddc2a4
RGS
2032 my($label,$value,$script,$tabindex,@other) = rearrange([NAME,[VALUE,LABEL],
2033 [ONCLICK,SCRIPT],TABINDEX],@p);
54310121 2034
2035 $label=$self->escapeHTML($label);
a3b3a725 2036 $value=$self->escapeHTML($value,1);
54310121 2037 $script=$self->escapeHTML($script);
2038
2039 my($name) = '';
ba056755 2040 $name = qq/ name="$label"/ if $label;
54310121 2041 $value = $value || $label;
2042 my($val) = '';
6b4ac661
JH
2043 $val = qq/ value="$value"/ if $value;
2044 $script = qq/ onclick="$script"/ if $script;
54310121 2045 my($other) = @other ? " @other" : '';
29ddc2a4 2046 $tabindex = $self->element_tab($tabindex);
0a9bdad4 2047 return $XHTML ? qq(<input type="button" $tabindex$name$val$script$other />)
b2d0d414 2048 : qq(<input type="button"$name$val$script$other>);
54310121 2049}
2050END_OF_FUNC
2051
2052
2053#### Method: submit
2054# Create a "submit query" button.
2055# Parameters:
2056# $name -> (optional) Name for the button.
2057# $value -> (optional) Value of the button when selected (also doubles as label).
2058# $label -> (optional) Label printed on the button(also doubles as the value).
2059# Returns:
188ba755 2060# A string containing a <input type="submit"> tag
54310121 2061####
2062'submit' => <<'END_OF_FUNC',
2063sub submit {
2064 my($self,@p) = self_or_default(@_);
2065
29ddc2a4 2066 my($label,$value,$tabindex,@other) = rearrange([NAME,[VALUE,LABEL],TABINDEX],@p);
54310121 2067
2068 $label=$self->escapeHTML($label);
a3b3a725 2069 $value=$self->escapeHTML($value,1);
54310121 2070
0a9bdad4
SP
2071 my $name = $NOSTICKY ? '' : 'name=".submit" ';
2072 $name = qq/name="$label" / if defined($label);
424ec8fa 2073 $value = defined($value) ? $value : $label;
8f3ccfa2 2074 my $val = '';
0a9bdad4 2075 $val = qq/value="$value" / if defined($value);
29ddc2a4 2076 $tabindex = $self->element_tab($tabindex);
0a9bdad4
SP
2077 my($other) = @other ? "@other " : '';
2078 return $XHTML ? qq(<input type="submit" $tabindex$name$val$other/>)
2079 : qq(<input type="submit" $name$val$other>);
54310121 2080}
2081END_OF_FUNC
2082
2083
2084#### Method: reset
2085# Create a "reset" button.
2086# Parameters:
2087# $name -> (optional) Name for the button.
2088# Returns:
188ba755 2089# A string containing a <input type="reset"> tag
54310121 2090####
2091'reset' => <<'END_OF_FUNC',
2092sub reset {
2093 my($self,@p) = self_or_default(@_);
29ddc2a4 2094 my($label,$value,$tabindex,@other) = rearrange(['NAME',['VALUE','LABEL'],TABINDEX],@p);
54310121 2095 $label=$self->escapeHTML($label);
8f3ccfa2
JH
2096 $value=$self->escapeHTML($value,1);
2097 my ($name) = ' name=".reset"';
2098 $name = qq/ name="$label"/ if defined($label);
2099 $value = defined($value) ? $value : $label;
2100 my($val) = '';
2101 $val = qq/ value="$value"/ if defined($value);
54310121 2102 my($other) = @other ? " @other" : '';
29ddc2a4 2103 $tabindex = $self->element_tab($tabindex);
0a9bdad4 2104 return $XHTML ? qq(<input type="reset" $tabindex$name$val$other />)
8f3ccfa2 2105 : qq(<input type="reset"$name$val$other>);
54310121 2106}
2107END_OF_FUNC
2108
2109
2110#### Method: defaults
2111# Create a "defaults" button.
2112# Parameters:
2113# $name -> (optional) Name for the button.
2114# Returns:
188ba755 2115# A string containing a <input type="submit" name=".defaults"> tag
54310121 2116#
2117# Note: this button has a special meaning to the initialization script,
2118# and tells it to ERASE the current query string so that your defaults
2119# are used again!
2120####
2121'defaults' => <<'END_OF_FUNC',
2122sub defaults {
2123 my($self,@p) = self_or_default(@_);
2124
29ddc2a4 2125 my($label,$tabindex,@other) = rearrange([[NAME,VALUE],TABINDEX],@p);
54310121 2126
a3b3a725 2127 $label=$self->escapeHTML($label,1);
54310121 2128 $label = $label || "Defaults";
6b4ac661 2129 my($value) = qq/ value="$label"/;
54310121 2130 my($other) = @other ? " @other" : '';
29ddc2a4 2131 $tabindex = $self->element_tab($tabindex);
0a9bdad4 2132 return $XHTML ? qq(<input type="submit" name=".defaults" $tabindex$value$other />)
6b4ac661 2133 : qq/<input type="submit" NAME=".defaults"$value$other>/;
54310121 2134}
2135END_OF_FUNC
2136
2137
424ec8fa
GS
2138#### Method: comment
2139# Create an HTML <!-- comment -->
2140# Parameters: a string
2141'comment' => <<'END_OF_FUNC',
2142sub comment {
2143 my($self,@p) = self_or_CGI(@_);
2144 return "<!-- @p -->";
2145}
2146END_OF_FUNC
2147
54310121 2148#### Method: checkbox
2149# Create a checkbox that is not logically linked to any others.
2150# The field value is "on" when the button is checked.
2151# Parameters:
2152# $name -> Name of the checkbox
2153# $checked -> (optional) turned on by default if true
2154# $value -> (optional) value of the checkbox, 'on' by default
2155# $label -> (optional) a user-readable label printed next to the box.
2156# Otherwise the checkbox name is used.
2157# Returns:
188ba755 2158# A string containing a <input type="checkbox"> field
54310121 2159####
2160'checkbox' => <<'END_OF_FUNC',
2161sub checkbox {
2162 my($self,@p) = self_or_default(@_);
2163
bb8b3399
SP
2164 my($name,$checked,$value,$label,$labelattributes,$override,$tabindex,@other) =
2165 rearrange([NAME,[CHECKED,SELECTED,ON],VALUE,LABEL,LABELATTRIBUTES,
2166 [OVERRIDE,FORCE],TABINDEX],@p);
29ddc2a4 2167
424ec8fa
GS
2168 $value = defined $value ? $value : 'on';
2169
2170 if (!$override && ($self->{'.fieldnames'}->{$name} ||
2171 defined $self->param($name))) {
3acbd4f5 2172 $checked = grep($_ eq $value,$self->param($name)) ? $self->_checked(1) : '';
54310121 2173 } else {
3acbd4f5 2174 $checked = $self->_checked($checked);
54310121 2175 }
2176 my($the_label) = defined $label ? $label : $name;
2177 $name = $self->escapeHTML($name);
a3b3a725 2178 $value = $self->escapeHTML($value,1);
54310121 2179 $the_label = $self->escapeHTML($the_label);
0a9bdad4 2180 my($other) = @other ? "@other " : '';
29ddc2a4 2181 $tabindex = $self->element_tab($tabindex);
54310121 2182 $self->register_parameter($name);
bb8b3399
SP
2183 return $XHTML ? CGI::label($labelattributes,
2184 qq{<input type="checkbox" name="$name" value="$value" $tabindex$checked$other/>$the_label})
6b4ac661 2185 : qq{<input type="checkbox" name="$name" value="$value"$checked$other>$the_label};
54310121 2186}
2187END_OF_FUNC
2188
2189
54310121 2190
54310121 2191# Escape HTML -- used internally
2192'escapeHTML' => <<'END_OF_FUNC',
2193sub escapeHTML {
ac734d8b
JH
2194 # hack to work around earlier hacks
2195 push @_,$_[0] if @_==1 && $_[0] eq 'CGI';
a3b3a725 2196 my ($self,$toencode,$newlinestoo) = CGI::self_or_default(@_);
6b4ac661 2197 return undef unless defined($toencode);
188ba755 2198 return $toencode if ref($self) && !$self->{'escape'};
6b4ac661
JH
2199 $toencode =~ s{&}{&amp;}gso;
2200 $toencode =~ s{<}{&lt;}gso;
2201 $toencode =~ s{>}{&gt;}gso;
13548fdf
RGS
2202 if ($DTD_PUBLIC_IDENTIFIER =~ /[^X]HTML 3\.2/i) {
2203 # $quot; was accidentally omitted from the HTML 3.2 DTD -- see
2204 # <http://validator.w3.org/docs/errors.html#bad-entity> /
2205 # <http://lists.w3.org/Archives/Public/www-html/1997Mar/0003.html>.
2206 $toencode =~ s{"}{&#34;}gso;
2207 }
2208 else {
2209 $toencode =~ s{"}{&quot;}gso;
2210 }
89cc8928
JH
2211 # Handle bug in some browsers with Latin charsets
2212 if ($self->{'.charset'} &&
2213 (uc($self->{'.charset'}) eq 'ISO-8859-1' ||
2214 uc($self->{'.charset'}) eq 'WINDOWS-1252'))
2215 {
ba056755 2216 $toencode =~ s{'}{&#39;}gso;
188ba755
JH
2217 $toencode =~ s{\x8b}{&#8249;}gso;
2218 $toencode =~ s{\x9b}{&#8250;}gso;
a3b3a725
JH
2219 if (defined $newlinestoo && $newlinestoo) {
2220 $toencode =~ s{\012}{&#10;}gso;
2221 $toencode =~ s{\015}{&#13;}gso;
2222 }
2223 }
6b4ac661 2224 return $toencode;
54310121 2225}
2226END_OF_FUNC
2227
424ec8fa
GS
2228# unescape HTML -- used internally
2229'unescapeHTML' => <<'END_OF_FUNC',
2230sub unescapeHTML {
efc8e943
NC
2231 # hack to work around earlier hacks
2232 push @_,$_[0] if @_==1 && $_[0] eq 'CGI';
6b4ac661 2233 my ($self,$string) = CGI::self_or_default(@_);
424ec8fa 2234 return undef unless defined($string);
a3b3a725
JH
2235 my $latin = defined $self->{'.charset'} ? $self->{'.charset'} =~ /^(ISO-8859-1|WINDOWS-1252)$/i
2236 : 1;
71f3e297
JH
2237 # thanks to Randal Schwartz for the correct solution to this one
2238 $string=~ s[&(.*?);]{
2239 local $_ = $1;
2240 /^amp$/i ? "&" :
2241 /^quot$/i ? '"' :
2242 /^gt$/i ? ">" :
2243 /^lt$/i ? "<" :
6b4ac661
JH
2244 /^#(\d+)$/ && $latin ? chr($1) :
2245 /^#x([0-9a-f]+)$/i && $latin ? chr(hex($1)) :
71f3e297
JH
2246 $_
2247 }gex;
424ec8fa
GS
2248 return $string;
2249}
2250END_OF_FUNC
54310121 2251
2252# Internal procedure - don't use
2253'_tableize' => <<'END_OF_FUNC',
2254sub _tableize {
2255 my($rows,$columns,$rowheaders,$colheaders,@elements) = @_;
29ddc2a4
RGS
2256 my @rowheaders = $rowheaders ? @$rowheaders : ();
2257 my @colheaders = $colheaders ? @$colheaders : ();
54310121 2258 my($result);
2259
424ec8fa
GS
2260 if (defined($columns)) {
2261 $rows = int(0.99 + @elements/$columns) unless defined($rows);
2262 }
2263 if (defined($rows)) {
2264 $columns = int(0.99 + @elements/$rows) unless defined($columns);
2265 }
29ddc2a4 2266
54310121 2267 # rearrange into a pretty table
6b4ac661 2268 $result = "<table>";
54310121 2269 my($row,$column);
29ddc2a4
RGS
2270 unshift(@colheaders,'') if @colheaders && @rowheaders;
2271 $result .= "<tr>" if @colheaders;
2272 foreach (@colheaders) {
6b4ac661 2273 $result .= "<th>$_</th>";
54310121 2274 }
2275 for ($row=0;$row<$rows;$row++) {
6b4ac661 2276 $result .= "<tr>";
29ddc2a4 2277 $result .= "<th>$rowheaders[$row]</th>" if @rowheaders;
54310121 2278 for ($column=0;$column<$columns;$column++) {
6b4ac661 2279 $result .= "<td>" . $elements[$column*$rows + $row] . "</td>"
424ec8fa 2280 if defined($elements[$column*$rows + $row]);
54310121 2281 }
6b4ac661 2282 $result .= "</tr>";
54310121 2283 }
6b4ac661 2284 $result .= "</table>";
54310121 2285 return $result;
2286}
2287END_OF_FUNC
2288
2289
2290#### Method: radio_group
2291# Create a list of logically-linked radio buttons.
2292# Parameters:
2293# $name -> Common name for all the buttons.
2294# $values -> A pointer to a regular array containing the
2295# values for each button in the group.
2296# $default -> (optional) Value of the button to turn on by default. Pass '-'
2297# to turn _nothing_ on.
2298# $linebreak -> (optional) Set to true to place linebreaks
2299# between the buttons.
2300# $labels -> (optional)
2301# A pointer to an associative array of labels to print next to each checkbox
2302# in the form $label{'value'}="Long explanatory label".
2303# Otherwise the provided values are used as the labels.
2304# Returns:
188ba755 2305# An ARRAY containing a series of <input type="radio"> fields
54310121 2306####
2307'radio_group' => <<'END_OF_FUNC',
2308sub radio_group {
2309 my($self,@p) = self_or_default(@_);
29ddc2a4
RGS
2310 $self->_box_group('radio',@p);
2311}
2312END_OF_FUNC
2313
2314#### Method: checkbox_group
2315# Create a list of logically-linked checkboxes.
2316# Parameters:
2317# $name -> Common name for all the check boxes
2318# $values -> A pointer to a regular array containing the
2319# values for each checkbox in the group.
2320# $defaults -> (optional)
2321# 1. If a pointer to a regular array of checkbox values,
2322# then this will be used to decide which
2323# checkboxes to turn on by default.
2324# 2. If a scalar, will be assumed to hold the
2325# value of a single checkbox in the group to turn on.
2326# $linebreak -> (optional) Set to true to place linebreaks
2327# between the buttons.
2328# $labels -> (optional)
2329# A pointer to an associative array of labels to print next to each checkbox
2330# in the form $label{'value'}="Long explanatory label".
2331# Otherwise the provided values are used as the labels.
2332# Returns:
2333# An ARRAY containing a series of <input type="checkbox"> fields
2334####
2335
2336'checkbox_group' => <<'END_OF_FUNC',
2337sub checkbox_group {
2338 my($self,@p) = self_or_default(@_);
2339 $self->_box_group('checkbox',@p);
2340}
2341END_OF_FUNC
54310121 2342
29ddc2a4
RGS
2343'_box_group' => <<'END_OF_FUNC',
2344sub _box_group {
2345 my $self = shift;
2346 my $box_type = shift;
2347
bb8b3399
SP
2348 my($name,$values,$defaults,$linebreak,$labels,$labelattributes,
2349 $attributes,$rows,$columns,$rowheaders,$colheaders,
8869a4b7 2350 $override,$nolabels,$tabindex,$disabled,@other) =
bb8b3399
SP
2351 rearrange([NAME,[VALUES,VALUE],[DEFAULT,DEFAULTS],LINEBREAK,LABELS,LABELATTRIBUTES,
2352 ATTRIBUTES,ROWS,[COLUMNS,COLS],[ROWHEADERS,ROWHEADER],[COLHEADERS,COLHEADER],
2353 [OVERRIDE,FORCE],NOLABELS,TABINDEX,DISABLED
2354 ],@_);
2355
54310121 2356
8869a4b7 2357 my($result,$checked,@elements,@values);
29ddc2a4 2358
424ec8fa 2359 @values = $self->_set_values_and_labels($values,\$labels,$name);
29ddc2a4 2360 my %checked = $self->previous_or_default($name,$defaults,$override);
424ec8fa 2361
71f3e297 2362 # If no check array is specified, check the first by default
29ddc2a4
RGS
2363 $checked{$values[0]}++ if $box_type eq 'radio' && !%checked;
2364
71f3e297
JH
2365 $name=$self->escapeHTML($name);
2366
29ddc2a4 2367 my %tabs = ();
0a9bdad4 2368 if ($TABINDEX && $tabindex) {
29ddc2a4
RGS
2369 if (!ref $tabindex) {
2370 $self->element_tab($tabindex);
2371 } elsif (ref $tabindex eq 'ARRAY') {
2372 %tabs = map {$_=>$self->element_tab} @$tabindex;
2373 } elsif (ref $tabindex eq 'HASH') {
2374 %tabs = %$tabindex;
2375 }
2376 }
2377 %tabs = map {$_=>$self->element_tab} @values unless %tabs;
0a9bdad4 2378 my $other = @other ? "@other " : '';
29ddc2a4 2379 my $radio_checked;
8869a4b7
SP
2380
2381 # for disabling groups of radio/checkbox buttons
2382 my %disabled;
2383 foreach (@{$disabled}) {
2384 $disabled{$_}=1;
2385 }
2386
54310121 2387 foreach (@values) {
8869a4b7
SP
2388 my $disable="";
2389 if ($disabled{$_}) {
2390 $disable="disabled='1'";
2391 }
2392
29ddc2a4
RGS
2393 my $checkit = $self->_checked($box_type eq 'radio' ? ($checked{$_} && !$radio_checked++)
2394 : $checked{$_});
6b4ac661
JH
2395 my($break);
2396 if ($linebreak) {
ba056755 2397 $break = $XHTML ? "<br />" : "<br>";
6b4ac661
JH
2398 }
2399 else {
ba056755 2400 $break = '';
6b4ac661 2401 }
54310121 2402 my($label)='';
2403 unless (defined($nolabels) && $nolabels) {
2404 $label = $_;
424ec8fa 2405 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
a3b3a725 2406 $label = $self->escapeHTML($label,1);
8869a4b7 2407 $label = "<span style=\"color:gray\">$label</span>" if $disabled{$_};
54310121 2408 }
29ddc2a4 2409 my $attribs = $self->_set_attributes($_, $attributes);
0a9bdad4 2410 my $tab = $tabs{$_};
54310121 2411 $_=$self->escapeHTML($_);
8869a4b7 2412
29ddc2a4
RGS
2413 if ($XHTML) {
2414 push @elements,
bb8b3399 2415 CGI::label($labelattributes,
8869a4b7 2416 qq(<input type="$box_type" name="$name" value="$_" $checkit$other$tab$attribs$disable/>$label)).${break};
29ddc2a4 2417 } else {
8869a4b7 2418 push(@elements,qq/<input type="$box_type" name="$name" value="$_"$checkit$other$tab$attribs$disable>${label}${break}/);
29ddc2a4 2419 }
54310121 2420 }
2421 $self->register_parameter($name);
29ddc2a4 2422 return wantarray ? @elements : "@elements"
424ec8fa 2423 unless defined($columns) || defined($rows);
54310121 2424 return _tableize($rows,$columns,$rowheaders,$colheaders,@elements);
2425}
2426END_OF_FUNC
2427
2428
2429#### Method: popup_menu
2430# Create a popup menu.
2431# Parameters:
2432# $name -> Name for all the menu
2433# $values -> A pointer to a regular array containing the
2434# text of each menu item.
2435# $default -> (optional) Default item to display
2436# $labels -> (optional)
2437# A pointer to an associative array of labels to print next to each checkbox
2438# in the form $label{'value'}="Long explanatory label".
2439# Otherwise the provided values are used as the labels.
2440# Returns:
2441# A string containing the definition of a popup menu.
2442####
2443'popup_menu' => <<'END_OF_FUNC',
2444sub popup_menu {
2445 my($self,@p) = self_or_default(@_);
2446
29ddc2a4 2447 my($name,$values,$default,$labels,$attributes,$override,$tabindex,@other) =
188ba755 2448 rearrange([NAME,[VALUES,VALUE],[DEFAULT,DEFAULTS],LABELS,
29ddc2a4 2449 ATTRIBUTES,[OVERRIDE,FORCE],TABINDEX],@p);
e0ef849f 2450 my($result,%selected);
54310121 2451
2452 if (!$override && defined($self->param($name))) {
e0ef849f
SP
2453 $selected{$self->param($name)}++;
2454 } elsif ($default) {
2455 %selected = map {$_=>1} ref($default) eq 'ARRAY'
2456 ? @$default
2457 : $default;
54310121 2458 }
2459 $name=$self->escapeHTML($name);
2460 my($other) = @other ? " @other" : '';
2461
424ec8fa
GS
2462 my(@values);
2463 @values = $self->_set_values_and_labels($values,\$labels,$name);
29ddc2a4 2464 $tabindex = $self->element_tab($tabindex);
0a9bdad4 2465 $result = qq/<select name="$name" $tabindex$other>\n/;
54310121 2466 foreach (@values) {
188ba755 2467 if (/<optgroup/) {
e0ef849f 2468 for my $v (split(/\n/)) {
188ba755 2469 my $selectit = $XHTML ? 'selected="selected"' : 'selected';
e0ef849f
SP
2470 for my $selected (keys %selected) {
2471 $v =~ s/(value="$selected")/$selectit $1/;
2472 }
2473 $result .= "$v\n";
188ba755
JH
2474 }
2475 }
2476 else {
e0ef849f
SP
2477 my $attribs = $self->_set_attributes($_, $attributes);
2478 my($selectit) = $self->_selected($selected{$_});
2479 my($label) = $_;
2480 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2481 my($value) = $self->escapeHTML($_);
2482 $label = $self->escapeHTML($label,1);
2483 $result .= "<option${attribs} ${selectit}value=\"$value\">$label</option>\n";
188ba755 2484 }
54310121 2485 }
2486
69c89ae7 2487 $result .= "</select>";
54310121 2488 return $result;
2489}
2490END_OF_FUNC
2491
2492
188ba755
JH
2493#### Method: optgroup
2494# Create a optgroup.
2495# Parameters:
2496# $name -> Label for the group
2497# $values -> A pointer to a regular array containing the
2498# values for each option line in the group.
2499# $labels -> (optional)
2500# A pointer to an associative array of labels to print next to each item
2501# in the form $label{'value'}="Long explanatory label".
2502# Otherwise the provided values are used as the labels.
2503# $labeled -> (optional)
2504# A true value indicates the value should be used as the label attribute
2505# in the option elements.
2506# The label attribute specifies the option label presented to the user.
2507# This defaults to the content of the <option> element, but the label
2508# attribute allows authors to more easily use optgroup without sacrificing
2509# compatibility with browsers that do not support option groups.
2510# $novals -> (optional)
2511# A true value indicates to suppress the val attribute in the option elements
2512# Returns:
2513# A string containing the definition of an option group.
2514####
2515'optgroup' => <<'END_OF_FUNC',
2516sub optgroup {
2517 my($self,@p) = self_or_default(@_);
2518 my($name,$values,$attributes,$labeled,$noval,$labels,@other)
2519 = rearrange([NAME,[VALUES,VALUE],ATTRIBUTES,LABELED,NOVALS,LABELS],@p);
2520
2521 my($result,@values);
2522 @values = $self->_set_values_and_labels($values,\$labels,$name,$labeled,$novals);
2523 my($other) = @other ? " @other" : '';
2524
2525 $name=$self->escapeHTML($name);
2526 $result = qq/<optgroup label="$name"$other>\n/;
2527 foreach (@values) {
2528 if (/<optgroup/) {
2529 foreach (split(/\n/)) {
2530 my $selectit = $XHTML ? 'selected="selected"' : 'selected';
2531 s/(value="$selected")/$selectit $1/ if defined $selected;
2532 $result .= "$_\n";
2533 }
2534 }
2535 else {
2536 my $attribs = $self->_set_attributes($_, $attributes);
2537 my($label) = $_;
2538 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2539 $label=$self->escapeHTML($label);
2540 my($value)=$self->escapeHTML($_,1);
2541 $result .= $labeled ? $novals ? "<option$attribs label=\"$value\">$label</option>\n"
2542 : "<option$attribs label=\"$value\" value=\"$value\">$label</option>\n"
2543 : $novals ? "<option$attribs>$label</option>\n"
2544 : "<option$attribs value=\"$value\">$label</option>\n";
2545 }
2546 }
2547 $result .= "</optgroup>";
2548 return $result;
2549}
2550END_OF_FUNC
2551
2552
54310121 2553#### Method: scrolling_list
2554# Create a scrolling list.
2555# Parameters:
2556# $name -> name for the list
2557# $values -> A pointer to a regular array containing the
2558# values for each option line in the list.
2559# $defaults -> (optional)
2560# 1. If a pointer to a regular array of options,
2561# then this will be used to decide which
2562# lines to turn on by default.
2563# 2. Otherwise holds the value of the single line to turn on.
2564# $size -> (optional) Size of the list.
2565# $multiple -> (optional) If set, allow multiple selections.
2566# $labels -> (optional)
2567# A pointer to an associative array of labels to print next to each checkbox
2568# in the form $label{'value'}="Long explanatory label".
2569# Otherwise the provided values are used as the labels.
2570# Returns:
2571# A string containing the definition of a scrolling list.
2572####
2573'scrolling_list' => <<'END_OF_FUNC',
2574sub scrolling_list {
2575 my($self,@p) = self_or_default(@_);
29ddc2a4 2576 my($name,$values,$defaults,$size,$multiple,$labels,$attributes,$override,$tabindex,@other)
3d1a2ec4 2577 = rearrange([NAME,[VALUES,VALUE],[DEFAULTS,DEFAULT],
29ddc2a4 2578 SIZE,MULTIPLE,LABELS,ATTRIBUTES,[OVERRIDE,FORCE],TABINDEX],@p);
54310121 2579
424ec8fa
GS
2580 my($result,@values);
2581 @values = $self->_set_values_and_labels($values,\$labels,$name);
2582
54310121 2583 $size = $size || scalar(@values);
2584
2585 my(%selected) = $self->previous_or_default($name,$defaults,$override);
86de2d7d 2586
ac734d8b 2587 my($is_multiple) = $multiple ? qq/ multiple="multiple"/ : '';
6b4ac661 2588 my($has_size) = $size ? qq/ size="$size"/: '';
54310121 2589 my($other) = @other ? " @other" : '';
2590
2591 $name=$self->escapeHTML($name);
29ddc2a4 2592 $tabindex = $self->element_tab($tabindex);
0a9bdad4 2593 $result = qq/<select name="$name" $tabindex$has_size$is_multiple$other>\n/;
54310121 2594 foreach (@values) {
3acbd4f5 2595 my($selectit) = $self->_selected($selected{$_});
54310121 2596 my($label) = $_;
424ec8fa 2597 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
54310121 2598 $label=$self->escapeHTML($label);
a3b3a725 2599 my($value)=$self->escapeHTML($_,1);
188ba755 2600 my $attribs = $self->_set_attributes($_, $attributes);
1f426928 2601 $result .= "<option ${selectit}${attribs}value=\"$value\">$label</option>\n";
54310121 2602 }
69c89ae7 2603 $result .= "</select>";
54310121 2604 $self->register_parameter($name);
2605 return $result;
2606}
2607END_OF_FUNC
2608
2609
2610#### Method: hidden
2611# Parameters:
2612# $name -> Name of the hidden field
2613# @default -> (optional) Initial values of field (may be an array)
2614# or
2615# $default->[initial values of field]
2616# Returns:
188ba755 2617# A string containing a <input type="hidden" name="name" value="value">
54310121 2618####
2619'hidden' => <<'END_OF_FUNC',
2620sub hidden {
2621 my($self,@p) = self_or_default(@_);
2622
2623 # this is the one place where we departed from our standard
2624 # calling scheme, so we have to special-case (darn)
2625 my(@result,@value);
2626 my($name,$default,$override,@other) =
3d1a2ec4 2627 rearrange([NAME,[DEFAULT,VALUE,VALUES],[OVERRIDE,FORCE]],@p);
54310121 2628
2629 my $do_override = 0;
3d1a2ec4 2630 if ( ref($p[0]) || substr($p[0],0,1) eq '-') {
54310121 2631 @value = ref($default) ? @{$default} : $default;
2632 $do_override = $override;
2633 } else {
2634 foreach ($default,$override,@other) {
2635 push(@value,$_) if defined($_);
2636 }
2637 }
2638
2639 # use previous values if override is not set
2640 my @prev = $self->param($name);
2641 @value = @prev if !$do_override && @prev;
2642
2643 $name=$self->escapeHTML($name);
2644 foreach (@value) {
a3b3a725 2645 $_ = defined($_) ? $self->escapeHTML($_,1) : '';
13548fdf
RGS
2646 push @result,$XHTML ? qq(<input type="hidden" name="$name" value="$_" @other />)
2647 : qq(<input type="hidden" name="$name" value="$_" @other>);
54310121 2648 }
2649 return wantarray ? @result : join('',@result);
2650}
2651END_OF_FUNC
2652
2653
2654#### Method: image_button
2655# Parameters:
2656# $name -> Name of the button
2657# $src -> URL of the image source
2658# $align -> Alignment style (TOP, BOTTOM or MIDDLE)
2659# Returns:
188ba755 2660# A string containing a <input type="image" name="name" src="url" align="alignment">
54310121 2661####
2662'image_button' => <<'END_OF_FUNC',
2663sub image_button {
2664 my($self,@p) = self_or_default(@_);
2665
2666 my($name,$src,$alignment,@other) =
3d1a2ec4 2667 rearrange([NAME,SRC,ALIGN],@p);
54310121 2668
0664a57d 2669 my($align) = $alignment ? " align=\L\"$alignment\"" : '';
54310121 2670 my($other) = @other ? " @other" : '';
2671 $name=$self->escapeHTML($name);
6b4ac661
JH
2672 return $XHTML ? qq(<input type="image" name="$name" src="$src"$align$other />)
2673 : qq/<input type="image" name="$name" src="$src"$align$other>/;
54310121 2674}
2675END_OF_FUNC
2676
2677
2678#### Method: self_url
2679# Returns a URL containing the current script and all its
2680# param/value pairs arranged as a query. You can use this
2681# to create a link that, when selected, will reinvoke the
2682# script with all its state information preserved.
2683####
2684'self_url' => <<'END_OF_FUNC',
2685sub self_url {
424ec8fa
GS
2686 my($self,@p) = self_or_default(@_);
2687 return $self->url('-path_info'=>1,'-query'=>1,'-full'=>1,@p);
54310121 2688}
2689END_OF_FUNC
2690
2691
2692# This is provided as a synonym to self_url() for people unfortunate
2693# enough to have incorporated it into their programs already!
2694'state' => <<'END_OF_FUNC',
2695sub state {
2696 &self_url;
2697}
2698END_OF_FUNC
2699
2700
2701#### Method: url
2702# Like self_url, but doesn't return the query string part of
2703# the URL.
2704####
2705'url' => <<'END_OF_FUNC',
2706sub url {
424ec8fa 2707 my($self,@p) = self_or_default(@_);
0a9bdad4
SP
2708 my ($relative,$absolute,$full,$path_info,$query,$base,$rewrite) =
2709 rearrange(['RELATIVE','ABSOLUTE','FULL',['PATH','PATH_INFO'],['QUERY','QUERY_STRING'],'BASE','REWRITE'],@p);
2710 my $url = '';
2371fea9 2711 $full++ if $base || !($relative || $absolute);
0a9bdad4 2712 $rewrite++ unless defined $rewrite;
424ec8fa 2713
0a9bdad4
SP
2714 my $path = $self->path_info;
2715 my $script_name = $self->script_name;
cb3b230c 2716 my $request_uri = unescape($self->request_uri) || '';
0a9bdad4
SP
2717 my $query_str = $self->query_string;
2718
8c32f149 2719 my $rewrite_in_use = $request_uri && $request_uri !~ /^\Q$script_name/;
0a9bdad4
SP
2720 undef $path if $rewrite_in_use && $rewrite; # path not valid when rewriting active
2721
2722 my $uri = $rewrite && $request_uri ? $request_uri : $script_name;
e1c70484
NC
2723 $uri =~ s/\?.*$//s; # remove query string
2724 $uri =~ s/\Q$ENV{PATH_INFO}\E$// if defined $ENV{PATH_INFO};
2725# $uri =~ s/\Q$path\E$// if defined $path; # remove path
d45d855d 2726
424ec8fa
GS
2727 if ($full) {
2728 my $protocol = $self->protocol();
2729 $url = "$protocol://";
2c454cbd
SP
2730 my $vh = http('x_forwarded_host') || http('host') || '';
2731 $vh =~ s/\:\d+$//; # some clients add the port number (incorrectly). Get rid of it.
424ec8fa
GS
2732 if ($vh) {
2733 $url .= $vh;
2734 } else {
2735 $url .= server_name();
424ec8fa 2736 }
8869a4b7
SP
2737 my $port = $self->server_port;
2738 $url .= ":" . $port
2739 unless (lc($protocol) eq 'http' && $port == 80)
2740 || (lc($protocol) eq 'https' && $port == 443);
03b9648d 2741 return $url if $base;
0a9bdad4 2742 $url .= $uri;
424ec8fa 2743 } elsif ($relative) {
cb3b230c 2744 ($url) = $uri =~ m!([^/]+)$!;
424ec8fa 2745 } elsif ($absolute) {
0a9bdad4 2746 $url = $uri;
424ec8fa 2747 }
03b9648d 2748
0a9bdad4
SP
2749 $url .= $path if $path_info and defined $path;
2750 $url .= "?$query_str" if $query and $query_str ne '';
c8d66bb3 2751 $url ||= '';
2371fea9 2752 $url =~ s/([^a-zA-Z0-9_.%;&?\/\\:+=~-])/sprintf("%%%02X",ord($1))/eg;
424ec8fa 2753 return $url;
54310121 2754}
2755
2756END_OF_FUNC
2757
2758#### Method: cookie
2759# Set or read a cookie from the specified name.
2760# Cookie can then be passed to header().
2761# Usual rules apply to the stickiness of -value.
2762# Parameters:
2763# -name -> name for this cookie (optional)
2764# -value -> value of this cookie (scalar, array or hash)
2765# -path -> paths for which this cookie is valid (optional)
2766# -domain -> internet domain in which this cookie is valid (optional)
2767# -secure -> if true, cookie only passed through secure channel (optional)
7d37aa8e 2768# -expires -> expiry date in format Wdy, DD-Mon-YYYY HH:MM:SS GMT (optional)
54310121 2769####
2770'cookie' => <<'END_OF_FUNC',
54310121 2771sub cookie {
2772 my($self,@p) = self_or_default(@_);
fc786e8b
SP
2773 my($name,$value,$path,$domain,$secure,$expires,$httponly) =
2774 rearrange([NAME,[VALUE,VALUES],PATH,DOMAIN,SECURE,EXPIRES,HTTPONLY],@p);
54310121 2775
424ec8fa 2776 require CGI::Cookie;
54310121 2777
2778 # if no value is supplied, then we retrieve the
2779 # value of the cookie, if any. For efficiency, we cache the parsed
424ec8fa
GS
2780 # cookies in our state variables.
2781 unless ( defined($value) ) {
2782 $self->{'.cookies'} = CGI::Cookie->fetch
2783 unless $self->{'.cookies'};
54310121 2784
2785 # If no name is supplied, then retrieve the names of all our cookies.
2786 return () unless $self->{'.cookies'};
424ec8fa
GS
2787 return keys %{$self->{'.cookies'}} unless $name;
2788 return () unless $self->{'.cookies'}->{$name};
2789 return $self->{'.cookies'}->{$name}->value if defined($name) && $name ne '';
54310121 2790 }
54310121 2791
424ec8fa 2792 # If we get here, we're creating a new cookie
ba056755 2793 return undef unless defined($name) && $name ne ''; # this is an error
54310121 2794
424ec8fa
GS
2795 my @param;
2796 push(@param,'-name'=>$name);
2797 push(@param,'-value'=>$value);
2798 push(@param,'-domain'=>$domain) if $domain;
2799 push(@param,'-path'=>$path) if $path;
2800 push(@param,'-expires'=>$expires) if $expires;
2801 push(@param,'-secure'=>$secure) if $secure;
fc786e8b 2802 push(@param,'-httponly'=>$httponly) if $httponly;
54310121 2803
6b4ac661 2804 return new CGI::Cookie(@param);
54310121 2805}
2806END_OF_FUNC
2807
424ec8fa
GS
2808'parse_keywordlist' => <<'END_OF_FUNC',
2809sub parse_keywordlist {
2810 my($self,$tosplit) = @_;
2811 $tosplit = unescape($tosplit); # unescape the keywords
2812 $tosplit=~tr/+/ /; # pluses to spaces
2813 my(@keywords) = split(/\s+/,$tosplit);
2814 return @keywords;
2815}
2816END_OF_FUNC
2817
2818'param_fetch' => <<'END_OF_FUNC',
2819sub param_fetch {
2820 my($self,@p) = self_or_default(@_);
3d1a2ec4 2821 my($name) = rearrange([NAME],@p);
e0ef849f 2822 unless (exists($self->{param}{$name})) {
424ec8fa 2823 $self->add_parameter($name);
e0ef849f 2824 $self->{param}{$name} = [];
424ec8fa
GS
2825 }
2826
e0ef849f 2827 return $self->{param}{$name};
424ec8fa
GS
2828}
2829END_OF_FUNC
2830
54310121 2831###############################################
2832# OTHER INFORMATION PROVIDED BY THE ENVIRONMENT
2833###############################################
2834
2835#### Method: path_info
2836# Return the extra virtual path information provided
2837# after the URL (if any)
2838####
2839'path_info' => <<'END_OF_FUNC',
2840sub path_info {
424ec8fa
GS
2841 my ($self,$info) = self_or_default(@_);
2842 if (defined($info)) {
2843 $info = "/$info" if $info ne '' && substr($info,0,1) ne '/';
2844 $self->{'.path_info'} = $info;
2845 } elsif (! defined($self->{'.path_info'}) ) {
7dc108d1
SP
2846 my (undef,$path_info) = $self->_name_and_path_from_env;
2847 $self->{'.path_info'} = $path_info || '';
424ec8fa
GS
2848 }
2849 return $self->{'.path_info'};
54310121 2850}
2851END_OF_FUNC
2852
e0ef849f
SP
2853# This function returns a potentially modified version of SCRIPT_NAME
2854# and PATH_INFO. Some HTTP servers do sanitise the paths in those
2855# variables. It is the case of at least Apache 2. If for instance the
2856# user requests: /path/./to/script.cgi/x//y/z/../x?y, Apache will set:
2857# REQUEST_URI=/path/./to/script.cgi/x//y/z/../x?y
2858# SCRIPT_NAME=/path/to/env.cgi
2859# PATH_INFO=/x/y/x
2860#
2861# This is all fine except that some bogus CGI scripts expect
2862# PATH_INFO=/http://foo when the user requests
2863# http://xxx/script.cgi/http://foo
2864#
2865# Old versions of this module used to accomodate with those scripts, so
2866# this is why we do this here to keep those scripts backward compatible.
2867# Basically, we accomodate with those scripts but within limits, that is
2868# we only try to preserve the number of / that were provided by the user
2869# if $REQUEST_URI and "$SCRIPT_NAME$PATH_INFO" only differ by the number
2870# of consecutive /.
2871#
2872# So for instance, in: http://foo/x//y/script.cgi/a//b, we'll return a
2873# script_name of /x//y/script.cgi and a path_info of /a//b, but in:
2874# http://foo/./x//z/script.cgi/a/../b//c, we'll return the versions
2875# possibly sanitised by the HTTP server, so in the case of Apache 2:
2876# script_name == /foo/x/z/script.cgi and path_info == /b/c.
2877#
2878# Future versions of this module may no longer do that, so one should
2879# avoid relying on the browser, proxy, server, and CGI.pm preserving the
2880# number of consecutive slashes as no guarantee can be made there.
7dc108d1
SP
2881'_name_and_path_from_env' => <<'END_OF_FUNC',
2882sub _name_and_path_from_env {
e0ef849f
SP
2883 my $self = shift;
2884 my $script_name = $ENV{SCRIPT_NAME} || '';
2885 my $path_info = $ENV{PATH_INFO} || '';
2886 my $uri = $self->request_uri || '';
2887
2888 $uri =~ s/\?.*//s;
2889 $uri = unescape($uri);
2890
2891 if ($uri ne "$script_name$path_info") {
2892 my $script_name_pattern = quotemeta($script_name);
2893 my $path_info_pattern = quotemeta($path_info);
2894 $script_name_pattern =~ s{(?:\\/)+}{/+}g;
2895 $path_info_pattern =~ s{(?:\\/)+}{/+}g;
2896
2897 if ($uri =~ /^($script_name_pattern)($path_info_pattern)$/s) {
2898 # REQUEST_URI and SCRIPT_NAME . PATH_INFO only differ by the
2899 # numer of consecutive slashes, so we can extract the info from
2900 # REQUEST_URI:
2901 ($script_name, $path_info) = ($1, $2);
2902 }
2903 }
2904 return ($script_name,$path_info);
7dc108d1
SP
2905}
2906END_OF_FUNC
2907
54310121 2908
2909#### Method: request_method
2910# Returns 'POST', 'GET', 'PUT' or 'HEAD'
2911####
2912'request_method' => <<'END_OF_FUNC',
2913sub request_method {
2914 return $ENV{'REQUEST_METHOD'};
2915}
2916END_OF_FUNC
2917
3538e1d5
GS
2918#### Method: content_type
2919# Returns the content_type string
2920####
2921'content_type' => <<'END_OF_FUNC',
2922sub content_type {
2923 return $ENV{'CONTENT_TYPE'};
2924}
2925END_OF_FUNC
2926
54310121 2927#### Method: path_translated
2928# Return the physical path information provided
2929# by the URL (if any)
2930####
2931'path_translated' => <<'END_OF_FUNC',
2932sub path_translated {
2933 return $ENV{'PATH_TRANSLATED'};
2934}
2935END_OF_FUNC
2936
2937
7dc108d1
SP
2938#### Method: request_uri
2939# Return the literal request URI
2940####
2941'request_uri' => <<'END_OF_FUNC',
2942sub request_uri {
2943 return $ENV{'REQUEST_URI'};
2944}
2945END_OF_FUNC
2946
2947
54310121 2948#### Method: query_string
2949# Synthesize a query string from our current
2950# parameters
2951####
2952'query_string' => <<'END_OF_FUNC',
2953sub query_string {
2954 my($self) = self_or_default(@_);
2955 my($param,$value,@pairs);
2956 foreach $param ($self->param) {
424ec8fa 2957 my($eparam) = escape($param);
54310121 2958 foreach $value ($self->param($param)) {
424ec8fa 2959 $value = escape($value);
3538e1d5 2960 next unless defined $value;
54310121 2961 push(@pairs,"$eparam=$value");
2962 }
2963 }
d45d855d
JH
2964 foreach (keys %{$self->{'.fieldnames'}}) {
2965 push(@pairs,".cgifields=".escape("$_"));
2966 }
71f3e297 2967 return join($USE_PARAM_SEMICOLONS ? ';' : '&',@pairs);
54310121 2968}
2969END_OF_FUNC
2970
2971
2972#### Method: accept
2973# Without parameters, returns an array of the
2974# MIME types the browser accepts.
2975# With a single parameter equal to a MIME
2976# type, will return undef if the browser won't
2977# accept it, 1 if the browser accepts it but
2978# doesn't give a preference, or a floating point
2979# value between 0.0 and 1.0 if the browser
2980# declares a quantitative score for it.
2981# This handles MIME type globs correctly.
2982####
71f3e297
JH
2983'Accept' => <<'END_OF_FUNC',
2984sub Accept {
54310121 2985 my($self,$search) = self_or_CGI(@_);
2986 my(%prefs,$type,$pref,$pat);
2987
e0ef849f
SP
2988 my(@accept) = defined $self->http('accept')
2989 ? split(',',$self->http('accept'))
2990 : ();
54310121 2991
2992 foreach (@accept) {
2993 ($pref) = /q=(\d\.\d+|\d+)/;
2994 ($type) = m#(\S+/[^;]+)#;
2995 next unless $type;
2996 $prefs{$type}=$pref || 1;
2997 }
2998
2999 return keys %prefs unless $search;
3000
3001 # if a search type is provided, we may need to
3002 # perform a pattern matching operation.
3003 # The MIME types use a glob mechanism, which
3004 # is easily translated into a perl pattern match
3005
3006 # First return the preference for directly supported
3007 # types:
3008 return $prefs{$search} if $prefs{$search};
3009
3010 # Didn't get it, so try pattern matching.
3011 foreach (keys %prefs) {
3012 next unless /\*/; # not a pattern match
3013 ($pat = $_) =~ s/([^\w*])/\\$1/g; # escape meta characters
3014 $pat =~ s/\*/.*/g; # turn it into a pattern
3015 return $prefs{$_} if $search=~/$pat/;
3016 }
3017}
3018END_OF_FUNC
3019
3020
3021#### Method: user_agent
3022# If called with no parameters, returns the user agent.
3023# If called with one parameter, does a pattern match (case
3024# insensitive) on the user agent.
3025####
3026'user_agent' => <<'END_OF_FUNC',
3027sub user_agent {
3028 my($self,$match)=self_or_CGI(@_);
3029 return $self->http('user_agent') unless $match;
3030 return $self->http('user_agent') =~ /$match/i;
3031}
3032END_OF_FUNC
3033
3034
424ec8fa
GS
3035#### Method: raw_cookie
3036# Returns the magic cookies for the session.
3037# The cookies are not parsed or altered in any way, i.e.
3038# cookies are returned exactly as given in the HTTP
3039# headers. If a cookie name is given, only that cookie's
3040# value is returned, otherwise the entire raw cookie
3041# is returned.
54310121 3042####
3043'raw_cookie' => <<'END_OF_FUNC',
3044sub raw_cookie {
424ec8fa
GS
3045 my($self,$key) = self_or_CGI(@_);
3046
3047 require CGI::Cookie;
3048
3049 if (defined($key)) {
3050 $self->{'.raw_cookies'} = CGI::Cookie->raw_fetch
3051 unless $self->{'.raw_cookies'};
3052
3053 return () unless $self->{'.raw_cookies'};
3054 return () unless $self->{'.raw_cookies'}->{$key};
3055 return $self->{'.raw_cookies'}->{$key};
3056 }
54310121 3057 return $self->http('cookie') || $ENV{'COOKIE'} || '';
3058}
3059END_OF_FUNC
3060
3061#### Method: virtual_host
3062# Return the name of the virtual_host, which
3063# is not always the same as the server
3064######
3065'virtual_host' => <<'END_OF_FUNC',
3066sub virtual_host {
13548fdf 3067 my $vh = http('x_forwarded_host') || http('host') || server_name();
424ec8fa
GS
3068 $vh =~ s/:\d+$//; # get rid of port number
3069 return $vh;
54310121 3070}
3071END_OF_FUNC
3072
3073#### Method: remote_host
3074# Return the name of the remote host, or its IP
3075# address if unavailable. If this variable isn't
3076# defined, it returns "localhost" for debugging
3077# purposes.
3078####
3079'remote_host' => <<'END_OF_FUNC',
3080sub remote_host {
3081 return $ENV{'REMOTE_HOST'} || $ENV{'REMOTE_ADDR'}
3082 || 'localhost';
3083}
3084END_OF_FUNC
3085
3086
3087#### Method: remote_addr
3088# Return the IP addr of the remote host.
3089####
3090'remote_addr' => <<'END_OF_FUNC',
3091sub remote_addr {
3092 return $ENV{'REMOTE_ADDR'} || '127.0.0.1';
3093}
3094END_OF_FUNC
3095
3096
3097#### Method: script_name
3098# Return the partial URL to this script for
3099# self-referencing scripts. Also see
3100# self_url(), which returns a URL with all state information
3101# preserved.
3102####
3103'script_name' => <<'END_OF_FUNC',
3104sub script_name {
7dc108d1
SP
3105 my ($self,@p) = self_or_default(@_);
3106 if (@p) {
2c454cbd 3107 $self->{'.script_name'} = shift @p;
7dc108d1
SP
3108 } elsif (!exists $self->{'.script_name'}) {
3109 my ($script_name,$path_info) = $self->_name_and_path_from_env();
3110 $self->{'.script_name'} = $script_name;
3111 }
3112 return $self->{'.script_name'};
54310121 3113}
3114END_OF_FUNC
3115
3116
3117#### Method: referer
3118# Return the HTTP_REFERER: useful for generating
3119# a GO BACK button.
3120####
3121'referer' => <<'END_OF_FUNC',
3122sub referer {
3123 my($self) = self_or_CGI(@_);
3124 return $self->http('referer');
3125}
3126END_OF_FUNC
3127
3128
3129#### Method: server_name
3130# Return the name of the server
3131####
3132'server_name' => <<'END_OF_FUNC',
3133sub server_name {
3134 return $ENV{'SERVER_NAME'} || 'localhost';
3135}
3136END_OF_FUNC
3137
3138#### Method: server_software
3139# Return the name of the server software
3140####
3141'server_software' => <<'END_OF_FUNC',
3142sub server_software {
3143 return $ENV{'SERVER_SOFTWARE'} || 'cmdline';
3144}
3145END_OF_FUNC
3146
2ed511ec
RGS
3147#### Method: virtual_port
3148# Return the server port, taking virtual hosts into account
3149####
3150'virtual_port' => <<'END_OF_FUNC',
3151sub virtual_port {
3152 my($self) = self_or_default(@_);
13548fdf 3153 my $vh = $self->http('x_forwarded_host') || $self->http('host');
0a9bdad4 3154 my $protocol = $self->protocol;
2ed511ec 3155 if ($vh) {
0a9bdad4 3156 return ($vh =~ /:(\d+)$/)[0] || ($protocol eq 'https' ? 443 : 80);
2ed511ec
RGS
3157 } else {
3158 return $self->server_port();
3159 }
3160}
3161END_OF_FUNC
3162
54310121 3163#### Method: server_port
3164# Return the tcp/ip port the server is running on
3165####
3166'server_port' => <<'END_OF_FUNC',
3167sub server_port {
3168 return $ENV{'SERVER_PORT'} || 80; # for debugging
3169}
3170END_OF_FUNC
3171
3172#### Method: server_protocol
3173# Return the protocol (usually HTTP/1.0)
3174####
3175'server_protocol' => <<'END_OF_FUNC',
3176sub server_protocol {
3177 return $ENV{'SERVER_PROTOCOL'} || 'HTTP/1.0'; # for debugging
3178}
3179END_OF_FUNC
3180
3181#### Method: http
3182# Return the value of an HTTP variable, or
3183# the list of variables if none provided
3184####
3185'http' => <<'END_OF_FUNC',
3186sub http {
3187 my ($self,$parameter) = self_or_CGI(@_);
3188 return $ENV{$parameter} if $parameter=~/^HTTP/;
3538e1d5 3189 $parameter =~ tr/-/_/;
54310121 3190 return $ENV{"HTTP_\U$parameter\E"} if $parameter;
3191 my(@p);
3192 foreach (keys %ENV) {
3193 push(@p,$_) if /^HTTP/;
3194 }
3195 return @p;
3196}
3197END_OF_FUNC
3198
3199#### Method: https
3200# Return the value of HTTPS
3201####
3202'https' => <<'END_OF_FUNC',
3203sub https {
3204 local($^W)=0;
3205 my ($self,$parameter) = self_or_CGI(@_);
3206 return $ENV{HTTPS} unless $parameter;
3207 return $ENV{$parameter} if $parameter=~/^HTTPS/;
3538e1d5 3208 $parameter =~ tr/-/_/;
54310121 3209 return $ENV{"HTTPS_\U$parameter\E"} if $parameter;
3210 my(@p);
3211 foreach (keys %ENV) {
3212 push(@p,$_) if /^HTTPS/;
3213 }
3214 return @p;
3215}
3216END_OF_FUNC
3217
3218#### Method: protocol
3219# Return the protocol (http or https currently)
3220####
3221'protocol' => <<'END_OF_FUNC',
3222sub protocol {
3223 local($^W)=0;
3224 my $self = shift;
424ec8fa 3225 return 'https' if uc($self->https()) eq 'ON';
54310121 3226 return 'https' if $self->server_port == 443;
3227 my $prot = $self->server_protocol;
3228 my($protocol,$version) = split('/',$prot);
3229 return "\L$protocol\E";
3230}
3231END_OF_FUNC
3232
3233#### Method: remote_ident
3234# Return the identity of the remote user
3235# (but only if his host is running identd)
3236####
3237'remote_ident' => <<'END_OF_FUNC',
3238sub remote_ident {
3239 return $ENV{'REMOTE_IDENT'};
3240}
3241END_OF_FUNC
3242
3243
3244#### Method: auth_type
3245# Return the type of use verification/authorization in use, if any.
3246####
3247'auth_type' => <<'END_OF_FUNC',
3248sub auth_type {
3249 return $ENV{'AUTH_TYPE'};
3250}
3251END_OF_FUNC
3252
3253
3254#### Method: remote_user
3255# Return the authorization name used for user
3256# verification.
3257####
3258'remote_user' => <<'END_OF_FUNC',
3259sub remote_user {
3260 return $ENV{'REMOTE_USER'};
3261}
3262END_OF_FUNC
3263
3264
3265#### Method: user_name
3266# Try to return the remote user's name by hook or by
3267# crook
3268####
3269'user_name' => <<'END_OF_FUNC',
3270sub user_name {
3271 my ($self) = self_or_CGI(@_);
3272 return $self->http('from') || $ENV{'REMOTE_IDENT'} || $ENV{'REMOTE_USER'};
3273}
3274END_OF_FUNC
3275
3d1a2ec4
GS
3276#### Method: nosticky
3277# Set or return the NOSTICKY global flag
3278####
3279'nosticky' => <<'END_OF_FUNC',
3280sub nosticky {
3281 my ($self,$param) = self_or_CGI(@_);
3282 $CGI::NOSTICKY = $param if defined($param);
3283 return $CGI::NOSTICKY;
3284}
3285END_OF_FUNC
3286
54310121 3287#### Method: nph
3288# Set or return the NPH global flag
3289####
3290'nph' => <<'END_OF_FUNC',
3291sub nph {
3292 my ($self,$param) = self_or_CGI(@_);
7d37aa8e
LS
3293 $CGI::NPH = $param if defined($param);
3294 return $CGI::NPH;
3295}
3296END_OF_FUNC
3297
3298#### Method: private_tempfiles
3299# Set or return the private_tempfiles global flag
3300####
3301'private_tempfiles' => <<'END_OF_FUNC',
3302sub private_tempfiles {
3303 my ($self,$param) = self_or_CGI(@_);
424ec8fa 3304 $CGI::PRIVATE_TEMPFILES = $param if defined($param);
7d37aa8e 3305 return $CGI::PRIVATE_TEMPFILES;
54310121 3306}
3307END_OF_FUNC
8f3ccfa2
JH
3308#### Method: close_upload_files
3309# Set or return the close_upload_files global flag
3310####
3311'close_upload_files' => <<'END_OF_FUNC',
3312sub close_upload_files {
3313 my ($self,$param) = self_or_CGI(@_);
3314 $CGI::CLOSE_UPLOAD_FILES = $param if defined($param);
3315 return $CGI::CLOSE_UPLOAD_FILES;
3316}
3317END_OF_FUNC
3318
54310121 3319
424ec8fa
GS
3320#### Method: default_dtd
3321# Set or return the default_dtd global
3322####
3323'default_dtd' => <<'END_OF_FUNC',
3324sub default_dtd {
3d1a2ec4
GS
3325 my ($self,$param,$param2) = self_or_CGI(@_);
3326 if (defined $param2 && defined $param) {
3327 $CGI::DEFAULT_DTD = [ $param, $param2 ];
3328 } elsif (defined $param) {
3329 $CGI::DEFAULT_DTD = $param;
3330 }
424ec8fa
GS
3331 return $CGI::DEFAULT_DTD;
3332}
3333END_OF_FUNC
3334
54310121 3335# -------------- really private subroutines -----------------
3336'previous_or_default' => <<'END_OF_FUNC',
3337sub previous_or_default {
3338 my($self,$name,$defaults,$override) = @_;
3339 my(%selected);
3340
3341 if (!$override && ($self->{'.fieldnames'}->{$name} ||
3342 defined($self->param($name)) ) ) {
f84167b3 3343 $selected{$_}++ for $self->param($name);
54310121 3344 } elsif (defined($defaults) && ref($defaults) &&
3345 (ref($defaults) eq 'ARRAY')) {
f84167b3 3346 $selected{$_}++ for @{$defaults};
54310121 3347 } else {
3348 $selected{$defaults}++ if defined($defaults);
3349 }
3350
3351 return %selected;
3352}
3353END_OF_FUNC
3354
3355'register_parameter' => <<'END_OF_FUNC',
3356sub register_parameter {
3357 my($self,$param) = @_;
3358 $self->{'.parametersToAdd'}->{$param}++;
3359}
3360END_OF_FUNC
3361
3362'get_fields' => <<'END_OF_FUNC',
3363sub get_fields {
3364 my($self) = @_;
424ec8fa
GS
3365 return $self->CGI::hidden('-name'=>'.cgifields',
3366 '-values'=>[keys %{$self->{'.parametersToAdd'}}],
3367 '-override'=>1);
54310121 3368}
3369END_OF_FUNC
3370
3371'read_from_cmdline' => <<'END_OF_FUNC',
3372sub read_from_cmdline {
54310121 3373 my($input,@words);
3374 my($query_string);
2ed511ec 3375 my($subpath);
3d1a2ec4 3376 if ($DEBUG && @ARGV) {
424ec8fa 3377 @words = @ARGV;
3d1a2ec4 3378 } elsif ($DEBUG > 1) {
424ec8fa 3379 require "shellwords.pl";
2ed511ec 3380 print STDERR "(offline mode: enter name=value pairs on standard input; press ^D or ^Z when done)\n";
424ec8fa 3381 chomp(@lines = <STDIN>); # remove newlines
54310121 3382 $input = join(" ",@lines);
424ec8fa
GS
3383 @words = &shellwords($input);
3384 }
3385 foreach (@words) {
3386 s/\\=/%3D/g;
3387 s/\\&/%26/g;
54310121 3388 }
3389
54310121 3390 if ("@words"=~/=/) {
3391 $query_string = join('&',@words);
3392 } else {
3393 $query_string = join('+',@words);
3394 }
2ed511ec
RGS
3395 if ($query_string =~ /^(.*?)\?(.*)$/)
3396 {
3397 $query_string = $2;
3398 $subpath = $1;
3399 }
3400 return { 'query_string' => $query_string, 'subpath' => $subpath };
54310121 3401}
3402END_OF_FUNC
3403
3404#####
3405# subroutine: read_multipart
3406#
3407# Read multipart data and store it into our parameters.
3408# An interesting feature is that if any of the parts is a file, we
3409# create a temporary file and open up a filehandle on it so that the
3410# caller can read from it if necessary.
3411#####
3412'read_multipart' => <<'END_OF_FUNC',
3413sub read_multipart {
2ed511ec
RGS
3414 my($self,$boundary,$length) = @_;
3415 my($buffer) = $self->new_MultipartBuffer($boundary,$length);
54310121 3416 return unless $buffer;
3417 my(%header,$body);
424ec8fa 3418 my $filenumber = 0;
54310121 3419 while (!$buffer->eof) {
3420 %header = $buffer->readHeader;
3538e1d5
GS
3421
3422 unless (%header) {
3423 $self->cgi_error("400 Bad request (malformed multipart POST)");
3424 return;
3425 }
54310121 3426
e0ef849f
SP
3427 $header{'Content-Disposition'} ||= ''; # quench uninit variable warning
3428
c29edf6c 3429 my($param)= $header{'Content-Disposition'}=~/ name="([^"]*)"/;
188ba755 3430 $param .= $TAINTED;
54310121 3431
86de2d7d
SP
3432 # See RFC 1867, 2183, 2045
3433 # NB: File content will be loaded into memory should
3434 # content-disposition parsing fail.
3435 my ($filename) = $header{'Content-Disposition'}
3436 =~/ filename=(("[^"]*")|([a-z\d!\#'\*\+,\.^_\`\{\}\|\~]*))/i;
e0ef849f
SP
3437
3438 $filename ||= ''; # quench uninit variable warning
3439
86de2d7d 3440 $filename =~ s/^"([^"]*)"$/$1/;
8f3ccfa2
JH
3441 # Test for Opera's multiple upload feature
3442 my($multipart) = ( defined( $header{'Content-Type'} ) &&
3443 $header{'Content-Type'} =~ /multipart\/mixed/ ) ?
3444 1 : 0;
54310121 3445
3446 # add this parameter to our list
3447 $self->add_parameter($param);
3448
3449 # If no filename specified, then just read the data and assign it
3450 # to our parameter list.
8f3ccfa2 3451 if ( ( !defined($filename) || $filename eq '' ) && !$multipart ) {
54310121 3452 my($value) = $buffer->readBody;
188ba755 3453 $value .= $TAINTED;
e0ef849f 3454 push(@{$self->{param}{$param}},$value);
54310121 3455 next;
3456 }
3457
424ec8fa
GS
3458 my ($tmpfile,$tmp,$filehandle);
3459 UPLOADS: {
3460 # If we get here, then we are dealing with a potentially large
3461 # uploaded form. Save the data to a temporary file, then open
3462 # the file for reading.
54310121 3463
424ec8fa
GS
3464 # skip the file if uploads disabled
3465 if ($DISABLE_UPLOADS) {
3466 while (defined($data = $buffer->read)) { }
3467 last UPLOADS;
3468 }
7d37aa8e 3469
8f3ccfa2
JH
3470 # set the filename to some recognizable value
3471 if ( ( !defined($filename) || $filename eq '' ) && $multipart ) {
3472 $filename = "multipart/mixed";
3473 }
3474
3538e1d5 3475 # choose a relatively unpredictable tmpfile sequence number
29ddc2a4 3476 my $seqno = unpack("%16C*",join('',localtime,grep {defined $_} values %ENV));
3538e1d5 3477 for (my $cnt=10;$cnt>0;$cnt--) {
ac734d8b 3478 next unless $tmpfile = new CGITempFile($seqno);
3538e1d5 3479 $tmp = $tmpfile->as_string;
ffd2dff2 3480 last if defined($filehandle = Fh->new($filename,$tmp,$PRIVATE_TEMPFILES));
3538e1d5
GS
3481 $seqno += int rand(100);
3482 }
69c89ae7 3483 die "CGI open of tmpfile: $!\n" unless defined $filehandle;
2ed511ec
RGS
3484 $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode
3485 && defined fileno($filehandle);
424ec8fa 3486
8f3ccfa2 3487 # if this is an multipart/mixed attachment, save the header
2ed511ec 3488 # together with the body for later parsing with an external
8f3ccfa2
JH
3489 # MIME parser module
3490 if ( $multipart ) {
3491 foreach ( keys %header ) {
3492 print $filehandle "$_: $header{$_}${CRLF}";
3493 }
3494 print $filehandle "${CRLF}";
3495 }
3496
424ec8fa 3497 my ($data);
71f3e297 3498 local($\) = '';
bb8b3399 3499 my $totalbytes = 0;
2ed511ec
RGS
3500 while (defined($data = $buffer->read)) {
3501 if (defined $self->{'.upload_hook'})
3502 {
3503 $totalbytes += length($data);
3504 &{$self->{'.upload_hook'}}($filename ,$data, $totalbytes, $self->{'.upload_data'});
3505 }
cb3b230c 3506 print $filehandle $data if ($self->{'use_tempfile'});
2ed511ec 3507 }
424ec8fa
GS
3508
3509 # back up to beginning of file
3510 seek($filehandle,0,0);
8f3ccfa2
JH
3511
3512 ## Close the filehandle if requested this allows a multipart MIME
3513 ## upload to contain many files, and we won't die due to too many
3514 ## open file handles. The user can access the files using the hash
3515 ## below.
3516 close $filehandle if $CLOSE_UPLOAD_FILES;
424ec8fa
GS
3517 $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode;
3518
3519 # Save some information about the uploaded file where we can get
3520 # at it later.
0a9bdad4
SP
3521 # Use the typeglob as the key, as this is guaranteed to be
3522 # unique for each filehandle. Don't use the file descriptor as
3523 # this will be re-used for each filehandle if the
3524 # close_upload_files feature is used.
3525 $self->{'.tmpfiles'}->{$$filehandle}= {
2ed511ec 3526 hndl => $filehandle,
424ec8fa
GS
3527 name => $tmpfile,
3528 info => {%header},
3529 };
e0ef849f 3530 push(@{$self->{param}{$param}},$filehandle);
424ec8fa 3531 }
54310121 3532 }
3533}
3534END_OF_FUNC
3535
8869a4b7
SP
3536#####
3537# subroutine: read_multipart_related
3538#
3539# Read multipart/related data and store it into our parameters. The
3540# first parameter sets the start of the data. The part identified by
3541# this Content-ID will not be stored as a file upload, but will be
3542# returned by this method. All other parts will be available as file
3543# uploads accessible by their Content-ID
3544#####
3545'read_multipart_related' => <<'END_OF_FUNC',
3546sub read_multipart_related {
3547 my($self,$start,$boundary,$length) = @_;
3548 my($buffer) = $self->new_MultipartBuffer($boundary,$length);
3549 return unless $buffer;
3550 my(%header,$body);
3551 my $filenumber = 0;
3552 my $returnvalue;
3553 while (!$buffer->eof) {
3554 %header = $buffer->readHeader;
3555
3556 unless (%header) {
3557 $self->cgi_error("400 Bad request (malformed multipart POST)");
3558 return;
3559 }
3560
3561 my($param) = $header{'Content-ID'}=~/\<([^\>]*)\>/;
3562 $param .= $TAINTED;
3563
3564 # If this is the start part, then just read the data and assign it
3565 # to our return variable.
3566 if ( $param eq $start ) {
3567 $returnvalue = $buffer->readBody;
3568 $returnvalue .= $TAINTED;
3569 next;
3570 }
3571
3572 # add this parameter to our list
3573 $self->add_parameter($param);
3574
3575 my ($tmpfile,$tmp,$filehandle);
3576 UPLOADS: {
3577 # If we get here, then we are dealing with a potentially large
3578 # uploaded form. Save the data to a temporary file, then open
3579 # the file for reading.
3580
3581 # skip the file if uploads disabled
3582 if ($DISABLE_UPLOADS) {
3583 while (defined($data = $buffer->read)) { }
3584 last UPLOADS;
3585 }
3586
3587 # choose a relatively unpredictable tmpfile sequence number
3588 my $seqno = unpack("%16C*",join('',localtime,grep {defined $_} values %ENV));
3589 for (my $cnt=10;$cnt>0;$cnt--) {
3590 next unless $tmpfile = new CGITempFile($seqno);
3591 $tmp = $tmpfile->as_string;
3592 last if defined($filehandle = Fh->new($param,$tmp,$PRIVATE_TEMPFILES));
3593 $seqno += int rand(100);
3594 }
3595 die "CGI open of tmpfile: $!\n" unless defined $filehandle;
3596 $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode
3597 && defined fileno($filehandle);
3598
3599 my ($data);
3600 local($\) = '';
3601 my $totalbytes;
3602 while (defined($data = $buffer->read)) {
3603 if (defined $self->{'.upload_hook'})
3604 {
3605 $totalbytes += length($data);
3606 &{$self->{'.upload_hook'}}($param ,$data, $totalbytes, $self->{'.upload_data'});
3607 }
3608 print $filehandle $data if ($self->{'use_tempfile'});
3609 }
3610
3611 # back up to beginning of file
3612 seek($filehandle,0,0);
3613
3614 ## Close the filehandle if requested this allows a multipart MIME
3615 ## upload to contain many files, and we won't die due to too many
3616 ## open file handles. The user can access the files using the hash
3617 ## below.
3618 close $filehandle if $CLOSE_UPLOAD_FILES;
3619 $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode;
3620
3621 # Save some information about the uploaded file where we can get
3622 # at it later.
3623 # Use the typeglob as the key, as this is guaranteed to be
3624 # unique for each filehandle. Don't use the file descriptor as
3625 # this will be re-used for each filehandle if the
3626 # close_upload_files feature is used.
3627 $self->{'.tmpfiles'}->{$$filehandle}= {
3628 hndl => $filehandle,
3629 name => $tmpfile,
3630 info => {%header},
3631 };
e0ef849f 3632 push(@{$self->{param}{$param}},$filehandle);
8869a4b7
SP
3633 }
3634 }
3635 return $returnvalue;
3636}
3637END_OF_FUNC
3638
3639
3538e1d5
GS
3640'upload' =><<'END_OF_FUNC',
3641sub upload {
3642 my($self,$param_name) = self_or_default(@_);
0664a57d 3643 my @param = grep {ref($_) && defined(fileno($_))} $self->param($param_name);
199d4a26
JH
3644 return unless @param;
3645 return wantarray ? @param : $param[0];
3538e1d5
GS
3646}
3647END_OF_FUNC
3648
54310121 3649'tmpFileName' => <<'END_OF_FUNC',
3650sub tmpFileName {
3651 my($self,$filename) = self_or_default(@_);
0a9bdad4
SP
3652 return $self->{'.tmpfiles'}->{$$filename}->{name} ?
3653 $self->{'.tmpfiles'}->{$$filename}->{name}->as_string
7d37aa8e 3654 : '';
54310121 3655}
3656END_OF_FUNC
3657
424ec8fa 3658'uploadInfo' => <<'END_OF_FUNC',
54310121 3659sub uploadInfo {
3660 my($self,$filename) = self_or_default(@_);
0a9bdad4 3661 return $self->{'.tmpfiles'}->{$$filename}->{info};
54310121 3662}
3663END_OF_FUNC
3664
424ec8fa
GS
3665# internal routine, don't use
3666'_set_values_and_labels' => <<'END_OF_FUNC',
3667sub _set_values_and_labels {
3668 my $self = shift;
3669 my ($v,$l,$n) = @_;
3670 $$l = $v if ref($v) eq 'HASH' && !ref($$l);
3671 return $self->param($n) if !defined($v);
3672 return $v if !ref($v);
3673 return ref($v) eq 'HASH' ? keys %$v : @$v;
3674}
3675END_OF_FUNC
3676
188ba755
JH
3677# internal routine, don't use
3678'_set_attributes' => <<'END_OF_FUNC',
3679sub _set_attributes {
3680 my $self = shift;
3681 my($element, $attributes) = @_;
3682 return '' unless defined($attributes->{$element});
3683 $attribs = ' ';
3684 foreach my $attrib (keys %{$attributes->{$element}}) {
13548fdf
RGS
3685 (my $clean_attrib = $attrib) =~ s/^-//;
3686 $attribs .= "@{[lc($clean_attrib)]}=\"$attributes->{$element}{$attrib}\" ";
188ba755
JH
3687 }
3688 $attribs =~ s/ $//;
3689 return $attribs;
3690}
3691END_OF_FUNC
3692
424ec8fa
GS
3693'_compile_all' => <<'END_OF_FUNC',
3694sub _compile_all {
3695 foreach (@_) {
3696 next if defined(&$_);
3697 $AUTOLOAD = "CGI::$_";
3698 _compile();
3699 }
3700}
3701END_OF_FUNC
3702
54310121 3703);
3704END_OF_AUTOLOAD
3705;
3706
424ec8fa
GS
3707#########################################################
3708# Globals and stubs for other packages that we use.
3709#########################################################
3710
3711################### Fh -- lightweight filehandle ###############
3712package Fh;
e1c70484 3713
424ec8fa
GS
3714use overload
3715 '""' => \&asString,
3716 'cmp' => \&compare,
3717 'fallback'=>1;
3718
3719$FH='fh00000';
3720
3721*Fh::AUTOLOAD = \&CGI::AUTOLOAD;
3722
29ddc2a4
RGS
3723sub DESTROY {
3724 my $self = shift;
3725 close $self;
3726}
3727
424ec8fa
GS
3728$AUTOLOADED_ROUTINES = ''; # prevent -w error
3729$AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
3730%SUBS = (
3731'asString' => <<'END_OF_FUNC',
3732sub asString {
3733 my $self = shift;
71f3e297 3734 # get rid of package name
ffd2dff2 3735 (my $i = $$self) =~ s/^\*(\w+::fh\d{5})+//;
ba056755 3736 $i =~ s/%(..)/ chr(hex($1)) /eg;
188ba755 3737 return $i.$CGI::TAINTED;
71f3e297
JH
3738# BEGIN DEAD CODE
3739# This was an extremely clever patch that allowed "use strict refs".
3740# Unfortunately it relied on another bug that caused leaky file descriptors.
3741# The underlying bug has been fixed, so this no longer works. However
3742# "strict refs" still works for some reason.
3743# my $self = shift;
3744# return ${*{$self}{SCALAR}};
3745# END DEAD CODE
424ec8fa
GS
3746}
3747END_OF_FUNC
3748
3749'compare' => <<'END_OF_FUNC',
3750sub compare {
3751 my $self = shift;
3752 my $value = shift;
3753 return "$self" cmp $value;
3754}
3755END_OF_FUNC
3756
3757'new' => <<'END_OF_FUNC',
3758sub new {
3759 my($pack,$name,$file,$delete) = @_;
188ba755 3760 _setup_symbols(@SAVED_SYMBOLS) if @SAVED_SYMBOLS;
424ec8fa 3761 require Fcntl unless defined &Fcntl::O_RDWR;
ba056755
JH
3762 (my $safename = $name) =~ s/([':%])/ sprintf '%%%02X', ord $1 /eg;
3763 my $fv = ++$FH . $safename;
6b4ac661 3764 my $ref = \*{"Fh::$fv"};
598d6e99 3765 $file =~ m!^([a-zA-Z0-9_\+ \'\":/.\$\\~-]+)$! || return;
188ba755
JH
3766 my $safe = $1;
3767 sysopen($ref,$safe,Fcntl::O_RDWR()|Fcntl::O_CREAT()|Fcntl::O_EXCL(),0600) || return;
3768 unlink($safe) if $delete;
6b4ac661 3769 CORE::delete $Fh::{$fv};
71f3e297 3770 return bless $ref,$pack;
424ec8fa
GS
3771}
3772END_OF_FUNC
3773
e1c70484
NC
3774'handle' => <<'END_OF_FUNC',
3775sub handle {
3776 my $self = shift;
3777 eval "require IO::Handle" unless IO::Handle->can('new_from_fd');
3778 return IO::Handle->new_from_fd(fileno $self,"<");
3779}
3780END_OF_FUNC
3781
424ec8fa
GS
3782);
3783END_OF_AUTOLOAD
3784
3785######################## MultipartBuffer ####################
54310121 3786package MultipartBuffer;
3787
2ed511ec
RGS
3788use constant DEBUG => 0;
3789
54310121 3790# how many bytes to read at a time. We use
71f3e297
JH
3791# a 4K buffer by default.
3792$INITIAL_FILLUNIT = 1024 * 4;
3793$TIMEOUT = 240*60; # 4 hour timeout for big files
3794$SPIN_LOOP_MAX = 2000; # bug fix for some Netscape servers
54310121 3795$CRLF=$CGI::CRLF;
3796
3797#reuse the autoload function
3798*MultipartBuffer::AUTOLOAD = \&CGI::AUTOLOAD;
3799
424ec8fa
GS
3800# avoid autoloader warnings
3801sub DESTROY {}
3802
54310121 3803###############################################################################
3804################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
3805###############################################################################
3806$AUTOLOADED_ROUTINES = ''; # prevent -w error
3807$AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
3808%SUBS = (
3809
3810'new' => <<'END_OF_FUNC',
3811sub new {
2ed511ec 3812 my($package,$interface,$boundary,$length) = @_;
424ec8fa 3813 $FILLUNIT = $INITIAL_FILLUNIT;
2ed511ec 3814 $CGI::DefaultClass->binmode($IN); # if $CGI::needs_binmode; # just do it always
29ddc2a4 3815
54310121 3816 # If the user types garbage into the file upload field,
3817 # then Netscape passes NOTHING to the server (not good).
3818 # We may hang on this read in that case. So we implement
3819 # a read timeout. If nothing is ready to read
3820 # by then, we return.
3821
3822 # Netscape seems to be a little bit unreliable
3823 # about providing boundary strings.
3d1a2ec4 3824 my $boundary_read = 0;
54310121 3825 if ($boundary) {
3826
3827 # Under the MIME spec, the boundary consists of the
3828 # characters "--" PLUS the Boundary string
424ec8fa
GS
3829
3830 # BUG: IE 3.01 on the Macintosh uses just the boundary -- not
71f3e297 3831 # the two extra hyphens. We do a special case here on the user-agent!!!!
69c89ae7 3832 $boundary = "--$boundary" unless CGI::user_agent('MSIE\s+3\.0[12];\s*Mac|DreamPassport');
424ec8fa 3833
54310121 3834 } else { # otherwise we find it ourselves
3835 my($old);
3836 ($old,$/) = ($/,$CRLF); # read a CRLF-delimited line
2ed511ec 3837 $boundary = <STDIN>; # BUG: This won't work correctly under mod_perl
54310121 3838 $length -= length($boundary);
3839 chomp($boundary); # remove the CRLF
3840 $/ = $old; # restore old line separator
3d1a2ec4 3841 $boundary_read++;
54310121 3842 }
3843
3844 my $self = {LENGTH=>$length,
ebb7c588 3845 CHUNKED=>!$length,
54310121 3846 BOUNDARY=>$boundary,
54310121 3847 INTERFACE=>$interface,
3848 BUFFER=>'',
3849 };
3850
3851 $FILLUNIT = length($boundary)
3852 if length($boundary) > $FILLUNIT;
3853
424ec8fa
GS
3854 my $retval = bless $self,ref $package || $package;
3855
3856 # Read the preamble and the topmost (boundary) line plus the CRLF.
3d1a2ec4
GS
3857 unless ($boundary_read) {
3858 while ($self->read(0)) { }
3859 }
2ed511ec 3860 die "Malformed multipart POST: data truncated\n" if $self->eof;
424ec8fa
GS
3861
3862 return $retval;
54310121 3863}
3864END_OF_FUNC
3865
3866'readHeader' => <<'END_OF_FUNC',
3867sub readHeader {
3868 my($self) = @_;
3869 my($end);
3870 my($ok) = 0;
47e3cabd 3871 my($bad) = 0;
424ec8fa 3872
2ed511ec 3873 local($CRLF) = "\015\012" if $CGI::OS eq 'VMS' || $CGI::EBCDIC;
424ec8fa 3874
54310121 3875 do {
3876 $self->fillBuffer($FILLUNIT);
3877 $ok++ if ($end = index($self->{BUFFER},"${CRLF}${CRLF}")) >= 0;
3878 $ok++ if $self->{BUFFER} eq '';
47e3cabd 3879 $bad++ if !$ok && $self->{LENGTH} <= 0;
424ec8fa
GS
3880 # this was a bad idea
3881 # $FILLUNIT *= 2 if length($self->{BUFFER}) >= $FILLUNIT;
47e3cabd
LS
3882 } until $ok || $bad;
3883 return () if $bad;
54310121 3884
2ed511ec
RGS
3885 #EBCDIC NOTE: translate header into EBCDIC, but watch out for continuation lines!
3886
54310121 3887 my($header) = substr($self->{BUFFER},0,$end+2);
3888 substr($self->{BUFFER},0,$end+4) = '';
3889 my %return;
424ec8fa 3890
2ed511ec
RGS
3891 if ($CGI::EBCDIC) {
3892 warn "untranslated header=$header\n" if DEBUG;
3893 $header = CGI::Util::ascii2ebcdic($header);
3894 warn "translated header=$header\n" if DEBUG;
3895 }
3896
424ec8fa
GS
3897 # See RFC 2045 Appendix A and RFC 822 sections 3.4.8
3898 # (Folding Long Header Fields), 3.4.3 (Comments)
3899 # and 3.4.5 (Quoted-Strings).
3900
3901 my $token = '[-\w!\#$%&\'*+.^_\`|{}~]';
3902 $header=~s/$CRLF\s+/ /og; # merge continuation lines
188ba755 3903
424ec8fa 3904 while ($header=~/($token+):\s+([^$CRLF]*)/mgox) {
188ba755 3905 my ($field_name,$field_value) = ($1,$2);
424ec8fa
GS
3906 $field_name =~ s/\b(\w)/uc($1)/eg; #canonicalize
3907 $return{$field_name}=$field_value;
54310121 3908 }
3909 return %return;
3910}
3911END_OF_FUNC
3912
3913# This reads and returns the body as a single scalar value.
3914'readBody' => <<'END_OF_FUNC',
3915sub readBody {
3916 my($self) = @_;
3917 my($data);
3918 my($returnval)='';
2ed511ec
RGS
3919
3920 #EBCDIC NOTE: want to translate returnval into EBCDIC HERE
3921
54310121 3922 while (defined($data = $self->read)) {
3923 $returnval .= $data;
3924 }
2ed511ec
RGS
3925
3926 if ($CGI::EBCDIC) {
3927 warn "untranslated body=$returnval\n" if DEBUG;
3928 $returnval = CGI::Util::ascii2ebcdic($returnval);
3929 warn "translated body=$returnval\n" if DEBUG;
3930 }
54310121 3931 return $returnval;
3932}
3933END_OF_FUNC
3934
3935# This will read $bytes or until the boundary is hit, whichever happens
3936# first. After the boundary is hit, we return undef. The next read will
3937# skip over the boundary and begin reading again;
3938'read' => <<'END_OF_FUNC',
3939sub read {
3940 my($self,$bytes) = @_;
3941
3942 # default number of bytes to read
2ed511ec 3943 $bytes = $bytes || $FILLUNIT;
54310121 3944
3945 # Fill up our internal buffer in such a way that the boundary
3946 # is never split between reads.
3947 $self->fillBuffer($bytes);
3948
2ed511ec
RGS
3949 my $boundary_start = $CGI::EBCDIC ? CGI::Util::ebcdic2ascii($self->{BOUNDARY}) : $self->{BOUNDARY};
3950 my $boundary_end = $CGI::EBCDIC ? CGI::Util::ebcdic2ascii($self->{BOUNDARY}.'--') : $self->{BOUNDARY}.'--';
3951
54310121 3952 # Find the boundary in the buffer (it may not be there).
2ed511ec
RGS
3953 my $start = index($self->{BUFFER},$boundary_start);
3954
3955 warn "boundary=$self->{BOUNDARY} length=$self->{LENGTH} start=$start\n" if DEBUG;
54310121 3956
29ddc2a4
RGS
3957 # protect against malformed multipart POST operations
3958 die "Malformed multipart POST\n" unless $self->{CHUNKED} || ($start >= 0 || $self->{LENGTH} > 0);
2ed511ec
RGS
3959
3960 #EBCDIC NOTE: want to translate boundary search into ASCII here.
3961
54310121 3962 # If the boundary begins the data, then skip past it
03b9648d 3963 # and return undef.
54310121 3964 if ($start == 0) {
3965
3966 # clear us out completely if we've hit the last boundary.
2ed511ec 3967 if (index($self->{BUFFER},$boundary_end)==0) {
54310121 3968 $self->{BUFFER}='';
3969 $self->{LENGTH}=0;
3970 return undef;
3971 }
3972
3973 # just remove the boundary.
2ed511ec 3974 substr($self->{BUFFER},0,length($boundary_start))='';
03b9648d 3975 $self->{BUFFER} =~ s/^\012\015?//;
54310121 3976 return undef;
3977 }
3978
8f3ccfa2 3979 my $bytesToReturn;
54310121 3980 if ($start > 0) { # read up to the boundary
8f3ccfa2 3981 $bytesToReturn = $start-2 > $bytes ? $bytes : $start;
54310121 3982 } else { # read the requested number of bytes
3983 # leave enough bytes in the buffer to allow us to read
3984 # the boundary. Thanks to Kevin Hendrick for finding
3985 # this one.
2ed511ec 3986 $bytesToReturn = $bytes - (length($boundary_start)+1);
54310121 3987 }
3988
3989 my $returnval=substr($self->{BUFFER},0,$bytesToReturn);
3990 substr($self->{BUFFER},0,$bytesToReturn)='';
3991
3992 # If we hit the boundary, remove the CRLF from the end.
8f3ccfa2 3993 return ($bytesToReturn==$start)
ac734d8b 3994 ? substr($returnval,0,-2) : $returnval;
54310121 3995}
3996END_OF_FUNC
3997
3998
3999# This fills up our internal buffer in such a way that the
4000# boundary is never split between reads
4001'fillBuffer' => <<'END_OF_FUNC',
4002sub fillBuffer {
4003 my($self,$bytes) = @_;
29ddc2a4 4004 return unless $self->{CHUNKED} || $self->{LENGTH};
54310121 4005
4006 my($boundaryLength) = length($self->{BOUNDARY});
4007 my($bufferLength) = length($self->{BUFFER});
4008 my($bytesToRead) = $bytes - $bufferLength + $boundaryLength + 2;
29ddc2a4 4009 $bytesToRead = $self->{LENGTH} if !$self->{CHUNKED} && $self->{LENGTH} < $bytesToRead;
54310121 4010
2ed511ec
RGS
4011 # Try to read some data. We may hang here if the browser is screwed up.
4012 my $bytesRead = $self->{INTERFACE}->read_from_client(\$self->{BUFFER},
54310121 4013 $bytesToRead,
4014 $bufferLength);
2ed511ec 4015 warn "bytesToRead=$bytesToRead, bufferLength=$bufferLength, buffer=$self->{BUFFER}\n" if DEBUG;
71f3e297 4016 $self->{BUFFER} = '' unless defined $self->{BUFFER};
54310121 4017
47e3cabd 4018 # An apparent bug in the Apache server causes the read()
54310121 4019 # to return zero bytes repeatedly without blocking if the
4020 # remote user aborts during a file transfer. I don't know how
4021 # they manage this, but the workaround is to abort if we get
4022 # more than SPIN_LOOP_MAX consecutive zero reads.
29ddc2a4 4023 if ($bytesRead <= 0) {
54310121 4024 die "CGI.pm: Server closed socket during multipart read (client aborted?).\n"
4025 if ($self->{ZERO_LOOP_COUNTER}++ >= $SPIN_LOOP_MAX);
4026 } else {
4027 $self->{ZERO_LOOP_COUNTER}=0;
4028 }
4029
29ddc2a4 4030 $self->{LENGTH} -= $bytesRead if !$self->{CHUNKED} && $bytesRead;
54310121 4031}
4032END_OF_FUNC
4033
4034
4035# Return true when we've finished reading
4036'eof' => <<'END_OF_FUNC'
4037sub eof {
4038 my($self) = @_;
4039 return 1 if (length($self->{BUFFER}) == 0)
4040 && ($self->{LENGTH} <= 0);
4041 undef;
4042}
4043END_OF_FUNC
4044
4045);
4046END_OF_AUTOLOAD
4047
4048####################################################################################
4049################################## TEMPORARY FILES #################################
4050####################################################################################
ac734d8b 4051package CGITempFile;
54310121 4052
cff99809 4053sub find_tempdir {
cff99809
JH
4054 $SL = $CGI::SL;
4055 $MAC = $CGI::OS eq 'MACINTOSH';
4056 my ($vol) = $MAC ? MacPerl::Volumes() =~ /:(.*)/ : "";
0a9bdad4 4057 unless (defined $TMPDIRECTORY) {
424ec8fa 4058 @TEMP=("${SL}usr${SL}tmp","${SL}var${SL}tmp",
3538e1d5 4059 "C:${SL}temp","${SL}tmp","${SL}temp",
3d1a2ec4 4060 "${vol}${SL}Temporary Items",
ba056755
JH
4061 "${SL}WWW_ROOT", "${SL}SYS\$SCRATCH",
4062 "C:${SL}system${SL}temp");
7ee5fac8
RB
4063
4064 if( $CGI::OS eq 'WINDOWS' ){
4065 unshift @TEMP,
4066 $ENV{TEMP},
4067 $ENV{TMP},
4068 $ENV{WINDIR} . $SL . 'TEMP';
4069 }
4070
188ba755 4071 unshift(@TEMP,$ENV{'TMPDIR'}) if defined $ENV{'TMPDIR'};
3538e1d5 4072
3d1a2ec4
GS
4073 # this feature was supposed to provide per-user tmpfiles, but
4074 # it is problematic.
3538e1d5
GS
4075 # unshift(@TEMP,(getpwuid($<))[7].'/tmp') if $CGI::OS eq 'UNIX';
4076 # Rob: getpwuid() is unfortunately UNIX specific. On brain dead OS'es this
4077 # : can generate a 'getpwuid() not implemented' exception, even though
4078 # : it's never called. Found under DOS/Win with the DJGPP perl port.
4079 # : Refer to getpwuid() only at run-time if we're fortunate and have UNIX.
3d1a2ec4 4080 # unshift(@TEMP,(eval {(getpwuid($>))[7]}).'/tmp') if $CGI::OS eq 'UNIX' and $> != 0;
3538e1d5 4081
54310121 4082 foreach (@TEMP) {
cff99809 4083 do {$TMPDIRECTORY = $_; last} if -d $_ && -w _;
54310121 4084 }
cff99809
JH
4085 }
4086 $TMPDIRECTORY = $MAC ? "" : "." unless $TMPDIRECTORY;
54310121 4087}
4088
cff99809
JH
4089find_tempdir();
4090
424ec8fa 4091$MAXTRIES = 5000;
54310121 4092
4093# cute feature, but overload implementation broke it
4094# %OVERLOAD = ('""'=>'as_string');
ac734d8b 4095*CGITempFile::AUTOLOAD = \&CGI::AUTOLOAD;
54310121 4096
2371fea9
JH
4097sub DESTROY {
4098 my($self) = @_;
598d6e99 4099 $$self =~ m!^([a-zA-Z0-9_ \'\":/.\$\\~-]+)$! || return;
188ba755
JH
4100 my $safe = $1; # untaint operation
4101 unlink $safe; # get rid of the file
2371fea9
JH
4102}
4103
54310121 4104###############################################################################
4105################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
4106###############################################################################
4107$AUTOLOADED_ROUTINES = ''; # prevent -w error
4108$AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
4109%SUBS = (
4110
4111'new' => <<'END_OF_FUNC',
4112sub new {
3538e1d5
GS
4113 my($package,$sequence) = @_;
4114 my $filename;
cff99809 4115 find_tempdir() unless -w $TMPDIRECTORY;
3538e1d5 4116 for (my $i = 0; $i < $MAXTRIES; $i++) {
8c32f149 4117 last if ! -f ($filename = sprintf("\%s${SL}CGItemp%d", $TMPDIRECTORY, $sequence++));
424ec8fa 4118 }
188ba755 4119 # check that it is a more-or-less valid filename
598d6e99 4120 return unless $filename =~ m!^([a-zA-Z0-9_\+ \'\":/.\$\\~-]+)$!;
188ba755
JH
4121 # this used to untaint, now it doesn't
4122 # $filename = $1;
3538e1d5 4123 return bless \$filename;
54310121 4124}
4125END_OF_FUNC
4126
54310121 4127'as_string' => <<'END_OF_FUNC'
4128sub as_string {
4129 my($self) = @_;
4130 return $$self;
4131}
4132END_OF_FUNC
4133
4134);
4135END_OF_AUTOLOAD
4136
4137package CGI;
4138
4139# We get a whole bunch of warnings about "possibly uninitialized variables"
4140# when running with the -w switch. Touch them all once to get rid of the
4141# warnings. This is ugly and I hate it.
4142if ($^W) {
4143 $CGI::CGI = '';
4144 $CGI::CGI=<<EOF;
4145 $CGI::VERSION;
4146 $MultipartBuffer::SPIN_LOOP_MAX;
4147 $MultipartBuffer::CRLF;
4148 $MultipartBuffer::TIMEOUT;
424ec8fa 4149 $MultipartBuffer::INITIAL_FILLUNIT;
54310121 4150EOF
4151 ;
4152}
4153
424ec8fa 41541;
54310121 4155
4156__END__
4157
4158=head1 NAME
4159
4160CGI - Simple Common Gateway Interface Class
4161
dc848c6f 4162=head1 SYNOPSIS
4163
424ec8fa
GS
4164 # CGI script that creates a fill-out form
4165 # and echoes back its values.
4166
4167 use CGI qw/:standard/;
4168 print header,
4169 start_html('A Simple Example'),
4170 h1('A Simple Example'),
4171 start_form,
4172 "What's your name? ",textfield('name'),p,
4173 "What's the combination?", p,
4174 checkbox_group(-name=>'words',
4175 -values=>['eenie','meenie','minie','moe'],
4176 -defaults=>['eenie','minie']), p,
4177 "What's your favorite color? ",
4178 popup_menu(-name=>'color',
4179 -values=>['red','green','blue','chartreuse']),p,
4180 submit,
4181 end_form,
4182 hr;
4183
4184 if (param()) {
7dc108d1
SP
4185 my $name = param('name');
4186 my $keywords = join ', ',param('words');
4187 my $color = param('color');
4188 print "Your name is",em(escapeHTML($name)),p,
4189 "The keywords are: ",em(escapeHTML($keywords)),p,
4190 "Your favorite color is ",em(escapeHTML($color)),
424ec8fa
GS
4191 hr;
4192 }
dc848c6f 4193
384f06ae
SP
4194 print end_html;
4195
54310121 4196=head1 ABSTRACT
4197
424ec8fa
GS
4198This perl library uses perl5 objects to make it easy to create Web
4199fill-out forms and parse their contents. This package defines CGI
4200objects, entities that contain the values of the current query string
4201and other state variables. Using a CGI object's methods, you can
4202examine keywords and parameters passed to your script, and create
4203forms whose initial values are taken from the current query (thereby
4204preserving state information). The module provides shortcut functions
4205that produce boilerplate HTML, reducing typing and coding errors. It
4206also provides functionality for some of the more advanced features of
4207CGI scripting, including support for file uploads, cookies, cascading
4208style sheets, server push, and frames.
4209
4210CGI.pm also provides a simple function-oriented programming style for
4211those who don't need its object-oriented features.
54310121 4212
4213The current version of CGI.pm is available at
4214
4215 http://www.genome.wi.mit.edu/ftp/pub/software/WWW/cgi_docs.html
4216 ftp://ftp-genome.wi.mit.edu/pub/software/WWW/
4217
424ec8fa 4218=head1 DESCRIPTION
47e3cabd 4219
424ec8fa
GS
4220=head2 PROGRAMMING STYLE
4221
4222There are two styles of programming with CGI.pm, an object-oriented
4223style and a function-oriented style. In the object-oriented style you
4224create one or more CGI objects and then use object methods to create
4225the various elements of the page. Each CGI object starts out with the
4226list of named parameters that were passed to your CGI script by the
4227server. You can modify the objects, save them to a file or database
4228and recreate them. Because each object corresponds to the "state" of
4229the CGI script, and because each object's parameter list is
4230independent of the others, this allows you to save the state of the
4231script and restore it later.
4232
f610777f 4233For example, using the object oriented style, here is how you create
424ec8fa
GS
4234a simple "Hello World" HTML page:
4235
3538e1d5 4236 #!/usr/local/bin/perl -w
424ec8fa
GS
4237 use CGI; # load CGI routines
4238 $q = new CGI; # create new CGI object
4239 print $q->header, # create the HTTP header
4240 $q->start_html('hello world'), # start the HTML
4241 $q->h1('hello world'), # level 1 header
4242 $q->end_html; # end the HTML
4243
4244In the function-oriented style, there is one default CGI object that
4245you rarely deal with directly. Instead you just call functions to
4246retrieve CGI parameters, create HTML tags, manage cookies, and so
4247on. This provides you with a cleaner programming interface, but
4248limits you to using one CGI object at a time. The following example
4249prints the same page, but uses the function-oriented interface.
4250The main differences are that we now need to import a set of functions
4251into our name space (usually the "standard" functions), and we don't
4252need to create the CGI object.
4253
71f3e297 4254 #!/usr/local/bin/perl
424ec8fa
GS
4255 use CGI qw/:standard/; # load standard CGI routines
4256 print header, # create the HTTP header
4257 start_html('hello world'), # start the HTML
4258 h1('hello world'), # level 1 header
4259 end_html; # end the HTML
4260
4261The examples in this document mainly use the object-oriented style.
4262See HOW TO IMPORT FUNCTIONS for important information on
4263function-oriented programming in CGI.pm
4264
4265=head2 CALLING CGI.PM ROUTINES
4266
4267Most CGI.pm routines accept several arguments, sometimes as many as 20
4268optional ones! To simplify this interface, all routines use a named
4269argument calling style that looks like this:
4270
4271 print $q->header(-type=>'image/gif',-expires=>'+3d');
4272
4273Each argument name is preceded by a dash. Neither case nor order
4274matters in the argument list. -type, -Type, and -TYPE are all
4275acceptable. In fact, only the first argument needs to begin with a
4276dash. If a dash is present in the first argument, CGI.pm assumes
4277dashes for the subsequent ones.
4278
424ec8fa
GS
4279Several routines are commonly called with just one argument. In the
4280case of these routines you can provide the single argument without an
4281argument name. header() happens to be one of these routines. In this
4282case, the single argument is the document type.
4283
4284 print $q->header('text/html');
4285
4286Other such routines are documented below.
4287
4288Sometimes named arguments expect a scalar, sometimes a reference to an
4289array, and sometimes a reference to a hash. Often, you can pass any
4290type of argument and the routine will do whatever is most appropriate.
4291For example, the param() routine is used to set a CGI parameter to a
4292single or a multi-valued value. The two cases are shown below:
4293
4294 $q->param(-name=>'veggie',-value=>'tomato');
3d1a2ec4 4295 $q->param(-name=>'veggie',-value=>['tomato','tomahto','potato','potahto']);
424ec8fa
GS
4296
4297A large number of routines in CGI.pm actually aren't specifically
4298defined in the module, but are generated automatically as needed.
4299These are the "HTML shortcuts," routines that generate HTML tags for
4300use in dynamically-generated pages. HTML tags have both attributes
4301(the attribute="value" pairs within the tag itself) and contents (the
4302part between the opening and closing pairs.) To distinguish between
4303attributes and contents, CGI.pm uses the convention of passing HTML
4304attributes as a hash reference as the first argument, and the
4305contents, if any, as any subsequent arguments. It works out like
4306this:
4307
4308 Code Generated HTML
4309 ---- --------------
3acbd4f5
JH
4310 h1() <h1>
4311 h1('some','contents'); <h1>some contents</h1>
188ba755
JH
4312 h1({-align=>left}); <h1 align="LEFT">
4313 h1({-align=>left},'contents'); <h1 align="LEFT">contents</h1>
424ec8fa 4314
188ba755 4315HTML tags are described in more detail later.
424ec8fa
GS
4316
4317Many newcomers to CGI.pm are puzzled by the difference between the
4318calling conventions for the HTML shortcuts, which require curly braces
4319around the HTML tag attributes, and the calling conventions for other
4320routines, which manage to generate attributes without the curly
4321brackets. Don't be confused. As a convenience the curly braces are
4322optional in all but the HTML shortcuts. If you like, you can use
4323curly braces when calling any routine that takes named arguments. For
4324example:
4325
4326 print $q->header( {-type=>'image/gif',-expires=>'+3d'} );
4327
4328If you use the B<-w> switch, you will be warned that some CGI.pm argument
4329names conflict with built-in Perl functions. The most frequent of
4330these is the -values argument, used to create multi-valued menus,
4331radio button clusters and the like. To get around this warning, you
4332have several choices:
54310121 4333
424ec8fa 4334=over 4
54310121 4335
551e1d92
RB
4336=item 1.
4337
4338Use another name for the argument, if one is available.
4339For example, -value is an alias for -values.
54310121 4340
551e1d92 4341=item 2.
54310121 4342
551e1d92
RB
4343Change the capitalization, e.g. -Values
4344
4345=item 3.
4346
4347Put quotes around the argument name, e.g. '-values'
54310121 4348
424ec8fa 4349=back
54310121 4350
424ec8fa
GS
4351Many routines will do something useful with a named argument that it
4352doesn't recognize. For example, you can produce non-standard HTTP
4353header fields by providing them as named arguments:
54310121 4354
424ec8fa
GS
4355 print $q->header(-type => 'text/html',
4356 -cost => 'Three smackers',
4357 -annoyance_level => 'high',
4358 -complaints_to => 'bit bucket');
54310121 4359
424ec8fa
GS
4360This will produce the following nonstandard HTTP header:
4361
4362 HTTP/1.0 200 OK
4363 Cost: Three smackers
4364 Annoyance-level: high
4365 Complaints-to: bit bucket
4366 Content-type: text/html
4367
4368Notice the way that underscores are translated automatically into
4369hyphens. HTML-generating routines perform a different type of
4370translation.
4371
4372This feature allows you to keep up with the rapidly changing HTTP and
4373HTML "standards".
54310121 4374
424ec8fa 4375=head2 CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
54310121 4376
4377 $query = new CGI;
4378
4379This will parse the input (from both POST and GET methods) and store
681699b9
SP
4380it into a perl5 object called $query.
4381
4382Any filehandles from file uploads will have their position reset to
4383the beginning of the file.
54310121 4384
4385=head2 CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
4386
4387 $query = new CGI(INPUTFILE);
4388
424ec8fa
GS
4389If you provide a file handle to the new() method, it will read
4390parameters from the file (or STDIN, or whatever). The file can be in
4391any of the forms describing below under debugging (i.e. a series of
4392newline delimited TAG=VALUE pairs will work). Conveniently, this type
4393of file is created by the save() method (see below). Multiple records
4394can be saved and restored.
54310121 4395
4396Perl purists will be pleased to know that this syntax accepts
4397references to file handles, or even references to filehandle globs,
4398which is the "official" way to pass a filehandle:
4399
4400 $query = new CGI(\*STDIN);
4401
424ec8fa
GS
4402You can also initialize the CGI object with a FileHandle or IO::File
4403object.
4404
4405If you are using the function-oriented interface and want to
4406initialize CGI state from a file handle, the way to do this is with
4407B<restore_parameters()>. This will (re)initialize the
4408default CGI object from the indicated file handle.
4409
4410 open (IN,"test.in") || die;
4411 restore_parameters(IN);
4412 close IN;
4413
54310121 4414You can also initialize the query object from an associative array
4415reference:
4416
4417 $query = new CGI( {'dinosaur'=>'barney',
4418 'song'=>'I love you',
4419 'friends'=>[qw/Jessica George Nancy/]}
4420 );
4421
4422or from a properly formatted, URL-escaped query string:
4423
4424 $query = new CGI('dinosaur=barney&color=purple');
4425
424ec8fa
GS
4426or from a previously existing CGI object (currently this clones the
4427parameter list, but none of the other object-specific fields, such as
4428autoescaping):
4429
4430 $old_query = new CGI;
4431 $new_query = new CGI($old_query);
4432
54310121 4433To create an empty query, initialize it from an empty string or hash:
4434
424ec8fa
GS
4435 $empty_query = new CGI("");
4436
4437 -or-
4438
4439 $empty_query = new CGI({});
54310121 4440
4441=head2 FETCHING A LIST OF KEYWORDS FROM THE QUERY:
4442
4443 @keywords = $query->keywords
4444
4445If the script was invoked as the result of an <ISINDEX> search, the
4446parsed keywords can be obtained as an array using the keywords() method.
4447
4448=head2 FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
4449
4450 @names = $query->param
4451
4452If the script was invoked with a parameter list
3d1a2ec4
GS
4453(e.g. "name1=value1&name2=value2&name3=value3"), the param() method
4454will return the parameter names as a list. If the script was invoked
4455as an <ISINDEX> script and contains a string without ampersands
4456(e.g. "value1+value2+value3") , there will be a single parameter named
4457"keywords" containing the "+"-delimited keywords.
54310121 4458
4459NOTE: As of version 1.5, the array of parameter names returned will
4460be in the same order as they were submitted by the browser.
4461Usually this order is the same as the order in which the
4462parameters are defined in the form (however, this isn't part
4463of the spec, and so isn't guaranteed).
4464
4465=head2 FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
4466
4467 @values = $query->param('foo');
4468
4469 -or-
4470
4471 $value = $query->param('foo');
4472
4473Pass the param() method a single argument to fetch the value of the
4474named parameter. If the parameter is multivalued (e.g. from multiple
4475selections in a scrolling list), you can ask to receive an array. Otherwise
4476the method will return a single value.
4477
3d1a2ec4 4478If a value is not given in the query string, as in the queries
e0ef849f 4479"name1=&name2=", it will be returned as an empty string.
3d1a2ec4 4480
8f3ccfa2
JH
4481
4482If the parameter does not exist at all, then param() will return undef
4483in a scalar context, and the empty list in a list context.
4484
4485
54310121 4486=head2 SETTING THE VALUE(S) OF A NAMED PARAMETER:
4487
4488 $query->param('foo','an','array','of','values');
4489
4490This sets the value for the named parameter 'foo' to an array of
4491values. This is one way to change the value of a field AFTER
4492the script has been invoked once before. (Another way is with
4493the -override parameter accepted by all methods that generate
4494form elements.)
4495
4496param() also recognizes a named parameter style of calling described
4497in more detail later:
4498
4499 $query->param(-name=>'foo',-values=>['an','array','of','values']);
4500
4501 -or-
4502
4503 $query->param(-name=>'foo',-value=>'the value');
4504
4505=head2 APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
4506
424ec8fa 4507 $query->append(-name=>'foo',-values=>['yet','more','values']);
54310121 4508
4509This adds a value or list of values to the named parameter. The
4510values are appended to the end of the parameter if it already exists.
4511Otherwise the parameter is created. Note that this method only
4512recognizes the named argument calling syntax.
4513
4514=head2 IMPORTING ALL PARAMETERS INTO A NAMESPACE:
4515
4516 $query->import_names('R');
4517
4518This creates a series of variables in the 'R' namespace. For example,
4519$R::foo, @R:foo. For keyword lists, a variable @R::keywords will appear.
4520If no namespace is given, this method will assume 'Q'.
4521WARNING: don't import anything into 'main'; this is a major security
4522risk!!!!
4523
8f3ccfa2
JH
4524NOTE 1: Variable names are transformed as necessary into legal Perl
4525variable names. All non-legal characters are transformed into
4526underscores. If you need to keep the original names, you should use
4527the param() method instead to access CGI variables by name.
4528
4529NOTE 2: In older versions, this method was called B<import()>. As of version 2.20,
54310121 4530this name has been removed completely to avoid conflict with the built-in
4531Perl module B<import> operator.
4532
4533=head2 DELETING A PARAMETER COMPLETELY:
4534
188ba755 4535 $query->delete('foo','bar','baz');
54310121 4536
188ba755
JH
4537This completely clears a list of parameters. It sometimes useful for
4538resetting parameters that you don't want passed down between script
4539invocations.
54310121 4540
424ec8fa
GS
4541If you are using the function call interface, use "Delete()" instead
4542to avoid conflicts with Perl's built-in delete operator.
4543
54310121 4544=head2 DELETING ALL PARAMETERS:
4545
424ec8fa 4546 $query->delete_all();
54310121 4547
4548This clears the CGI object completely. It might be useful to ensure
4549that all the defaults are taken when you create a fill-out form.
4550
424ec8fa
GS
4551Use Delete_all() instead if you are using the function call interface.
4552
0a9bdad4
SP
4553=head2 HANDLING NON-URLENCODED ARGUMENTS
4554
4555
4556If POSTed data is not of type application/x-www-form-urlencoded or
4557multipart/form-data, then the POSTed data will not be processed, but
4558instead be returned as-is in a parameter named POSTDATA. To retrieve
4559it, use code like this:
4560
4561 my $data = $query->param('POSTDATA');
4562
bb8b3399
SP
4563Likewise if PUTed data can be retrieved with code like this:
4564
4565 my $data = $query->param('PUTDATA');
4566
0a9bdad4
SP
4567(If you don't know what the preceding means, don't worry about it. It
4568only affects people trying to use CGI for XML processing and other
4569specialized tasks.)
4570
4571
424ec8fa
GS
4572=head2 DIRECT ACCESS TO THE PARAMETER LIST:
4573
4574 $q->param_fetch('address')->[1] = '1313 Mockingbird Lane';
4575 unshift @{$q->param_fetch(-name=>'address')},'George Munster';
4576
4577If you need access to the parameter list in a way that isn't covered
4578by the methods above, you can obtain a direct reference to it by
4579calling the B<param_fetch()> method with the name of the . This
4580will return an array reference to the named parameters, which you then
4581can manipulate in any way you like.
4582
4583You can also use a named argument style using the B<-name> argument.
4584
3538e1d5
GS
4585=head2 FETCHING THE PARAMETER LIST AS A HASH:
4586
4587 $params = $q->Vars;
4588 print $params->{'address'};
4589 @foo = split("\0",$params->{'foo'});
4590 %params = $q->Vars;
4591
4592 use CGI ':cgi-lib';
4593 $params = Vars;
4594
4595Many people want to fetch the entire parameter list as a hash in which
4596the keys are the names of the CGI parameters, and the values are the
4597parameters' values. The Vars() method does this. Called in a scalar
4598context, it returns the parameter list as a tied hash reference.
4599Changing a key changes the value of the parameter in the underlying
a3b3a725 4600CGI parameter list. Called in a list context, it returns the
3538e1d5
GS
4601parameter list as an ordinary hash. This allows you to read the
4602contents of the parameter list, but not to change it.
4603
4604When using this, the thing you must watch out for are multivalued CGI
4605parameters. Because a hash cannot distinguish between scalar and
a3b3a725 4606list context, multivalued parameters will be returned as a packed
3538e1d5
GS
4607string, separated by the "\0" (null) character. You must split this
4608packed string in order to get at the individual values. This is the
4609convention introduced long ago by Steve Brenner in his cgi-lib.pl
4610module for Perl version 4.
4611
4612If you wish to use Vars() as a function, import the I<:cgi-lib> set of
4613function calls (also see the section on CGI-LIB compatibility).
4614
424ec8fa 4615=head2 SAVING THE STATE OF THE SCRIPT TO A FILE:
54310121 4616
29ddc2a4 4617 $query->save(\*FILEHANDLE)
54310121 4618
4619This will write the current state of the form to the provided
4620filehandle. You can read it back in by providing a filehandle
4621to the new() method. Note that the filehandle can be a file, a pipe,
4622or whatever!
4623
4624The format of the saved file is:
4625
4626 NAME1=VALUE1
4627 NAME1=VALUE1'
4628 NAME2=VALUE2
4629 NAME3=VALUE3
4630 =
4631
4632Both name and value are URL escaped. Multi-valued CGI parameters are
4633represented as repeated names. A session record is delimited by a
4634single = symbol. You can write out multiple records and read them
4635back in with several calls to B<new>. You can do this across several
4636sessions by opening the file in append mode, allowing you to create
4637primitive guest books, or to keep a history of users' queries. Here's
4638a short example of creating multiple session records:
4639
4640 use CGI;
4641
4642 open (OUT,">>test.out") || die;
4643 $records = 5;
4644 foreach (0..$records) {
4645 my $q = new CGI;
4646 $q->param(-name=>'counter',-value=>$_);
29ddc2a4 4647 $q->save(\*OUT);
54310121 4648 }
4649 close OUT;
4650
4651 # reopen for reading
4652 open (IN,"test.out") || die;
4653 while (!eof(IN)) {
29ddc2a4 4654 my $q = new CGI(\*IN);
54310121 4655 print $q->param('counter'),"\n";
4656 }
4657
4658The file format used for save/restore is identical to that used by the
4659Whitehead Genome Center's data exchange format "Boulderio", and can be
4660manipulated and even databased using Boulderio utilities. See
3cb6de81 4661
3538e1d5 4662 http://stein.cshl.org/boulder/
54310121 4663
4664for further details.
4665
424ec8fa
GS
4666If you wish to use this method from the function-oriented (non-OO)
4667interface, the exported name for this method is B<save_parameters()>.
54310121 4668
3538e1d5
GS
4669=head2 RETRIEVING CGI ERRORS
4670
4671Errors can occur while processing user input, particularly when
4672processing uploaded files. When these errors occur, CGI will stop
4673processing and return an empty parameter list. You can test for
4674the existence and nature of errors using the I<cgi_error()> function.
4675The error messages are formatted as HTTP status codes. You can either
4676incorporate the error text into an HTML page, or use it as the value
4677of the HTTP status:
4678
4679 my $error = $q->cgi_error;
4680 if ($error) {
4681 print $q->header(-status=>$error),
4682 $q->start_html('Problems'),
4683 $q->h2('Request not processed'),
4684 $q->strong($error);
4685 exit 0;
4686 }
4687
4688When using the function-oriented interface (see the next section),
4689errors may only occur the first time you call I<param()>. Be ready
4690for this!
4691
424ec8fa 4692=head2 USING THE FUNCTION-ORIENTED INTERFACE
54310121 4693
424ec8fa
GS
4694To use the function-oriented interface, you must specify which CGI.pm
4695routines or sets of routines to import into your script's namespace.
4696There is a small overhead associated with this importation, but it
4697isn't much.
54310121 4698
424ec8fa 4699 use CGI <list of methods>;
54310121 4700
424ec8fa
GS
4701The listed methods will be imported into the current package; you can
4702call them directly without creating a CGI object first. This example
4703shows how to import the B<param()> and B<header()>
4704methods, and then use them directly:
54310121 4705
424ec8fa
GS
4706 use CGI 'param','header';
4707 print header('text/plain');
4708 $zipcode = param('zipcode');
54310121 4709
424ec8fa 4710More frequently, you'll import common sets of functions by referring
f610777f 4711to the groups by name. All function sets are preceded with a ":"
424ec8fa 4712character as in ":html3" (for tags defined in the HTML 3 standard).
54310121 4713
424ec8fa 4714Here is a list of the function sets you can import:
54310121 4715
424ec8fa 4716=over 4
54310121 4717
424ec8fa 4718=item B<:cgi>
54310121 4719
424ec8fa
GS
4720Import all CGI-handling methods, such as B<param()>, B<path_info()>
4721and the like.
54310121 4722
424ec8fa 4723=item B<:form>
54310121 4724
424ec8fa 4725Import all fill-out form generating methods, such as B<textfield()>.
54310121 4726
424ec8fa 4727=item B<:html2>
54310121 4728
424ec8fa 4729Import all methods that generate HTML 2.0 standard elements.
54310121 4730
424ec8fa 4731=item B<:html3>
54310121 4732
3acbd4f5 4733Import all methods that generate HTML 3.0 elements (such as
424ec8fa 4734<table>, <super> and <sub>).
54310121 4735
3acbd4f5
JH
4736=item B<:html4>
4737
4738Import all methods that generate HTML 4 elements (such as
4739<abbrev>, <acronym> and <thead>).
4740
424ec8fa 4741=item B<:netscape>
54310121 4742
424ec8fa 4743Import all methods that generate Netscape-specific HTML extensions.
54310121 4744
424ec8fa 4745=item B<:html>
54310121 4746
424ec8fa
GS
4747Import all HTML-generating shortcuts (i.e. 'html2' + 'html3' +
4748'netscape')...
54310121 4749
424ec8fa 4750=item B<:standard>
54310121 4751
3acbd4f5 4752Import "standard" features, 'html2', 'html3', 'html4', 'form' and 'cgi'.
54310121 4753
424ec8fa 4754=item B<:all>
54310121 4755
424ec8fa 4756Import all the available methods. For the full list, see the CGI.pm
3538e1d5 4757code, where the variable %EXPORT_TAGS is defined.
424ec8fa
GS
4758
4759=back
4760
4761If you import a function name that is not part of CGI.pm, the module
4762will treat it as a new HTML tag and generate the appropriate
4763subroutine. You can then use it like any other HTML tag. This is to
4764provide for the rapidly-evolving HTML "standard." For example, say
3acbd4f5 4765Microsoft comes out with a new tag called <gradient> (which causes the
424ec8fa
GS
4766user's desktop to be flooded with a rotating gradient fill until his
4767machine reboots). You don't need to wait for a new version of CGI.pm
d23a249d 4768to start using it immediately:
424ec8fa
GS
4769
4770 use CGI qw/:standard :html3 gradient/;
4771 print gradient({-start=>'red',-end=>'blue'});
4772
4773Note that in the interests of execution speed CGI.pm does B<not> use
4774the standard L<Exporter> syntax for specifying load symbols. This may
4775change in the future.
4776
4777If you import any of the state-maintaining CGI or form-generating
4778methods, a default CGI object will be created and initialized
4779automatically the first time you use any of the methods that require
4780one to be present. This includes B<param()>, B<textfield()>,
4781B<submit()> and the like. (If you need direct access to the CGI
4782object, you can find it in the global variable B<$CGI::Q>). By
4783importing CGI.pm methods, you can create visually elegant scripts:
4784
4785 use CGI qw/:standard/;
4786 print
4787 header,
4788 start_html('Simple Script'),
4789 h1('Simple Script'),
4790 start_form,
4791 "What's your name? ",textfield('name'),p,
4792 "What's the combination?",
4793 checkbox_group(-name=>'words',
4794 -values=>['eenie','meenie','minie','moe'],
4795 -defaults=>['eenie','moe']),p,
4796 "What's your favorite color?",
4797 popup_menu(-name=>'color',
4798 -values=>['red','green','blue','chartreuse']),p,
4799 submit,
4800 end_form,
4801 hr,"\n";
4802
4803 if (param) {
4804 print
4805 "Your name is ",em(param('name')),p,
4806 "The keywords are: ",em(join(", ",param('words'))),p,
4807 "Your favorite color is ",em(param('color')),".\n";
4808 }
4809 print end_html;
4810
4811=head2 PRAGMAS
4812
4813In addition to the function sets, there are a number of pragmas that
4814you can import. Pragmas, which are always preceded by a hyphen,
4815change the way that CGI.pm functions in various ways. Pragmas,
4816function sets, and individual functions can all be imported in the
4817same use() line. For example, the following use statement imports the
3d1a2ec4
GS
4818standard set of functions and enables debugging mode (pragma
4819-debug):
424ec8fa 4820
3d1a2ec4 4821 use CGI qw/:standard -debug/;
424ec8fa
GS
4822
4823The current list of pragmas is as follows:
4824
4825=over 4
4826
4827=item -any
4828
4829When you I<use CGI -any>, then any method that the query object
4830doesn't recognize will be interpreted as a new HTML tag. This allows
4831you to support the next I<ad hoc> Netscape or Microsoft HTML
4832extension. This lets you go wild with new and unsupported tags:
4833
4834 use CGI qw(-any);
4835 $q=new CGI;
4836 print $q->gradient({speed=>'fast',start=>'red',end=>'blue'});
4837
4838Since using <cite>any</cite> causes any mistyped method name
4839to be interpreted as an HTML tag, use it with care or not at
4840all.
54310121 4841
424ec8fa 4842=item -compile
54310121 4843
424ec8fa
GS
4844This causes the indicated autoloaded methods to be compiled up front,
4845rather than deferred to later. This is useful for scripts that run
4846for an extended period of time under FastCGI or mod_perl, and for
8869a4b7 4847those destined to be crunched by Malcolm Beattie's Perl compiler. Use
f610777f 4848it in conjunction with the methods or method families you plan to use.
424ec8fa
GS
4849
4850 use CGI qw(-compile :standard :html3);
4851
4852or even
4853
4854 use CGI qw(-compile :all);
4855
4856Note that using the -compile pragma in this way will always have
4857the effect of importing the compiled functions into the current
4858namespace. If you want to compile without importing use the
188ba755
JH
4859compile() method instead:
4860
4861 use CGI();
4862 CGI->compile();
4863
4864This is particularly useful in a mod_perl environment, in which you
4865might want to precompile all CGI routines in a startup script, and
4866then import the functions individually in each mod_perl script.
424ec8fa 4867
3d1a2ec4
GS
4868=item -nosticky
4869
29ddc2a4
RGS
4870By default the CGI module implements a state-preserving behavior
4871called "sticky" fields. The way this works is that if you are
4872regenerating a form, the methods that generate the form field values
4873will interrogate param() to see if similarly-named parameters are
4874present in the query string. If they find a like-named parameter, they
4875will use it to set their default values.
4876
4877Sometimes this isn't what you want. The B<-nosticky> pragma prevents
4878this behavior. You can also selectively change the sticky behavior in
4879each element that you generate.
3d1a2ec4 4880
0a9bdad4
SP
4881=item -tabindex
4882
4883Automatically add tab index attributes to each form field. With this
4884option turned off, you can still add tab indexes manually by passing a
4885-tabindex option to each field-generating method.
4886
199d4a26
JH
4887=item -no_undef_params
4888
4889This keeps CGI.pm from including undef params in the parameter list.
4890
6b4ac661
JH
4891=item -no_xhtml
4892
4893By default, CGI.pm versions 2.69 and higher emit XHTML
4894(http://www.w3.org/TR/xhtml1/). The -no_xhtml pragma disables this
4895feature. Thanks to Michalis Kabrianis <kabrianis@hellug.gr> for this
4896feature.
4897
13548fdf
RGS
4898If start_html()'s -dtd parameter specifies an HTML 2.0 or 3.2 DTD,
4899XHTML will automatically be disabled without needing to use this
4900pragma.
4901
bb8b3399
SP
4902=item -utf8
4903
4904This makes CGI.pm treat all parameters as UTF-8 strings. Use this with
4905care, as it will interfere with the processing of binary uploads. It
4906is better to manually select which fields are expected to return utf-8
4907strings and convert them using code like this:
4908
4909 use Encode;
4910 my $arg = decode utf8=>param('foo');
4911
424ec8fa
GS
4912=item -nph
4913
4914This makes CGI.pm produce a header appropriate for an NPH (no
4915parsed header) script. You may need to do other things as well
4916to tell the server that the script is NPH. See the discussion
4917of NPH scripts below.
4918
71f3e297
JH
4919=item -newstyle_urls
4920
4921Separate the name=value pairs in CGI parameter query strings with
4922semicolons rather than ampersands. For example:
4923
4924 ?name=fred;age=24;favorite_color=3
4925
4926Semicolon-delimited query strings are always accepted, but will not be
4927emitted by self_url() and query_string() unless the -newstyle_urls
4928pragma is specified.
4929
3d1a2ec4
GS
4930This became the default in version 2.64.
4931
4932=item -oldstyle_urls
4933
4934Separate the name=value pairs in CGI parameter query strings with
4935ampersands rather than semicolons. This is no longer the default.
4936
424ec8fa
GS
4937=item -autoload
4938
4939This overrides the autoloader so that any function in your program
4940that is not recognized is referred to CGI.pm for possible evaluation.
4941This allows you to use all the CGI.pm functions without adding them to
4942your symbol table, which is of concern for mod_perl users who are
4943worried about memory consumption. I<Warning:> when
4944I<-autoload> is in effect, you cannot use "poetry mode"
4945(functions without the parenthesis). Use I<hr()> rather
4946than I<hr>, or add something like I<use subs qw/hr p header/>
4947to the top of your script.
4948
4949=item -no_debug
4950
4951This turns off the command-line processing features. If you want to
4952run a CGI.pm script from the command line to produce HTML, and you
3d1a2ec4
GS
4953don't want it to read CGI parameters from the command line or STDIN,
4954then use this pragma:
424ec8fa
GS
4955
4956 use CGI qw(-no_debug :standard);
4957
3d1a2ec4 4958=item -debug
424ec8fa 4959
3d1a2ec4
GS
4960This turns on full debugging. In addition to reading CGI arguments
4961from the command-line processing, CGI.pm will pause and try to read
4962arguments from STDIN, producing the message "(offline mode: enter
4963name=value pairs on standard input)" features.
3cb6de81 4964
424ec8fa
GS
4965See the section on debugging for more details.
4966
4967=item -private_tempfiles
4968
3538e1d5
GS
4969CGI.pm can process uploaded file. Ordinarily it spools the uploaded
4970file to a temporary directory, then deletes the file when done.
4971However, this opens the risk of eavesdropping as described in the file
4972upload section. Another CGI script author could peek at this data
4973during the upload, even if it is confidential information. On Unix
4974systems, the -private_tempfiles pragma will cause the temporary file
4975to be unlinked as soon as it is opened and before any data is written
4976into it, reducing, but not eliminating the risk of eavesdropping
4977(there is still a potential race condition). To make life harder for
4978the attacker, the program chooses tempfile names by calculating a 32
4979bit checksum of the incoming HTTP headers.
4980
4981To ensure that the temporary file cannot be read by other CGI scripts,
4982use suEXEC or a CGI wrapper program to run your script. The temporary
4983file is created with mode 0600 (neither world nor group readable).
4984
4985The temporary directory is selected using the following algorithm:
4986
4987 1. if the current user (e.g. "nobody") has a directory named
4988 "tmp" in its home directory, use that (Unix systems only).
4989
4990 2. if the environment variable TMPDIR exists, use the location
4991 indicated.
4992
4993 3. Otherwise try the locations /usr/tmp, /var/tmp, C:\temp,
4994 /tmp, /temp, ::Temporary Items, and \WWW_ROOT.
4995
4996Each of these locations is checked that it is a directory and is
4997writable. If not, the algorithm tries the next choice.
71f3e297
JH
4998
4999=back
5000
5001=head2 SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
5002
5003Many of the methods generate HTML tags. As described below, tag
5004functions automatically generate both the opening and closing tags.
5005For example:
5006
5007 print h1('Level 1 Header');
5008
5009produces
5010
3acbd4f5 5011 <h1>Level 1 Header</h1>
71f3e297
JH
5012
5013There will be some times when you want to produce the start and end
5014tags yourself. In this case, you can use the form start_I<tag_name>
5015and end_I<tag_name>, as in:
5016
5017 print start_h1,'Level 1 Header',end_h1;
5018
5019With a few exceptions (described below), start_I<tag_name> and
5020end_I<tag_name> functions are not generated automatically when you
5021I<use CGI>. However, you can specify the tags you want to generate
5022I<start/end> functions for by putting an asterisk in front of their
5023name, or, alternatively, requesting either "start_I<tag_name>" or
5024"end_I<tag_name>" in the import list.
5025
5026Example:
5027
5028 use CGI qw/:standard *table start_ul/;
5029
5030In this example, the following functions are generated in addition to
5031the standard ones:
5032
5033=over 4
5034
3acbd4f5 5035=item 1. start_table() (generates a <table> tag)
71f3e297 5036
3acbd4f5 5037=item 2. end_table() (generates a </table> tag)
71f3e297 5038
3acbd4f5 5039=item 3. start_ul() (generates a <ul> tag)
71f3e297 5040
3acbd4f5 5041=item 4. end_ul() (generates a </ul> tag)
71f3e297 5042
424ec8fa
GS
5043=back
5044
5045=head1 GENERATING DYNAMIC DOCUMENTS
5046
5047Most of CGI.pm's functions deal with creating documents on the fly.
5048Generally you will produce the HTTP header first, followed by the
5049document itself. CGI.pm provides functions for generating HTTP
5050headers of various types as well as for generating HTML. For creating
5051GIF images, see the GD.pm module.
5052
5053Each of these functions produces a fragment of HTML or HTTP which you
5054can print out directly so that it displays in the browser window,
5055append to a string, or save to a file for later use.
5056
5057=head2 CREATING A STANDARD HTTP HEADER:
5058
5059Normally the first thing you will do in any CGI script is print out an
5060HTTP header. This tells the browser what type of document to expect,
5061and gives other optional information, such as the language, expiration
5062date, and whether to cache the document. The header can also be
5063manipulated for special purposes, such as server push and pay per view
5064pages.
54310121 5065
29ddc2a4 5066 print header;
54310121 5067
5068 -or-
5069
29ddc2a4 5070 print header('image/gif');
54310121 5071
5072 -or-
5073
29ddc2a4 5074 print header('text/html','204 No response');
54310121 5075
5076 -or-
5077
29ddc2a4 5078 print header(-type=>'image/gif',
54310121 5079 -nph=>1,
5080 -status=>'402 Payment required',
5081 -expires=>'+3d',
5082 -cookie=>$cookie,
3d1a2ec4 5083 -charset=>'utf-7',
6b4ac661 5084 -attachment=>'foo.gif',
54310121 5085 -Cost=>'$2.00');
5086
5087header() returns the Content-type: header. You can provide your own
5088MIME type if you choose, otherwise it defaults to text/html. An
5089optional second parameter specifies the status code and a human-readable
5090message. For example, you can specify 204, "No response" to create a
424ec8fa 5091script that tells the browser to do nothing at all.
54310121 5092
5093The last example shows the named argument style for passing arguments
5094to the CGI methods using named parameters. Recognized parameters are
424ec8fa 5095B<-type>, B<-status>, B<-expires>, and B<-cookie>. Any other named
54310121 5096parameters will be stripped of their initial hyphens and turned into
5097header fields, allowing you to specify any HTTP header you desire.
424ec8fa
GS
5098Internal underscores will be turned into hyphens:
5099
29ddc2a4 5100 print header(-Content_length=>3002);
54310121 5101
5102Most browsers will not cache the output from CGI scripts. Every time
5103the browser reloads the page, the script is invoked anew. You can
5104change this behavior with the B<-expires> parameter. When you specify
5105an absolute or relative expiration interval with this parameter, some
5106browsers and proxy servers will cache the script's output until the
5107indicated expiration date. The following forms are all valid for the
5108-expires field:
5109
5110 +30s 30 seconds from now
5111 +10m ten minutes from now
5112 +1h one hour from now
5113 -1d yesterday (i.e. "ASAP!")
5114 now immediately
5115 +3M in three months
5116 +10y in ten years time
424ec8fa 5117 Thursday, 25-Apr-1999 00:40:33 GMT at the indicated time & date
54310121 5118
5119The B<-cookie> parameter generates a header that tells the browser to provide
5120a "magic cookie" during all subsequent transactions with your script.
5121Netscape cookies have a special format that includes interesting attributes
5122such as expiration time. Use the cookie() method to create and retrieve
5123session cookies.
5124
5125The B<-nph> parameter, if set to a true value, will issue the correct
8f3ccfa2 5126headers to work with a NPH (no-parse-header) script. This is important
3d1a2ec4
GS
5127to use with certain servers that expect all their scripts to be NPH.
5128
5129The B<-charset> parameter can be used to control the character set
5130sent to the browser. If not provided, defaults to ISO-8859-1. As a
5131side effect, this sets the charset() method as well.
54310121 5132
6b4ac661
JH
5133The B<-attachment> parameter can be used to turn the page into an
5134attachment. Instead of displaying the page, some browsers will prompt
5135the user to save it to disk. The value of the argument is the
5136suggested name for the saved file. In order for this to work, you may
5137have to set the B<-type> to "application/octet-stream".
5138
8f3ccfa2
JH
5139The B<-p3p> parameter will add a P3P tag to the outgoing header. The
5140parameter can be an arrayref or a space-delimited string of P3P tags.
5141For example:
5142
5143 print header(-p3p=>[qw(CAO DSP LAW CURa)]);
5144 print header(-p3p=>'CAO DSP LAW CURa');
5145
5146In either case, the outgoing header will be formatted as:
5147
5148 P3P: policyref="/w3c/p3p.xml" cp="CAO DSP LAW CURa"
5149
424ec8fa 5150=head2 GENERATING A REDIRECTION HEADER
54310121 5151
29ddc2a4 5152 print redirect('http://somewhere.else/in/movie/land');
54310121 5153
424ec8fa
GS
5154Sometimes you don't want to produce a document yourself, but simply
5155redirect the browser elsewhere, perhaps choosing a URL based on the
5156time of day or the identity of the user.
5157
5158The redirect() function redirects the browser to a different URL. If
5159you use redirection like this, you should B<not> print out a header as
6b4ac661 5160well.
54310121 5161
2ed511ec
RGS
5162You should always use full URLs (including the http: or ftp: part) in
5163redirection requests. Relative URLs will not work correctly.
54310121 5164
424ec8fa 5165You can also use named arguments:
54310121 5166
29ddc2a4 5167 print redirect(-uri=>'http://somewhere.else/in/movie/land',
13548fdf
RGS
5168 -nph=>1,
5169 -status=>301);
54310121 5170
5171The B<-nph> parameter, if set to a true value, will issue the correct
8f3ccfa2 5172headers to work with a NPH (no-parse-header) script. This is important
58129083 5173to use with certain servers, such as Microsoft IIS, which
54310121 5174expect all their scripts to be NPH.
5175
13548fdf
RGS
5176The B<-status> parameter will set the status of the redirect. HTTP
5177defines three different possible redirection status codes:
5178
5179 301 Moved Permanently
5180 302 Found
5181 303 See Other
5182
5183The default if not specified is 302, which means "moved temporarily."
5184You may change the status to another status code if you wish. Be
5185advised that changing the status to anything other than 301, 302 or
5186303 will probably break redirection.
5187
424ec8fa 5188=head2 CREATING THE HTML DOCUMENT HEADER
54310121 5189
29ddc2a4 5190 print start_html(-title=>'Secrets of the Pyramids',
54310121 5191 -author=>'fred@capricorn.org',
5192 -base=>'true',
5193 -target=>'_blank',
5194 -meta=>{'keywords'=>'pharaoh secret mummy',
5195 'copyright'=>'copyright 1996 King Tut'},
7d37aa8e 5196 -style=>{'src'=>'/styles/style1.css'},
54310121 5197 -BGCOLOR=>'blue');
5198
424ec8fa
GS
5199After creating the HTTP header, most CGI scripts will start writing
5200out an HTML document. The start_html() routine creates the top of the
5201page, along with a lot of optional information that controls the
5202page's appearance and behavior.
54310121 5203
3acbd4f5 5204This method returns a canned HTML header and the opening <body> tag.
424ec8fa 5205All parameters are optional. In the named parameter form, recognized
6b4ac661
JH
5206parameters are -title, -author, -base, -xbase, -dtd, -lang and -target
5207(see below for the explanation). Any additional parameters you
5208provide, such as the Netscape unofficial BGCOLOR attribute, are added
3acbd4f5 5209to the <body> tag. Additional parameters must be proceeded by a
6b4ac661 5210hyphen.
54310121 5211
3acbd4f5 5212The argument B<-xbase> allows you to provide an HREF for the <base> tag
54310121 5213different from the current location, as in
5214
5215 -xbase=>"http://home.mcom.com/"
5216
5217All relative links will be interpreted relative to this tag.
5218
5219The argument B<-target> allows you to provide a default target frame
3d1a2ec4
GS
5220for all the links and fill-out forms on the page. B<This is a
5221non-standard HTTP feature which only works with Netscape browsers!>
5222See the Netscape documentation on frames for details of how to
5223manipulate this.
54310121 5224
5225 -target=>"answer_window"
5226
5227All relative links will be interpreted relative to this tag.
5228You add arbitrary meta information to the header with the B<-meta>
5229argument. This argument expects a reference to an associative array
5230containing name/value pairs of meta information. These will be turned
3acbd4f5 5231into a series of header <meta> tags that look something like this:
54310121 5232
3acbd4f5
JH
5233 <meta name="keywords" content="pharaoh secret mummy">
5234 <meta name="description" content="copyright 1996 King Tut">
424ec8fa 5235
3acbd4f5 5236To create an HTTP-EQUIV type of <meta> tag, use B<-head>, described
6b4ac661 5237below.
424ec8fa 5238
6b4ac661
JH
5239The B<-style> argument is used to incorporate cascading stylesheets
5240into your code. See the section on CASCADING STYLESHEETS for more
5241information.
424ec8fa 5242
6b4ac661 5243The B<-lang> argument is used to incorporate a language attribute into
13548fdf 5244the <html> tag. For example:
6b4ac661 5245
ba056755 5246 print $q->start_html(-lang=>'fr-CA');
424ec8fa 5247
13548fdf
RGS
5248The default if not specified is "en-US" for US English, unless the
5249-dtd parameter specifies an HTML 2.0 or 3.2 DTD, in which case the
5250lang attribute is left off. You can force the lang attribute to left
5251off in other cases by passing an empty string (-lang=>'').
8f3ccfa2 5252
ac734d8b 5253The B<-encoding> argument can be used to specify the character set for
b2d0d414 5254XHTML. It defaults to iso-8859-1 if not specified.
ac734d8b 5255
29ddc2a4
RGS
5256The B<-declare_xml> argument, when used in conjunction with XHTML,
5257will put a <?xml> declaration at the top of the HTML header. The sole
5258purpose of this declaration is to declare the character set
5259encoding. In the absence of -declare_xml, the output HTML will contain
5260a <meta> tag that specifies the encoding, allowing the HTML to pass
5261most validators. The default for -declare_xml is false.
5262
3acbd4f5
JH
5263You can place other arbitrary HTML elements to the <head> section with the
5264B<-head> tag. For example, to place the rarely-used <link> element in the
424ec8fa
GS
5265head section, use this:
5266
3538e1d5 5267 print start_html(-head=>Link({-rel=>'next',
6b4ac661 5268 -href=>'http://www.capricorn.com/s2.html'}));
424ec8fa 5269
3acbd4f5 5270To incorporate multiple HTML elements into the <head> section, just pass an
424ec8fa
GS
5271array reference:
5272
3538e1d5
GS
5273 print start_html(-head=>[
5274 Link({-rel=>'next',
5275 -href=>'http://www.capricorn.com/s2.html'}),
5276 Link({-rel=>'previous',
5277 -href=>'http://www.capricorn.com/s1.html'})
424ec8fa
GS
5278 ]
5279 );
5280
3acbd4f5 5281And here's how to create an HTTP-EQUIV <meta> tag:
6b4ac661 5282
ba056755
JH
5283 print start_html(-head=>meta({-http_equiv => 'Content-Type',
5284 -content => 'text/html'}))
6b4ac661
JH
5285
5286
424ec8fa
GS
5287JAVASCRIPTING: The B<-script>, B<-noScript>, B<-onLoad>,
5288B<-onMouseOver>, B<-onMouseOut> and B<-onUnload> parameters are used
5289to add Netscape JavaScript calls to your pages. B<-script> should
5290point to a block of text containing JavaScript function definitions.
3acbd4f5 5291This block will be placed within a <script> block inside the HTML (not
424ec8fa
GS
5292HTTP) header. The block is placed in the header in order to give your
5293page a fighting chance of having all its JavaScript functions in place
5294even if the user presses the stop button before the page has loaded
5295completely. CGI.pm attempts to format the script in such a way that
5296JavaScript-naive browsers will not choke on the code: unfortunately
5297there are some browsers, such as Chimera for Unix, that get confused
5298by it nevertheless.
5299
5300The B<-onLoad> and B<-onUnload> parameters point to fragments of JavaScript
5301code to execute when the page is respectively opened and closed by the
5302browser. Usually these parameters are calls to functions defined in the
5303B<-script> field:
5304
5305 $query = new CGI;
29ddc2a4 5306 print header;
424ec8fa
GS
5307 $JSCRIPT=<<END;
5308 // Ask a silly question
5309 function riddle_me_this() {
5310 var r = prompt("What walks on four legs in the morning, " +
5311 "two legs in the afternoon, " +
5312 "and three legs in the evening?");
5313 response(r);
5314 }
5315 // Get a silly answer
5316 function response(answer) {
5317 if (answer == "man")
5318 alert("Right you are!");
5319 else
5320 alert("Wrong! Guess again.");
5321 }
5322 END
29ddc2a4 5323 print start_html(-title=>'The Riddle of the Sphinx',
424ec8fa
GS
5324 -script=>$JSCRIPT);
5325
5326Use the B<-noScript> parameter to pass some HTML text that will be displayed on
5327browsers that do not have JavaScript (or browsers where JavaScript is turned
5328off).
5329
8869a4b7
SP
5330The <script> tag, has several attributes including "type" and src.
5331The latter is particularly interesting, as it allows you to keep the
5332JavaScript code in a file or CGI script rather than cluttering up each
5333page with the source. To use these attributes pass a HASH reference
5334in the B<-script> parameter containing one or more of -type, -src, or
5335-code:
424ec8fa
GS
5336
5337 print $q->start_html(-title=>'The Riddle of the Sphinx',
8869a4b7 5338 -script=>{-type=>'JAVASCRIPT',
424ec8fa
GS
5339 -src=>'/javascript/sphinx.js'}
5340 );
5341
5342 print $q->(-title=>'The Riddle of the Sphinx',
8869a4b7 5343 -script=>{-type=>'PERLSCRIPT',
3538e1d5 5344 -code=>'print "hello world!\n;"'}
424ec8fa
GS
5345 );
5346
5347
3acbd4f5 5348A final feature allows you to incorporate multiple <script> sections into the
424ec8fa
GS
5349header. Just pass the list of script sections as an array reference.
5350this allows you to specify different source files for different dialects
8869a4b7 5351of JavaScript. Example:
424ec8fa 5352
3538e1d5
GS
5353 print $q->start_html(-title=>'The Riddle of the Sphinx',
5354 -script=>[
8869a4b7 5355 { -type => 'text/javascript',
3538e1d5 5356 -src => '/javascript/utilities10.js'
424ec8fa 5357 },
8869a4b7 5358 { -type => 'text/javascript',
3538e1d5 5359 -src => '/javascript/utilities11.js'
424ec8fa 5360 },
8869a4b7 5361 { -type => 'text/jscript',
3538e1d5 5362 -src => '/javascript/utilities12.js'
424ec8fa 5363 },
8869a4b7 5364 { -type => 'text/ecmascript',
3538e1d5 5365 -src => '/javascript/utilities219.js'
424ec8fa
GS
5366 }
5367 ]
5368 );
424ec8fa 5369
8869a4b7
SP
5370The option "-language" is a synonym for -type, and is supported for
5371backwad compatibility.
424ec8fa
GS
5372
5373The old-style positional parameters are as follows:
5374
5375=over 4
5376
5377=item B<Parameters:>
5378
5379=item 1.
5380
5381The title
5382
5383=item 2.
5384
3acbd4f5 5385The author's e-mail address (will create a <link rev="MADE"> tag if present
424ec8fa
GS
5386
5387=item 3.
5388
3acbd4f5 5389A 'true' flag if you want to include a <base> tag in the header. This
424ec8fa
GS
5390helps resolve relative addresses to absolute ones when the document is moved,
5391but makes the document hierarchy non-portable. Use with care!
5392
5393=item 4, 5, 6...
5394
3acbd4f5 5395Any other parameters you want to include in the <body> tag. This is a good
424ec8fa
GS
5396place to put Netscape extensions, such as colors and wallpaper patterns.
5397
5398=back
5399
5400=head2 ENDING THE HTML DOCUMENT:
5401
29ddc2a4 5402 print end_html
424ec8fa 5403
3acbd4f5 5404This ends an HTML document by printing the </body></html> tags.
424ec8fa
GS
5405
5406=head2 CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
5407
29ddc2a4 5408 $myself = self_url;
3acbd4f5 5409 print q(<a href="$myself">I'm talking to myself.</a>);
424ec8fa
GS
5410
5411self_url() will return a URL, that, when selected, will reinvoke
5412this script with all its state information intact. This is most
5413useful when you want to jump around within the document using
5414internal anchors but you don't want to disrupt the current contents
5415of the form(s). Something like this will do the trick.
5416
29ddc2a4 5417 $myself = self_url;
188ba755
JH
5418 print "<a href=\"$myself#table1\">See table 1</a>";
5419 print "<a href=\"$myself#table2\">See table 2</a>";
5420 print "<a href=\"$myself#yourself\">See for yourself</a>";
424ec8fa
GS
5421
5422If you want more control over what's returned, using the B<url()>
5423method instead.
5424
5425You can also retrieve the unprocessed query string with query_string():
5426
29ddc2a4 5427 $the_string = query_string;
424ec8fa
GS
5428
5429=head2 OBTAINING THE SCRIPT'S URL
5430
29ddc2a4
RGS
5431 $full_url = url();
5432 $full_url = url(-full=>1); #alternative syntax
5433 $relative_url = url(-relative=>1);
5434 $absolute_url = url(-absolute=>1);
5435 $url_with_path = url(-path_info=>1);
5436 $url_with_path_and_query = url(-path_info=>1,-query=>1);
5437 $netloc = url(-base => 1);
424ec8fa
GS
5438
5439B<url()> returns the script's URL in a variety of formats. Called
5440without any arguments, it returns the full form of the URL, including
5441host name and port number
5442
5443 http://your.host.com/path/to/script.cgi
5444
5445You can modify this format with the following named arguments:
5446
5447=over 4
5448
5449=item B<-absolute>
5450
5451If true, produce an absolute URL, e.g.
5452
5453 /path/to/script.cgi
5454
5455=item B<-relative>
5456
5457Produce a relative URL. This is useful if you want to reinvoke your
5458script with different parameters. For example:
5459
5460 script.cgi
5461
5462=item B<-full>
5463
5464Produce the full URL, exactly as if called without any arguments.
5465This overrides the -relative and -absolute arguments.
5466
5467=item B<-path> (B<-path_info>)
5468
5469Append the additional path information to the URL. This can be
5470combined with B<-full>, B<-absolute> or B<-relative>. B<-path_info>
5471is provided as a synonym.
5472
5473=item B<-query> (B<-query_string>)
5474
5475Append the query string to the URL. This can be combined with
5476B<-full>, B<-absolute> or B<-relative>. B<-query_string> is provided
5477as a synonym.
5478
03b9648d
JH
5479=item B<-base>
5480
5481Generate just the protocol and net location, as in http://www.foo.com:8000
5482
0a9bdad4
SP
5483=item B<-rewrite>
5484
5485If Apache's mod_rewrite is turned on, then the script name and path
5486info probably won't match the request that the user sent. Set
5487-rewrite=>1 (default) to return URLs that match what the user sent
384f06ae 5488(the original request URI). Set -rewrite=>0 to return URLs that match
0a9bdad4
SP
5489the URL after mod_rewrite's rules have run. Because the additional
5490path information only makes sense in the context of the rewritten URL,
5491-rewrite is set to false when you request path info in the URL.
5492
424ec8fa
GS
5493=back
5494
71f3e297
JH
5495=head2 MIXING POST AND URL PARAMETERS
5496
29ddc2a4 5497 $color = url_param('color');
71f3e297
JH
5498
5499It is possible for a script to receive CGI parameters in the URL as
5500well as in the fill-out form by creating a form that POSTs to a URL
5501containing a query string (a "?" mark followed by arguments). The
5502B<param()> method will always return the contents of the POSTed
5503fill-out form, ignoring the URL's query string. To retrieve URL
5504parameters, call the B<url_param()> method. Use it in the same way as
5505B<param()>. The main difference is that it allows you to read the
5506parameters, but not set them.
5507
5508
5509Under no circumstances will the contents of the URL query string
5510interfere with similarly-named CGI parameters in POSTed forms. If you
5511try to mix a URL query string with a form submitted with the GET
5512method, the results will not be what you expect.
5513
424ec8fa
GS
5514=head1 CREATING STANDARD HTML ELEMENTS:
5515
5516CGI.pm defines general HTML shortcut methods for most, if not all of
5517the HTML 3 and HTML 4 tags. HTML shortcuts are named after a single
5518HTML element and return a fragment of HTML text that you can then
5519print or manipulate as you like. Each shortcut returns a fragment of
5520HTML code that you can append to a string, save to a file, or, most
5521commonly, print out so that it displays in the browser window.
5522
5523This example shows how to use the HTML methods:
5524
424ec8fa
GS
5525 print $q->blockquote(
5526 "Many years ago on the island of",
5527 $q->a({href=>"http://crete.org/"},"Crete"),
3538e1d5 5528 "there lived a Minotaur named",
424ec8fa
GS
5529 $q->strong("Fred."),
5530 ),
5531 $q->hr;
5532
5533This results in the following HTML code (extra newlines have been
5534added for readability):
5535
5536 <blockquote>
5537 Many years ago on the island of
3acbd4f5 5538 <a href="http://crete.org/">Crete</a> there lived
424ec8fa
GS
5539 a minotaur named <strong>Fred.</strong>
5540 </blockquote>
5541 <hr>
5542
5543If you find the syntax for calling the HTML shortcuts awkward, you can
5544import them into your namespace and dispense with the object syntax
5545completely (see the next section for more details):
5546
5547 use CGI ':standard';
5548 print blockquote(
5549 "Many years ago on the island of",
5550 a({href=>"http://crete.org/"},"Crete"),
5551 "there lived a minotaur named",
5552 strong("Fred."),
5553 ),
5554 hr;
54310121 5555
424ec8fa 5556=head2 PROVIDING ARGUMENTS TO HTML SHORTCUTS
7d37aa8e 5557
424ec8fa
GS
5558The HTML methods will accept zero, one or multiple arguments. If you
5559provide no arguments, you get a single tag:
7d37aa8e 5560
3acbd4f5 5561 print hr; # <hr>
7d37aa8e 5562
424ec8fa
GS
5563If you provide one or more string arguments, they are concatenated
5564together with spaces and placed between opening and closing tags:
7d37aa8e 5565
3acbd4f5 5566 print h1("Chapter","1"); # <h1>Chapter 1</h1>"
7d37aa8e 5567
424ec8fa
GS
5568If the first argument is an associative array reference, then the keys
5569and values of the associative array become the HTML tag's attributes:
7d37aa8e 5570
424ec8fa
GS
5571 print a({-href=>'fred.html',-target=>'_new'},
5572 "Open a new frame");
7d37aa8e 5573
3acbd4f5 5574 <a href="fred.html",target="_new">Open a new frame</a>
3cb6de81 5575
424ec8fa
GS
5576You may dispense with the dashes in front of the attribute names if
5577you prefer:
54310121 5578
424ec8fa 5579 print img {src=>'fred.gif',align=>'LEFT'};
54310121 5580
3acbd4f5 5581 <img align="LEFT" src="fred.gif">
54310121 5582
424ec8fa 5583Sometimes an HTML tag attribute has no argument. For example, ordered
8f3ccfa2 5584lists can be marked as COMPACT. The syntax for this is an argument that
424ec8fa 5585that points to an undef string:
54310121 5586
424ec8fa 5587 print ol({compact=>undef},li('one'),li('two'),li('three'));
47e3cabd 5588
424ec8fa
GS
5589Prior to CGI.pm version 2.41, providing an empty ('') string as an
5590attribute argument was the same as providing undef. However, this has
8f3ccfa2 5591changed in order to accommodate those who want to create tags of the form
3acbd4f5 5592<img alt="">. The difference is shown in these two pieces of code:
3cb6de81 5593
8f3ccfa2
JH
5594 CODE RESULT
5595 img({alt=>undef}) <img alt>
5596 img({alt=>''}) <img alt="">
7d37aa8e 5597
424ec8fa 5598=head2 THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
7d37aa8e 5599
424ec8fa
GS
5600One of the cool features of the HTML shortcuts is that they are
5601distributive. If you give them an argument consisting of a
5602B<reference> to a list, the tag will be distributed across each
5603element of the list. For example, here's one way to make an ordered
5604list:
7d37aa8e 5605
424ec8fa 5606 print ul(
6b4ac661 5607 li({-type=>'disc'},['Sneezy','Doc','Sleepy','Happy'])
424ec8fa 5608 );
7d37aa8e 5609
424ec8fa 5610This example will result in HTML output that looks like this:
54310121 5611
3acbd4f5
JH
5612 <ul>
5613 <li type="disc">Sneezy</li>
5614 <li type="disc">Doc</li>
5615 <li type="disc">Sleepy</li>
5616 <li type="disc">Happy</li>
5617 </ul>
54310121 5618
424ec8fa 5619This is extremely useful for creating tables. For example:
54310121 5620
424ec8fa
GS
5621 print table({-border=>undef},
5622 caption('When Should You Eat Your Vegetables?'),
5623 Tr({-align=>CENTER,-valign=>TOP},
5624 [
5625 th(['Vegetable', 'Breakfast','Lunch','Dinner']),
5626 td(['Tomatoes' , 'no', 'yes', 'yes']),
5627 td(['Broccoli' , 'no', 'no', 'yes']),
5628 td(['Onions' , 'yes','yes', 'yes'])
5629 ]
5630 )
5631 );
54310121 5632
424ec8fa 5633=head2 HTML SHORTCUTS AND LIST INTERPOLATION
54310121 5634
424ec8fa 5635Consider this bit of code:
54310121 5636
424ec8fa 5637 print blockquote(em('Hi'),'mom!'));
54310121 5638
424ec8fa 5639It will ordinarily return the string that you probably expect, namely:
54310121 5640
3acbd4f5 5641 <blockquote><em>Hi</em> mom!</blockquote>
54310121 5642
424ec8fa
GS
5643Note the space between the element "Hi" and the element "mom!".
5644CGI.pm puts the extra space there using array interpolation, which is
5645controlled by the magic $" variable. Sometimes this extra space is
5646not what you want, for example, when you are trying to align a series
5647of images. In this case, you can simply change the value of $" to an
5648empty string.
54310121 5649
424ec8fa
GS
5650 {
5651 local($") = '';
5652 print blockquote(em('Hi'),'mom!'));
5653 }
54310121 5654
424ec8fa
GS
5655I suggest you put the code in a block as shown here. Otherwise the
5656change to $" will affect all subsequent code until you explicitly
5657reset it.
54310121 5658
424ec8fa 5659=head2 NON-STANDARD HTML SHORTCUTS
54310121 5660
424ec8fa
GS
5661A few HTML tags don't follow the standard pattern for various
5662reasons.
54310121 5663
424ec8fa
GS
5664B<comment()> generates an HTML comment (<!-- comment -->). Call it
5665like
54310121 5666
424ec8fa 5667 print comment('here is my comment');
54310121 5668
424ec8fa
GS
5669Because of conflicts with built-in Perl functions, the following functions
5670begin with initial caps:
54310121 5671
424ec8fa
GS
5672 Select
5673 Tr
5674 Link
5675 Delete
71f3e297
JH
5676 Accept
5677 Sub
54310121 5678
424ec8fa
GS
5679In addition, start_html(), end_html(), start_form(), end_form(),
5680start_multipart_form() and all the fill-out form tags are special.
5681See their respective sections.
5682
3d1a2ec4
GS
5683=head2 AUTOESCAPING HTML
5684
5685By default, all HTML that is emitted by the form-generating functions
5686is passed through a function called escapeHTML():
5687
5688=over 4
5689
5690=item $escaped_string = escapeHTML("unescaped string");
5691
5692Escape HTML formatting characters in a string.
5693
5694=back
5695
5696Provided that you have specified a character set of ISO-8859-1 (the
5697default), the standard HTML escaping rules will be used. The "<"
5698character becomes "&lt;", ">" becomes "&gt;", "&" becomes "&amp;", and
5699the quote character becomes "&quot;". In addition, the hexadecimal
188ba755 57000x8b and 0x9b characters, which some browsers incorrectly interpret
3d1a2ec4 5701as the left and right angle-bracket characters, are replaced by their
188ba755 5702numeric character entities ("&#8249" and "&#8250;"). If you manually change
3d1a2ec4
GS
5703the charset, either by calling the charset() method explicitly or by
5704passing a -charset argument to header(), then B<all> characters will
5705be replaced by their numeric entities, since CGI.pm has no lookup
5706table for all the possible encodings.
5707
5708The automatic escaping does not apply to other shortcuts, such as
5709h1(). You should call escapeHTML() yourself on untrusted data in
5710order to protect your pages against nasty tricks that people may enter
5711into guestbooks, etc.. To change the character set, use charset().
188ba755 5712To turn autoescaping off completely, use autoEscape(0):
3d1a2ec4
GS
5713
5714=over 4
5715
5716=item $charset = charset([$charset]);
5717
5718Get or set the current character set.
5719
5720=item $flag = autoEscape([$flag]);
5721
5722Get or set the value of the autoescape flag.
5723
5724=back
5725
71f3e297
JH
5726=head2 PRETTY-PRINTING HTML
5727
5728By default, all the HTML produced by these functions comes out as one
5729long line without carriage returns or indentation. This is yuck, but
5730it does reduce the size of the documents by 10-20%. To get
5731pretty-printed output, please use L<CGI::Pretty>, a subclass
5732contributed by Brian Paulsen.
5733
424ec8fa 5734=head1 CREATING FILL-OUT FORMS:
54310121 5735
5736I<General note> The various form-creating methods all return strings
5737to the caller, containing the tag or tags that will create the requested
5738form element. You are responsible for actually printing out these strings.
5739It's set up this way so that you can place formatting tags
5740around the form elements.
5741
5742I<Another note> The default values that you specify for the forms are only
5743used the B<first> time the script is invoked (when there is no query
5744string). On subsequent invocations of the script (when there is a query
5745string), the former values are used even if they are blank.
5746
5747If you want to change the value of a field from its previous value, you have two
5748choices:
5749
5750(1) call the param() method to set it.
5751
5752(2) use the -override (alias -force) parameter (a new feature in version 2.15).
5753This forces the default value to be used, regardless of the previous value:
5754
29ddc2a4 5755 print textfield(-name=>'field_name',
54310121 5756 -default=>'starting value',
5757 -override=>1,
5758 -size=>50,
5759 -maxlength=>80);
5760
5761I<Yet another note> By default, the text and labels of form elements are
5762escaped according to HTML rules. This means that you can safely use
5763"<CLICK ME>" as the label for a button. However, it also interferes with
5764your ability to incorporate special HTML character sequences, such as &Aacute;,
5765into your fields. If you wish to turn off automatic escaping, call the
5766autoEscape() method with a false value immediately after creating the CGI object:
5767
5768 $query = new CGI;
29ddc2a4 5769 autoEscape(undef);
3cb6de81 5770
13548fdf
RGS
5771I<A Lurking Trap!> Some of the form-element generating methods return
5772multiple tags. In a scalar context, the tags will be concatenated
5773together with spaces, or whatever is the current value of the $"
5774global. In a list context, the methods will return a list of
5775elements, allowing you to modify them if you wish. Usually you will
5776not notice this behavior, but beware of this:
5777
29ddc2a4 5778 printf("%s\n",end_form())
13548fdf
RGS
5779
5780end_form() produces several tags, and only the first of them will be
5781printed because the format only expects one value.
5782
5783<p>
5784
5785
54310121 5786=head2 CREATING AN ISINDEX TAG
5787
29ddc2a4 5788 print isindex(-action=>$action);
54310121 5789
5790 -or-
5791
29ddc2a4 5792 print isindex($action);
54310121 5793
3acbd4f5 5794Prints out an <isindex> tag. Not very exciting. The parameter
54310121 5795-action specifies the URL of the script to process the query. The
5796default is to process the query with the current script.
5797
5798=head2 STARTING AND ENDING A FORM
5799
29ddc2a4
RGS
5800 print start_form(-method=>$method,
5801 -action=>$action,
5802 -enctype=>$encoding);
54310121 5803 <... various form stuff ...>
29ddc2a4 5804 print endform;
54310121 5805
5806 -or-
5807
29ddc2a4 5808 print start_form($method,$action,$encoding);
54310121 5809 <... various form stuff ...>
29ddc2a4 5810 print endform;
54310121 5811
3acbd4f5 5812start_form() will return a <form> tag with the optional method,
54310121 5813action and form encoding that you specify. The defaults are:
3cb6de81 5814
54310121 5815 method: POST
5816 action: this script
71f3e297 5817 enctype: application/x-www-form-urlencoded
54310121 5818
3acbd4f5 5819endform() returns the closing </form> tag.
54310121 5820
3d1a2ec4 5821Start_form()'s enctype argument tells the browser how to package the various
54310121 5822fields of the form before sending the form to the server. Two
5823values are possible:
5824
3d1a2ec4
GS
5825B<Note:> This method was previously named startform(), and startform()
5826is still recognized as an alias.
5827
54310121 5828=over 4
5829
5830=item B<application/x-www-form-urlencoded>
5831
5832This is the older type of encoding used by all browsers prior to
5833Netscape 2.0. It is compatible with many CGI scripts and is
5834suitable for short fields containing text data. For your
5835convenience, CGI.pm stores the name of this encoding
6b4ac661 5836type in B<&CGI::URL_ENCODED>.
54310121 5837
5838=item B<multipart/form-data>
5839
5840This is the newer type of encoding introduced by Netscape 2.0.
5841It is suitable for forms that contain very large fields or that
5842are intended for transferring binary data. Most importantly,
5843it enables the "file upload" feature of Netscape 2.0 forms. For
5844your convenience, CGI.pm stores the name of this encoding type
424ec8fa 5845in B<&CGI::MULTIPART>
54310121 5846
5847Forms that use this type of encoding are not easily interpreted
5848by CGI scripts unless they use CGI.pm or another library designed
5849to handle them.
5850
29ddc2a4
RGS
5851If XHTML is activated (the default), then forms will be automatically
5852created using this type of encoding.
5853
54310121 5854=back
5855
3d1a2ec4 5856For compatibility, the start_form() method uses the older form of
54310121 5857encoding by default. If you want to use the newer form of encoding
5858by default, you can call B<start_multipart_form()> instead of
3d1a2ec4 5859B<start_form()>.
54310121 5860
5861JAVASCRIPTING: The B<-name> and B<-onSubmit> parameters are provided
5862for use with JavaScript. The -name parameter gives the
5863form a name so that it can be identified and manipulated by
5864JavaScript functions. -onSubmit should point to a JavaScript
5865function that will be executed just before the form is submitted to your
5866server. You can use this opportunity to check the contents of the form
5867for consistency and completeness. If you find something wrong, you
5868can put up an alert box or maybe fix things up yourself. You can
5869abort the submission by returning false from this function.
5870
3acbd4f5 5871Usually the bulk of JavaScript functions are defined in a <script>
54310121 5872block in the HTML header and -onSubmit points to one of these function
5873call. See start_html() for details.
5874
29ddc2a4
RGS
5875=head2 FORM ELEMENTS
5876
5877After starting a form, you will typically create one or more
5878textfields, popup menus, radio groups and other form elements. Each
5879of these elements takes a standard set of named arguments. Some
5880elements also have optional arguments. The standard arguments are as
5881follows:
5882
5883=over 4
5884
5885=item B<-name>
5886
5887The name of the field. After submission this name can be used to
5888retrieve the field's value using the param() method.
5889
5890=item B<-value>, B<-values>
5891
5892The initial value of the field which will be returned to the script
5893after form submission. Some form elements, such as text fields, take
5894a single scalar -value argument. Others, such as popup menus, take a
5895reference to an array of values. The two arguments are synonyms.
5896
5897=item B<-tabindex>
5898
5899A numeric value that sets the order in which the form element receives
5900focus when the user presses the tab key. Elements with lower values
5901receive focus first.
5902
5903=item B<-id>
5904
5905A string identifier that can be used to identify this element to
5906JavaScript and DHTML.
5907
5908=item B<-override>
5909
5910A boolean, which, if true, forces the element to take on the value
5911specified by B<-value>, overriding the sticky behavior described
5912earlier for the B<-no_sticky> pragma.
5913
5914=item B<-onChange>, B<-onFocus>, B<-onBlur>, B<-onMouseOver>, B<-onMouseOut>, B<-onSelect>
5915
5916These are used to assign JavaScript event handlers. See the
5917JavaScripting section for more details.
5918
5919=back
5920
5921Other common arguments are described in the next section. In addition
5922to these, all attributes described in the HTML specifications are
5923supported.
5924
54310121 5925=head2 CREATING A TEXT FIELD
5926
29ddc2a4
RGS
5927 print textfield(-name=>'field_name',
5928 -value=>'starting value',
5929 -size=>50,
5930 -maxlength=>80);
54310121 5931 -or-
5932
29ddc2a4 5933 print textfield('field_name','starting value',50,80);
54310121 5934
29ddc2a4 5935textfield() will return a text input field.
54310121 5936
5937=over 4
5938
5939=item B<Parameters>
5940
5941=item 1.
5942
29ddc2a4 5943The first parameter is the required name for the field (-name).
54310121 5944
5945=item 2.
5946
5947The optional second parameter is the default starting value for the field
29ddc2a4 5948contents (-value, formerly known as -default).
54310121 5949
5950=item 3.
5951
5952The optional third parameter is the size of the field in
5953 characters (-size).
5954
5955=item 4.
5956
5957The optional fourth parameter is the maximum number of characters the
5958 field will accept (-maxlength).
5959
5960=back
5961
5962As with all these methods, the field will be initialized with its
5963previous contents from earlier invocations of the script.
5964When the form is processed, the value of the text field can be
5965retrieved with:
5966
29ddc2a4 5967 $value = param('foo');
54310121 5968
5969If you want to reset it from its initial value after the script has been
5970called once, you can do so like this:
5971
29ddc2a4 5972 param('foo',"I'm taking over this value!");
54310121 5973
5974=head2 CREATING A BIG TEXT FIELD
5975
29ddc2a4 5976 print textarea(-name=>'foo',
54310121 5977 -default=>'starting value',
5978 -rows=>10,
5979 -columns=>50);
5980
5981 -or
5982
29ddc2a4 5983 print textarea('foo','starting value',10,50);
54310121 5984
5985textarea() is just like textfield, but it allows you to specify
5986rows and columns for a multiline text entry box. You can provide
5987a starting value for the field, which can be long and contain
5988multiple lines.
5989
54310121 5990=head2 CREATING A PASSWORD FIELD
5991
29ddc2a4 5992 print password_field(-name=>'secret',
54310121 5993 -value=>'starting value',
5994 -size=>50,
5995 -maxlength=>80);
5996 -or-
5997
29ddc2a4 5998 print password_field('secret','starting value',50,80);
54310121 5999
6000password_field() is identical to textfield(), except that its contents
6001will be starred out on the web page.
6002
54310121 6003=head2 CREATING A FILE UPLOAD FIELD
6004
29ddc2a4 6005 print filefield(-name=>'uploaded_file',
54310121 6006 -default=>'starting value',
6007 -size=>50,
6008 -maxlength=>80);
6009 -or-
6010
29ddc2a4 6011 print filefield('uploaded_file','starting value',50,80);
54310121 6012
6013filefield() will return a file upload field for Netscape 2.0 browsers.
6014In order to take full advantage of this I<you must use the new
6015multipart encoding scheme> for the form. You can do this either
6b4ac661 6016by calling B<start_form()> with an encoding type of B<&CGI::MULTIPART>,
54310121 6017or by calling the new method B<start_multipart_form()> instead of
3d1a2ec4 6018vanilla B<start_form()>.
54310121 6019
6020=over 4
6021
6022=item B<Parameters>
6023
6024=item 1.
6025
6026The first parameter is the required name for the field (-name).
6027
6028=item 2.
6029
6030The optional second parameter is the starting value for the field contents
6031to be used as the default file name (-default).
6032
71f3e297
JH
6033For security reasons, browsers don't pay any attention to this field,
6034and so the starting value will always be blank. Worse, the field
6035loses its "sticky" behavior and forgets its previous contents. The
6036starting value field is called for in the HTML specification, however,
6037and possibly some browser will eventually provide support for it.
54310121 6038
6039=item 3.
6040
6041The optional third parameter is the size of the field in
6042characters (-size).
6043
6044=item 4.
6045
6046The optional fourth parameter is the maximum number of characters the
6047field will accept (-maxlength).
6048
6049=back
6050
6051When the form is processed, you can retrieve the entered filename
3538e1d5 6052by calling param():
54310121 6053
29ddc2a4 6054 $filename = param('uploaded_file');
54310121 6055
3538e1d5
GS
6056Different browsers will return slightly different things for the
6057name. Some browsers return the filename only. Others return the full
6058path to the file, using the path conventions of the user's machine.
6059Regardless, the name returned is always the name of the file on the
6060I<user's> machine, and is unrelated to the name of the temporary file
6061that CGI.pm creates during upload spooling (see below).
54310121 6062
6063The filename returned is also a file handle. You can read the contents
6064of the file using standard Perl file reading calls:
6065
6066 # Read a text file and print it out
6067 while (<$filename>) {
6068 print;
6069 }
6070
6071 # Copy a binary file to somewhere safe
6072 open (OUTFILE,">>/usr/local/web/users/feedback");
6073 while ($bytesread=read($filename,$buffer,1024)) {
6074 print OUTFILE $buffer;
6075 }
6076
3538e1d5
GS
6077However, there are problems with the dual nature of the upload fields.
6078If you C<use strict>, then Perl will complain when you try to use a
6079string as a filehandle. You can get around this by placing the file
6080reading code in a block containing the C<no strict> pragma. More
6081seriously, it is possible for the remote user to type garbage into the
6082upload field, in which case what you get from param() is not a
6083filehandle at all, but a string.
6084
6085To be safe, use the I<upload()> function (new in version 2.47). When
6086called with the name of an upload field, I<upload()> returns a
e1c70484
NC
6087filehandle-like object, or undef if the parameter is not a valid
6088filehandle.
3538e1d5 6089
29ddc2a4 6090 $fh = upload('uploaded_file');
3538e1d5
GS
6091 while (<$fh>) {
6092 print;
6093 }
6094
e1c70484 6095In a list context, upload() will return an array of filehandles.
199d4a26
JH
6096This makes it possible to create forms that use the same name for
6097multiple upload fields.
6098
3538e1d5
GS
6099This is the recommended idiom.
6100
e1c70484
NC
6101The lightweight filehandle returned by CGI.pm is not compatible with
6102IO::Handle; for example, it does not have read() or getline()
6103functions, but instead must be manipulated using read($fh) or
6104<$fh>. To get a compatible IO::Handle object, call the handle's
6105handle() method:
681699b9 6106
e1c70484 6107 my $real_io_handle = upload('uploaded_file')->handle;
681699b9 6108
54310121 6109When a file is uploaded the browser usually sends along some
6110information along with it in the format of headers. The information
6111usually includes the MIME content type. Future browsers may send
6112other information as well (such as modification date and size). To
6113retrieve this information, call uploadInfo(). It returns a reference to
6114an associative array containing all the document headers.
6115
29ddc2a4
RGS
6116 $filename = param('uploaded_file');
6117 $type = uploadInfo($filename)->{'Content-Type'};
54310121 6118 unless ($type eq 'text/html') {
6119 die "HTML FILES ONLY!";
6120 }
6121
6122If you are using a machine that recognizes "text" and "binary" data
6123modes, be sure to understand when and how to use them (see the Camel book).
3538e1d5
GS
6124Otherwise you may find that binary files are corrupted during file
6125uploads.
6126
6127There are occasionally problems involving parsing the uploaded file.
6128This usually happens when the user presses "Stop" before the upload is
6129finished. In this case, CGI.pm will return undef for the name of the
6130uploaded file and set I<cgi_error()> to the string "400 Bad request
6131(malformed multipart POST)". This error message is designed so that
6132you can incorporate it into a status code to be sent to the browser.
6133Example:
6134
29ddc2a4
RGS
6135 $file = upload('uploaded_file');
6136 if (!$file && cgi_error) {
6137 print header(-status=>cgi_error);
3538e1d5
GS
6138 exit 0;
6139 }
6140
6141You are free to create a custom HTML page to complain about the error,
6142if you wish.
54310121 6143
2ed511ec
RGS
6144You can set up a callback that will be called whenever a file upload
6145is being read during the form processing. This is much like the
6146UPLOAD_HOOK facility available in Apache::Request, with the exception
6147that the first argument to the callback is an Apache::Upload object,
6148here it's the remote filename.
6149
cb3b230c 6150 $q = CGI->new(\&hook [,$data [,$use_tempfile]]);
2ed511ec
RGS
6151
6152 sub hook
6153 {
6154 my ($filename, $buffer, $bytes_read, $data) = @_;
6155 print "Read $bytes_read bytes of $filename\n";
6156 }
6157
cb3b230c
SP
6158The $data field is optional; it lets you pass configuration
6159information (e.g. a database handle) to your hook callback.
6160
6161The $use_tempfile field is a flag that lets you turn on and off
6162CGI.pm's use of a temporary disk-based file during file upload. If you
6163set this to a FALSE value (default true) then param('uploaded_file')
6164will no longer work, and the only way to get at the uploaded data is
6165via the hook you provide.
6166
2ed511ec
RGS
6167If using the function-oriented interface, call the CGI::upload_hook()
6168method before calling param() or any other CGI functions:
6169
cb3b230c 6170 CGI::upload_hook(\&hook [,$data [,$use_tempfile]]);
2ed511ec
RGS
6171
6172This method is not exported by default. You will have to import it
6173explicitly if you wish to use it without the CGI:: prefix.
6174
199d4a26
JH
6175If you are using CGI.pm on a Windows platform and find that binary
6176files get slightly larger when uploaded but that text files remain the
6177same, then you have forgotten to activate binary mode on the output
6178filehandle. Be sure to call binmode() on any handle that you create
6179to write the uploaded file to disk.
6180
424ec8fa
GS
6181JAVASCRIPTING: The B<-onChange>, B<-onFocus>, B<-onBlur>,
6182B<-onMouseOver>, B<-onMouseOut> and B<-onSelect> parameters are
6183recognized. See textfield() for details.
54310121 6184
6185=head2 CREATING A POPUP MENU
6186
29ddc2a4 6187 print popup_menu('menu_name',
54310121 6188 ['eenie','meenie','minie'],
6189 'meenie');
6190
6191 -or-
6192
6193 %labels = ('eenie'=>'your first choice',
6194 'meenie'=>'your second choice',
6195 'minie'=>'your third choice');
188ba755 6196 %attributes = ('eenie'=>{'class'=>'class of first choice'});
29ddc2a4 6197 print popup_menu('menu_name',
54310121 6198 ['eenie','meenie','minie'],
188ba755 6199 'meenie',\%labels,\%attributes);
54310121 6200
6201 -or (named parameter style)-
6202
29ddc2a4 6203 print popup_menu(-name=>'menu_name',
54310121 6204 -values=>['eenie','meenie','minie'],
e0ef849f 6205 -default=>['meenie','minie'],
188ba755
JH
6206 -labels=>\%labels,
6207 -attributes=>\%attributes);
54310121 6208
6209popup_menu() creates a menu.
6210
6211=over 4
6212
6213=item 1.
6214
6215The required first argument is the menu's name (-name).
6216
6217=item 2.
6218
6219The required second argument (-values) is an array B<reference>
6220containing the list of menu items in the menu. You can pass the
6221method an anonymous array, as shown in the example, or a reference to
6222a named array, such as "\@foo".
6223
6224=item 3.
6225
6226The optional third parameter (-default) is the name of the default
6227menu choice. If not specified, the first item will be the default.
e0ef849f
SP
6228The values of the previous choice will be maintained across
6229queries. Pass an array reference to select multiple defaults.
54310121 6230
6231=item 4.
6232
6233The optional fourth parameter (-labels) is provided for people who
6234want to use different values for the user-visible label inside the
188ba755 6235popup menu and the value returned to your script. It's a pointer to an
54310121 6236associative array relating menu values to user-visible labels. If you
6237leave this parameter blank, the menu values will be displayed by
6238default. (You can also leave a label undefined if you want to).
6239
188ba755
JH
6240=item 5.
6241
6242The optional fifth parameter (-attributes) is provided to assign
6243any of the common HTML attributes to an individual menu item. It's
6244a pointer to an associative array relating menu values to another
6245associative array with the attribute's name as the key and the
6246attribute's value as the value.
6247
54310121 6248=back
6249
6250When the form is processed, the selected value of the popup menu can
6251be retrieved using:
6252
29ddc2a4 6253 $popup_menu_value = param('menu_name');
54310121 6254
188ba755
JH
6255=head2 CREATING AN OPTION GROUP
6256
6257Named parameter style
6258
29ddc2a4 6259 print popup_menu(-name=>'menu_name',
188ba755 6260 -values=>[qw/eenie meenie minie/,
29ddc2a4
RGS
6261 optgroup(-name=>'optgroup_name',
6262 -values => ['moe','catch'],
6263 -attributes=>{'catch'=>{'class'=>'red'}})],
188ba755
JH
6264 -labels=>{'eenie'=>'one',
6265 'meenie'=>'two',
6266 'minie'=>'three'},
6267 -default=>'meenie');
6268
6269 Old style
29ddc2a4 6270 print popup_menu('menu_name',
188ba755 6271 ['eenie','meenie','minie',
29ddc2a4
RGS
6272 optgroup('optgroup_name', ['moe', 'catch'],
6273 {'catch'=>{'class'=>'red'}})],'meenie',
188ba755
JH
6274 {'eenie'=>'one','meenie'=>'two','minie'=>'three'});
6275
29ddc2a4 6276optgroup() creates an option group within a popup menu.
188ba755
JH
6277
6278=over 4
6279
6280=item 1.
6281
6282The required first argument (B<-name>) is the label attribute of the
6283optgroup and is B<not> inserted in the parameter list of the query.
6284
6285=item 2.
6286
6287The required second argument (B<-values>) is an array reference
6288containing the list of menu items in the menu. You can pass the
6289method an anonymous array, as shown in the example, or a reference
6290to a named array, such as \@foo. If you pass a HASH reference,
6291the keys will be used for the menu values, and the values will be
6292used for the menu labels (see -labels below).
6293
6294=item 3.
6295
6296The optional third parameter (B<-labels>) allows you to pass a reference
6297to an associative array containing user-visible labels for one or more
6298of the menu items. You can use this when you want the user to see one
6299menu string, but have the browser return your program a different one.
6300If you don't specify this, the value string will be used instead
6301("eenie", "meenie" and "minie" in this example). This is equivalent
6302to using a hash reference for the -values parameter.
6303
6304=item 4.
6305
6306An optional fourth parameter (B<-labeled>) can be set to a true value
6307and indicates that the values should be used as the label attribute
6308for each option element within the optgroup.
6309
6310=item 5.
6311
6312An optional fifth parameter (-novals) can be set to a true value and
3c4b39be 6313indicates to suppress the val attribute in each option element within
188ba755
JH
6314the optgroup.
6315
6316See the discussion on optgroup at W3C
6317(http://www.w3.org/TR/REC-html40/interact/forms.html#edef-OPTGROUP)
6318for details.
6319
6320=item 6.
6321
6322An optional sixth parameter (-attributes) is provided to assign
6323any of the common HTML attributes to an individual menu item. It's
6324a pointer to an associative array relating menu values to another
6325associative array with the attribute's name as the key and the
6326attribute's value as the value.
6327
cff99809
JH
6328=back
6329
54310121 6330=head2 CREATING A SCROLLING LIST
6331
29ddc2a4 6332 print scrolling_list('list_name',
54310121 6333 ['eenie','meenie','minie','moe'],
188ba755 6334 ['eenie','moe'],5,'true',{'moe'=>{'class'=>'red'}});
54310121 6335 -or-
6336
29ddc2a4 6337 print scrolling_list('list_name',
54310121 6338 ['eenie','meenie','minie','moe'],
6339 ['eenie','moe'],5,'true',
188ba755 6340 \%labels,%attributes);
54310121 6341
6342 -or-
6343
29ddc2a4 6344 print scrolling_list(-name=>'list_name',
54310121 6345 -values=>['eenie','meenie','minie','moe'],
6346 -default=>['eenie','moe'],
6347 -size=>5,
6348 -multiple=>'true',
188ba755
JH
6349 -labels=>\%labels,
6350 -attributes=>\%attributes);
54310121 6351
6352scrolling_list() creates a scrolling list.
6353
6354=over 4
6355
6356=item B<Parameters:>
6357
6358=item 1.
6359
6360The first and second arguments are the list name (-name) and values
6361(-values). As in the popup menu, the second argument should be an
6362array reference.
6363
6364=item 2.
6365
6366The optional third argument (-default) can be either a reference to a
6367list containing the values to be selected by default, or can be a
6368single value to select. If this argument is missing or undefined,
6369then nothing is selected when the list first appears. In the named
6370parameter version, you can use the synonym "-defaults" for this
6371parameter.
6372
6373=item 3.
6374
6375The optional fourth argument is the size of the list (-size).
6376
6377=item 4.
6378
6379The optional fifth argument can be set to true to allow multiple
6380simultaneous selections (-multiple). Otherwise only one selection
6381will be allowed at a time.
6382
6383=item 5.
6384
6385The optional sixth argument is a pointer to an associative array
6386containing long user-visible labels for the list items (-labels).
6387If not provided, the values will be displayed.
6388
188ba755
JH
6389=item 6.
6390
6391The optional sixth parameter (-attributes) is provided to assign
6392any of the common HTML attributes to an individual menu item. It's
6393a pointer to an associative array relating menu values to another
6394associative array with the attribute's name as the key and the
6395attribute's value as the value.
6396
54310121 6397When this form is processed, all selected list items will be returned as
6398a list under the parameter name 'list_name'. The values of the
6399selected items can be retrieved with:
6400
29ddc2a4 6401 @selected = param('list_name');
54310121 6402
6403=back
6404
54310121 6405=head2 CREATING A GROUP OF RELATED CHECKBOXES
6406
29ddc2a4 6407 print checkbox_group(-name=>'group_name',
54310121 6408 -values=>['eenie','meenie','minie','moe'],
6409 -default=>['eenie','moe'],
6410 -linebreak=>'true',
8869a4b7 6411 -disabled => ['moe'],
188ba755
JH
6412 -labels=>\%labels,
6413 -attributes=>\%attributes);
54310121 6414
29ddc2a4 6415 print checkbox_group('group_name',
54310121 6416 ['eenie','meenie','minie','moe'],
188ba755
JH
6417 ['eenie','moe'],'true',\%labels,
6418 {'moe'=>{'class'=>'red'}});
54310121 6419
6420 HTML3-COMPATIBLE BROWSERS ONLY:
6421
29ddc2a4 6422 print checkbox_group(-name=>'group_name',
54310121 6423 -values=>['eenie','meenie','minie','moe'],
6424 -rows=2,-columns=>2);
3cb6de81 6425
54310121 6426
6427checkbox_group() creates a list of checkboxes that are related
6428by the same name.
6429
6430=over 4
6431
6432=item B<Parameters:>
6433
6434=item 1.
6435
6436The first and second arguments are the checkbox name and values,
6437respectively (-name and -values). As in the popup menu, the second
6438argument should be an array reference. These values are used for the
6439user-readable labels printed next to the checkboxes as well as for the
6440values passed to your script in the query string.
6441
6442=item 2.
6443
6444The optional third argument (-default) can be either a reference to a
6445list containing the values to be checked by default, or can be a
6446single value to checked. If this argument is missing or undefined,
6447then nothing is selected when the list first appears.
6448
6449=item 3.
6450
6451The optional fourth argument (-linebreak) can be set to true to place
6452line breaks between the checkboxes so that they appear as a vertical
6453list. Otherwise, they will be strung together on a horizontal line.
6454
29ddc2a4 6455=back
54310121 6456
54310121 6457
29ddc2a4
RGS
6458The optional b<-labels> argument is a pointer to an associative array
6459relating the checkbox values to the user-visible labels that will be
6460printed next to them. If not provided, the values will be used as the
6461default.
54310121 6462
54310121 6463
8869a4b7
SP
6464The optional parameters B<-rows>, and B<-columns> cause
6465checkbox_group() to return an HTML3 compatible table containing the
6466checkbox group formatted with the specified number of rows and
6467columns. You can provide just the -columns parameter if you wish;
6468checkbox_group will calculate the correct number of rows for you.
188ba755 6469
8869a4b7
SP
6470The option b<-disabled> takes an array of checkbox values and disables
6471them by greying them out (this may not be supported by all browsers).
188ba755 6472
29ddc2a4
RGS
6473The optional B<-attributes> argument is provided to assign any of the
6474common HTML attributes to an individual menu item. It's a pointer to
6475an associative array relating menu values to another associative array
6476with the attribute's name as the key and the attribute's value as the
6477value.
54310121 6478
29ddc2a4
RGS
6479The optional B<-tabindex> argument can be used to control the order in which
6480radio buttons receive focus when the user presses the tab button. If
6481passed a scalar numeric value, the first element in the group will
6482receive this tab index and subsequent elements will be incremented by
6483one. If given a reference to an array of radio button values, then
6484the indexes will be jiggered so that the order specified in the array
6485will correspond to the tab order. You can also pass a reference to a
6486hash in which the hash keys are the radio button values and the values
6487are the tab indexes of each button. Examples:
6488
6489 -tabindex => 100 # this group starts at index 100 and counts up
6490 -tabindex => ['moe','minie','eenie','meenie'] # tab in this order
6491 -tabindex => {meenie=>100,moe=>101,minie=>102,eenie=>200} # tab in this order
54310121 6492
bb8b3399
SP
6493The optional B<-labelattributes> argument will contain attributes
6494attached to the <label> element that surrounds each button.
6495
54310121 6496When the form is processed, all checked boxes will be returned as
6497a list under the parameter name 'group_name'. The values of the
6498"on" checkboxes can be retrieved with:
6499
29ddc2a4 6500 @turned_on = param('group_name');
54310121 6501
6502The value returned by checkbox_group() is actually an array of button
6503elements. You can capture them and use them within tables, lists,
6504or in other creative ways:
6505
29ddc2a4 6506 @h = checkbox_group(-name=>'group_name',-values=>\@values);
54310121 6507 &use_in_creative_way(@h);
6508
54310121 6509=head2 CREATING A STANDALONE CHECKBOX
6510
29ddc2a4 6511 print checkbox(-name=>'checkbox_name',
ac734d8b 6512 -checked=>1,
54310121 6513 -value=>'ON',
6514 -label=>'CLICK ME');
6515
6516 -or-
6517
29ddc2a4 6518 print checkbox('checkbox_name','checked','ON','CLICK ME');
54310121 6519
6520checkbox() is used to create an isolated checkbox that isn't logically
6521related to any others.
6522
6523=over 4
6524
6525=item B<Parameters:>
6526
6527=item 1.
6528
6529The first parameter is the required name for the checkbox (-name). It
6530will also be used for the user-readable label printed next to the
6531checkbox.
6532
6533=item 2.
6534
6535The optional second parameter (-checked) specifies that the checkbox
6536is turned on by default. Synonyms are -selected and -on.
6537
6538=item 3.
6539
6540The optional third parameter (-value) specifies the value of the
6541checkbox when it is checked. If not provided, the word "on" is
6542assumed.
6543
6544=item 4.
6545
6546The optional fourth parameter (-label) is the user-readable label to
6547be attached to the checkbox. If not provided, the checkbox name is
6548used.
6549
6550=back
6551
6552The value of the checkbox can be retrieved using:
6553
29ddc2a4 6554 $turned_on = param('checkbox_name');
54310121 6555
6556=head2 CREATING A RADIO BUTTON GROUP
6557
29ddc2a4 6558 print radio_group(-name=>'group_name',
54310121 6559 -values=>['eenie','meenie','minie'],
6560 -default=>'meenie',
6561 -linebreak=>'true',
188ba755
JH
6562 -labels=>\%labels,
6563 -attributes=>\%attributes);
54310121 6564
6565 -or-
6566
29ddc2a4 6567 print radio_group('group_name',['eenie','meenie','minie'],
188ba755 6568 'meenie','true',\%labels,\%attributes);
54310121 6569
6570
6571 HTML3-COMPATIBLE BROWSERS ONLY:
6572
29ddc2a4 6573 print radio_group(-name=>'group_name',
54310121 6574 -values=>['eenie','meenie','minie','moe'],
6575 -rows=2,-columns=>2);
6576
6577radio_group() creates a set of logically-related radio buttons
6578(turning one member of the group on turns the others off)
6579
6580=over 4
6581
6582=item B<Parameters:>
6583
6584=item 1.
6585
6586The first argument is the name of the group and is required (-name).
6587
6588=item 2.
6589
6590The second argument (-values) is the list of values for the radio
6591buttons. The values and the labels that appear on the page are
6592identical. Pass an array I<reference> in the second argument, either
6593using an anonymous array, as shown, or by referencing a named array as
6594in "\@foo".
6595
6596=item 3.
6597
6598The optional third parameter (-default) is the name of the default
6599button to turn on. If not specified, the first item will be the
6600default. You can provide a nonexistent button name, such as "-" to
6601start up with no buttons selected.
6602
6603=item 4.
6604
6605The optional fourth parameter (-linebreak) can be set to 'true' to put
6606line breaks between the buttons, creating a vertical list.
6607
6608=item 5.
6609
6610The optional fifth parameter (-labels) is a pointer to an associative
6611array relating the radio button values to user-visible labels to be
6612used in the display. If not provided, the values themselves are
6613displayed.
6614
29ddc2a4 6615=back
54310121 6616
188ba755 6617
29ddc2a4
RGS
6618All modern browsers can take advantage of the optional parameters
6619B<-rows>, and B<-columns>. These parameters cause radio_group() to
6620return an HTML3 compatible table containing the radio group formatted
6621with the specified number of rows and columns. You can provide just
6622the -columns parameter if you wish; radio_group will calculate the
6623correct number of rows for you.
188ba755 6624
54310121 6625To include row and column headings in the returned table, you
8869a4b7 6626can use the B<-rowheaders> and B<-colheaders> parameters. Both
54310121 6627of these accept a pointer to an array of headings to use.
6628The headings are just decorative. They don't reorganize the
f610777f 6629interpretation of the radio buttons -- they're still a single named
54310121 6630unit.
6631
29ddc2a4
RGS
6632The optional B<-tabindex> argument can be used to control the order in which
6633radio buttons receive focus when the user presses the tab button. If
6634passed a scalar numeric value, the first element in the group will
6635receive this tab index and subsequent elements will be incremented by
6636one. If given a reference to an array of radio button values, then
6637the indexes will be jiggered so that the order specified in the array
6638will correspond to the tab order. You can also pass a reference to a
6639hash in which the hash keys are the radio button values and the values
6640are the tab indexes of each button. Examples:
6641
6642 -tabindex => 100 # this group starts at index 100 and counts up
6643 -tabindex => ['moe','minie','eenie','meenie'] # tab in this order
6644 -tabindex => {meenie=>100,moe=>101,minie=>102,eenie=>200} # tab in this order
6645
6646
6647The optional B<-attributes> argument is provided to assign any of the
6648common HTML attributes to an individual menu item. It's a pointer to
6649an associative array relating menu values to another associative array
6650with the attribute's name as the key and the attribute's value as the
6651value.
54310121 6652
bb8b3399
SP
6653The optional B<-labelattributes> argument will contain attributes
6654attached to the <label> element that surrounds each button.
6655
54310121 6656When the form is processed, the selected radio button can
6657be retrieved using:
6658
29ddc2a4 6659 $which_radio_button = param('group_name');
54310121 6660
6661The value returned by radio_group() is actually an array of button
6662elements. You can capture them and use them within tables, lists,
6663or in other creative ways:
6664
29ddc2a4 6665 @h = radio_group(-name=>'group_name',-values=>\@values);
54310121 6666 &use_in_creative_way(@h);
6667
6668=head2 CREATING A SUBMIT BUTTON
6669
29ddc2a4 6670 print submit(-name=>'button_name',
54310121 6671 -value=>'value');
6672
6673 -or-
6674
29ddc2a4 6675 print submit('button_name','value');
54310121 6676
6677submit() will create the query submission button. Every form
6678should have one of these.
6679
6680=over 4
6681
6682=item B<Parameters:>
6683
6684=item 1.
6685
6686The first argument (-name) is optional. You can give the button a
6687name if you have several submission buttons in your form and you want
13548fdf 6688to distinguish between them.
54310121 6689
6690=item 2.
6691
6692The second argument (-value) is also optional. This gives the button
13548fdf
RGS
6693a value that will be passed to your script in the query string. The
6694name will also be used as the user-visible label.
6695
6696=item 3.
6697
6698You can use -label as an alias for -value. I always get confused
6699about which of -name and -value changes the user-visible label on the
6700button.
54310121 6701
6702=back
6703
6704You can figure out which button was pressed by using different
6705values for each one:
6706
29ddc2a4 6707 $which_one = param('button_name');
54310121 6708
6709=head2 CREATING A RESET BUTTON
6710
29ddc2a4 6711 print reset
54310121 6712
6713reset() creates the "reset" button. Note that it restores the
6714form to its value from the last time the script was called,
6715NOT necessarily to the defaults.
6716
71f3e297
JH
6717Note that this conflicts with the Perl reset() built-in. Use
6718CORE::reset() to get the original reset function.
6719
54310121 6720=head2 CREATING A DEFAULT BUTTON
6721
29ddc2a4 6722 print defaults('button_label')
54310121 6723
6724defaults() creates a button that, when invoked, will cause the
6725form to be completely reset to its defaults, wiping out all the
6726changes the user ever made.
6727
6728=head2 CREATING A HIDDEN FIELD
6729
29ddc2a4 6730 print hidden(-name=>'hidden_name',
54310121 6731 -default=>['value1','value2'...]);
6732
6733 -or-
6734
29ddc2a4 6735 print hidden('hidden_name','value1','value2'...);
54310121 6736
6737hidden() produces a text field that can't be seen by the user. It
6738is useful for passing state variable information from one invocation
6739of the script to the next.
6740
6741=over 4
6742
6743=item B<Parameters:>
6744
6745=item 1.
6746
6747The first argument is required and specifies the name of this
6748field (-name).
6749
6750=item 2.
6751
6752The second argument is also required and specifies its value
6753(-default). In the named parameter style of calling, you can provide
6754a single value here or a reference to a whole list
6755
6756=back
6757
6758Fetch the value of a hidden field this way:
6759
29ddc2a4 6760 $hidden_value = param('hidden_name');
54310121 6761
6762Note, that just like all the other form elements, the value of a
6763hidden field is "sticky". If you want to replace a hidden field with
6764some other values after the script has been called once you'll have to
6765do it manually:
6766
29ddc2a4 6767 param('hidden_name','new','values','here');
54310121 6768
6769=head2 CREATING A CLICKABLE IMAGE BUTTON
6770
29ddc2a4 6771 print image_button(-name=>'button_name',
54310121 6772 -src=>'/source/URL',
6773 -align=>'MIDDLE');
6774
6775 -or-
6776
29ddc2a4 6777 print image_button('button_name','/source/URL','MIDDLE');
54310121 6778
6779image_button() produces a clickable image. When it's clicked on the
6780position of the click is returned to your script as "button_name.x"
6781and "button_name.y", where "button_name" is the name you've assigned
6782to it.
6783
54310121 6784=over 4
6785
6786=item B<Parameters:>
6787
6788=item 1.
6789
6790The first argument (-name) is required and specifies the name of this
6791field.
6792
6793=item 2.
6794
6795The second argument (-src) is also required and specifies the URL
6796
6797=item 3.
6798The third option (-align, optional) is an alignment type, and may be
6799TOP, BOTTOM or MIDDLE
6800
6801=back
6802
6803Fetch the value of the button this way:
29ddc2a4
RGS
6804 $x = param('button_name.x');
6805 $y = param('button_name.y');
54310121 6806
6807=head2 CREATING A JAVASCRIPT ACTION BUTTON
6808
29ddc2a4 6809 print button(-name=>'button_name',
54310121 6810 -value=>'user visible label',
6811 -onClick=>"do_something()");
6812
6813 -or-
6814
29ddc2a4 6815 print button('button_name',"do_something()");
54310121 6816
6817button() produces a button that is compatible with Netscape 2.0's
6818JavaScript. When it's pressed the fragment of JavaScript code
6819pointed to by the B<-onClick> parameter will be executed. On
6820non-Netscape browsers this form element will probably not even
6821display.
6822
71f3e297 6823=head1 HTTP COOKIES
54310121 6824
71f3e297
JH
6825Netscape browsers versions 1.1 and higher, and all versions of
6826Internet Explorer, support a so-called "cookie" designed to help
6827maintain state within a browser session. CGI.pm has several methods
6828that support cookies.
54310121 6829
6830A cookie is a name=value pair much like the named parameters in a CGI
6831query string. CGI scripts create one or more cookies and send
6832them to the browser in the HTTP header. The browser maintains a list
6833of cookies that belong to a particular Web server, and returns them
6834to the CGI script during subsequent interactions.
6835
6836In addition to the required name=value pair, each cookie has several
6837optional attributes:
6838
6839=over 4
6840
6841=item 1. an expiration time
6842
6843This is a time/date string (in a special GMT format) that indicates
6844when a cookie expires. The cookie will be saved and returned to your
6845script until this expiration date is reached if the user exits
71f3e297
JH
6846the browser and restarts it. If an expiration date isn't specified, the cookie
6847will remain active until the user quits the browser.
54310121 6848
6849=item 2. a domain
6850
6851This is a partial or complete domain name for which the cookie is
6852valid. The browser will return the cookie to any host that matches
6853the partial domain name. For example, if you specify a domain name
71f3e297 6854of ".capricorn.com", then the browser will return the cookie to
54310121 6855Web servers running on any of the machines "www.capricorn.com",
6856"www2.capricorn.com", "feckless.capricorn.com", etc. Domain names
6857must contain at least two periods to prevent attempts to match
6858on top level domains like ".edu". If no domain is specified, then
6859the browser will only return the cookie to servers on the host the
6860cookie originated from.
6861
6862=item 3. a path
6863
6864If you provide a cookie path attribute, the browser will check it
6865against your script's URL before returning the cookie. For example,
6866if you specify the path "/cgi-bin", then the cookie will be returned
6867to each of the scripts "/cgi-bin/tally.pl", "/cgi-bin/order.pl",
6868and "/cgi-bin/customer_service/complain.pl", but not to the script
6869"/cgi-private/site_admin.pl". By default, path is set to "/", which
6870causes the cookie to be sent to any CGI script on your site.
6871
6872=item 4. a "secure" flag
6873
6874If the "secure" attribute is set, the cookie will only be sent to your
6875script if the CGI request is occurring on a secure channel, such as SSL.
6876
6877=back
6878
71f3e297 6879The interface to HTTP cookies is the B<cookie()> method:
54310121 6880
29ddc2a4 6881 $cookie = cookie(-name=>'sessionID',
54310121 6882 -value=>'xyzzy',
6883 -expires=>'+1h',
6884 -path=>'/cgi-bin/database',
6885 -domain=>'.capricorn.org',
6886 -secure=>1);
29ddc2a4 6887 print header(-cookie=>$cookie);
54310121 6888
6889B<cookie()> creates a new cookie. Its parameters include:
6890
6891=over 4
6892
6893=item B<-name>
6894
6895The name of the cookie (required). This can be any string at all.
71f3e297 6896Although browsers limit their cookie names to non-whitespace
54310121 6897alphanumeric characters, CGI.pm removes this restriction by escaping
6898and unescaping cookies behind the scenes.
6899
6900=item B<-value>
6901
6902The value of the cookie. This can be any scalar value,
6903array reference, or even associative array reference. For example,
6904you can store an entire associative array into a cookie this way:
6905
29ddc2a4 6906 $cookie=cookie(-name=>'family information',
54310121 6907 -value=>\%childrens_ages);
6908
6909=item B<-path>
6910
6911The optional partial path for which this cookie will be valid, as described
6912above.
6913
6914=item B<-domain>
6915
6916The optional partial domain for which this cookie will be valid, as described
6917above.
6918
6919=item B<-expires>
6920
6921The optional expiration date for this cookie. The format is as described
6922in the section on the B<header()> method:
6923
6924 "+1h" one hour from now
6925
6926=item B<-secure>
6927
6928If set to true, this cookie will only be used within a secure
6929SSL session.
6930
6931=back
6932
6933The cookie created by cookie() must be incorporated into the HTTP
6934header within the string returned by the header() method:
6935
0664a57d 6936 use CGI ':standard';
29ddc2a4 6937 print header(-cookie=>$my_cookie);
54310121 6938
6939To create multiple cookies, give header() an array reference:
6940
29ddc2a4 6941 $cookie1 = cookie(-name=>'riddle_name',
54310121 6942 -value=>"The Sphynx's Question");
29ddc2a4 6943 $cookie2 = cookie(-name=>'answers',
54310121 6944 -value=>\%answers);
29ddc2a4 6945 print header(-cookie=>[$cookie1,$cookie2]);
54310121 6946
03b9648d 6947To retrieve a cookie, request it by name by calling cookie() method
0664a57d
SP
6948without the B<-value> parameter. This example uses the object-oriented
6949form:
54310121 6950
6951 use CGI;
6952 $query = new CGI;
0664a57d
SP
6953 $riddle = $query->cookie('riddle_name');
6954 %answers = $query->cookie('answers');
03b9648d
JH
6955
6956Cookies created with a single scalar value, such as the "riddle_name"
6957cookie, will be returned in that form. Cookies with array and hash
6958values can also be retrieved.
54310121 6959
6960The cookie and CGI namespaces are separate. If you have a parameter
6961named 'answers' and a cookie named 'answers', the values retrieved by
6962param() and cookie() are independent of each other. However, it's
6963simple to turn a CGI parameter into a cookie, and vice-versa:
6964
6965 # turn a CGI parameter into a cookie
29ddc2a4 6966 $c=cookie(-name=>'answers',-value=>[param('answers')]);
54310121 6967 # vice-versa
29ddc2a4 6968 param(-name=>'answers',-value=>[cookie('answers')]);
54310121 6969
55b5d700
SP
6970If you call cookie() without any parameters, it will return a list of
6971the names of all cookies passed to your script:
6972
6973 @cookies = cookie();
6974
54310121 6975See the B<cookie.cgi> example script for some ideas on how to use
6976cookies effectively.
6977
71f3e297 6978=head1 WORKING WITH FRAMES
54310121 6979
71f3e297
JH
6980It's possible for CGI.pm scripts to write into several browser panels
6981and windows using the HTML 4 frame mechanism. There are three
6982techniques for defining new frames programmatically:
54310121 6983
6984=over 4
6985
6986=item 1. Create a <Frameset> document
6987
6988After writing out the HTTP header, instead of creating a standard
3acbd4f5 6989HTML document using the start_html() call, create a <frameset>
54310121 6990document that defines the frames on the page. Specify your script(s)
6991(with appropriate parameters) as the SRC for each of the frames.
6992
3acbd4f5 6993There is no specific support for creating <frameset> sections
54310121 6994in CGI.pm, but the HTML is very simple to write. See the frame
6995documentation in Netscape's home pages for details
6996
0664a57d 6997 http://wp.netscape.com/assist/net_sites/frames.html
54310121 6998
6999=item 2. Specify the destination for the document in the HTTP header
7000
7001You may provide a B<-target> parameter to the header() method:
3cb6de81 7002
29ddc2a4 7003 print header(-target=>'ResultsWindow');
54310121 7004
71f3e297
JH
7005This will tell the browser to load the output of your script into the
7006frame named "ResultsWindow". If a frame of that name doesn't already
7007exist, the browser will pop up a new window and load your script's
7008document into that. There are a number of magic names that you can
7009use for targets. See the frame documents on Netscape's home pages for
7010details.
54310121 7011
3acbd4f5 7012=item 3. Specify the destination for the document in the <form> tag
54310121 7013
7014You can specify the frame to load in the FORM tag itself. With
7015CGI.pm it looks like this:
7016
29ddc2a4 7017 print start_form(-target=>'ResultsWindow');
54310121 7018
7019When your script is reinvoked by the form, its output will be loaded
7020into the frame named "ResultsWindow". If one doesn't already exist
7021a new window will be created.
7022
7023=back
7024
7025The script "frameset.cgi" in the examples directory shows one way to
7026create pages in which the fill-out form and the response live in
7027side-by-side frames.
7028
29ddc2a4
RGS
7029=head1 SUPPORT FOR JAVASCRIPT
7030
7031Netscape versions 2.0 and higher incorporate an interpreted language
7032called JavaScript. Internet Explorer, 3.0 and higher, supports a
7033closely-related dialect called JScript. JavaScript isn't the same as
7034Java, and certainly isn't at all the same as Perl, which is a great
3c4b39be 7035pity. JavaScript allows you to programmatically change the contents of
29ddc2a4
RGS
7036fill-out forms, create new windows, and pop up dialog box from within
7037Netscape itself. From the point of view of CGI scripting, JavaScript
7038is quite useful for validating fill-out forms prior to submitting
7039them.
7040
7041You'll need to know JavaScript in order to use it. There are many good
7042sources in bookstores and on the web.
7043
7044The usual way to use JavaScript is to define a set of functions in a
7045<SCRIPT> block inside the HTML header and then to register event
7046handlers in the various elements of the page. Events include such
7047things as the mouse passing over a form element, a button being
7048clicked, the contents of a text field changing, or a form being
7049submitted. When an event occurs that involves an element that has
7050registered an event handler, its associated JavaScript code gets
7051called.
7052
7053The elements that can register event handlers include the <BODY> of an
7054HTML document, hypertext links, all the various elements of a fill-out
7055form, and the form itself. There are a large number of events, and
7056each applies only to the elements for which it is relevant. Here is a
7057partial list:
7058
7059=over 4
7060
7061=item B<onLoad>
7062
7063The browser is loading the current document. Valid in:
7064
7065 + The HTML <BODY> section only.
7066
7067=item B<onUnload>
7068
7069The browser is closing the current page or frame. Valid for:
7070
7071 + The HTML <BODY> section only.
7072
7073=item B<onSubmit>
7074
7075The user has pressed the submit button of a form. This event happens
7076just before the form is submitted, and your function can return a
7077value of false in order to abort the submission. Valid for:
7078
7079 + Forms only.
7080
7081=item B<onClick>
7082
7083The mouse has clicked on an item in a fill-out form. Valid for:
7084
7085 + Buttons (including submit, reset, and image buttons)
7086 + Checkboxes
7087 + Radio buttons
7088
7089=item B<onChange>
7090
7091The user has changed the contents of a field. Valid for:
7092
7093 + Text fields
7094 + Text areas
7095 + Password fields
7096 + File fields
7097 + Popup Menus
7098 + Scrolling lists
7099
7100=item B<onFocus>
7101
7102The user has selected a field to work with. Valid for:
7103
7104 + Text fields
7105 + Text areas
7106 + Password fields
7107 + File fields
7108 + Popup Menus
7109 + Scrolling lists
7110
7111=item B<onBlur>
7112
7113The user has deselected a field (gone to work somewhere else). Valid
7114for:
7115
7116 + Text fields
7117 + Text areas
7118 + Password fields
7119 + File fields
7120 + Popup Menus
7121 + Scrolling lists
7122
7123=item B<onSelect>
7124
7125The user has changed the part of a text field that is selected. Valid
7126for:
7127
7128 + Text fields
7129 + Text areas
7130 + Password fields
7131 + File fields
7132
7133=item B<onMouseOver>
7134
7135The mouse has moved over an element.
7136
7137 + Text fields
7138 + Text areas
7139 + Password fields
7140 + File fields
7141 + Popup Menus
7142 + Scrolling lists
7143
7144=item B<onMouseOut>
7145
7146The mouse has moved off an element.
7147
7148 + Text fields
7149 + Text areas
7150 + Password fields
7151 + File fields
7152 + Popup Menus
7153 + Scrolling lists
7154
7155=back
7156
7157In order to register a JavaScript event handler with an HTML element,
7158just use the event name as a parameter when you call the corresponding
7159CGI method. For example, to have your validateAge() JavaScript code
7160executed every time the textfield named "age" changes, generate the
7161field like this:
7162
7163 print textfield(-name=>'age',-onChange=>"validateAge(this)");
7164
7165This example assumes that you've already declared the validateAge()
7166function by incorporating it into a <SCRIPT> block. The CGI.pm
7167start_html() method provides a convenient way to create this section.
7168
7169Similarly, you can create a form that checks itself over for
7170consistency and alerts the user if some essential value is missing by
7171creating it this way:
7172 print startform(-onSubmit=>"validateMe(this)");
7173
7174See the javascript.cgi script for a demonstration of how this all
7175works.
7176
7177
7d37aa8e
LS
7178=head1 LIMITED SUPPORT FOR CASCADING STYLE SHEETS
7179
7180CGI.pm has limited support for HTML3's cascading style sheets (css).
7181To incorporate a stylesheet into your document, pass the
7182start_html() method a B<-style> parameter. The value of this
2ed511ec
RGS
7183parameter may be a scalar, in which case it is treated as the source
7184URL for the stylesheet, or it may be a hash reference. In the latter
7d37aa8e
LS
7185case you should provide the hash with one or more of B<-src> or
7186B<-code>. B<-src> points to a URL where an externally-defined
7187stylesheet can be found. B<-code> points to a scalar value to be
3acbd4f5 7188incorporated into a <style> section. Style definitions in B<-code>
7d37aa8e
LS
7189override similarly-named ones in B<-src>, hence the name "cascading."
7190
424ec8fa
GS
7191You may also specify the type of the stylesheet by adding the optional
7192B<-type> parameter to the hash pointed to by B<-style>. If not
7193specified, the style defaults to 'text/css'.
7194
7d37aa8e
LS
7195To refer to a style within the body of your document, add the
7196B<-class> parameter to any HTML element:
7197
7198 print h1({-class=>'Fancy'},'Welcome to the Party');
7199
7200Or define styles on the fly with the B<-style> parameter:
7201
7202 print h1({-style=>'Color: red;'},'Welcome to Hell');
7203
7204You may also use the new B<span()> element to apply a style to a
7205section of text:
7206
7207 print span({-style=>'Color: red;'},
7208 h1('Welcome to Hell'),
7209 "Where did that handbasket get to?"
7210 );
7211
7212Note that you must import the ":html3" definitions to have the
7213B<span()> method available. Here's a quick and dirty example of using
7214CSS's. See the CSS specification at
7215http://www.w3.org/pub/WWW/TR/Wd-css-1.html for more information.
7216
7217 use CGI qw/:standard :html3/;
7218
7219 #here's a stylesheet incorporated directly into the page
7220 $newStyle=<<END;
7221 <!--
7222 P.Tip {
7223 margin-right: 50pt;
7224 margin-left: 50pt;
7225 color: red;
7226 }
7227 P.Alert {
7228 font-size: 30pt;
7229 font-family: sans-serif;
7230 color: red;
7231 }
7232 -->
7233 END
7234 print header();
7235 print start_html( -title=>'CGI with Style',
7236 -style=>{-src=>'http://www.capricorn.com/style/st1.css',
7237 -code=>$newStyle}
7238 );
7239 print h1('CGI with Style'),
7240 p({-class=>'Tip'},
7241 "Better read the cascading style sheet spec before playing with this!"),
7242 span({-style=>'color: magenta'},
7243 "Look Mom, no hands!",
7244 p(),
7245 "Whooo wee!"
7246 );
7247 print end_html;
7248
13548fdf
RGS
7249Pass an array reference to B<-code> or B<-src> in order to incorporate
7250multiple stylesheets into your document.
6b4ac661 7251
8f3ccfa2
JH
7252Should you wish to incorporate a verbatim stylesheet that includes
7253arbitrary formatting in the header, you may pass a -verbatim tag to
7254the -style hash, as follows:
7255
8869a4b7
SP
7256print start_html (-style => {-verbatim => '@import url("/server-common/css/'.$cssFile.'");',
7257 -src => '/server-common/css/core.css'});
8f3ccfa2
JH
7258
7259
7260This will generate an HTML header that contains this:
7261
7262 <link rel="stylesheet" type="text/css" href="/server-common/css/core.css">
7263 <style type="text/css">
7264 @import url("/server-common/css/main.css");
7265 </style>
7266
1c87da1d
JH
7267Any additional arguments passed in the -style value will be
7268incorporated into the <link> tag. For example:
7269
7270 start_html(-style=>{-src=>['/styles/print.css','/styles/layout.css'],
7271 -media => 'all'});
7272
7273This will give:
7274
7275 <link rel="stylesheet" type="text/css" href="/styles/print.css" media="all"/>
7276 <link rel="stylesheet" type="text/css" href="/styles/layout.css" media="all"/>
7277
7278<p>
7279
7280To make more complicated <link> tags, use the Link() function
7281and pass it to start_html() in the -head argument, as in:
7282
7283 @h = (Link({-rel=>'stylesheet',-type=>'text/css',-src=>'/ss/ss.css',-media=>'all'}),
7284 Link({-rel=>'stylesheet',-type=>'text/css',-src=>'/ss/fred.css',-media=>'paper'}));
7285 print start_html({-head=>\@h})
7286
0664a57d
SP
7287To create primary and "alternate" stylesheet, use the B<-alternate> option:
7288
7289 start_html(-style=>{-src=>[
7290 {-src=>'/styles/print.css'},
7291 {-src=>'/styles/alt.css',-alternate=>1}
7292 ]
7293 });
7294
54310121 7295=head1 DEBUGGING
7296
3d1a2ec4
GS
7297If you are running the script from the command line or in the perl
7298debugger, you can pass the script a list of keywords or
7299parameter=value pairs on the command line or from standard input (you
7300don't have to worry about tricking your script into reading from
7301environment variables). You can pass keywords like this:
54310121 7302
7303 your_script.pl keyword1 keyword2 keyword3
7304
7305or this:
7306
7307 your_script.pl keyword1+keyword2+keyword3
7308
7309or this:
7310
7311 your_script.pl name1=value1 name2=value2
7312
7313or this:
7314
7315 your_script.pl name1=value1&name2=value2
7316
3d1a2ec4
GS
7317To turn off this feature, use the -no_debug pragma.
7318
7319To test the POST method, you may enable full debugging with the -debug
7320pragma. This will allow you to feed newline-delimited name=value
7321pairs to the script on standard input.
54310121 7322
7323When debugging, you can use quotes and backslashes to escape
7324characters in the familiar shell manner, letting you place
7325spaces and other funny characters in your parameter=value
7326pairs:
7327
7328 your_script.pl "name1='I am a long value'" "name2=two\ words"
7329
2ed511ec
RGS
7330Finally, you can set the path info for the script by prefixing the first
7331name/value parameter with the path followed by a question mark (?):
7332
7333 your_script.pl /your/path/here?name1=value1&name2=value2
7334
54310121 7335=head2 DUMPING OUT ALL THE NAME/VALUE PAIRS
7336
3d1a2ec4 7337The Dump() method produces a string consisting of all the query's
54310121 7338name/value pairs formatted nicely as a nested list. This is useful
7339for debugging purposes:
7340
29ddc2a4 7341 print Dump
3cb6de81 7342
54310121 7343
7344Produces something that looks like:
7345
3acbd4f5
JH
7346 <ul>
7347 <li>name1
7348 <ul>
7349 <li>value1
7350 <li>value2
7351 </ul>
7352 <li>name2
7353 <ul>
7354 <li>value1
7355 </ul>
7356 </ul>
54310121 7357
71f3e297
JH
7358As a shortcut, you can interpolate the entire CGI object into a string
7359and it will be replaced with the a nice HTML dump shown above:
54310121 7360
7361 $query=new CGI;
3acbd4f5 7362 print "<h2>Current Values</h2> $query\n";
54310121 7363
7364=head1 FETCHING ENVIRONMENT VARIABLES
7365
7366Some of the more useful environment variables can be fetched
7367through this interface. The methods are as follows:
7368
7369=over 4
7370
71f3e297
JH
7371=item B<Accept()>
7372
7373Return a list of MIME types that the remote browser accepts. If you
7374give this method a single argument corresponding to a MIME type, as in
29ddc2a4 7375Accept('text/html'), it will return a floating point value
71f3e297
JH
7376corresponding to the browser's preference for this type from 0.0
7377(don't want) to 1.0. Glob types (e.g. text/*) in the browser's accept
7378list are handled correctly.
54310121 7379
71f3e297
JH
7380Note that the capitalization changed between version 2.43 and 2.44 in
7381order to avoid conflict with Perl's accept() function.
54310121 7382
7383=item B<raw_cookie()>
7384
424ec8fa 7385Returns the HTTP_COOKIE variable, an HTTP extension implemented by
71f3e297
JH
7386Netscape browsers version 1.1 and higher, and all versions of Internet
7387Explorer. Cookies have a special format, and this method call just
7388returns the raw form (?cookie dough). See cookie() for ways of
7389setting and retrieving cooked cookies.
424ec8fa
GS
7390
7391Called with no parameters, raw_cookie() returns the packed cookie
7392structure. You can separate it into individual cookies by splitting
7393on the character sequence "; ". Called with the name of a cookie,
7394retrieves the B<unescaped> form of the cookie. You can use the
7395regular cookie() method to get the names, or use the raw_fetch()
7396method from the CGI::Cookie module.
54310121 7397
7398=item B<user_agent()>
7399
7400Returns the HTTP_USER_AGENT variable. If you give
7401this method a single argument, it will attempt to
7402pattern match on it, allowing you to do something
29ddc2a4 7403like user_agent(netscape);
54310121 7404
7405=item B<path_info()>
7406
7407Returns additional path information from the script URL.
6b4ac661 7408E.G. fetching /cgi-bin/your_script/additional/stuff will result in
29ddc2a4 7409path_info() returning "/additional/stuff".
54310121 7410
7411NOTE: The Microsoft Internet Information Server
7412is broken with respect to additional path information. If
7413you use the Perl DLL library, the IIS server will attempt to
7414execute the additional path information as a Perl script.
7415If you use the ordinary file associations mapping, the
7416path information will be present in the environment,
7417but incorrect. The best thing to do is to avoid using additional
7418path information in CGI scripts destined for use with IIS.
7419
7420=item B<path_translated()>
7421
7422As per path_info() but returns the additional
7423path information translated into a physical path, e.g.
7424"/usr/local/etc/httpd/htdocs/additional/stuff".
7425
7426The Microsoft IIS is broken with respect to the translated
7427path as well.
7428
7429=item B<remote_host()>
7430
7431Returns either the remote host name or IP address.
7432if the former is unavailable.
7433
7434=item B<script_name()>
7435Return the script name as a partial URL, for self-refering
7436scripts.
7437
7438=item B<referer()>
7439
7440Return the URL of the page the browser was viewing
7441prior to fetching your script. Not available for all
7442browsers.
7443
7444=item B<auth_type ()>
7445
7446Return the authorization/verification method in use for this
7447script, if any.
7448
7449=item B<server_name ()>
7450
7451Returns the name of the server, usually the machine's host
7452name.
7453
7454=item B<virtual_host ()>
7455
7456When using virtual hosts, returns the name of the host that
7457the browser attempted to contact
7458
03b9648d
JH
7459=item B<server_port ()>
7460
7461Return the port that the server is listening on.
7462
2ed511ec
RGS
7463=item B<virtual_port ()>
7464
7465Like server_port() except that it takes virtual hosts into account.
7466Use this when running with virtual hosts.
7467
54310121 7468=item B<server_software ()>
7469
7470Returns the server software and version number.
7471
7472=item B<remote_user ()>
7473
7474Return the authorization/verification name used for user
7475verification, if this script is protected.
7476
7477=item B<user_name ()>
7478
71f3e297
JH
7479Attempt to obtain the remote user's name, using a variety of different
7480techniques. This only works with older browsers such as Mosaic.
7481Newer browsers do not report the user name for privacy reasons!
54310121 7482
7483=item B<request_method()>
7484
7485Returns the method used to access your script, usually
7486one of 'POST', 'GET' or 'HEAD'.
7487
3538e1d5
GS
7488=item B<content_type()>
7489
7490Returns the content_type of data submitted in a POST, generally
7491multipart/form-data or application/x-www-form-urlencoded
7492
7493=item B<http()>
7494
7495Called with no arguments returns the list of HTTP environment
7496variables, including such things as HTTP_USER_AGENT,
7497HTTP_ACCEPT_LANGUAGE, and HTTP_ACCEPT_CHARSET, corresponding to the
7498like-named HTTP header fields in the request. Called with the name of
7499an HTTP header field, returns its value. Capitalization and the use
7500of hyphens versus underscores are not significant.
7501
7502For example, all three of these examples are equivalent:
7503
29ddc2a4
RGS
7504 $requested_language = http('Accept-language');
7505 $requested_language = http('Accept_language');
7506 $requested_language = http('HTTP_ACCEPT_LANGUAGE');
3538e1d5
GS
7507
7508=item B<https()>
7509
7510The same as I<http()>, but operates on the HTTPS environment variables
7511present when the SSL protocol is in effect. Can be used to determine
7512whether SSL is turned on.
7513
54310121 7514=back
7515
424ec8fa 7516=head1 USING NPH SCRIPTS
54310121 7517
424ec8fa
GS
7518NPH, or "no-parsed-header", scripts bypass the server completely by
7519sending the complete HTTP header directly to the browser. This has
7520slight performance benefits, but is of most use for taking advantage
7521of HTTP extensions that are not directly supported by your server,
7522such as server push and PICS headers.
54310121 7523
424ec8fa
GS
7524Servers use a variety of conventions for designating CGI scripts as
7525NPH. Many Unix servers look at the beginning of the script's name for
7526the prefix "nph-". The Macintosh WebSTAR server and Microsoft's
7527Internet Information Server, in contrast, try to decide whether a
7528program is an NPH script by examining the first line of script output.
54310121 7529
54310121 7530
424ec8fa
GS
7531CGI.pm supports NPH scripts with a special NPH mode. When in this
7532mode, CGI.pm will output the necessary extra header information when
7533the header() and redirect() methods are
7534called.
54310121 7535
69c89ae7
JH
7536The Microsoft Internet Information Server requires NPH mode. As of
7537version 2.30, CGI.pm will automatically detect when the script is
7538running under IIS and put itself into this mode. You do not need to
7539do this manually, although it won't hurt anything if you do. However,
7540note that if you have applied Service Pack 6, much of the
7541functionality of NPH scripts, including the ability to redirect while
7542setting a cookie, b<do not work at all> on IIS without a special patch
7543from Microsoft. See
7544http://support.microsoft.com/support/kb/articles/Q280/3/41.ASP:
7545Non-Parsed Headers Stripped From CGI Applications That Have nph-
7546Prefix in Name.
54310121 7547
424ec8fa 7548=over 4
54310121 7549
424ec8fa 7550=item In the B<use> statement
54310121 7551
424ec8fa
GS
7552Simply add the "-nph" pragmato the list of symbols to be imported into
7553your script:
54310121 7554
424ec8fa 7555 use CGI qw(:standard -nph)
54310121 7556
424ec8fa 7557=item By calling the B<nph()> method:
54310121 7558
424ec8fa 7559Call B<nph()> with a non-zero parameter at any point after using CGI.pm in your program.
54310121 7560
424ec8fa 7561 CGI->nph(1)
54310121 7562
551e1d92
RB
7563=item By using B<-nph> parameters
7564
7565in the B<header()> and B<redirect()> statements:
54310121 7566
29ddc2a4 7567 print header(-nph=>1);
54310121 7568
424ec8fa 7569=back
54310121 7570
424ec8fa
GS
7571=head1 Server Push
7572
ba056755 7573CGI.pm provides four simple functions for producing multipart
424ec8fa
GS
7574documents of the type needed to implement server push. These
7575functions were graciously provided by Ed Jordan <ed@fidalgo.net>. To
7576import these into your namespace, you must import the ":push" set.
7577You are also advised to put the script into NPH mode and to set $| to
75781 to avoid buffering problems.
7579
7580Here is a simple script that demonstrates server push:
7581
7582 #!/usr/local/bin/perl
7583 use CGI qw/:push -nph/;
7584 $| = 1;
ba056755
JH
7585 print multipart_init(-boundary=>'----here we go!');
7586 foreach (0 .. 4) {
424ec8fa 7587 print multipart_start(-type=>'text/plain'),
ba056755
JH
7588 "The current time is ",scalar(localtime),"\n";
7589 if ($_ < 4) {
7590 print multipart_end;
7591 } else {
7592 print multipart_final;
7593 }
424ec8fa
GS
7594 sleep 1;
7595 }
54310121 7596
424ec8fa 7597This script initializes server push by calling B<multipart_init()>.
ba056755
JH
7598It then enters a loop in which it begins a new multipart section by
7599calling B<multipart_start()>, prints the current local time,
424ec8fa 7600and ends a multipart section with B<multipart_end()>. It then sleeps
ba056755
JH
7601a second, and begins again. On the final iteration, it ends the
7602multipart section with B<multipart_final()> rather than with
7603B<multipart_end()>.
54310121 7604
424ec8fa 7605=over 4
54310121 7606
424ec8fa 7607=item multipart_init()
3cb6de81 7608
424ec8fa 7609 multipart_init(-boundary=>$boundary);
54310121 7610
424ec8fa
GS
7611Initialize the multipart system. The -boundary argument specifies
7612what MIME boundary string to use to separate parts of the document.
7613If not provided, CGI.pm chooses a reasonable boundary for you.
54310121 7614
424ec8fa 7615=item multipart_start()
54310121 7616
424ec8fa 7617 multipart_start(-type=>$type)
54310121 7618
424ec8fa
GS
7619Start a new part of the multipart document using the specified MIME
7620type. If not specified, text/html is assumed.
54310121 7621
424ec8fa 7622=item multipart_end()
54310121 7623
424ec8fa 7624 multipart_end()
54310121 7625
424ec8fa 7626End a part. You must remember to call multipart_end() once for each
ba056755
JH
7627multipart_start(), except at the end of the last part of the multipart
7628document when multipart_final() should be called instead of multipart_end().
7629
7630=item multipart_final()
7631
7632 multipart_final()
7633
7634End all parts. You should call multipart_final() rather than
7635multipart_end() at the end of the last part of the multipart document.
54310121 7636
424ec8fa 7637=back
54310121 7638
424ec8fa
GS
7639Users interested in server push applications should also have a look
7640at the CGI::Push module.
54310121 7641
ba056755
JH
7642Only Netscape Navigator supports server push. Internet Explorer
7643browsers do not.
7644
424ec8fa 7645=head1 Avoiding Denial of Service Attacks
54310121 7646
424ec8fa
GS
7647A potential problem with CGI.pm is that, by default, it attempts to
7648process form POSTings no matter how large they are. A wily hacker
7649could attack your site by sending a CGI script a huge POST of many
7650megabytes. CGI.pm will attempt to read the entire POST into a
7651variable, growing hugely in size until it runs out of memory. While
7652the script attempts to allocate the memory the system may slow down
7653dramatically. This is a form of denial of service attack.
54310121 7654
424ec8fa
GS
7655Another possible attack is for the remote user to force CGI.pm to
7656accept a huge file upload. CGI.pm will accept the upload and store it
7657in a temporary directory even if your script doesn't expect to receive
7658an uploaded file. CGI.pm will delete the file automatically when it
7659terminates, but in the meantime the remote user may have filled up the
7660server's disk space, causing problems for other programs.
54310121 7661
424ec8fa
GS
7662The best way to avoid denial of service attacks is to limit the amount
7663of memory, CPU time and disk space that CGI scripts can use. Some Web
7664servers come with built-in facilities to accomplish this. In other
7665cases, you can use the shell I<limit> or I<ulimit>
7666commands to put ceilings on CGI resource usage.
54310121 7667
54310121 7668
424ec8fa
GS
7669CGI.pm also has some simple built-in protections against denial of
7670service attacks, but you must activate them before you can use them.
7671These take the form of two global variables in the CGI name space:
54310121 7672
424ec8fa 7673=over 4
54310121 7674
424ec8fa 7675=item B<$CGI::POST_MAX>
54310121 7676
424ec8fa
GS
7677If set to a non-negative integer, this variable puts a ceiling
7678on the size of POSTings, in bytes. If CGI.pm detects a POST
7679that is greater than the ceiling, it will immediately exit with an error
7680message. This value will affect both ordinary POSTs and
7681multipart POSTs, meaning that it limits the maximum size of file
7682uploads as well. You should set this to a reasonably high
7683value, such as 1 megabyte.
54310121 7684
424ec8fa 7685=item B<$CGI::DISABLE_UPLOADS>
54310121 7686
424ec8fa
GS
7687If set to a non-zero value, this will disable file uploads
7688completely. Other fill-out form values will work as usual.
54310121 7689
7690=back
7691
424ec8fa 7692You can use these variables in either of two ways.
54310121 7693
424ec8fa 7694=over 4
54310121 7695
424ec8fa 7696=item B<1. On a script-by-script basis>
54310121 7697
424ec8fa 7698Set the variable at the top of the script, right after the "use" statement:
54310121 7699
424ec8fa
GS
7700 use CGI qw/:standard/;
7701 use CGI::Carp 'fatalsToBrowser';
7702 $CGI::POST_MAX=1024 * 100; # max 100K posts
7703 $CGI::DISABLE_UPLOADS = 1; # no uploads
54310121 7704
424ec8fa 7705=item B<2. Globally for all scripts>
54310121 7706
424ec8fa
GS
7707Open up CGI.pm, find the definitions for $POST_MAX and
7708$DISABLE_UPLOADS, and set them to the desired values. You'll
7709find them towards the top of the file in a subroutine named
7710initialize_globals().
54310121 7711
424ec8fa 7712=back
54310121 7713
3538e1d5
GS
7714An attempt to send a POST larger than $POST_MAX bytes will cause
7715I<param()> to return an empty CGI parameter list. You can test for
7716this event by checking I<cgi_error()>, either after you create the CGI
7717object or, if you are using the function-oriented interface, call
7718<param()> for the first time. If the POST was intercepted, then
7719cgi_error() will return the message "413 POST too large".
7720
7721This error message is actually defined by the HTTP protocol, and is
7722designed to be returned to the browser as the CGI script's status
7723 code. For example:
7724
7725 $uploaded_file = param('upload');
7726 if (!$uploaded_file && cgi_error()) {
7727 print header(-status=>cgi_error());
7728 exit 0;
7729 }
7730
7731However it isn't clear that any browser currently knows what to do
7732with this status code. It might be better just to create an
7733HTML page that warns the user of the problem.
54310121 7734
424ec8fa 7735=head1 COMPATIBILITY WITH CGI-LIB.PL
54310121 7736
3538e1d5
GS
7737To make it easier to port existing programs that use cgi-lib.pl the
7738compatibility routine "ReadParse" is provided. Porting is simple:
54310121 7739
424ec8fa
GS
7740OLD VERSION
7741 require "cgi-lib.pl";
7742 &ReadParse;
7743 print "The value of the antique is $in{antique}.\n";
54310121 7744
424ec8fa
GS
7745NEW VERSION
7746 use CGI;
5158e96b 7747 CGI::ReadParse();
424ec8fa 7748 print "The value of the antique is $in{antique}.\n";
54310121 7749
424ec8fa
GS
7750CGI.pm's ReadParse() routine creates a tied variable named %in,
7751which can be accessed to obtain the query variables. Like
7752ReadParse, you can also provide your own variable. Infrequently
7753used features of ReadParse, such as the creation of @in and $in
7754variables, are not supported.
54310121 7755
424ec8fa
GS
7756Once you use ReadParse, you can retrieve the query object itself
7757this way:
54310121 7758
424ec8fa 7759 $q = $in{CGI};
29ddc2a4 7760 print textfield(-name=>'wow',
424ec8fa 7761 -value=>'does this really work?');
54310121 7762
424ec8fa
GS
7763This allows you to start using the more interesting features
7764of CGI.pm without rewriting your old scripts from scratch.
54310121 7765
7766=head1 AUTHOR INFORMATION
7767
8c32f149
SP
7768The GD.pm interface is copyright 1995-2007, Lincoln D. Stein. It is
7769distributed under GPL and the Artistic License 2.0.
54310121 7770
71f3e297
JH
7771Address bug reports and comments to: lstein@cshl.org. When sending
7772bug reports, please provide the version of CGI.pm, the version of
7773Perl, the name and version of your Web server, and the name and
7774version of the operating system you are using. If the problem is even
7775remotely browser dependent, please provide information about the
7776affected browers as well.
54310121 7777
7778=head1 CREDITS
7779
7780Thanks very much to:
7781
7782=over 4
7783
7784=item Matt Heffron (heffron@falstaff.css.beckman.com)
7785
7786=item James Taylor (james.taylor@srs.gov)
7787
7788=item Scott Anguish <sanguish@digifix.com>
7789
7790=item Mike Jewell (mlj3u@virginia.edu)
7791
7792=item Timothy Shimmin (tes@kbs.citri.edu.au)
7793
7794=item Joergen Haegg (jh@axis.se)
7795
71f3e297 7796=item Laurent Delfosse (delfosse@delfosse.com)
54310121 7797
7798=item Richard Resnick (applepi1@aol.com)
7799
7800=item Craig Bishop (csb@barwonwater.vic.gov.au)
7801
7802=item Tony Curtis (tc@vcpc.univie.ac.at)
7803
7804=item Tim Bunce (Tim.Bunce@ig.co.uk)
7805
7806=item Tom Christiansen (tchrist@convex.com)
7807
7808=item Andreas Koenig (k@franz.ww.TU-Berlin.DE)
7809
7810=item Tim MacKenzie (Tim.MacKenzie@fulcrum.com.au)
7811
7812=item Kevin B. Hendricks (kbhend@dogwood.tyler.wm.edu)
7813
7814=item Stephen Dahmen (joyfire@inxpress.net)
7815
7816=item Ed Jordan (ed@fidalgo.net)
7817
7818=item David Alan Pisoni (david@cnation.com)
7819
424ec8fa
GS
7820=item Doug MacEachern (dougm@opengroup.org)
7821
7822=item Robin Houston (robin@oneworld.org)
7823
54310121 7824=item ...and many many more...
7825
7826for suggestions and bug fixes.
7827
7828=back
7829
7830=head1 A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
7831
7832
7833 #!/usr/local/bin/perl
3cb6de81 7834
29ddc2a4 7835 use CGI ':standard';
3cb6de81 7836
29ddc2a4
RGS
7837 print header;
7838 print start_html("Example CGI.pm Form");
3acbd4f5 7839 print "<h1> Example CGI.pm Form</h1>\n";
29ddc2a4
RGS
7840 print_prompt();
7841 do_work();
7842 print_tail();
7843 print end_html;
3cb6de81 7844
54310121 7845 sub print_prompt {
29ddc2a4 7846 print start_form;
3acbd4f5 7847 print "<em>What's your name?</em><br>";
29ddc2a4
RGS
7848 print textfield('name');
7849 print checkbox('Not my real name');
3cb6de81 7850
3acbd4f5 7851 print "<p><em>Where can you find English Sparrows?</em><br>";
29ddc2a4 7852 print checkbox_group(
54310121 7853 -name=>'Sparrow locations',
7854 -values=>[England,France,Spain,Asia,Hoboken],
7855 -linebreak=>'yes',
7856 -defaults=>[England,Asia]);
3cb6de81 7857
3acbd4f5 7858 print "<p><em>How far can they fly?</em><br>",
29ddc2a4 7859 radio_group(
54310121 7860 -name=>'how far',
7861 -values=>['10 ft','1 mile','10 miles','real far'],
7862 -default=>'1 mile');
3cb6de81 7863
3acbd4f5 7864 print "<p><em>What's your favorite color?</em> ";
29ddc2a4 7865 print popup_menu(-name=>'Color',
54310121 7866 -values=>['black','brown','red','yellow'],
7867 -default=>'red');
3cb6de81 7868
29ddc2a4 7869 print hidden('Reference','Monty Python and the Holy Grail');
3cb6de81 7870
3acbd4f5 7871 print "<p><em>What have you got there?</em><br>";
29ddc2a4 7872 print scrolling_list(
54310121 7873 -name=>'possessions',
7874 -values=>['A Coconut','A Grail','An Icon',
7875 'A Sword','A Ticket'],
7876 -size=>5,
7877 -multiple=>'true');
3cb6de81 7878
3acbd4f5 7879 print "<p><em>Any parting comments?</em><br>";
29ddc2a4 7880 print textarea(-name=>'Comments',
54310121 7881 -rows=>10,
7882 -columns=>50);
3cb6de81 7883
29ddc2a4
RGS
7884 print "<p>",reset;
7885 print submit('Action','Shout');
7886 print submit('Action','Scream');
7887 print endform;
3acbd4f5 7888 print "<hr>\n";
54310121 7889 }
3cb6de81 7890
54310121 7891 sub do_work {
54310121 7892 my(@values,$key);
7893
3acbd4f5 7894 print "<h2>Here are the current settings in this form</h2>";
54310121 7895
29ddc2a4 7896 foreach $key (param) {
3acbd4f5 7897 print "<strong>$key</strong> -> ";
29ddc2a4 7898 @values = param($key);
3acbd4f5 7899 print join(", ",@values),"<br>\n";
54310121 7900 }
7901 }
3cb6de81 7902
54310121 7903 sub print_tail {
7904 print <<END;
3acbd4f5
JH
7905 <hr>
7906 <address>Lincoln D. Stein</address><br>
7907 <a href="/">Home Page</a>
54310121 7908 END
7909 }
7910
7911=head1 BUGS
7912
188ba755 7913Please report them.
54310121 7914
7915=head1 SEE ALSO
7916
b2d0d414 7917L<CGI::Carp>, L<CGI::Fast>, L<CGI::Pretty>
54310121 7918
7919=cut
7920