[qooxdoo-devel] Multiline table header

2011-07-24 Thread alexandr
Hi, Does the qooxdoo feature to set table header cell to multiline? __ Thanks, Alexandr -- View this message in context: http://qooxdoo.678.n2.nabble.com/Multiline-table-header-tp6617287p6617287.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] problem with qx.core.Environment.get() under qooxdoo-1.5

2011-07-24 Thread thron7
The "settings" key has been deprecated with 1.4 [1] (you must have ignored the deprecation warnings all along), and support for it has been removed with 1.5. Replace "settings" with "environment" in your config, and you should be all set. T. [1] http://qooxdoo.org/about/release_notes/1.4#tooling

Re: [qooxdoo-devel] is possible configure the path of the build directory?

2011-07-24 Thread Tobias Oetiker
I call the generator like this ... lets me configure all relevant bits right from the commandline ... (from a script actually) $QOOXDOO_PATH/tool/bin/generator.py -m QOOXDOO_PATH:$QOOXDOO_PATH -m CACHE:${TMP:-/tmp}/${USER}_QX_CACHE -m BUILD_PATH:${build_path} $1 $1 holds the generator command.

[qooxdoo-devel] problem with qx.core.Environment.get() under qooxdoo-1.5

2011-07-24 Thread danovics
In my config.json I have: "jobs" : { "common" { "settings" : { "my.key": "stringValue" } } } Under 1.4.2 I was able to get the "stringValue" like this: var a = qx.core.Environment.get("my.key"); After migrating to 1.5 I got a warning in firebu