Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: third_party/apache-win32/cgi-bin/printenv.pl

Issue 147313008: Check Win32 Apache+PHP into third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/apache-win32/bin/zlib1.dll ('k') | third_party/apache-win32/conf/charset.conv » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!C:/Perl64/bin/perl.exe
2 ##
3 ## printenv -- demo CGI program which just prints its environment
4 ##
5
6 print "Content-type: text/plain; charset=iso-8859-1\n\n";
7 foreach $var (sort(keys(%ENV))) {
8 $val = $ENV{$var};
9 $val =~ s|\n|\\n|g;
10 $val =~ s|"|\\"|g;
11 print "${var}=\"${val}\"\n";
12 }
13
OLDNEW
« no previous file with comments | « third_party/apache-win32/bin/zlib1.dll ('k') | third_party/apache-win32/conf/charset.conv » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698