Author: hqm
Date: 2007-12-20 15:44:02 -0800 (Thu, 20 Dec 2007)
New Revision: 7647

Added:
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/LaszloAnimation.js
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/LzDefs.js
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/LzNode.js
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/dummyclasses.js
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/LaszloEvents.js
Modified:
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/LaszloLibrary.lzs
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/compiler/Library.lzs
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/Library.lzs
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/Library.lzs
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/Library.lzs
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/kernel/Library.lzs
Log:
Change 20071220-hqm-a by [EMAIL PROTECTED] on 2007-12-20 18:28:07 EST
    in /cygdrive/c/users/hqm/openlaszlo/devildog/WEB-INF/lps/lfc
    for http://svn.openlaszlo.org/openlaszlo/branches/devildog/WEB-INF/lps/lfc

Summary:  checkpoint of swf9 micro-lfc

New Features:

Bugs Fixed:

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    

Tests:



Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/LaszloLibrary.lzs
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/LaszloLibrary.lzs      
2007-12-20 22:18:43 UTC (rev 7646)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/LaszloLibrary.lzs      
2007-12-20 23:44:02 UTC (rev 7647)
@@ -17,8 +17,14 @@
 
 if ($swf9) {
 
-#include "core/LibrarySWF9.lzs"
+#include "core/Library.lzs"
+#include "events/Library.lzs"
 
+  //#include "kernel/Library.lzs"
+  //#include "views/Library.lzs"
+#include "controllers/Library.lzs"
+
+
 } else {
 
 if ($debug) {

Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/compiler/Library.lzs
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/compiler/Library.lzs   
2007-12-20 22:18:43 UTC (rev 7646)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/compiler/Library.lzs   
2007-12-20 23:44:02 UTC (rev 7647)
@@ -16,9 +16,6 @@
 
 if ($swf9) {
 
-// Class runtime for js2 runtimes
-#include "compiler/platform/js2/Instance.js"
-
 } else {
 
 // Basic runtime and stubs

Added: 
openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/LaszloAnimation.js


Property changes on: 
openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/LaszloAnimation.js
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/Library.lzs
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/Library.lzs        
2007-12-20 22:18:43 UTC (rev 7646)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/controllers/Library.lzs        
2007-12-20 23:44:02 UTC (rev 7647)
@@ -1,13 +1,18 @@
 /**
   * Library.lzs
   *
-  * @copyright Copyright 2001-2006 Laszlo Systems, Inc.  All Rights Reserved.
+  * @copyright Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.
   *            Use is subject to license terms.
   *
   * @access private
   */
 
-#include "controllers/LzAnimatorGroup.lzs"
-#include "controllers/LaszloAnimation.lzs"
-#include "controllers/LaszloLayout.lzs"
+if ($swf9) {
+    #include "controllers/LaszloAnimation.js"
+} else {
+    #include "controllers/LzAnimatorGroup.lzs"
+    #include "controllers/LaszloAnimation.lzs"
+    #include "controllers/LaszloLayout.lzs"
 
+}
+

Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/Library.lzs
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/Library.lzs       
2007-12-20 22:18:43 UTC (rev 7646)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/Library.lzs       
2007-12-20 23:44:02 UTC (rev 7647)
@@ -8,6 +8,15 @@
   */
 
 #include "core/LzConstants.lzs"
-#include "core/LzDefs.lzs"
-#include "core/LzNode.lzs"
-#include "core/UserClass.lzs"
+if ($swf9) {
+    // TODO [hqm 2007] temporarily exclude userclass from swf9 build right now
+    #include "core/dummyclasses.js"
+    #include "core/LzDefs.js"
+    #include "core/LzNode.js"
+
+
+} else {
+    #include "core/LzDefs.lzs"
+    #include "core/LzNode.lzs"
+    #include "core/UserClass.lzs"
+}

Added: openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/LzDefs.js


Property changes on: openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/LzDefs.js
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Added: openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/LzNode.js


Property changes on: openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/LzNode.js
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Added: openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/dummyclasses.js


Property changes on: 
openlaszlo/branches/devildog/WEB-INF/lps/lfc/core/dummyclasses.js
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Added: openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/LaszloEvents.js


Property changes on: 
openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/LaszloEvents.js
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/Library.lzs
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/Library.lzs     
2007-12-20 22:18:43 UTC (rev 7646)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/events/Library.lzs     
2007-12-20 23:44:02 UTC (rev 7647)
@@ -1,10 +1,14 @@
 /**
   * Library.lzs
   *
-  * @copyright Copyright 2001-2006 Laszlo Systems, Inc.  All Rights Reserved.
+  * @copyright Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.
   *            Use is subject to license terms.
   *
   * @access private
   */
 
-#include "events/LaszloEvents.lzs"
+if ($swf9) {
+  #include "events/LaszloEvents.js"
+        } else {
+  #include "events/LaszloEvents.lzs"
+}

Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/kernel/Library.lzs
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/kernel/Library.lzs     
2007-12-20 22:18:43 UTC (rev 7646)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/kernel/Library.lzs     
2007-12-20 23:44:02 UTC (rev 7647)
@@ -7,9 +7,15 @@
   * @access private
   */
 
-#include "kernel/LzIdleKernel.lzs"
-#include "kernel/LzUtils.lzs"
-#include "kernel/LzLibraryCleanup.lzs"
+if ($swf9) {
+    //    #include "kernel/LzIdleKernelSWF9.as"
+} else {
+    #include "kernel/LzIdleKernel.lzs"
+    #include "kernel/LzUtils.lzs"
+    #include "kernel/LzLibraryCleanup.lzs"
+}
+
+
 //#include "kernel/LzRequires.lzs"
 if ($dhtml) {
     #include "kernel/dhtml/Library.lzs"
@@ -17,6 +23,8 @@
     #include "kernel/svg/Library.lzs"
 } else if ($as2) {
     #include "kernel/swf/Library.lzs"
+} else if ($as3) {
+    //    #include "kernel/swf9/Library.lzs"
 } else if ($debug) {
     Debug.error('kernel/Library.lzs unsupported runtime %s', $runtime);
 }


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

Reply via email to