Re: [qooxdoo-devel] Possible bug: generate.py with empty string as macro value

2013-09-16 Thread non
http://bugzilla.qooxdoo.org/show_bug.cgi?id=7740 -- View this message in context: http://qooxdoo.678.n2.nabble.com/Possible-bug-generate-py-with-empty-string-as-macro-value-tp7584605p7584617.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

[qooxdoo-devel] Possible bug: generate.py with empty string as macro value

2013-09-13 Thread non
Hi, If you pass any macro on command line with an empty string as value, generate.py throws an exception. app$ ./generate.py -m TEST: Traceback (most recent call last): File "/home/user/public_html/qooxdoo-3.0.1-sdk/tool/bin/generator.py", line 247, in main() File "/home/user/public_html

[qooxdoo-devel] Download button / iframe / Basic Auth

2013-03-15 Thread non
Hi, I'd like to switch my app to Basic Auth and everything seems to work quite well. But I have problems getting my CSV downloads to work: * Pure XHR download does not trigger any download/save dialog in browser. As far as I know, there's no way utilizing XHR for this. * Setting window.location.

[qooxdoo-devel] annoying warning during load / qx.locale.Manager

2013-03-12 Thread non
Hi, Today a very annoying warning appears after some coding: 000638 There is no event handler for the event 'changeLocale' on target 'qx.locale.Manager[9-0]'! Native.js:65 001207 qx.core.Init: Load runtime: 1206ms It's not really reproducible. From what I noticed: * I had an custom log appender

[qooxdoo-devel] code optimization / class names

2013-03-12 Thread non
Hi, I used to think, that qx code optimization would rename any lexical names inside my projects. But recently, I found that class names are not renamed. http://manual.qooxdoo.org/current/pages/tool/generator/generator_optimizations.html Would it be possible to render the complete project (wit

Re: [qooxdoo-devel] packages and parts, separate-loader, static class with defer method

2013-03-05 Thread non
After some fiddling I came to following solution: I added the following lines to the head of my static class (the one initialized with "defer"): /* #require(qx.lang.String) #require(qx.data.SingleValueBinding) */ Ironically IE9 pointed me to the right place inside the optimized code. (All opt

Re: [qooxdoo-devel] packages and parts, separate-loader, static class with defer method

2013-03-03 Thread non
Step further: Deactivating the "variants" optimization eliminates the problem. Maybe this helps.. -- View this message in context: http://qooxdoo.678.n2.nabble.com/packages-and-parts-separate-loader-static-class-with-defer-method-tp7582971p7582993.html Sent from the qooxdoo mailing list arch

Re: [qooxdoo-devel] packages and parts, separate-loader, static class with defer method

2013-03-03 Thread non
Hi, I added the explicit qx.data.SingleValueBinding requirement as suggested. Now source builds and runs without a problem, but build is still complaining: Uncaught TypeError: Cannot call method 'endsWith' of undefined my.app.27350a9128e7.js:2 Any ideas? It's also in that "defer" context. In the

[qooxdoo-devel] packages and parts, separate-loader, static class with defer method

2013-02-28 Thread non
Hi list, In context of caching optimization I introduced packages to my project: "packages" : { "parts" : { "boot" : { "include" : ["${APPLICATION_MAIN_CLASS}", "${QXTHEME}"] } }, "separate-loader" : t

Re: [qooxdoo-devel] add-script/css problem: does not insert script/css tags

2012-08-28 Thread non
thron7-2 wrote > > A possible approach to tackle this might be to wrap the entire 3rd party > module in a qooxdoo class, which handles the loading, and then use the > wrapper class throughout of your code. The wrapper class could provide > means to check the loading status, like firing an even

Re: [qooxdoo-devel] add-script/css problem: does not insert script/css tags

2012-08-28 Thread non
Maybe one step further: I turned off all optimizations and debugged the build version a little: Inside a class of abc.core: --- qx.Class.define("abc.core.View", { extend : abc.core.AbstractView, statics : {

[qooxdoo-devel] add-script/css problem: does not insert script/css tags

2012-08-27 Thread non
"Uncaught ReferenceError: d3 is not defined". Now I found something interesting: If I manually add the d3 lib into index.html (of course source version, which gets copied over into build), suddenly add-script works again: abc.desktop (Please notice, that d3.v2.min.