Decoding HTML requests:
($command, $request, $method) = split(" ",$command); ($document, $request) = split("\\\?",$request); for (split("&",$request) ) { s/\+/ /g; ($key, $val) = split("=",$_); $key =~ s/%(..)/pack("c",hex($1))/ge; $val =~ s/%(..)/pack("c",hex($1))/ge; $query{$key} = $val;
sub escapeHTML { my ($self,$toencode,$newlinestoo) = CGI::self_or_default(@_); return undef unless defined($toencode); return $toencode if ref($self) && $self->{'dontescape'}; $toencode =~ s{&}{&}gso; $toencode =~ s{<}{<}gso; $toencode =~ s{>}{>}gso; $toencode =~ s{"}{"}gso; my $latin = uc $self->{'.charset'} eq 'ISO-8859-1' || uc $self->{'.charset'} eq 'WINDOWS-1252'; if ($latin) { # bug in some browsers $toencode =~ s{'}{'}gso; $toencode =~ s{\x8b}{‹}gso; $toencode =~ s{\x9b}{›}gso; if (defined $newlinestoo && $newlinestoo) { $toencode =~ s{\012}{ }gso; $toencode =~ s{\015}{ }gso; } } return $toencode; } sub unescapeHTML { my ($self,$string) = CGI::self_or_default(@_); return undef unless defined($string); my $latin = defined $self->{'.charset'} ? $self->{'.charset'} =~ /^(ISO-8859-1|WINDOWS-1252)$/i : 1; # thanks to Randal Schwartz for the correct solution to this one $string=~ s[&(.*?);]{ local $_ = $1; /^amp$/i ? "&" : /^quot$/i ? '"' : /^gt$/i ? ">" : /^lt$/i ? "<" : /^#(\d+)$/ && $latin ? chr($1) : /^#x([0-9a-f]+)$/i && $latin ? chr(hex($1)) : $_ }gex; return $string; }
Encodeing CGI Environment Variables for handoff to a CGI program
$ENV{SERVER_SOFTWARE} = 'MyHTTPd/0.1'; $ENV{SERVER_NAME} = Sys::Hostname::hostname(); $ENV{GATEWAY_INTERFACE} = 'CGI/1.1'; $ENV{SERVER_PROTOCOL} = $protocol; $ENV{SERVER_PORT} = $PORT; $ENV{REQUEST_METHOD} = $method; $ENV{QUERY_STRING} = $querydata; $ENV{REMOTE_ADDR} = $client->peerhost; $ENV{HTTP_ACCEPT} = $request{'Accept'}; $ENV{HTTP_USER_AGENT} = $request{'User_Agent'}; $ENV{SCRIPT_NAME} = $request->url->epath; $ENV{CONTENT_LENGTH} = 0;
See also
file: /Techref/language/perl/www.htm, 3KB, , updated: 2001/6/21 12:55, local time: 2024/11/14 22:06,
18.218.125.85:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/language/perl/www.htm"> Perl HTTP Services</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.