On 02/09/2010 04:07 PM, Michael Schwarzl wrote:
> Hello Thomas,
> 
> thank you for your reply! Now I found the error by surprise. It has been a 
> cookie value which I tried to convert to an array but it has been null.
> 
> - I had built the version via "build" command. After this, the application is 
> "optimized" and unreadable - for me.
> - The json data had been correct. The htm files are parsed by my own server 
> sided srcipt system and returned correct values.
> - qx.util.ResourceManager.getInstance().toUri(".....")  Thanks, I'll keep 
> this in my mind.
> 
> Is it possible to "build" the application in a manner that I can read and 
> debug the result via firebug - I mean without reducing the names and leaving 
> indents?

In your config.json you can control optimizations by setting the
OPTIMIZE macro in the top-level "let" section:

    OPTIMIZE : ["strings", "privates", "basecalls", "variables"]

This is the full optimization which is in effect by default. Leaving out
elements of the array removes that specific optimization. Providing just
an empty array [] disables all optimziations, which might be what you
want as it comes closest to your original code. Most of your code's
white space (indentation, etc.) will be lost, though :-(.

T.


------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to