summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/class/Tr/Server.js
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2011-08-23 15:59:15 +0200
committerTobi Oetiker <tobi@oetiker.ch>2011-08-23 15:59:15 +0200
commit55490b1bfb539386b63e25a8fd90e56c0200c1e8 (patch)
tree8ab5e31b7d1579ae8640dd006c4aa01daf7f8aaa /qooxdoo/source/class/Tr/Server.js
parenta1fbf832f9f0ba3043c3300aa0ca3a3d841ce41c (diff)
downloadsmokeping-55490b1bfb539386b63e25a8fd90e56c0200c1e8.tar.gz
smokeping-55490b1bfb539386b63e25a8fd90e56c0200c1e8.tar.xz
clean out smoketrace
Diffstat (limited to 'qooxdoo/source/class/Tr/Server.js')
-rw-r--r--qooxdoo/source/class/Tr/Server.js74
1 files changed, 0 insertions, 74 deletions
diff --git a/qooxdoo/source/class/Tr/Server.js b/qooxdoo/source/class/Tr/Server.js
deleted file mode 100644
index f17e54b..0000000
--- a/qooxdoo/source/class/Tr/Server.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/* ************************************************************************
-#module(Tr)
-************************************************************************ */
-
-/**
- * A Tr specific rpc call which works
- */
-
-qx.Class.define('Tr.Server', {
- extend: qx.io.remote.Rpc,
- type: "singleton",
-
- /*
- *****************************************************************************
- 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('tr.cgi');
- setServiceName('Tr');
- 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;
- },
-
- setLocalUrl: function(local_url){
- if ( document.location.host === '' ) {
- with(this){
- setUrl(local_url+'tr.cgi');
- }
- }
- }
-
- }
-});