Re: [qooxdoo-devel] Vista Basic uses the Qooxdoo UI framework

2017-05-07 Thread thron7
This looks awesome. A lot of VB coders might be interested in it. And your TypeScript extensions might be interesting for other people too. If you haven't done so, please make sure to also announce your project at https://gitter.im/qooxdoo/qooxdoo which is where all the community chatting happens

Re: [qooxdoo-devel] build warning:.. first argument is not a string literal

2016-04-21 Thread thron7
Hi Media, On Thu, Apr 21, 2016 at 9:26 PM, media wrote: > Hi everybody, > > I always get a build message "- Warning: .. first argument is not a string > literal." > how it is programmed correctly or > is it possible to disable the warning? > > var checks = qx.core.Environment.getChecks(); > v

Re: [qooxdoo-devel] generator environment source / build

2016-04-09 Thread thron7
Hi Raymond, On Thu, Apr 7, 2016 at 7:37 AM, Raymond Rösch wrote: > Good Moring > > I would like to set different environment keys in config.json file. > Are you talking about *configuration* keys in general, or do you mean the OS environment specifically? > > As far as I can understand it mu

Re: [qooxdoo-devel] GUI Automated tests for Qooxdoo

2016-02-26 Thread thron7
Tina, my knowledge is vague and dated, but maybe it is enough to get you going, and maybe others can chime in to fill the gaps I've left. On Fri, Feb 26, 2016 at 4:34 PM, Tina wrote: > I have been reading material in the book 'Qooxdoo Beginner's Guide' for GUI > automated testing and it mention

Re: [qooxdoo-devel] QxCompiler - add ES6, faster compilation, and 100% Javascript API to building applications

2016-02-22 Thread thron7
On Mon, Feb 22, 2016 at 6:38 PM, Adrian Haarbach wrote: > > > *Then to install all dependencies and run, just do:* > > npm install -g grunt-cli > npm install //installs dependencies listed in package.json into > node_modules folder > grunt //runs default http-server:dev job > > > > The recompil

Re: [qooxdoo-devel] QxCompiler - add ES6, faster compilation, and 100% Javascript API to building applications

