Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 43A1C9F91 for ; Wed, 9 May 2012 13:29:50 +0000 (UTC) Received: (qmail 57160 invoked by uid 500); 9 May 2012 13:29:50 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 57042 invoked by uid 500); 9 May 2012 13:29:50 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 57035 invoked by uid 99); 9 May 2012 13:29:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 May 2012 13:29:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 May 2012 13:29:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 57ECB2388860; Wed, 9 May 2012 13:29:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1336196 - in /httpd/httpd/trunk/docs/manual/howto: cgi.html.en cgi.xml Date: Wed, 09 May 2012 13:29:28 -0000 To: cvs@httpd.apache.org From: rbowen@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120509132928.57ECB2388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rbowen Date: Wed May 9 13:29:27 2012 New Revision: 1336196 URL: http://svn.apache.org/viewvc?rev=1336196&view=rev Log: Revert last night's change, as per nd's recommendation. Modified: httpd/httpd/trunk/docs/manual/howto/cgi.html.en httpd/httpd/trunk/docs/manual/howto/cgi.xml Modified: httpd/httpd/trunk/docs/manual/howto/cgi.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/cgi.html.en?rev=1336196&r1=1336195&r2=1336196&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/cgi.html.en (original) +++ httpd/httpd/trunk/docs/manual/howto/cgi.html.en Wed May 9 13:29:27 2012 @@ -233,7 +233,7 @@
 #!/usr/bin/perl
-print "Content-type: text/html\r\n\r\n";
+print "Content-type: text/html\n\n";
 print "Hello, World.";
       
@@ -486,7 +486,7 @@ print "Hello, World."; use strict; use warnings; -print "Content-type: text/html\r\n\r\n"; +print "Content-type: text/html\n\n"; foreach my $key (keys %ENV) { print "$key --> $ENV{$key}<br>"; } Modified: httpd/httpd/trunk/docs/manual/howto/cgi.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/cgi.xml?rev=1336196&r1=1336195&r2=1336196&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/cgi.xml (original) +++ httpd/httpd/trunk/docs/manual/howto/cgi.xml Wed May 9 13:29:27 2012 @@ -234,7 +234,7 @@ #!/usr/bin/perl -print "Content-type: text/html\r\n\r\n"; +print "Content-type: text/html\n\n"; print "Hello, World."; @@ -488,7 +488,7 @@ print "Hello, World."; use strict; use warnings; -print "Content-type: text/html\r\n\r\n"; +print "Content-type: text/html\n\n"; foreach my $key (keys %ENV) { print "$key --> $ENV{$key}<br>"; }