zmx-cvs-commit Mailing List for ZMX Framework (Page 6)
Brought to you by:
sspickle
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(7) |
Aug
(19) |
Sep
(1) |
Oct
(4) |
Nov
(9) |
Dec
(4) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
(4) |
Mar
(7) |
Apr
(5) |
May
(1) |
Jun
(3) |
Jul
(6) |
Aug
(3) |
Sep
|
Oct
(12) |
Nov
(3) |
Dec
|
| 2005 |
Jan
(4) |
Feb
(6) |
Mar
(9) |
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
(4) |
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ssp...@us...> - 2003-07-04 22:02:18
|
Update of /cvsroot/zmx/zmx
In directory sc8-pr-cvs1:/tmp/cvs-serv13892
Modified Files:
ZMXScreenClass.as ZMX_Application.as ZMX_Utils.as ZMX_XML.as
Log Message:
save some minor changes..
Index: ZMXScreenClass.as
===================================================================
RCS file: /cvsroot/zmx/zmx/ZMXScreenClass.as,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** ZMXScreenClass.as 15 Jun 2003 15:30:08 -0000 1.18
--- ZMXScreenClass.as 4 Jul 2003 22:02:15 -0000 1.19
***************
*** 169,172 ****
--- 169,187 ----
}
+ p.doGetURL = function (comp) {
+
+ if (comp.loadURL != null) {
+ loadURL=comp.loadURL;
+ }
+ else {
+ var tryLoadURL = comp.getValue();
+ if (tryLoadURL != null) {
+ loadURL = tryLoadURL;
+ }
+ }
+
+ getURL( loadURL )
+ }
+
p.getFieldValue = function ( attr, defaultValue) {
//
Index: ZMX_Application.as
===================================================================
RCS file: /cvsroot/zmx/zmx/ZMX_Application.as,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** ZMX_Application.as 12 Jun 2003 04:25:56 -0000 1.15
--- ZMX_Application.as 4 Jul 2003 22:02:15 -0000 1.16
***************
*** 67,78 ****
}
p.sendXMLCommand = p.sendXMLCommand_startup;
p.sendCommand = function( commandName, proxy, client ) {
this.notifyWait("command",commandName);
return this.ncomm.sendCommandToServer( commandName, proxy, client);
}
! _global.ZMX_Application.prototype.destroyInitClip = function () {
//
// we are in a 'screen' movie.. and we want to simulate the environment a
--- 67,83 ----
}
+ p.notifyWait = function ( notifyType, msg ) {
+ _global.gTrace("notify.. " + notifyType + ":" + msg);
+ }
+
p.sendXMLCommand = p.sendXMLCommand_startup;
p.sendCommand = function( commandName, proxy, client ) {
+ _global.gTrace("sending command:" + commandName + ":" + _global.serializeObject(proxy));
this.notifyWait("command",commandName);
return this.ncomm.sendCommandToServer( commandName, proxy, client);
}
! p.destroyInitClip = function () {
//
// we are in a 'screen' movie.. and we want to simulate the environment a
***************
*** 90,94 ****
! _global.ZMX_Application.prototype.xmlSuccess = function( result ) {
//
// we have some information to load a screen..
--- 95,99 ----
! p.xmlSuccess = function( result ) {
//
// we have some information to load a screen..
***************
*** 141,150 ****
}
! _global.ZMX_Application.prototype.registerCurrentScreen = function ( theScreen ) {
this.currentScreen = theScreen;
this.currScrURL = _global.LastPathElement(theScreen._url);
}
! _global.ZMX_Application.prototype.xmlFailure = function( ) {
//
// xml has failed to load!
--- 146,155 ----
}
! p.registerCurrentScreen = function ( theScreen ) {
this.currentScreen = theScreen;
this.currScrURL = _global.LastPathElement(theScreen._url);
}
! p.xmlFailure = function( ) {
//
// xml has failed to load!
***************
*** 153,157 ****
}
! _global.ZMX_Application.prototype.spinHourglass = function() {
this.hourglass.startSpin();
this.hourglass._visible = true;
--- 158,162 ----
}
! p.spinHourglass = function() {
this.hourglass.startSpin();
this.hourglass._visible = true;
***************
*** 159,168 ****
}
! _global.ZMX_Application.prototype.setHourglassText = function( msg ) {
this.hGlassText.text = msg;
}
! _global.ZMX_Application.prototype.stopHourglass = function() {
this.hourglass.stopSpin();
this.hourglass.gotoAndStop(1);
--- 164,173 ----
}
! p.setHourglassText = function( msg ) {
this.hGlassText.text = msg;
}
! p.stopHourglass = function() {
this.hourglass.stopSpin();
this.hourglass.gotoAndStop(1);
***************
*** 171,175 ****
}
! _global.ZMX_Application.prototype.setStatusText = function( msg ) {
_global.gTrace("Setting status text to: " + msg);
_global.ZMX_Background.statusLine.text = msg;
--- 176,180 ----
}
! p.setStatusText = function( msg ) {
_global.gTrace("Setting status text to: " + msg);
_global.ZMX_Background.statusLine.text = msg;
Index: ZMX_Utils.as
===================================================================
RCS file: /cvsroot/zmx/zmx/ZMX_Utils.as,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** ZMX_Utils.as 12 Jun 2003 04:25:56 -0000 1.16
--- ZMX_Utils.as 4 Jul 2003 22:02:15 -0000 1.17
***************
*** 378,381 ****
--- 378,383 ----
//
+ _global.gTrace("ZMX Utils: getXML called by " + callbackObj + ":" + xmlThing);
+
if (xmlThing == null) {
xmlThing = new XML();
***************
*** 406,410 ****
p.failure = function( reason ) {
! this.proxy[this.failure]( reason );
}
--- 408,412 ----
p.failure = function( reason ) {
! this.proxy[this.failureName]( reason );
}
Index: ZMX_XML.as
===================================================================
RCS file: /cvsroot/zmx/zmx/ZMX_XML.as,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** ZMX_XML.as 12 Jun 2003 04:25:56 -0000 1.17
--- ZMX_XML.as 4 Jul 2003 22:02:15 -0000 1.18
***************
*** 463,471 ****
TypeNode = this.methodCall.createElement("struct");
! for (var i in Parameter.value)
{
var MemberNode = this.methodCall.createElement("member");
MemberNode.appendChild(this.MethodCall.createElement("name"));
! MemberNode.firstChild.appendChild(this.methodCall.createTextNode(Parameter.value[i].name));
// Well - maybe the Parameter is suppose to be the value!
--- 463,475 ----
TypeNode = this.methodCall.createElement("struct");
! for (var i=0; i<Parameter.value.length; i++)
{
var MemberNode = this.methodCall.createElement("member");
MemberNode.appendChild(this.MethodCall.createElement("name"));
! if (Parameter.name == null) {
! MemberNode.firstChild.appendChild(this.methodCall.createTextNode(Parameter.value[i].name));
! } else {
! MemberNode.firstChild.appendChild(this.methodCall.createTextNode(Parameter.name));
! }
// Well - maybe the Parameter is suppose to be the value!
***************
*** 836,840 ****
if (this.type == 'struct') {
! for (var i in this.value) {
if (this.value[i].name == Arg1) {
--- 840,844 ----
if (this.type == 'struct') {
! for (var i=0; i<this.value.length; i++) {
if (this.value[i].name == Arg1) {
***************
*** 1169,1173 ****
param.AddMember(attr, this.buildStruct(theVal), 'struct');
} else if (theType == 'dateTime.iso8601') {
! param.AddMember(this.buildDate(theVal));
}
else {
--- 1173,1177 ----
param.AddMember(attr, this.buildStruct(theVal), 'struct');
} else if (theType == 'dateTime.iso8601') {
! param.AddMember(attr, this.buildDate(theVal));
}
else {
***************
*** 1179,1185 ****
p.buildDate = function (theObj ) {
! var param = new XMLMessageObject('dateTime.iso8601');
param.setValue( theObj );
! return param;
}
--- 1183,1189 ----
p.buildDate = function (theObj ) {
! var param = new XMLMessageObject('dateTime.iso8601');
param.setValue( theObj );
! return param;
}
|
|
From: <ssp...@us...> - 2003-06-30 20:50:37
|
Update of /cvsroot/zmx/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv5553 Modified Files: checkoutlist Log Message: safe Index: checkoutlist =================================================================== RCS file: /cvsroot/zmx/CVSROOT/checkoutlist,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** checkoutlist 30 Jun 2003 20:42:46 -0000 1.2 --- checkoutlist 30 Jun 2003 20:50:34 -0000 1.3 *************** *** 12,14 **** # # comment lines begin with '#' ! loginfo --- 12,14 ---- # # comment lines begin with '#' ! |
|
From: <ssp...@us...> - 2003-06-30 20:42:49
|
Update of /cvsroot/zmx/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv4038 Modified Files: checkoutlist Log Message: safe Index: checkoutlist =================================================================== RCS file: /cvsroot/zmx/CVSROOT/checkoutlist,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** checkoutlist 8 Nov 2002 22:13:24 -0000 1.1 --- checkoutlist 30 Jun 2003 20:42:46 -0000 1.2 *************** *** 12,13 **** --- 12,14 ---- # # comment lines begin with '#' + loginfo |