summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/jsonrpc.cgi
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2008-01-30 18:02:27 +0100
committerTobi Oetiker <tobi@oetiker.ch>2008-01-30 18:02:27 +0100
commit74783005860524bbdf1be4fe0ec2924e650c1652 (patch)
treeeb4212b67f097b420cddcbec901f577a72d933a0 /qooxdoo/source/jsonrpc.cgi
parent0e6c3c629a18c9989e4cd8b9d3cd2f7cf7da4aef (diff)
downloadsmokeping-74783005860524bbdf1be4fe0ec2924e650c1652.tar.gz
smokeping-74783005860524bbdf1be4fe0ec2924e650c1652.tar.xz
updated ... working
Diffstat (limited to 'qooxdoo/source/jsonrpc.cgi')
-rwxr-xr-xqooxdoo/source/jsonrpc.cgi26
1 files changed, 0 insertions, 26 deletions
diff --git a/qooxdoo/source/jsonrpc.cgi b/qooxdoo/source/jsonrpc.cgi
deleted file mode 100755
index 372273d..0000000
--- a/qooxdoo/source/jsonrpc.cgi
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/sepp/bin/perl-5.8.8 -w
-use strict;
-use lib qw( perl );
-
-use CGI;
-use CGI::Session;
-use Qooxdoo::JSONRPC;
-
-$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);
-
-