From 996d9e92e597bc462d874b335865ff7844e2d332 Mon Sep 17 00:00:00 2001 From: Tobi Oetiker Date: Tue, 4 Nov 2008 10:14:06 +0000 Subject: added 0.8 port --- qx08/source/class/tr/Server.js | 72 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 qx08/source/class/tr/Server.js (limited to 'qx08/source/class/tr/Server.js') diff --git a/qx08/source/class/tr/Server.js b/qx08/source/class/tr/Server.js new file mode 100644 index 0000000..89496f1 --- /dev/null +++ b/qx08/source/class/tr/Server.js @@ -0,0 +1,72 @@ +/* ************************************************************************ +#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) { + this.base(arguments); + this.set({ + timeout: 7000000, + url: 'tr.cgi', + serviceName: 'Tr', + crossDomain: 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'); + } + } + } + + } +}); -- cgit v1.2.3-24-g4f1b