Author: hqm
Date: 2007-11-08 17:01:39 -0800 (Thu, 08 Nov 2007)
New Revision: 7196

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf/LzLoader.lzs
Log:
Change 20071108-hqm-8 by [EMAIL PROTECTED] on 2007-11-08 20:00:50 EST
    in /cygdrive/c/users/hqm/openlaszlo/trunk/WEB-INF/lps/lfc
    for http://svn.openlaszlo.org/openlaszlo/trunk/WEB-INF/lps/lfc


Summary: don't issue timeout on aborted request

New Features:

Bugs Fixed: LPP-5037

Technical Reviewer: andre
QA Reviewer: max
Doc Reviewer:

Documentation:

Release Notes:

Details:

If the program explicitly aborted the request, we should assume that
it doesn't want to get a timeout event.


Tests:

see test case in bug report





Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf/LzLoader.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf/LzLoader.lzs    2007-11-09 
00:54:29 UTC (rev 7195)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf/LzLoader.lzs    2007-11-09 
01:01:39 UTC (rev 7196)
@@ -180,15 +180,10 @@
 
 
     if ( ! loadobj.valid ) {
-        this.doTimeOut(loadobj);
         return;
     }
 
-    // [2005-08-25 ptw] So, we don't want to mark the clip as loaded
-    // if this is a persistent connection?  Not sure what that means.
-    if ( ! this.doPersist ) {
-        LzLoadQueue.loadFinished( loadobj );
-    }
+    LzLoadQueue.loadFinished( loadobj );
 
     this.lastloadtime = getTimer() - loadobj.loadtime;
 


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

Reply via email to