[Zmx-cvs-commit] zmx Readme.txt,1.4,1.5 ZMXNetCommServer.as,1.10,1.11 ZMX_XML.as,1.43,1.44
Brought to you by:
sspickle
|
From: Steve S. <ssp...@us...> - 2005-03-20 03:14:56
|
Update of /cvsroot/zmx/zmx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17581 Modified Files: Readme.txt ZMXNetCommServer.as ZMX_XML.as Log Message: add revision string to helper class. Index: ZMX_XML.as =================================================================== RCS file: /cvsroot/zmx/zmx/ZMX_XML.as,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ZMX_XML.as 20 Mar 2005 02:17:25 -0000 1.43 --- ZMX_XML.as 20 Mar 2005 03:14:46 -0000 1.44 *************** *** 36,40 **** */ - #include "ZMX_LConnClient.as" --- 36,39 ---- *************** *** 63,68 **** // get the InstantXML configuration info. // // config.use_LC_server Use a local connection rather than talking directly to ! // the host. // --- 62,75 ---- // get the InstantXML configuration info. // + // config.configDelay = Boolean or number. If defined delay the configuration message. + // If numeric use value for number of seconds to delay. + // + // config.send_ping = Boolean or number. If defined request pings from the + // to help maintain/monitor a connection that may fail. + // If numeric, use value to est ping delay interval (and + // connection check interval + // // config.use_LC_server Use a local connection rather than talking directly to ! // the host. (deprecated) // *************** *** 105,110 **** --- 112,124 ---- p = c.prototype = new Object(); + p.version = "$Revision$".slice(10,-1); p.attemptConnection = function() { + + // + // this is separated out to enable the auto-reconnect functionality + // of InstantXMLHelper when used with the 'send_ping' configuration. + // + if (this.xmlc != null) { this.xmlc.close(); *************** *** 150,153 **** --- 164,170 ---- if (this.config.use_LC_server) { + // + // this local client stuff is deprecated. + // this.myLocalClient = new LConn_ClientClass( this, config ); // sign up for a local connection client } Index: ZMXNetCommServer.as =================================================================== RCS file: /cvsroot/zmx/zmx/ZMXNetCommServer.as,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ZMXNetCommServer.as 27 Aug 2003 16:46:30 -0000 1.10 --- ZMXNetCommServer.as 20 Mar 2005 03:14:46 -0000 1.11 *************** *** 9,13 **** */ // ! // Network/Server Communication Objects. // --- 9,13 ---- */ // ! // Network/Server Communication Objects. These are deprecated in favor of XMLRPC. // Index: Readme.txt =================================================================== RCS file: /cvsroot/zmx/zmx/Readme.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Readme.txt 15 Jun 2003 15:36:15 -0000 1.4 --- Readme.txt 20 Mar 2005 03:14:45 -0000 1.5 *************** *** 20,27 **** then: cp *as .. There are some examples in the 'examples' directory. - Enjoy! - -steve --- 20,29 ---- then: + cd zmx + + then + cp *as .. There are some examples in the 'examples' directory. |