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