On Wed, Aug 6, 2008 at 7:50 PM, Derrell Lipman
<[EMAIL PROTECTED]> wrote:
> I believe you're hitting a generator problem.  The generator doesn't pull in
> the log appender class automatically right now.  (I posted a bug about this
> a day or two ago.)  To get the appender to load you just need to reference
> it.  You don't need to actually do anything with the reference; you just
> need something in your application that causes it to load.  Add this near
> the top of main():
>
>       // Referencing the appender is necessary to get it to load.
>       var appender = qx.log.appender.Native;

Thanks, will do.

> then your debug statements should start to display.
>
>>
>> *Firefox locks up and does one of those "Unresponsive Script" warnings
>> after a few seconds.
>
> I highly suspect that's a completely different issue.  You're doing
> something somewhat unusual, in that you're issuing a new Request inside of a
> different Request's callback.  That may cause you problems.  Why don't you
> try doing the secondary request via a timeout (qx.event.Timer.once would be
> appropriate).  You can use a timeout value of 0 so it occurs immediately
> upon completion of the current user code execution, but at least that way
> it's not tied up in the callback of the first request.

Well in 0.7 it worked just as expected. I'll follow your suggestion
and file a bug if it fixes things.

Ian

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to