summaryrefslogtreecommitdiff
path: root/sandbox/blais/rstserver/etc/rst-server.php
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/blais/rstserver/etc/rst-server.php')
-rw-r--r--sandbox/blais/rstserver/etc/rst-server.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/sandbox/blais/rstserver/etc/rst-server.php b/sandbox/blais/rstserver/etc/rst-server.php
deleted file mode 100644
index 1e4238bd3..000000000
--- a/sandbox/blais/rstserver/etc/rst-server.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-#
-# $Id$
-# $Source$
-#
-# PHP script to call on the python CGI script.
-#
-# This is only an example, where a site has PHP enabled but not CGI.
-#
-
-$p = $_GET["p"];
-$python = "/DLlocal/blais/httpd-soft/bin/python";
-$env =
-"CONVERTER=\"$python ".
-"/DLlocal/blais/httpd-soft/bin/html.py\" ".
-"NO_CONTENT_TYPE=1 ".
-"SCRIPT_NAME=$SCRIPT_NAME ";
-
-system("$env $python rst-server.cgi \"p=$p\" 2>&1 ");
-
-?>