2016-02-15 Thread thron7
John, this looks interesting! I like the API-based approach (Reminds me of the Clojure "boot" build system's tag line, "Builds are programs"[1]). It seems you have been working on that for a while. [1] http://boot-clj.com/ On Mon, Feb 15, 2016 at 9:28 AM, John Spackman wrote: > > > The QxCompi

Re: [qooxdoo-devel] Ruby Gem Extending Qooxdoo Framework (MIT License)

2016-02-07 Thread thron7
Wow, that looks interesting! T. On Sun, Feb 7, 2016 at 12:58 AM, pfisk wrote: > I have created a new Ruby Gem for integrating the Qooxdoo library into my > Rails projects. > > It uses the Opal Ruby->JavaScript compiler so that the entire interface can > be built using only Ruby code (if desired

Re: [qooxdoo-devel] External script in Testrunner build

2016-01-26 Thread thron7
I believe you also have to make sure the script is copied to the build folder. Try adding the following key to your config: "testrunner::build-tests-files" : { "copy-files" : { "files" : [ "script/util.js" ] } } Hope this helps, T. On Wed, Jan 20, 2016 at 8:12 AM, Josep Tor

Re: [qooxdoo-devel] Override this.tr translations of contribs in the app using the contribs

2015-10-20 Thread thron7
On Tue, Oct 20, 2015 at 12:50 PM, Dietrich Streifert < dietrich.streif...@googlemail.com> wrote: > Thank you Thomas, > > this way it would be able to use the po files created by generate.py > translation. Never thought about using this.tr in the map itself. Thank > your for the hint! > > But shoul

Re: [qooxdoo-devel] Override this.tr translations of contribs in the app using the contribs

2015-10-19 Thread thron7
Hi Dietrich, I suppose the thread you've linked to still holds true basically. The approach of qooxdoo's translation system is to keep translations "close to the code", so that in the generated app translations are bundled with the code that actually uses them. Hence the need to internationalize l

Re: [qooxdoo-devel] Firefox 40.x+ / Qooxdoo problems

2015-10-09 Thread thron7
Just a quick hint concerning modifying isLoadParallel: If you don't want to patch the original loader.tmpl.js, as John suggested, you can always create a copy from it, adapt that, and then set the config.json value compile-options/paths/loader-template [1] to the path of your copy. This is e.g

Re: [qooxdoo-devel] Keep array well indented after pretty-print

2015-01-10 Thread thron7
yep, this is a bug. for a quick fix, remove the inner parens so that the offending code line reads self.add('\n',_,optns) this should work as a work-around. t. On Thu, Jan 8, 2015 at 4:05 PM, woprandi wrote: > Hi, > > sorry for this late answer, I cannot reproduce with fresh qooxdoo app

[qooxdoo-devel] Fwd: Quickly reference widgets in browser and code

2014-12-31 Thread thron7
On Mon, Dec 29, 2014 at 9:03 PM, halcwb wrote: > > The widget query setup enables two things: > 1. You can then easily retrieve a widget that lives in the browser in the > command line, like I do all the time with firebug. Then you get a kind of a > REPL work flow. > Sure, for inspection and deb

Re: [qooxdoo-devel] Quickly reference widgets in browser and code

2014-12-29 Thread thron7
I'd recommend to think you are working in an object system, rather than in the DOM. What do you need those references for? If you want to change properties of a widget, make the containing widget maintain that through a stored reference. If you need to trigger changes between unrelated objects (i

Re: [qooxdoo-devel] qooxdoo-contrib, again

2014-12-22 Thread thron7
There is an interesting discussion on Hacker News including some links that shows how the much larger Python community struggles with the same issue: https://news.ycombinator.com/item?id=8780369 This is not to say the (probably much smaller) qooxdoo-contrib issues cannot be solved. But it shows t

Re: [qooxdoo-devel] TypeScript and Qooxdoo

2014-07-07 Thread thron7
Wow, interesting. Don't be offended when you don't get much feedback from core devs, they're usually just too busy. The API issues are immediately interesting, so post some examples for them when you find time, and maybe open an issue with qooxdoo's bug tracker. Post your project progress and you

Re: [qooxdoo-devel] qooxdoo 4.0 and 3.5.1 released

2014-06-06 Thread thron7
Congrats to 4.0! I was trying to use the new, all Node/JS-based 'source' job, as advertised in the "Grunt Tooling" section of the release announcement, but couldn't find a way to invoke it. How do I do that? I understand it's not the default when you issue 'grunt source', but it is certainly avail

Re: [qooxdoo-devel] New contrib website

2014-06-02 Thread thron7
> How come the user base is shrinking at a time when web based development & > deployment is on the rise? Building large scale web apps has always been > Qooxdoo¹s great ability, a pretty fantastic achievement that¹s being > squandered away. I think here are two differen aspects at work: Popular

Re: [qooxdoo-devel] New contrib website

2014-05-31 Thread thron7
> contribution to *maintaining* that contribution. The unbeloved hash > sum over a contribution has the sole purpose to allow for *automatic > freshness checks*. (I have to conede it has also the advantage of verifying the integrity of the downloaded contribution archive.) ---

Re: [qooxdoo-devel] New contrib website

2014-05-31 Thread thron7
Let me throw in one aspect concerning the new contrib system: It maintained the original idea of shiftig load from *using* a contribution to *maintaining* that contribution. The unbeloved hash sum over a contribution has the sole purpose to allow for *automatic freshness checks*. Downloading a con

Re: [qooxdoo-devel] Attempting to split Application.js

2014-02-24 Thread thron7
On Mon, Feb 24, 2014 at 11:40 AM, Richard Sternagel wrote: > Hi Peter, > >> Does the filename actually make a difference? > > Yes it does. Keep it always in sync with the class name. > > But this wasn't your initial issue - it's an OO misunderstanding > (or you just forgot "new" :D). > > Either do

Re: [qooxdoo-devel] Attempting to split Application.js

2014-02-23 Thread thron7
Is it Dialog.js or Dialogs.js? Are you sure 'generate.py source' doesn't emit any warnings? T. On Tue, Feb 18, 2014 at 4:55 PM, Peter Caffin wrote: > Hi guys. > > I'm using Qooxdoo 3.0.1, and trying to split my Application.js. It's not > working, and I'm probably doing (or not doing) something o

Re: [qooxdoo-devel] Locale - combination of multiple locales

2014-02-23 Thread thron7
On Wed, Feb 12, 2014 at 9:22 AM, kirra5 wrote: > Hi > > Is it possible to combine/use different locale information on two parts of > the same application? > > *For example:* the whole application should have the locale "en", but a > specific part (this can be, for example, a form) of the applicati

Re: [qooxdoo-devel] qooxdoo 3.5 generate.py fails

2013-12-20 Thread thron7
PM, Marcel Ruff wrote: > http://bugzilla.qooxdoo.org/show_bug.cgi?id=8020 > > Thank you > Marcel > > Am 20.12.2013 12:44, schrieb thron7: >> Please open a bug report for this, and add your stack trace. >> >> Thanks, >> T. >> >> On Fri, Dec 2

Re: [qooxdoo-devel] Unable to parse JSDoc entry

2013-12-20 Thread thron7
On Fri, Dec 20, 2013 at 12:57 PM, Marcel Ruff wrote: > According to > >http://usejsdoc.org/about-getting-started.html >http://usejsdoc.org/tags-param.html > > @param { } [] > > so > /** >* @param {String} text HTML formatted or plain >*/ > > is JSDoc 3 style.

Re: [qooxdoo-devel] qooxdoo 3.5 generate.py fails

2013-12-20 Thread thron7
e > "/home/watchee/watcheeweb/track/qooxdoo/tool/pylib/ecmascript/transform/check/jshints.py", > line 33, in __init__ > hint = self.process_comments(tree) >File > "/home/watchee/watcheeweb/track/qooxdoo/tool/pylib/ecmascript/transform/check/jshints.py", &g

Re: [qooxdoo-devel] Unable to parse JSDoc entry

2013-12-20 Thread thron7
On Fri, Dec 20, 2013 at 11:36 AM, Marcel Ruff wrote: > Hi, > > when running generate.py with qooxdoo 3.5 I get: > > > - Warning: MsgBox (50): Unable to parse JSDoc entry: @param {String} text > HTML formatted or plain > > What is wrong with this syntax? The current syntax for this key is @par

Re: [qooxdoo-devel] qooxdoo 3.5 generate.py fails

2013-12-20 Thread thron7
Marcel, could you run generate.py with the '-s' option and post the output?! Can you narrow in on the code that triggers the exception? T. On Fri, Dec 20, 2013 at 10:32 AM, Marcel Ruff wrote: > Hi, > > executing (qooxdoo 3.5 with Python 2.7.3 on OpenSuse 13.1 x86_64) > > python2.7 generat

Re: [qooxdoo-devel] On a personal note

2013-12-19 Thread thron7
t; > -- Jeroen > > -Original Message- > From: thron7 [mailto:thr...@users.sourceforge.net] > Sent: donderdag 19 december 2013 12:49 > To: qooxdoo Development > Subject: [qooxdoo-devel] On a personal note > > With the holiday season approaching, and the end of the year, this

[qooxdoo-devel] On a personal note

2013-12-19 Thread thron7
With the holiday season approaching, and the end of the year, this is a personal note from me. After nearly 7 years I’m leaving the core development team of qooxdoo. It has been a hell of a ride. Time was flying, and all the way I felt there was so much coming around the next corner I almost forgo

Re: [qooxdoo-devel] CKEditor Adapter

2013-12-18 Thread thron7
Very nice. I encourage you to make a contribution out of it, so people can use it as a library in their projects. T. On Mon, Dec 16, 2013 at 11:43 PM, csfahey wrote: > I have written a small adapter for CKEditor version 4.6.1 if anyone needs it. > > CKEditor.js

Re: [qooxdoo-devel] AutoScroll Issue

2013-12-12 Thread thron7
In any case, please open a bug report for this if you haven't done so already. Try to focus on one issue (open more than one bug if you have multiple), and add your Playground links to reproduce it. Thanks, T. On Wed, Dec 11, 2013 at 5:21 PM, csfahey wrote: > Ahah! A partial solution. It may c

Re: [qooxdoo-devel] create-skeleton creates a 5.6Mb app

2013-12-10 Thread thron7
John, On Tue, Dec 10, 2013 at 4:33 PM, John Spackman wrote: > Hi > > I just used create-skeleton and it's downloaded 5.6Mb of node modules … I > realise that this is for Grunt, but I'm surprised that so much is downloaded > for a simple skeleton – is this intentional? In a way, yes. Grunt forces

Re: [qooxdoo-devel] Using qooxdoo desktop without having to “build” it

2013-12-09 Thread thron7
On Mon, Dec 9, 2013 at 4:15 PM, Martin Wittemann wrote: > Hey, > > In qooxdoo desktop you usually have to develop using the SDK and then > "build" your app. > > Is there a way to generate something like a qooxdoo.js file with the whole > library inside so that you can script script it as you like

Re: [qooxdoo-devel] Qx API and lib upgrade for applications

2013-12-03 Thread thron7
On 12/03/2013 05:26 PM, Varol Okan wrote: On 12/03/2013 08:46 AM, thron7 wrote: On 12/03/2013 01:59 PM, Varol Okan wrote: Ps. The link to JtOS is dead. Can we add http://www.AstraNOS.org instead ? Should I write up a short description ? http://qooxdoo.org/community/real_life_examples#jtos_

Re: [qooxdoo-devel] Qx API and lib upgrade for applications

2013-12-03 Thread thron7
On 12/03/2013 01:59 PM, Varol Okan wrote: Hey, I am currently working on a nice little web based desktop environment, which I recently ported from 0.7.4 to 3.0.1. I saw that we are getting new Qx versions out soon and I have a very generic question. What is the best policy to keep up with

Re: [qooxdoo-devel] Part dependency help

2013-11-28 Thread thron7
You have probably seen the guidelines for configuring parts in the manual [1]. The issue you might be running into is rule 2, don't put load dependencies of one part in the "include" list of another. [1] http://manual.qooxdoo.org/3.0.x/pages/development/parts_using.html#in-depth-configuring-the

Re: [qooxdoo-devel] Mailing list usage decline - are there other places for discussions?

2013-11-11 Thread thron7
On 11/11/2013 04:07 PM, John Spackman wrote: > Aha! OK thanks I'll subscribe to the tags on SO. I just took the > stats as reported by source forge so not exactly the most > sophisticated (!), but subjectively I feel that ML traffic has dropped > quite a bit lately which is why I looked. Does

Re: [qooxdoo-devel] ImageLoader: Not recognized format of external image...

2013-11-07 Thread thron7
y an application-level API, to preload images to speed up certain renderings. An alternative for your cell renderer that would aleviate you from explicitly loading images into the browser would be defining a custom theme. Then the theming system could take care of that. HTH, T. Best r

Re: [qooxdoo-devel] ImageLoader: Not recognized format of external image...

2013-11-07 Thread thron7
I don't know anything about VS, though. T. Best regards, Jeroen *From:*thron7 [mailto:thomas.herchenroe...@1und1.de] *Sent:* donderdag 7 november 2013 13:50 *To:* qooxdoo Development *Subject:* Re: [qooxdoo-devel] ImageLoader: Not recognized format of external image... On 11/07/2013 01:10

Re: [qooxdoo-devel] ImageLoader: Not recognized format of external image...

2013-11-07 Thread thron7
On 11/07/2013 01:10 PM, Jeroen Smit wrote: Hi, I implemented a cell rendered to be able to show a checkbox for a boolean column. In code I use default Qx images and cache the uri's using: vars = qx.util.AliasManager.getInstance().resolve("decoration/table/boolean-true.png"); this.__trueI

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-31 Thread thron7
On 10/31/2013 01:47 PM, Dietrich Streifert wrote: > Yes! Thank you for the hint. > > But that would change to much of my coding style. Really?! Fix shouldn't be so invasive, only fixing line endings, tabs-to-spaces etc. ... > > Meanwhile I've managed to master the output of jshint by using a con

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread thron7
On 10/30/2013 05:21 PM, Dietrich Streifert wrote: > Hi Richard, > > Thank you for the hint! > > I've managed to install and use jshint which gave the following output: > > table.js: line 109, col 61, Extra comma. (it breaks older versions of IE) > > Now I have to get rid of those "Mixed spaces and

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread thron7
Hi Dietrich, On 10/30/2013 01:01 PM, Dietrich Streifert wrote: > Hi all, > > I've been running into an error situation with an accidently forgotten > comma behind the last element of an array initialization. Something like: > > var a = [ > { name: 'bla' }, > { name: 'blu' }, > ]; > > c

Re: [qooxdoo-devel] Drag&drop not enabled with right mouse in 3.0.1

2013-10-30 Thread thron7
On 10/30/2013 09:01 AM, Jeroen Smit wrote: Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=7828 thanks. I will fix this in my local copy for now. You may want to look at qx.Class.patch [1], which allows you to maintain your patches outside the framework code proper. T. [1] http://

Re: [qooxdoo-devel] Drag&drop not enabled with right mouse in 3.0.1

2013-10-29 Thread thron7
Please open a bug for this. T. On 10/29/2013 05:54 PM, Jeroen Smit wrote: Hi, During the upgrade form 1.4.1. to 3.0.1 I noticed my drag&drop is not working like it was, because "qx.event.handler.DragDrop" not checks for the left button to be used in the _onMouseDown. Is that a deliberate c

Re: [qooxdoo-devel] About after draw event in table

2013-10-29 Thread thron7
On 10/29/2013 05:34 PM, Yordan Estrada wrote: > Hello everybody, I want to know if there is an event to catch after de > qx.ui.table.Table shows the data. The problem is that I am using the > changeData event, but the other method that I want to call, makes too > slow the visualization of the ta

Re: [qooxdoo-devel] How to use dynamic decorators in qooxdoo 3.0 - Episode 2

2013-10-29 Thread thron7
Cyrille, please open Bugzilla bugs for both issues. Attach patches as appropriate. Thanks, T. On 10/26/2013 06:21 PM, Cyrille Rigault wrote: Hello, See my previous mail sent this saturday Oct 26, 2013 at 1:30 pm concerning the problem. I spent my saturday understanding how the new Decorato

Re: [qooxdoo-devel] Node based build system ?

2013-10-24 Thread thron7
On 10/24/2013 11:16 AM, fprijate wrote: > Hi > > I noticed "Grunt" files in recent commits. > Do you plan to migrate (partially) build system from python to node.js ? Let's say we want to migrate to an infrastructure where Node/JS increasingly plays the predominant role. See the new blog post:

Re: [qooxdoo-devel] Node based build system ?

2013-10-24 Thread thron7
Stay tuned ... T. On 10/24/2013 11:16 AM, fprijate wrote: > Hi > > I noticed "Grunt" files in recent commits. > Do you plan to migrate (partially) build system from python to node.js ? > > regards > Franček > > > > -- > View this message in context: > http://qooxdoo.678.n2.nabble.com/Node-based

Re: [qooxdoo-devel] Localization with build-all

2013-10-21 Thread thron7
e classes, locates calls to 'tr', 'trn', ... and extracts the first argument. For this to work, the first argument has to be a literal string, like "foo". Variable references won't work, and the generator will warn about them. > > Thanks, > > Varol &

Re: [qooxdoo-devel] Localization with build-all

2013-10-21 Thread thron7
On 10/19/2013 05:55 PM, Varol Okan wrote: Hey, I am using QooxDoo with the Desktop libs, which I compiled using "./generate.py build-all" What is "build-all"? (It's none of the predefined jobs). All is fine and nice however I am trying to figure out how to localize my app and for the Deut

Re: [qooxdoo-devel] About an error with qx.ui.table.headerrenderer.HeaderCell

2013-10-15 Thread thron7
Did you run 'generate.py' after adding the class? T. On 10/14/2013 11:28 PM, Yordan Estrada wrote: Hello everybody, i am working with qx.ui.table.headerrenderer.HeaderCell and i found an example that works perfectly, but when i try to implement it in a class, it show this erro

Re: [qooxdoo-devel] PartLoader request sporadically returns "error" state

2013-10-15 Thread thron7
Did you run 'generate.py' after adding the class? T. On 10/14/2013 11:18 PM, Yordan Estrada wrote: Hello everybody, i am working with qx.ui.table.headerrenderer.HeaderCell and i found an example that works perfectly, but when i try to implement it in a class, it show this error: TypeError:

Re: [qooxdoo-devel] Problem loading Dialog contrib

2013-10-09 Thread thron7
On 10/09/2013 05:26 PM, Peter Caffin wrote: > On 9/10/2013 4:20 PM, thron7 wrote: >> It appears you placed the "libraries" key in the Manifest.json of your >> app, but it should go into config.json, into the "jobs" section. > Cheers, thron7. > >

Re: [qooxdoo-devel] Problem loading Dialog contrib

2013-10-09 Thread thron7
On 10/09/2013 07:08 AM, Peter Caffin wrote: > { > "info" : > { > "name" : "TestApp_Online", > > "summary" : "TestApp Online", > "description" : "TestApp", > > "homepage" : "http://someurl.com/";, > > "license" : "SomeLicense", > "authors" : > [ >

Re: [qooxdoo-devel] PartLoader request sporadically returns "error" state

2013-10-07 Thread thron7
On 10/07/2013 01:44 PM, kora wrote: > The cause of the problem is the enabled browser cache. > > Building the qooxdoo application deployment I get a couple of > "myProject..js" > script files depending of my parts. > > For example my main part "myProject.900d4fdc2539.js" loads other parts using >

Re: [qooxdoo-devel] PartLoader request sporadically returns "error" state

2013-10-07 Thread thron7
One way to drill down into your problem is to use a packet sniffer (like Wireshark or CharlesProxy) on the client to see which requests go out to the server, and what the server responds. This would allow you to distringuish between issues on the client and those on the server. T. On 09/30/201

Re: [qooxdoo-devel] Source vs Build and qx.Class.getByName

2013-09-25 Thread thron7
If there is nowhere in your app a reference to the class you want to retrieve with .getByName you have to resort to the @use() JSDoc hint Richard wrote about earlier. (You would not need this for the source version if that was created by a 'source-all' job, as it then included all classes anyway).

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

2013-09-13 Thread thron7
You're right, please open a bug for it. Please include the OS you're using and the Shell implementation (as shells vary strongly in their quoting regimen). T. > Hi, > > If you pass any macro on command line with an empty string as value, > generate.py throws an exception. > > app$ ./generate.py -

Re: [qooxdoo-devel] The experimental ScriptLoader has been removed. Please use 'qx.bom.request.Script' instead

2013-09-12 Thread thron7
Daniel will probably give you a better answer, but here are just some aspects touching on what you wrote: * We wouldn't want to duplicate (nearly) identical logic in the framework. * qx.bom.request classes have all the same interface (so are easily exchangeable). * The interface is the W3C inter

[qooxdoo-devel] qooxdoo 3.0.1 released

2013-09-11 Thread thron7
Dear all, we've just released a maintenance release, 3.0.1, for the 3.0.x line of qooxdoo. Please see the announcement [1]. Cheers, Thomas [1] http://news.qooxdoo.org/qooxdoo-3-0-1-released -- How ServiceNow helps IT

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-04 Thread thron7
On 09/04/2013 11:54 AM, benco wrote: > Andreas Parusel wrote >> Hi,If both questions can be answered with 'yes' I would rather have look >> at Server-sent events. > Good point Andreas. I personally never though about Server-sent events (in > my case, the client must sent messages in realtime, so w

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-03 Thread thron7
On 09/03/2013 03:08 PM, matteomasina wrote: > Hi, I'm just developing an application, that uses communication with php > backend to get some system informations. > Everything working well, but to get the Qooxdoo fronted update, I'm using a > timer sending request to the php backend any tot seconds

Re: [qooxdoo-devel] JS compiler hints

2013-09-03 Thread thron7
Please see here: http://news.qooxdoo.org/compiler-hints-in-qooxdoo-3 T. On 09/03/2013 12:23 PM, Raphael Schweikert - Vertec AG wrote: > Since updating to Qooxdoo 3, when compiling my qooxdoo JS code I get the > following warning message: > >> Warning: myprojectname.Application: '#' compiler hin

Re: [qooxdoo-devel] @lint ignoreUndefined(...) broken?

2013-09-02 Thread thron7
On 09/02/2013 10:18 AM, Florin Jurcovici wrote: > Sorry for answering that late, I just got other stuff on my hands and forgot > about this, I just stumbled upon the problem again, and Google was smart and > led me to my own post. > > Here's a test that reproduces the problem - it runs through, bu

Re: [qooxdoo-devel] config.json for a custom skeleton

2013-08-30 Thread thron7
On 08/30/2013 09:45 AM, benco wrote: > Hi Thomas, > > Thanks for your reply. I recognize the description of my problem is not very > clear. > > > thron7-2 wrote >> Use qx-oo.js ("qx.Server"). > Actually I already achieved to package qx.core.Environment in

Re: [qooxdoo-devel] config.json for a custom skeleton

2013-08-29 Thread thron7
On 08/29/2013 10:28 AM, benco wrote: > Hi, > > I'm having some problems dealing with a custom config.json. > > I plan to use qx.core.Environment outside of a qooxdoo app and I was > planning to create a custom Bootstrap that extend this class by removing the > "qx.*" keys (except the mandatory one

Re: [qooxdoo-devel] Frustrating development

2013-08-29 Thread thron7
Greg, thanks for you feedback. On 08/29/2013 06:04 AM, Gregory Beaver wrote: > Dear qooxdoo, > > I wrote a very complicated application based on qooxdoo a few years > ago. It still works great but there are some kinks that I was trying > to work out. I spent 13 hours over the past week trying

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-26 Thread thron7
Please create a Playground [1] sample that shows the problem, and post the link to it (use "Shorten URL"). T. [1] http://playground.qooxdoo.org/ On 08/22/2013 05:08 PM, larseit...@aol.com wrote: Hi, I'm trying to change the checkbox states by clicking on them, but it doesn't work. Also wh

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-22 Thread thron7
On 08/21/2013 04:13 PM, larseit...@aol.com wrote: Unfortunately I'm still not able to change the state of the CheckBoxes. Is there a way to somehow make checkBoxes editable? Mh, what do you mean? CheckBoxes are editable. Are you trying to change their state by clicking with the mouse, or pro

Re: [qooxdoo-devel] maybe bug in mobile 3.x

2013-08-22 Thread thron7
On 08/21/2013 04:42 PM, rsantiagopaz wrote: > - As far as I know it does not occur on mobile devices. > > I forget mention, with tablet Android and Chrome is the same behavior too. > > > - Could you please open a bug at bugzilla.qooxdoo.org > > Please someone can do it for me. Maybe you czuendorf.

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-21 Thread thron7
On 08/21/2013 01:13 PM, larseit...@aol.com wrote: Thanks a lot for the hint. Shortened link: *http://demo.qooxdoo.org/3.0/playground/# %7B%22code%22%3A%22%252F**%250A%2520*%25* That's most probably not a shortend link, which would be a TinyURL link. Try pasting it in your browser. T.

Re: [qooxdoo-devel] qooxdoo/silenium exception: unknown command: 'qxClick'

2013-08-20 Thread thron7
On 08/20/2013 10:22 AM, larseit...@aol.com wrote: Hi, I have filed a bug report for this issue (bug 7664). Meanwhile I will try to use newer versions of the required components (server, rhino etc.). But be aware that our Selenium infrastructure only works with certain versions [1], so don't

Re: [qooxdoo-devel] qooxdoo/silenium exception: unknown command: 'qxClick'

2013-08-19 Thread thron7
On 08/19/2013 04:49 PM, larseit...@aol.com wrote: Yes, that is right. The error (unknown command "qxClick") is shown in the console where I start selenium. The error is also shown in the console where I run generate.py simulation-run as >>> ERROR tweets.simulation.Settings:testChangeLangua

Re: [qooxdoo-devel] qooxdoo/silenium exception: unknown command: 'qxClick'

2013-08-19 Thread thron7
On 08/19/2013 10:10 AM, larseit...@aol.com wrote: Hi, I copied the file "user-extensions.js" into the same folder as the server, but it's still the same behaviour. Could the python http-server or a missing file be the problem? It displays the following error: code 404, message File not fou

Re: [qooxdoo-devel] qooxdoo/silenium exception: unknown command: 'qxClick'

2013-08-16 Thread thron7
tried with a stock desktop skeleton which also uses qxClick, and it worked nicely. Maybe it's a cross-drive issue. Could you copy the user-extensions.js into the directory where you start your selenium server?! T. regards, Lars -Ursprüngliche Mitteilung- Von: thron7 An: q

Re: [qooxdoo-devel] qooxdoo/silenium exception: unknown command: 'qxClick'

2013-08-16 Thread thron7
On 08/15/2013 05:07 PM, larseit...@aol.com wrote: Hello, I am doing the qooxdoo tutorial, which can be found in the qooxdoo-manual (qooxdoo Documentation Release 3.0). Right now, I am implementing the tutorial program demonstrating the automated test capabilities (file Settings.js, pages: 4.

Re: [qooxdoo-devel] qx.lang.String.trim() method removed in 3.0?

2013-08-16 Thread thron7
On 08/16/2013 12:34 AM, Stef wrote: > Hi, thanks for the info. > Topic is not that important. There's no todo left. > > For completeness or reference, just a remark on migration from 2.1.1 to 3.0: > > thron7-2 wrote >> [...] But you should have received numerous

Re: [qooxdoo-devel] Help me understand the qooxdoo 3 migration job output

2013-08-14 Thread thron7
There's nothing wrong with extending qx.application.Standalone, but your app might be affected by the new widget rendering and theming that came with 3.0. It's not all too obvious but the migration guide handles these issues in several sections dealing with custom themes, layouts and widgets.

Re: [qooxdoo-devel] Using Qooxdoo Windows/Forms/Dialogs for existing Frameworks

2013-08-14 Thread thron7
On 08/14/2013 12:34 AM, Stef wrote: > Thanks, that worked very fine. > > One question again for integration between host and qooxdoo "isle". How can > I call into qooxdoo code from the hosting page? > When calling a static method like myapp.Manager.doSomething(), it'll work > fine (even with provi

Re: [qooxdoo-devel] qx.lang.String.trim() method removed in 3.0?

2013-08-14 Thread thron7
On 08/14/2013 12:45 AM, Stef wrote: > Hi Group > > Was method qx.lang.String.trim() intentionally removed? (Existed in 2.1.1 > and 2.1.2) > qx.lang.String.trimLeft() and qx.lang.String.trimRight() are still existing. > > Is usage if qx.lang.String in any regard deprecated? Many of the APIs from q

Re: [qooxdoo-devel] Mobile reader app for Qooxdoo desktop

2013-08-13 Thread thron7
Also take a look at the Feedreader application which features a desktop, website and mobile view for the same application logic. T. On 08/13/2013 09:57 AM, Mustafa Sak wrote: > Hi Mario, > > IMHO you can use all layers of qooxdoo in a mobile application as well, > expect the qx.html.*, qx.ui.*,

Re: [qooxdoo-devel] Using Qooxdoo 3.0 / unfullfilled dependency error on source generation

2013-08-12 Thread thron7
Many people are not aware of the migration when upgrading their qooxdoo version. The release notes are usually explicit about it: (qx 2.1.2) : "... Nothing needs to be changed in ... your existing apps if they are based on the previous 2.1.1 or 2.1 releases." [1] (qx 3.0) : "Some manual migrati

Re: [qooxdoo-devel] Using Qooxdoo 3.0 / unfullfilled dependency error on source generation

2013-08-12 Thread thron7
After switching to the 3.0 SDK, did you run the 'migration' job in your project?! T. On 08/12/2013 04:19 PM, kora wrote: > Hello, > > Using Qooxdoo 2.1.1 - everything works fine. > My Project has got own Decoration an does part loading. > > Now Using Qooxdoo 3.0 I get a "generate- source error"

Re: [qooxdoo-devel] disable selection of list items

2013-08-12 Thread thron7
(please keep discussion to the mailing list) On 08/12/2013 01:57 PM, Micha wrote: > Try this, select the last line in the last element of the list ("Select Me!"): > > > http://tinyurl.com/l23nwz5 Ok, get it, drag-select is not working. You can labor around it by starting the selection at the ite

Re: [qooxdoo-devel] SINGLE_INTERVAL_SELECTION for VirtualTree

2013-08-12 Thread thron7
On 08/12/2013 11:31 AM, dbrec wrote: > Hi, > > Does it exists a "SINGLE_INTERVAL_SELECTION" mode for VirtualTree? I'm afraid no. You could work around this by subclassing VirtualTree and overriding _applySelection or _onChangeSelection (both from virtual.selection.MModel). T.

Re: [qooxdoo-devel] disable selection of list items

2013-08-12 Thread thron7
On 08/12/2013 10:40 AM, Micha wrote: Hi, to disable the selection of ListItems (of Form.List, qooxdoo 2.1.1) I use this code: list.addListener("changeSelection", function() { list.resetSelection(); }, this); Mh, you want to disable the selection after a selection has been made, right?! W

Re: [qooxdoo-devel] JSDoc parsing

2013-08-09 Thread thron7
Thanks, fixed. T. On 08/09/2013 04:24 PM, Michael Elsdörfer wrote: > Since switching to 3.x (currently using git HEAD), the generator keeps > outputting JSDoc warnings: > > - Warning: > ...plugins/activities/static/qooxdoo/class/ad/cms/plugins/activities/SelectActivityDialog.js > (61): Unable to

Re: [qooxdoo-devel] Using Qooxdoo Windows/Forms/Dialogs for existing Frameworks

2013-08-08 Thread thron7
The current answer to your question is called an "inline app" in qooxdoo where you create qooxdoo "islands" in a larger HTML context. See [1] for a basic introduction and links to further demos that showcase this kind of application. [2][3] is a larger example. T. [1] http://manual.qooxdoo.org

Re: [qooxdoo-devel] How to use Qooxdoo Core / OOP Standalone

2013-08-08 Thread thron7
On 08/08/2013 09:17 AM, Airblader wrote: > Not quite, no. I am writing a library myself, which is a collection of > classes built upon qooxdoo's OOP layer but does not contain an application > itself. So if I understand you correctly, I can still use qx.Desktop and > build a server-type applicatio

Re: [qooxdoo-devel] Using model data in tree to create context menu etc.

2013-08-08 Thread thron7
I've looked at the AbstractTreeItem implementation, and it looks like changing the 'parent' property does nothing on its own. Rather, you have to use the 'remove' and 'add' methods (which then in turn update the 'parent' property), as indicated in the comments of my Playground code. T. On 08/0

Re: [qooxdoo-devel] Using model data in tree to create context menu etc.

2013-08-08 Thread thron7
This is indeed interesting. I have a slightly modified Playground sample, for better inspection: *http://tinyurl.com/l7xatu7 T. * On 08/07/2013 09:49 PM, walle wrote: > I tried to create an example showing what I thought was a bug in the > Playground. To illustrate my point in the bug report.

Re: [qooxdoo-devel] How to use Qooxdoo Core / OOP Standalone

2013-08-07 Thread thron7
> Hi everyone, > > trying to realize a heavily OOP-based project, I decided that the OOP > layer > qx provides is just the best for my needs there is. However, I really > *only* > need the OOP layer, none of the other stuff, Are you talking about the qx.Server component? Or is even that "too much"

Re: [qooxdoo-devel] The Object Idendity issue

2013-08-07 Thread thron7
I'm most probably not up-to-date with this issue, but maybe you be able to utilize qooxdoo's qx.core.ObjectRegistry. You can register model objects with it (I don't think model objects are automatically registered, but you might want to check), retrieve their hash codes, and look them up by has

Re: [qooxdoo-devel] Using model data in tree to create context menu etc.

2013-08-07 Thread thron7
On 08/07/2013 10:28 AM, walle wrote: >> Daniel, you are a core developer right? I found something that might be a >> bug, or intended behavior. How do I go about to find out which it is? Asking on the mailing list is a good first step :-). >> The issue is that if you call setParent() on a treeIt

Re: [qooxdoo-devel] Older versions

2013-08-07 Thread thron7
http://sourceforge.net/projects/qooxdoo/files/qooxdoo-current/ On 08/07/2013 10:26 AM, smisonli...@googlemail.com wrote: > Hello, > > where can i download older qooxdoo version like 2.1.2 > > ? > > > -- > Get 100% visibil

Re: [qooxdoo-devel] How to write correct API JsDoc for "ignored"/"external" return type (qooxdoo 3.0)

2013-08-06 Thread thron7
You need to open a bug for this. The problem is that the Apiviewer cannot hyperlink types it doesn't know (the link in your screen shot is probably bogus). Which behavior would you want to see in this case (add to bug)? T. On 08/06/2013 04:48 PM, Peter Schneider wrote: Hi, I can not find[1

Re: [qooxdoo-devel] qx.io.request.Xhr() works with chrome but not firefox

2013-08-06 Thread thron7
That's probably a cross-domain issue ("localhost" != "127.0.0.1"). T. On 08/06/2013 05:23 PM, schraenko wrote: > Hi everybody, > > the following code works fine with Chrome but doesn't work with Firefox. The > serverside is a Django running in dev mode. I can also get the response when > I type t

Re: [qooxdoo-devel] Custom base URL configuration for whole application

2013-08-06 Thread thron7
On 08/05/2013 11:47 AM, Alper Ortac (aortac) wrote: > Hello, > > As far as I can see, that settings is to configure the file path, not the uri > which will be accessed in the browser, which is what I need to configure. That's not right, both uris/script and uris/resource take URIs, so you can e

  1   2   3   4   5   6   7   8   9   10   >