Received: (from majordom@localhost) by hyperreal.com (8.8.5/8.8.5) id FAA13015; Thu, 26 Jun 1997 05:17:25 -0700 (PDT) Received: (from coar@localhost) by hyperreal.com (8.8.5/8.8.5) id FAA13005 for apache-cvs; Thu, 26 Jun 1997 05:17:22 -0700 (PDT) Date: Thu, 26 Jun 1997 05:17:22 -0700 (PDT) From: Rodent of Unusual Size Message-Id: <199706261217.FAA13005@hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/htdocs/manual/misc FAQ.html Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org coar 97/06/26 05:17:21 Modified: htdocs/manual/misc FAQ.html Log: Fix up the Perl example for nph-script detection (PR#789). Revision Changes Path 1.74 +4 -4 apache/htdocs/manual/misc/FAQ.html Index: FAQ.html =================================================================== RCS file: /export/home/cvs/apache/htdocs/manual/misc/FAQ.html,v retrieving revision 1.73 retrieving revision 1.74 diff -C3 -r1.73 -r1.74 *** FAQ.html 1997/06/21 18:56:36 1.73 --- FAQ.html 1997/06/26 12:17:20 1.74 *************** *** 15,21 ****

Apache Server Frequently Asked Questions

! $Revision: 1.73 $ ($Date: 1997/06/21 18:56:36 $)

The latest version of this FAQ is always available from the main --- 15,21 ----

Apache Server Frequently Asked Questions

! $Revision: 1.74 $ ($Date: 1997/06/26 12:17:20 $)

The latest version of this FAQ is always available from the main *************** *** 1165,1171 ****

!
if ($0 =~ m:/*nph-:) {
     $HTTP_headers =  --- 1165,1171 ----

!
if ($0 =~ m:^(.*/)*nph-[^/]*$:) {
     $HTTP_headers =  *************** *** 1176,1184 **** "Connection: close\015\012";
     ! printf ($HTTP_headers);
! };

--- 1176,1184 ---- "Connection: close\015\012";
     ! print $HTTP_headers;
! }