Author: ptw
Date: 2007-09-19 09:56:48 -0700 (Wed, 19 Sep 2007)
New Revision: 6520

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs
Log:
Change 20070918-ptw-k by [EMAIL PROTECTED] on 2007-09-18 18:21:53 EDT
    in /Users/ptw/OpenLaszlo/ringding
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Tweak output of Debug.bugReport

Details:
    Use Debug.inspect, not inspectInternal so the 'hotlink' markup is hidden.

Tests:
    IWFM



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs       2007-09-19 
16:30:13 UTC (rev 6519)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs       2007-09-19 
16:56:48 UTC (rev 6520)
@@ -454,7 +454,10 @@
       });
     for (var i = 0; i < keys.length; i++) {
       var obj = inspected[keys[i]];
-      Debug.format("\n%s\n", Debug.inspectInternal(obj));
+      Debug.format("\n");
+      // Thus copy/paste will not get the 'hotlink' markup
+      Debug.inspect(obj);
+      Debug.format("\n");
     }
   }
   Debug.format("\n---END OF BUG REPORT---\n");


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

Reply via email to