[Laszlo-checkins] r7513 - openlaszlo/branches/devildog/WEB-INF/lps/server/src/org/openlaszlo/compiler

hqm@openlaszlo.org hqm at openlaszlo.org
Tue Dec 11 12:15:41 PST 2007


Author: hqm
Date: 2007-12-11 12:15:39 -0800 (Tue, 11 Dec 2007)
New Revision: 7513

Modified:
   openlaszlo/branches/devildog/WEB-INF/lps/server/src/org/openlaszlo/compiler/Compiler.java
Log:
Change 20071211-hqm-0 by hqm at DADDY_THNKPAD67 on 2007-12-11 15:14:51 EST
    in /cygdrive/c/users/hqm/openlaszlo/devildog/WEB-INF/lps/server/src
    for http://svn.openlaszlo.org/openlaszlo/branches/devildog/WEB-INF/lps/server/src

Summary:  make $as2 only true for swf7,8

New Features:

Bugs Fixed:

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

Documentation:

Release Notes:

Details:
    

Tests:



Modified: openlaszlo/branches/devildog/WEB-INF/lps/server/src/org/openlaszlo/compiler/Compiler.java
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/server/src/org/openlaszlo/compiler/Compiler.java	2007-12-11 19:58:44 UTC (rev 7512)
+++ openlaszlo/branches/devildog/WEB-INF/lps/server/src/org/openlaszlo/compiler/Compiler.java	2007-12-11 20:15:39 UTC (rev 7513)
@@ -399,7 +399,7 @@
             compileTimeConstants.put("$runtime", runtime);
             compileTimeConstants.put("$swf7", Boolean.valueOf("swf7".equals(runtime)));
             compileTimeConstants.put("$swf8", Boolean.valueOf("swf8".equals(runtime)));
-            compileTimeConstants.put("$as2", Boolean.valueOf(Arrays.asList(new String[] {"swf7", "swf8", "swf9"}).contains(runtime)));
+            compileTimeConstants.put("$as2", Boolean.valueOf(Arrays.asList(new String[] {"swf7", "swf8"}).contains(runtime)));
             compileTimeConstants.put("$swf9", Boolean.valueOf("swf9".equals(runtime)));
             compileTimeConstants.put("$as3", Boolean.valueOf(Arrays.asList(new String[] {"swf9"}).contains(runtime)));
             compileTimeConstants.put("$dhtml", Boolean.valueOf("dhtml".equals(runtime)));



More information about the Laszlo-checkins mailing list