[Laszlo-checkins] r5699 - in openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform: dhtml swf

max@openlaszlo.org max at openlaszlo.org
Wed Jul 18 19:09:38 PDT 2007


Author: max
Date: 2007-07-18 19:09:27 -0700 (Wed, 18 Jul 2007)
New Revision: 5699

Modified:
   openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/dhtml/LzHistory.js
   openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/swf/LzHistory.as
Log:
Change 20070718-maxcarlson-G by maxcarlson at plastik on 2007-07-18 17:10:19 PDT
    in /Users/maxcarlson/openlaszlo/legals-checkin
    for http://svn.openlaszlo.org/openlaszlo/branches/legals

Summary: Add LzHistory.isReady flag for backward compatibility with 3.x

New Features:

Bugs Fixed: LPP-4246 - LzHistory.isReady is not implemented

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

Documentation:

Release Notes:

Details: Since the history system in 4.x is always ready, the flag starts out set to true for backward compatibility.
    

Tests: See LPP-4246



Modified: openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/dhtml/LzHistory.js
===================================================================
--- openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/dhtml/LzHistory.js	2007-07-19 00:15:15 UTC (rev 5698)
+++ openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/dhtml/LzHistory.js	2007-07-19 02:09:27 UTC (rev 5699)
@@ -27,6 +27,11 @@
 var LzHistory = new Object;
 
 /**
+  * true if history system is ready (for 3.x compatibility)
+  */
+LzHistory.isReady = true;
+
+/**
   * @access private
   */
 LzHistory.setHistory = function(s) {

Modified: openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/swf/LzHistory.as
===================================================================
--- openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/swf/LzHistory.as	2007-07-19 00:15:15 UTC (rev 5698)
+++ openlaszlo/branches/legals/WEB-INF/lps/lfc/services/platform/swf/LzHistory.as	2007-07-19 02:09:27 UTC (rev 5699)
@@ -27,6 +27,11 @@
 var LzHistory = new Object;
 
 /**
+  * true if history system is ready (for 3.x compatibility)
+  */
+LzHistory.isReady = true;
+
+/**
   * @access private
   */
 LzHistory.setHistory = function(s) {



More information about the Laszlo-checkins mailing list