Update of /cvsroot/qooxdoo/qooxdoo/source/script/transport
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31894/source/script/transport
Modified Files:
Tag: renderer
QxRequest.js
Log Message:
Changed type of data to string
Index: QxRequest.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/transport/Attic/QxRequest.js,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -C2 -d -r1.1.2.7 -r1.1.2.8
*** QxRequest.js 19 Jan 2006 13:56:09 -0000 1.1.2.7
--- QxRequest.js 19 Jan 2006 13:58:25 -0000 1.1.2.8
***************
*** 50,54 ****
QxRequest.addProperty({ name : "method", type : QxConst.TYPEOF_STRING, possibleValues : [ "GET", "POST", "PUT", "HEAD", "DELETE" ], defaultValue : "POST" });
QxRequest.addProperty({ name : "asynchronous", type : QxConst.TYPEOF_BOOLEAN, defaultValue : true });
! QxRequest.addProperty({ name : "data", type : QxConst.TYPEOF_OBJECT });
QxRequest.addProperty({ name : "username", type : QxConst.TYPEOF_STRING });
QxRequest.addProperty({ name : "password", type : QxConst.TYPEOF_STRING });
--- 50,54 ----
QxRequest.addProperty({ name : "method", type : QxConst.TYPEOF_STRING, possibleValues : [ "GET", "POST", "PUT", "HEAD", "DELETE" ], defaultValue : "POST" });
QxRequest.addProperty({ name : "asynchronous", type : QxConst.TYPEOF_BOOLEAN, defaultValue : true });
! QxRequest.addProperty({ name : "data", type : QxConst.TYPEOF_STRING });
QxRequest.addProperty({ name : "username", type : QxConst.TYPEOF_STRING });
QxRequest.addProperty({ name : "password", type : QxConst.TYPEOF_STRING });
|