summaryrefslogtreecommitdiff
path: root/tests/docroot/www
diff options
context:
space:
mode:
Diffstat (limited to 'tests/docroot/www')
-rw-r--r--tests/docroot/www/Makefile.am5
-rw-r--r--tests/docroot/www/cgi-pathinfo.pl7
-rw-r--r--tests/docroot/www/cgi.php9
-rw-r--r--tests/docroot/www/cgi.pl7
-rw-r--r--tests/docroot/www/exec-date.shtml1
-rw-r--r--tests/docroot/www/expire/Makefile.am1
-rw-r--r--tests/docroot/www/expire/access.txt0
-rw-r--r--tests/docroot/www/expire/modification.txt0
-rw-r--r--tests/docroot/www/get-env.php4
-rw-r--r--tests/docroot/www/get-header.pl8
-rw-r--r--tests/docroot/www/get-post-len.pl15
-rw-r--r--tests/docroot/www/get-post-md5.php3
-rw-r--r--tests/docroot/www/get-server-env.php3
-rw-r--r--tests/docroot/www/go/Makefile.am1
-rw-r--r--tests/docroot/www/go/cgi.php9
-rw-r--r--tests/docroot/www/index.html113
-rw-r--r--tests/docroot/www/index.txt113
-rw-r--r--tests/docroot/www/indexfile/Makefile.am1
-rw-r--r--tests/docroot/www/indexfile/index.php1
-rw-r--r--tests/docroot/www/indexfile/return-404.php5
-rw-r--r--tests/docroot/www/indexfile/rewrite.php3
-rw-r--r--tests/docroot/www/nph-status.pl14
-rw-r--r--tests/docroot/www/phpinfo.php1
-rw-r--r--tests/docroot/www/prefix.fcgi3
-rw-r--r--tests/docroot/www/redirect.php4
-rw-r--r--tests/docroot/www/ssi.shtml1
26 files changed, 0 insertions, 332 deletions
diff --git a/tests/docroot/www/Makefile.am b/tests/docroot/www/Makefile.am
deleted file mode 100644
index dbf04723..00000000
--- a/tests/docroot/www/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-EXTRA_DIST=cgi.php cgi.pl index.html index.txt phpinfo.php \
- redirect.php cgi-pathinfo.pl get-env.php get-server-env.php \
- nph-status.pl prefix.fcgi get-header.pl ssi.shtml get-post-len.pl \
- exec-date.shtml get-post-md5.php
-SUBDIRS=go indexfile expire
diff --git a/tests/docroot/www/cgi-pathinfo.pl b/tests/docroot/www/cgi-pathinfo.pl
deleted file mode 100644
index af8d4dfb..00000000
--- a/tests/docroot/www/cgi-pathinfo.pl
+++ /dev/null
@@ -1,7 +0,0 @@
-#! /usr/bin/perl
-
-print "Content-Type: text/html\r\n\r\n";
-
-print $ENV{"PATH_INFO"};
-
-0;
diff --git a/tests/docroot/www/cgi.php b/tests/docroot/www/cgi.php
deleted file mode 100644
index d92e52f9..00000000
--- a/tests/docroot/www/cgi.php
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-
-#ob_start(/*"ob_gzhandler"*/);
-print "12345<br />\n";
-#phpinfo();
-#header("Content-Length: ".ob_get_length());
-#ob_end_flush();
-
-?>
diff --git a/tests/docroot/www/cgi.pl b/tests/docroot/www/cgi.pl
deleted file mode 100644
index 9695adf6..00000000
--- a/tests/docroot/www/cgi.pl
+++ /dev/null
@@ -1,7 +0,0 @@
-#! /usr/bin/perl
-
-print "Content-Type: text/html\r\n\r\n";
-
-print $ENV{"SCRIPT_NAME"};
-
-0;
diff --git a/tests/docroot/www/exec-date.shtml b/tests/docroot/www/exec-date.shtml
deleted file mode 100644
index 2c8535bc..00000000
--- a/tests/docroot/www/exec-date.shtml
+++ /dev/null
@@ -1 +0,0 @@
-<!--#exec cmd="expr 1 + 1"-->
diff --git a/tests/docroot/www/expire/Makefile.am b/tests/docroot/www/expire/Makefile.am
deleted file mode 100644
index 7812b143..00000000
--- a/tests/docroot/www/expire/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-EXTRA_DIST=access.txt modification.txt
diff --git a/tests/docroot/www/expire/access.txt b/tests/docroot/www/expire/access.txt
deleted file mode 100644
index e69de29b..00000000
--- a/tests/docroot/www/expire/access.txt
+++ /dev/null
diff --git a/tests/docroot/www/expire/modification.txt b/tests/docroot/www/expire/modification.txt
deleted file mode 100644
index e69de29b..00000000
--- a/tests/docroot/www/expire/modification.txt
+++ /dev/null
diff --git a/tests/docroot/www/get-env.php b/tests/docroot/www/get-env.php
deleted file mode 100644
index bdaa9a4a..00000000
--- a/tests/docroot/www/get-env.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
- $env = $_GET["env"];
- print isset($_ENV[$env]) ? $_ENV[$env] : '';
-?>
diff --git a/tests/docroot/www/get-header.pl b/tests/docroot/www/get-header.pl
deleted file mode 100644
index 905f3e79..00000000
--- a/tests/docroot/www/get-header.pl
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/perl
-
-my $s = $ENV{$ENV{"QUERY_STRING"}};
-
-printf("Content-Length: %d\r\n", length($s));
-print "Content-Type: text/plain\r\n\r\n";
-
-print $s;
diff --git a/tests/docroot/www/get-post-len.pl b/tests/docroot/www/get-post-len.pl
deleted file mode 100644
index bac8bbf8..00000000
--- a/tests/docroot/www/get-post-len.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl
-
-
-print "Content-Type: text/plain\r\n\r\n";
-
-if ($ENV{"REQUEST_METHOD"} eq "POST") {
- my $l = 0;
- while(<>) {
- $l += length($_);
- }
- print $l;
-} else {
- print "0";
-}
-
diff --git a/tests/docroot/www/get-post-md5.php b/tests/docroot/www/get-post-md5.php
deleted file mode 100644
index 0c250c41..00000000
--- a/tests/docroot/www/get-post-md5.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
- print md5($_POST[$_GET["var"]]);
-?>
diff --git a/tests/docroot/www/get-server-env.php b/tests/docroot/www/get-server-env.php
deleted file mode 100644
index 17b49945..00000000
--- a/tests/docroot/www/get-server-env.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
- print $_SERVER[$_GET["env"]];
-?>
diff --git a/tests/docroot/www/go/Makefile.am b/tests/docroot/www/go/Makefile.am
deleted file mode 100644
index fe20c503..00000000
--- a/tests/docroot/www/go/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-EXTRA_DIST=cgi.php
diff --git a/tests/docroot/www/go/cgi.php b/tests/docroot/www/go/cgi.php
deleted file mode 100644
index d92e52f9..00000000
--- a/tests/docroot/www/go/cgi.php
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-
-#ob_start(/*"ob_gzhandler"*/);
-print "12345<br />\n";
-#phpinfo();
-#header("Content-Length: ".ob_get_length());
-#ob_end_flush();
-
-?>
diff --git a/tests/docroot/www/index.html b/tests/docroot/www/index.html
deleted file mode 100644
index 3c149671..00000000
--- a/tests/docroot/www/index.html
+++ /dev/null
@@ -1,113 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<HTML>
-<HEAD>
-<TITLE>Webserver testpage</TITLE>
-<META content="iso-8859-1" http-equiv="charset">
-<META name="author" content="Christian Hofmann, SuSE Linux AG">
-</HEAD>
-<BODY BGCOLOR="#ffffff" LINK="#669900" ALINK="#669900" VLINK="#fb8000" text=black marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
-<TABLE border="0" width="760" cellpadding="0" cellspacing="0">
- <TR>
- <TD rowspan="4" bgcolor="#669900" width="50">&nbsp;</TD>
- <td valign=top height="70" width="29" bgcolor="#669900">&nbsp;</td>
- <td valign="middle" height="70" width="152" align="center" bgcolor="#669900">&nbsp;</td>
- <td valign=middle height="70" width="529" bgcolor="#669900">
- <div align="center">
- <font face="Courier New,Courier,mono" size="5" color="white"><B>+++ testinfo - webserver +++</b></font>
- </div>
- </td>
- </tr>
- <TR>
- <td width="29" height="100" valign="middle" bgcolor="#669900">&nbsp;</td>
- <td width="152" height="100" align="center" valign="bottom"><IMG src="gif/penguin.gif" width=90 height=76 hspace=0 vspace=0 border=0 alt=" "></td>
- <td width="529" height="100" valign="middle">
- <div align="center">
- <font face="Courier New,Courier,mono" size="3"><I>This is only a test page for the webserver!</I></font><br>
- <font face="Courier New,Courier,mono" size="-1">SuSE is not responsible for the contents of this domain!</font>
- </div>
- </td>
- </tr>
- <tr>
- <td valign=top align=left colspan="4">
- <table border="0" cellpadding="0" cellspacing="0" width="710" vspace="0" hspace="0">
- <TR>
- <TD bgcolor="#669900" width="29" height="20">&nbsp;</TD>
- <TD width="152" height="20">&nbsp;</TD>
- <TD width="558" height="20" colspan="2">&nbsp;</TD>
- </tr>
- <TR>
- <TD height="50" align=left width="181" colspan="2"><IMG src="gif/sysinfo_en.png" width="181" height="50" border="0" alt="system information"></TD>
- <TD width="529" colspan="2" rowspan="2" valign=top>
- <FONT face="helvetica, arial, sans-serif">
- <B>Operating system:</B> [ SuSE Linux 8.0 (i386)
- ]<BR>
- <B>Host:</B> [ grisu.home.kneschke.de, Kernel: 2.4.18-4GB (i686)
- ]
- </FONT>
- </TD>
- </TR>
- <TR>
- <TD bgcolor="#669900" width="29" height="40">&nbsp;</TD>
- <TD width="181" height="40">&nbsp;</TD>
- </TR>
-
- <TR>
- <TD height="50" align=left width="181" colspan="2"><IMG src="gif/version_en.png" width="181" height="50" border="0" alt="webserver and modules"></TD>
- <TD width="529" colspan="2" rowspan="2" valign=top>
- <FONT face="helvetica,arial,sans-serif">
- <B>Webserver version:</B><br>
- [ lighttpd/0.1.0 (Unix) ]<br><br>
-
- <B>Installed modules:</B><br>
- <I>[ PHP module is not installed ]</I><br>
- <I>[ Apache perl module (mod_perl) is not installed ]</I><br>
- <I>[ Apache DAV module (mod_dav) is not installed ]</I><br>
- <I>[ Apache Python module (mod_python) is not installed ]</I><br>
-
- </FONT>
- </TD>
- </TR>
- <TR>
- <TD bgcolor="#669900" width="29" height="100">&nbsp;</TD>
- <TD width="181" height="100">&nbsp;</TD>
- </TR>
- <TR>
- <TD colspan="2" height="50" align=left width="181"><IMG src="gif/docu_en.png" width="181" height="50" border="0" alt="documentation"></TD>
- <TD width="529" colspan="2" rowspan="2" valign=top>
- <FONT face="helvetica,arial,sans-serif">
-<I>[ This host is not configured as server for the SuSE help system ]</I><br><br>
-<I>[ Apache manual is not installed ]</I><br>
-
- <BR>
- <A HREF="http://www.suse.de/">[ The SuSE website ]</A><BR>
-
-
-
- </FONT>
- </TD>
-
- </TR>
- <TR>
- <TD bgcolor="#669900" width="29" height="90">&nbsp;</TD>
- <TD width="181" height="90">&nbsp;</TD>
- </Table>
- </td>
- </tr>
- <tr>
- <td width=29 bgcolor="#669900">&nbsp;</td>
- <td valign=bottom align=right width="681" colspan="3"><A HREF="http://www.suse.de/en/"><IMG src="gif/powered_by_suse.gif" alt="powered by SuSE" width=100 height=40 hspace=5 vspace=5 border=0></A></td>
- </tr>
-
-</TABLE>
-</BODY>
-</HTML>
-
-
-
-
-
-
-
-
-
-
diff --git a/tests/docroot/www/index.txt b/tests/docroot/www/index.txt
deleted file mode 100644
index 3c149671..00000000
--- a/tests/docroot/www/index.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<HTML>
-<HEAD>
-<TITLE>Webserver testpage</TITLE>
-<META content="iso-8859-1" http-equiv="charset">
-<META name="author" content="Christian Hofmann, SuSE Linux AG">
-</HEAD>
-<BODY BGCOLOR="#ffffff" LINK="#669900" ALINK="#669900" VLINK="#fb8000" text=black marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
-<TABLE border="0" width="760" cellpadding="0" cellspacing="0">
- <TR>
- <TD rowspan="4" bgcolor="#669900" width="50">&nbsp;</TD>
- <td valign=top height="70" width="29" bgcolor="#669900">&nbsp;</td>
- <td valign="middle" height="70" width="152" align="center" bgcolor="#669900">&nbsp;</td>
- <td valign=middle height="70" width="529" bgcolor="#669900">
- <div align="center">
- <font face="Courier New,Courier,mono" size="5" color="white"><B>+++ testinfo - webserver +++</b></font>
- </div>
- </td>
- </tr>
- <TR>
- <td width="29" height="100" valign="middle" bgcolor="#669900">&nbsp;</td>
- <td width="152" height="100" align="center" valign="bottom"><IMG src="gif/penguin.gif" width=90 height=76 hspace=0 vspace=0 border=0 alt=" "></td>
- <td width="529" height="100" valign="middle">
- <div align="center">
- <font face="Courier New,Courier,mono" size="3"><I>This is only a test page for the webserver!</I></font><br>
- <font face="Courier New,Courier,mono" size="-1">SuSE is not responsible for the contents of this domain!</font>
- </div>
- </td>
- </tr>
- <tr>
- <td valign=top align=left colspan="4">
- <table border="0" cellpadding="0" cellspacing="0" width="710" vspace="0" hspace="0">
- <TR>
- <TD bgcolor="#669900" width="29" height="20">&nbsp;</TD>
- <TD width="152" height="20">&nbsp;</TD>
- <TD width="558" height="20" colspan="2">&nbsp;</TD>
- </tr>
- <TR>
- <TD height="50" align=left width="181" colspan="2"><IMG src="gif/sysinfo_en.png" width="181" height="50" border="0" alt="system information"></TD>
- <TD width="529" colspan="2" rowspan="2" valign=top>
- <FONT face="helvetica, arial, sans-serif">
- <B>Operating system:</B> [ SuSE Linux 8.0 (i386)
- ]<BR>
- <B>Host:</B> [ grisu.home.kneschke.de, Kernel: 2.4.18-4GB (i686)
- ]
- </FONT>
- </TD>
- </TR>
- <TR>
- <TD bgcolor="#669900" width="29" height="40">&nbsp;</TD>
- <TD width="181" height="40">&nbsp;</TD>
- </TR>
-
- <TR>
- <TD height="50" align=left width="181" colspan="2"><IMG src="gif/version_en.png" width="181" height="50" border="0" alt="webserver and modules"></TD>
- <TD width="529" colspan="2" rowspan="2" valign=top>
- <FONT face="helvetica,arial,sans-serif">
- <B>Webserver version:</B><br>
- [ lighttpd/0.1.0 (Unix) ]<br><br>
-
- <B>Installed modules:</B><br>
- <I>[ PHP module is not installed ]</I><br>
- <I>[ Apache perl module (mod_perl) is not installed ]</I><br>
- <I>[ Apache DAV module (mod_dav) is not installed ]</I><br>
- <I>[ Apache Python module (mod_python) is not installed ]</I><br>
-
- </FONT>
- </TD>
- </TR>
- <TR>
- <TD bgcolor="#669900" width="29" height="100">&nbsp;</TD>
- <TD width="181" height="100">&nbsp;</TD>
- </TR>
- <TR>
- <TD colspan="2" height="50" align=left width="181"><IMG src="gif/docu_en.png" width="181" height="50" border="0" alt="documentation"></TD>
- <TD width="529" colspan="2" rowspan="2" valign=top>
- <FONT face="helvetica,arial,sans-serif">
-<I>[ This host is not configured as server for the SuSE help system ]</I><br><br>
-<I>[ Apache manual is not installed ]</I><br>
-
- <BR>
- <A HREF="http://www.suse.de/">[ The SuSE website ]</A><BR>
-
-
-
- </FONT>
- </TD>
-
- </TR>
- <TR>
- <TD bgcolor="#669900" width="29" height="90">&nbsp;</TD>
- <TD width="181" height="90">&nbsp;</TD>
- </Table>
- </td>
- </tr>
- <tr>
- <td width=29 bgcolor="#669900">&nbsp;</td>
- <td valign=bottom align=right width="681" colspan="3"><A HREF="http://www.suse.de/en/"><IMG src="gif/powered_by_suse.gif" alt="powered by SuSE" width=100 height=40 hspace=5 vspace=5 border=0></A></td>
- </tr>
-
-</TABLE>
-</BODY>
-</HTML>
-
-
-
-
-
-
-
-
-
-
diff --git a/tests/docroot/www/indexfile/Makefile.am b/tests/docroot/www/indexfile/Makefile.am
deleted file mode 100644
index 04727308..00000000
--- a/tests/docroot/www/indexfile/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-EXTRA_DIST=index.php return-404.php rewrite.php
diff --git a/tests/docroot/www/indexfile/index.php b/tests/docroot/www/indexfile/index.php
deleted file mode 100644
index e0c7d9ec..00000000
--- a/tests/docroot/www/indexfile/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php print $_SERVER["PHP_SELF"]; ?>
diff --git a/tests/docroot/www/indexfile/return-404.php b/tests/docroot/www/indexfile/return-404.php
deleted file mode 100644
index dd680cc5..00000000
--- a/tests/docroot/www/indexfile/return-404.php
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
- header("Status: 404");
-
- print $_SERVER["PHP_SELF"];
-?>
diff --git a/tests/docroot/www/indexfile/rewrite.php b/tests/docroot/www/indexfile/rewrite.php
deleted file mode 100644
index fb412907..00000000
--- a/tests/docroot/www/indexfile/rewrite.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
- print $_SERVER["QUERY_STRING"];
-?>
diff --git a/tests/docroot/www/nph-status.pl b/tests/docroot/www/nph-status.pl
deleted file mode 100644
index dd033f87..00000000
--- a/tests/docroot/www/nph-status.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/perl
-
-my $status = 200;
-
-if (defined $ENV{"QUERY_STRING"}) {
- $status = $ENV{"QUERY_STRING"};
-}
-
-if ($status == 0 && $status ne "0") {
- # not a number, just send as content
- print $status;
-} else {
- print "HTTP/1.0 ".$status." FooBar\r\n\r\n";
-}
diff --git a/tests/docroot/www/phpinfo.php b/tests/docroot/www/phpinfo.php
deleted file mode 100644
index 147cebcd..00000000
--- a/tests/docroot/www/phpinfo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php phpinfo(); ?>
diff --git a/tests/docroot/www/prefix.fcgi b/tests/docroot/www/prefix.fcgi
deleted file mode 100644
index e3883520..00000000
--- a/tests/docroot/www/prefix.fcgi
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
-echo $_SERVER[$_GET["var"]];
-?>
diff --git a/tests/docroot/www/redirect.php b/tests/docroot/www/redirect.php
deleted file mode 100644
index 0489d22d..00000000
--- a/tests/docroot/www/redirect.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-
- header('Location: http://www.example.org:2048/');
-?>
diff --git a/tests/docroot/www/ssi.shtml b/tests/docroot/www/ssi.shtml
deleted file mode 100644
index 473c5c65..00000000
--- a/tests/docroot/www/ssi.shtml
+++ /dev/null
@@ -1 +0,0 @@
-<!--#echo var="SCRIPT_NAME" -->