[Laszlo-checkins] r12758 - in openlaszlo/branches/4.2: . lps/components/rpc

ptw@openlaszlo.org ptw at openlaszlo.org
Thu Feb 5 12:46:50 PST 2009


Author: ptw
Date: 2009-02-05 12:46:47 -0800 (Thu, 05 Feb 2009)
New Revision: 12758

Modified:
   openlaszlo/branches/4.2/
   openlaszlo/branches/4.2/lps/components/rpc/javarpc.lzx
   openlaszlo/branches/4.2/lps/components/rpc/soap.lzx
Log:
Merged revisions 12757 via svnmerge from 
http://svn.openlaszlo.org/openlaszlo/trunk

.......
  r12757 | dda | 2009-02-05 15:36:50 -0500 (Thu, 05 Feb 2009) | 28 lines
  
  Change 20090205-dda-i by dda at lester-2.local on 2009-02-05 15:30:43 EST
      in /Users/dda/laszlo/src/svn/openlaszlo/trunk-g
      for http://svn.openlaszlo.org/openlaszlo/trunk
  
  Summary: Fix two more cases where 'arguments.callee...' is used within closures
  
  New Features:
  
  Bugs Fixed: LPP-7721 [xml-rpc is not working when "compiler.swf9.catcherrors=true"]
  
  Technical Reviewer: ptw (pending)
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
      ** for consideration for 4.2.0.1
      See LPP-7721 - two more (almost identical) cases have been found in components that use 'arguments'
      within function closure expressions, and are subject to the same runtime error when catcherrors=true
  
  Tests:
     With catcherrors=false: 
        {smokecheck,lzpix} x {swf8,swf9,dhtml} 
.......



Property changes on: openlaszlo/branches/4.2
___________________________________________________________________
Name: svnmerge-integrated
   - /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-12154,12172-12175,12177-12185,12187-12194,12196,12201,12208,12229,12251-12252,12254-12255,12257-12258,12260,12262-12266,12268-12269,12271-12275,12278-12285,12303,12318-12323,12345,12360,12403,12420,12424,12429,12457,12473,12477,12508,12594,12596,12603,12664,12669,12675,12677,12719,12737,12752
   + /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-12154,12172-12175,12177-12185,12187-12194,12196,12201,12208,12229,12251-12252,12254-12255,12257-12258,12260,12262-12266,12268-12269,12271-12275,12278-12285,12303,12318-12323,12345,12360,12403,12420,12424,12429,12457,12473,12477,12508,12594,12596,12603,12664,12669,12675,12677,12719,12737,12752,12757

Modified: openlaszlo/branches/4.2/lps/components/rpc/javarpc.lzx
===================================================================
--- openlaszlo/branches/4.2/lps/components/rpc/javarpc.lzx	2009-02-05 20:36:50 UTC (rev 12757)
+++ openlaszlo/branches/4.2/lps/components/rpc/javarpc.lzx	2009-02-05 20:46:47 UTC (rev 12758)
@@ -161,6 +161,7 @@
 
                 var DOREQ = stubinfo['doreq'] ? stubinfo['doreq'] : false;
                 var DORES = stubinfo['dores'] ? stubinfo['dores'] : false;
+#pragma "catchFunctionExceptions=false"
                 var stubfunc = function (){
                    var args = arguments.callee.args;
                    return LzJavaRPCService.invoke(
@@ -442,7 +443,7 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2009 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->
 <!-- @LZX_VERSION@                                                         -->

Modified: openlaszlo/branches/4.2/lps/components/rpc/soap.lzx
===================================================================
--- openlaszlo/branches/4.2/lps/components/rpc/soap.lzx	2009-02-05 20:36:50 UTC (rev 12757)
+++ openlaszlo/branches/4.2/lps/components/rpc/soap.lzx	2009-02-05 20:46:47 UTC (rev 12758)
@@ -99,6 +99,7 @@
            // "service": "MathService",
            // "wsdl": "http://www.dotnetjunkies.com/quickstart/aspplus......./mathservice.asmx?WSDL"},
            //                                            args.superclass.secure,
+#pragma "catchFunctionExceptions=false"
            var stubfunc = function (){
                var args = arguments.callee.args;
                return LzSOAPService.invoke(
@@ -403,7 +404,7 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2009 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->
 <!-- @LZX_VERSION@                                                         -->



More information about the Laszlo-checkins mailing list