summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/tr.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'qooxdoo/source/tr.cgi')
-rwxr-xr-xqooxdoo/source/tr.cgi29
1 files changed, 0 insertions, 29 deletions
diff --git a/qooxdoo/source/tr.cgi b/qooxdoo/source/tr.cgi
deleted file mode 100755
index cc0fe28..0000000
--- a/qooxdoo/source/tr.cgi
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/sepp/bin/speedy-5.8.8 -w
-use strict;
-use lib qw(/home/oposs/smokeping/software/lib);
-use lib qw(perl);
-
-use CGI;
-use CGI::Util qw(expires);
-use CGI::Session;
-use Qooxdoo::JSONRPC;
-
-# don't bother with zombies
-$SIG{CHLD} = 'IGNORE';
-
-#$Qooxdoo::JSONRPC::debug=1;
-
-# Change this space-separated list of directories to include
-# Qooxdoo::JSONRPC.pm and co-located Services
-
-# If this module can't be found, the previous line is incorrect
-
-# Instantiating the CGI module which parses the HTTP request
-
-my $cgi = new CGI;
-my $session = new CGI::Session;
-
-# You can customise this harness here to handle cases before treating
-# the request as being JSON-RPC
-Qooxdoo::JSONRPC::handle_request ($cgi, $session);
-