From 8793d83042d5cf388a30ee5f8637fa6554334aa6 Mon Sep 17 00:00:00 2001 From: Tobi Oetiker Date: Mon, 2 Jun 2008 20:03:33 +0000 Subject: initial support for mrt integration --- qooxdoo/source/class/Mtr/Server.js | 74 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 qooxdoo/source/class/Mtr/Server.js (limited to 'qooxdoo/source/class/Mtr/Server.js') diff --git a/qooxdoo/source/class/Mtr/Server.js b/qooxdoo/source/class/Mtr/Server.js new file mode 100644 index 0000000..3e77047 --- /dev/null +++ b/qooxdoo/source/class/Mtr/Server.js @@ -0,0 +1,74 @@ +/* ************************************************************************ +#module(Mtr) +************************************************************************ */ + +/** + * A Mtr specific rpc call which works + */ + +qx.Class.define('Mtr.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('mtr.cgi'); + setServiceName('Mtr'); + 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+'mtr.cgi'); + } + } + } + + } +}); -- cgit v1.2.3-24-g4f1b