WordPress/sproxy.pl
saxmatt b43564cb29 *** empty log message ***
git-svn-id: http://svn.automattic.com/wordpress/trunk@3 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2003-04-01 14:12:34 +00:00

42 lines
666 B
Perl

#!/usr/bin/perl
print "Content-type: text/html\n\n";
if ($ENV{'REQUEST_METHOD'} ne 'POST')
{
print <<"HTML";
<HTML>
<BODY>
only method POST is supported here.
</BODY>
</HTML>
HTML
exit;
}
read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
@pairs = split(/&/, $buffer);
foreach $pair (@pairs)
{
($name, $value) = split(/=/, $pair);
$value =~ tr/+/ /;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
print $value;
if($name eq "f")
{
print "<textarea name=TextBox1>"
}
if($name eq "g")
{
print "</textarea><textarea name=TextBox2>"
}
if($name eq "h")
{
print "</textarea>"
}
}
exit;