Update of /cvsroot/thyapi/thyapi/thyutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18601/thyutils
Modified Files:
thyprotocol.js thyxmlrpcprotocol.js
Log Message:
Commiting file additions and modification from SVN revision 2335 to 2336...
Changes made by rpereira on 2005-11-25 03:37:59 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2336 with message:
- Added important dynapi.onClassLoad function
- Correct bugs
Index: thyprotocol.js
===================================================================
RCS file: /cvsroot/thyapi/thyapi/thyutils/thyprotocol.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** thyprotocol.js 26 Oct 2005 18:37:26 -0000 1.6
--- thyprotocol.js 25 Nov 2005 01:55:09 -0000 1.7
***************
*** 70,73 ****
--- 70,98 ----
}
+ /**
+ * Method: getServerURL
+ *
+ * Returns the server URL
+ *
+ */
+ p.getServerURL = function()
+ {
+ return this.serverURL;
+ }
+
+ /**
+ * Method: setServerURL
+ *
+ * Sets the server URL
+ *
+ * Parameter:
+ *
+ * url - The server URL
+ *
+ */
+ p.setServerURL = function (url)
+ {
+ this.serverURL = url;
+ }
/*************************************************************************\
* Private Methods *
Index: thyxmlrpcprotocol.js
===================================================================
RCS file: /cvsroot/thyapi/thyapi/thyutils/thyxmlrpcprotocol.js,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** thyxmlrpcprotocol.js 27 Oct 2005 02:36:09 -0000 1.7
--- thyxmlrpcprotocol.js 25 Nov 2005 01:55:09 -0000 1.8
***************
*** 126,140 ****
}
- /**
- * Method: getServerURL
- *
- * Returns the server URL
- *
- */
- p.getServerURL = function()
- {
- return this.serverURL;
- }
-
/*************************************************************************\
* Group: Private Methods *
--- 126,129 ----
|