diff options
| author | (no author) <(no author)@unknown> | 2001-05-04 21:54:25 +0000 |
|---|---|---|
| committer | (no author) <(no author)@unknown> | 2001-05-04 21:54:25 +0000 |
| commit | ad2dd84025f628d29200b5a9a41d654be678aa6f (patch) | |
| tree | 35a838b6e9d6510a91e386728e78b4a81cb55781 /docs/cgi-examples | |
| parent | f83672781de25207442ff908258219de1d103062 (diff) | |
| download | httpd-RSE.tar.gz | |
This commit was manufactured by cvs2svn to create branch 'RSE'.RSE
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/RSE@88989 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/cgi-examples')
| -rw-r--r-- | docs/cgi-examples/printenv | 13 | ||||
| -rw-r--r-- | docs/cgi-examples/test-cgi | 31 |
2 files changed, 0 insertions, 44 deletions
diff --git a/docs/cgi-examples/printenv b/docs/cgi-examples/printenv deleted file mode 100644 index 207074361a..0000000000 --- a/docs/cgi-examples/printenv +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/local/bin/perl -## -## printenv -- demo CGI program which just prints its environment -## - -print "Content-type: text/plain\n\n"; -foreach $var (sort(keys(%ENV))) { - $val = $ENV{$var}; - $val =~ s|\n|\\n|g; - $val =~ s|"|\\"|g; - print "${var}=\"${val}\"\n"; -} - diff --git a/docs/cgi-examples/test-cgi b/docs/cgi-examples/test-cgi deleted file mode 100644 index a85631e3aa..0000000000 --- a/docs/cgi-examples/test-cgi +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -# disable filename globbing -set -f - -echo Content-type: text/plain -echo - -echo CGI/1.0 test script report: -echo - -echo argc is $#. argv is "$*". -echo - -echo SERVER_SOFTWARE = $SERVER_SOFTWARE -echo SERVER_NAME = $SERVER_NAME -echo GATEWAY_INTERFACE = $GATEWAY_INTERFACE -echo SERVER_PROTOCOL = $SERVER_PROTOCOL -echo SERVER_PORT = $SERVER_PORT -echo REQUEST_METHOD = $REQUEST_METHOD -echo HTTP_ACCEPT = "$HTTP_ACCEPT" -echo PATH_INFO = "$PATH_INFO" -echo PATH_TRANSLATED = "$PATH_TRANSLATED" -echo SCRIPT_NAME = "$SCRIPT_NAME" -echo QUERY_STRING = "$QUERY_STRING" -echo REMOTE_HOST = $REMOTE_HOST -echo REMOTE_ADDR = $REMOTE_ADDR -echo REMOTE_USER = $REMOTE_USER -echo AUTH_TYPE = $AUTH_TYPE -echo CONTENT_TYPE = $CONTENT_TYPE -echo CONTENT_LENGTH = $CONTENT_LENGTH |
