Author: pbr Date: 2006-11-14 08:53:32 -0800 (Tue, 14 Nov 2006) New Revision: 2520
Modified: openlaszlo/branches/legals/lps/components/rpc/javarpc.lzx Log: Change 20061113-Philip-a by [EMAIL PROTECTED] on 2006-11-13 15:21:16 EST in /cygdrive/f/laszlo/svn/src/svn/openlaszlo/branches/legals Summary: Fix .classname references in rpc New Features: Bugs Fixed: LPP-2971 Technical Reviewer: ptw QA Reviewer: (pending) Doc Reviewer: (pending) Documentation: Release Notes: Details: Updated this.classname to this.constructor.classname. I couldn't track down the endpoint to make sure that this.constructor.tagname was the right choice, but fr om the context of the code, the class name is desired. Tests: inspection Files: M lps/components/rpc/javarpc.lzx Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20061113-Philip-a.tar Modified: openlaszlo/branches/legals/lps/components/rpc/javarpc.lzx =================================================================== --- openlaszlo/branches/legals/lps/components/rpc/javarpc.lzx 2006-11-14 08:00:10 UTC (rev 2519) +++ openlaszlo/branches/legals/lps/components/rpc/javarpc.lzx 2006-11-14 16:53:32 UTC (rev 2520) @@ -81,7 +81,7 @@ var opts = { loadoption: this.loadoption, params: arguments, - classname: this.classname, + classname: this.constructor.classname, oname: this.attributename, scope: this.scope } @@ -113,7 +113,7 @@ LzJavaRPCService.unloadObject(this._unloadDel, { - classname: this.classname, + classname: this.constructor.classname, oname: this.attributename, scope: this.scope }, @@ -185,7 +185,7 @@ </library> <!-- * X_LZ_COPYRIGHT_BEGIN *************************************************** -* Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. * +* Copyright 2001-2006 Laszlo Systems, Inc. All Rights Reserved. * * Use is subject to license terms. * * X_LZ_COPYRIGHT_END ****************************************************** --> <!-- @LZX_VERSION@ --> _______________________________________________ Laszlo-checkins mailing list [email protected] http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins
