Author: max
Date: 2007-08-06 14:48:12 -0700 (Mon, 06 Aug 2007)
New Revision: 5947

Modified:
   openlaszlo/branches/wafflecone/WEB-INF/lps/lfc/core/LzNode.lzs
   openlaszlo/branches/wafflecone/lps/components/utils/replicator/replicator.lzx
Log:
Change 20070806-maxcarlson-x by [EMAIL PROTECTED] on 2007-08-06 14:30:15 PDT
    in /Users/maxcarlson/openlaszlo/wafflecone
    for http://svn.openlaszlo.org/openlaszlo/branches/wafflecone

Summary: Remove setter for LzNode.data

New Features:

Bugs Fixed: LPP-4405 'Implement ExplicitReplication' (partial)

Technical Reviewer: promanik
QA Reviewer: ptw, pkang
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details: LzNode.lzs - Remove setter for .data -> setData().

replicator.lzx - Call v.setData( this.nodes[ n ] ); instead of 
setAttribute('data', ...)
    

Tests: silver/main.lzx?lzr=swf8 runs again, 
http://localhost:8080/wafflecone/test/explicit-replicators/replicator.lzx?lzr=swf8
 passes



Modified: openlaszlo/branches/wafflecone/WEB-INF/lps/lfc/core/LzNode.lzs
===================================================================
--- openlaszlo/branches/wafflecone/WEB-INF/lps/lfc/core/LzNode.lzs      
2007-08-06 21:35:17 UTC (rev 5946)
+++ openlaszlo/branches/wafflecone/WEB-INF/lps/lfc/core/LzNode.lzs      
2007-08-06 21:48:12 UTC (rev 5947)
@@ -1056,7 +1056,6 @@
     options: "__LZsetOptions",
     placement : -1 ,
     datapath : "setDatapath",
-    data: "setData",
     $setters : -1,
     $classrootdepth : "__LZsetClassRoot",
     $datapath : "__LZmakeDatapath"

Modified: 
openlaszlo/branches/wafflecone/lps/components/utils/replicator/replicator.lzx
===================================================================
--- 
openlaszlo/branches/wafflecone/lps/components/utils/replicator/replicator.lzx   
    2007-08-06 21:35:17 UTC (rev 5946)
+++ 
openlaszlo/branches/wafflecone/lps/components/utils/replicator/replicator.lzx   
    2007-08-06 21:48:12 UTC (rev 5947)
@@ -262,7 +262,7 @@
     //          @param n: The node to which it is being set.
 
     function setData (v, n) {
-        v.setAttribute( "data" , this.nodes[ n ] );
+        v.setData( this.nodes[ n ] );
         v.applyData(this.nodes[n]);
     }
 


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to