summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/class/Smokeping/io
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/class/Smokeping/io
parent0e6c3c629a18c9989e4cd8b9d3cd2f7cf7da4aef (diff)
downloadsmokeping-74783005860524bbdf1be4fe0ec2924e650c1652.tar.gz
smokeping-74783005860524bbdf1be4fe0ec2924e650c1652.tar.xz
updated ... working
Diffstat (limited to 'qooxdoo/source/class/Smokeping/io')
-rw-r--r--qooxdoo/source/class/Smokeping/io/Rpc.js80
1 files changed, 0 insertions, 80 deletions
diff --git a/qooxdoo/source/class/Smokeping/io/Rpc.js b/qooxdoo/source/class/Smokeping/io/Rpc.js
deleted file mode 100644
index 327d2c4..0000000
--- a/qooxdoo/source/class/Smokeping/io/Rpc.js
+++ /dev/null
@@ -1,80 +0,0 @@
-/* ************************************************************************
-#module(Smokeping)
-************************************************************************ */
-
-/**
- * A smokeping specific rpc call which works
- */
-
-qx.Class.define('Smokeping.io.Rpc',
-{
- extend: qx.io.remote.Rpc,
-
- /*
- *****************************************************************************
- CONSTRUCTOR
- *****************************************************************************
- */
-
- /**
- * @param local_url {String} When running the application in file:// mode.
- * where will we find our RPC server.
- */
- construct: function (local_url) {
-
- with(this){
- base(arguments);
- setTimeout(7000000);
- setUrl('jsonrpc.cgi');
- setServiceName('Smokeping');
- }
-
- var our_href = new String(document.location.href);
- var last_slash = our_href.lastIndexOf("/");
- this.__base_url = our_href.substring(0,last_slash+1);
-
- // look for services on the localhost if we access the
- // application locally
-
- if ( document.location.host === '' ) {
- with(this){
- __base_url = local_url;
- setUrl(__base_url + 'jsonrpc.cgi');
- setCrossDomain(true);
- }
- }
-
- return this;
- },
-
- /*
- *****************************************************************************
- MEMBERS
- *****************************************************************************
- */
-
- members :
- {
-
- /*
- ---------------------------------------------------------------------------
- CORE METHODS
- ---------------------------------------------------------------------------
- */
-
- /**
- * Tell about the BaseUrl we found.
- *
- * @type member
- *
- * @param {void}
- *
- * @return BaseUrl {Strings}
- */
-
- getBaseUrl: function(){
- return this.__base_url;
- }
- }
-});
-