[Laszlo-checkins] r10611 - openlaszlo/trunk/WEB-INF/lps/lfc/data
bargull@openlaszlo.org
bargull at openlaszlo.org
Wed Aug 6 09:48:08 PDT 2008
Author: bargull
Date: 2008-08-06 09:48:05 -0700 (Wed, 06 Aug 2008)
New Revision: 10611
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDataRequest.lzs
Log:
Change 20080806-bargull-tRc by bargull at dell--p4--2-53 on 2008-08-06 00:12:54
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Remove obsolete properties
New Features:
Bugs Fixed: LPP-6769
Technical Reviewer: hminsky
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
LzDataRequest is not a subclass of LzNode, so it doesn't need to have a "tagname" and the "attributes"-hash.
Tests:
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDataRequest.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDataRequest.lzs 2008-08-06 14:13:48 UTC (rev 10610)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDataRequest.lzs 2008-08-06 16:48:05 UTC (rev 10611)
@@ -17,13 +17,6 @@
* @lzxname datarequest
*/
class LzDataRequest extends LzEventable {
-
- /** @access private
- * @modifiers override
- */
- static var tagname = 'datarequest';
- /** @access private */
- static var attributes = new LzInheritedHash(LzNode.attributes);
/* Status value constants */
/**
@@ -31,25 +24,25 @@
* @lzxdefault "success"
* @keywords read-only
*/
- static var SUCCESS = 'success';
+ static const SUCCESS :String = 'success';
/**
* @type String
* @lzxdefault "timeout"
* @keywords read-only
*/
- static var TIMEOUT = 'timeout';
+ static const TIMEOUT :String = 'timeout';
/**
* @type String
* @lzxdefault "error"
* @keywords read-only
*/
- static var ERROR = 'error';
+ static const ERROR :String = 'error';
/**
* @type String
* @lzxdefault "ready"
* @keywords read-only
*/
- static var READY = 'ready';
+ static const READY :String = 'ready';
/** An optional property that's the object using the DataRequest to pass into the dataprovider's doRequest method.
* @type Object
More information about the Laszlo-checkins
mailing list