You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by bu...@apache.org on 2012/03/20 21:50:48 UTC

svn commit: r809309 - in /websites/staging/ooo-site/trunk: cgi-bin/ cgi-bin/env.cgi content/

Author: buildbot
Date: Tue Mar 20 20:50:48 2012
New Revision: 809309

Log:
Staging update by buildbot for openofficeorg

Added:
    websites/staging/ooo-site/trunk/cgi-bin/
    websites/staging/ooo-site/trunk/cgi-bin/env.cgi   (with props)
Modified:
    websites/staging/ooo-site/trunk/content/   (props changed)

Added: websites/staging/ooo-site/trunk/cgi-bin/env.cgi
==============================================================================
--- websites/staging/ooo-site/trunk/cgi-bin/env.cgi (added)
+++ websites/staging/ooo-site/trunk/cgi-bin/env.cgi Tue Mar 20 20:50:48 2012
@@ -0,0 +1,15 @@
+#! /usr/bin/perl -w
+
+print "Content-type: text/html\n\n";
+
+print<< "TOP";
+<html>
+<head><title>cgi test</title><head>
+<body>
+<h2>Env variables as seen by httpd</h2>
+TOP
+
+foreach $key (sort keys %ENV) {
+	print "$key: $ENV{$key}<br>\n";
+}
+print "</body></html>\n";

Propchange: websites/staging/ooo-site/trunk/cgi-bin/env.cgi
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Mar 20 20:50:48 2012
@@ -1 +1 @@
-1303039
+1303140