[Laszlo-checkins] r7096 - openlaszlo/trunk/lps/admin

hqm@openlaszlo.org hqm at openlaszlo.org
Fri Nov 2 11:16:38 PDT 2007


Author: hqm
Date: 2007-11-02 11:16:25 -0700 (Fri, 02 Nov 2007)
New Revision: 7096

Modified:
   openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp
Log:
Change 20071102-hqm-6 by hqm at gigicorp on 2007-11-02 14:05:48 EDT
    in /cygdrive/c/users/hqm/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: warn if solo dhtml deploying an app with canvas debug enabled

New Features:

Bugs Fixed: LPP-3978

Technical Reviewer: pbr
QA Reviewer: josh
Doc Reviewer: 

Documentation:

Release Notes:

Details:
    

Issue warning if SOLO DHTML app is run through the deployer wizard,
and canvas debug  is true. Show message explaingin that the
debugger does not work in SOLO DHTML yet


Tests:



Modified: openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp
===================================================================
--- openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp	2007-11-02 16:52:05 UTC (rev 7095)
+++ openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp	2007-11-02 18:16:25 UTC (rev 7096)
@@ -172,6 +172,13 @@
 
         canvasElt = parse(canvasbuf.toString(), out);
 
+        String canvasdebug = canvasElt.getAttribute("debug");
+        if ("true".equals(canvasdebug)) {
+            %> <h2><font color="red">Note: your app has its canvas debug flag enabled, 
+                the Laszlo DHTML debugger curently does not work in a standalone SOLO deployment, continue?</h2>
+                <%
+        }
+        
         // load a copy of the HTML wrapper
         in = new BufferedReader(new InputStreamReader(wrapperUrl.openStream()));
         while ((str = in.readLine()) != null) 



More information about the Laszlo-checkins mailing list