Re: [qooxdoo-devel] Github doesn't sync empty folders, but I get an error when generating test in qooxdoo because of a missing empty folder. This could be fixed?

2012-07-11 Thread totty
I've organized my code so I can keep all the stuff I usually use in some place, a boundle in other words. It's here: https://github.com/totty90/about_projects/tree/master/third_party/Qooxdoo Ok, if it's not possible to remove the error when a folder it's empty and is missing then I must copy paste

Re: [qooxdoo-devel] How to implement a splitter with extra widgets (buttons)

2012-07-11 Thread Peter Schneider
Hey, I've tried several approaches to implement this 'slider with buttons', but I got totally lost... *snif* The blocker is really doing a great job in blocking! ;) I've tried many things[5], but I always end up in the same dead-ends :( Can't I listen to the relevant events (mousemove, mouseout

Re: [qooxdoo-devel] Github doesn't sync empty folders, but I get an error when generating test in qooxdoo because of a missing empty folder. This could be fixed?

2012-07-11 Thread thron7
On 07/11/2012 03:33 PM, totty wrote: > git version 1.7.10.msysgit.1 > > Yes I'm using 2.0 as I change the paths to the new path and also migrated > from 1.6 to 2.0. > > The problem is this: > > when I run the command to generate the tests I got that error because the > folder resource was not the

Re: [qooxdoo-devel] It's possible to qooxdoo generate source-hybrid including all the classes (even unused ones) without having to referencing them in the code?

2012-07-11 Thread Daniel Wagner
Using the include/exclude definitions from the source-all job for source-hybrid should do the trick: "source-hybrid" : { "include" : [ "${APPLICATION}.*", "qx.*" ], "exclude" : [ "qx.test.*", "${APPLICATION}.test.*",

Re: [qooxdoo-devel] Disable context menu

2012-07-11 Thread A Matías Quezada
Daniel, Thanks for the idea, finally I take out the context from every widget, they have no context menu, and on the onClick event i show the context menu (or not) with this line: context.openAtMouse(event); Thanks you all for your help! --- A. Matías Quezada 2012/7/11 Daniel Wagner > I se

[qooxdoo-devel] It's possible to qooxdoo generate source-hybrid including all the classes (even unused ones) without having to referencing them in the code?

2012-07-11 Thread totty
It's possible to qooxdoo generate source-hybrid including all the classes (even unused ones) without having to referencing them in the code? thanks -- View this message in context: http://qooxdoo.678.n2.nabble.com/It-s-possible-to-qooxdoo-generate-source-hybrid-including-all-the-classes-even-unu

Re: [qooxdoo-devel] MVC & Qooxdoo apps question

2012-07-11 Thread Loren Schlomer
You really have to treat qooxdoo apps like you would a Swing, GTK+ or Qt application. Application.main() isn't exactly a controller, rather the entry point into your long-running application. It allows you to bootstrap any data/configuration your application is going to need. When you're asking a

Re: [qooxdoo-devel] Github doesn't sync empty folders, but I get an error when generating test in qooxdoo because of a missing empty folder. This could be fixed?

2012-07-11 Thread totty
git version 1.7.10.msysgit.1 Yes I'm using 2.0 as I change the paths to the new path and also migrated from 1.6 to 2.0. The problem is this: when I run the command to generate the tests I got that error because the folder resource was not there, the folder was missing because github didn't creat

Re: [qooxdoo-devel] Github doesn't sync empty folders, but I get an error when generating test in qooxdoo because of a missing empty folder. This could be fixed?

2012-07-11 Thread Derrell Lipman
> > >>> Scanning libraries / -[Error 2] The system cannot find the file > >>> specified: > >>> > u'C:\\web\\about_projects\\third_party\\qooxdoo\\qooxdoo-2.0-sdk\\component\\library\\versionlabel\\source/resource' > > The folder resource it's empty, therefore github didn't synced.. > Actually, t

Re: [qooxdoo-devel] Github doesn't sync empty folders, but I get an error when generating test in qooxdoo because of a missing empty folder. This could be fixed?

2012-07-11 Thread thron7
On 07/11/2012 10:59 AM, totty wrote: > generate.py test > > > Initializing: production > Processing configuration > -

[qooxdoo-devel] Github doesn't sync empty folders, but I get an error when generating test in qooxdoo because of a missing empty folder. This could be fixed?

2012-07-11 Thread totty
generate.py test Initializing: production >>> Processing configuration

Re: [qooxdoo-devel] Disable context menu

2012-07-11 Thread Christopher Zündorf
Hi, I forward your question to one of my team members. Could you provide a playground example? Greetz Christopher Am 10.07.2012 um 17:37 schrieb A Matías Quezada: Hi all, I have a problem with context menus, I've a file browser like app, it shows a set of files as atoms and you can navigate

[qooxdoo-devel] MVC & Qooxdoo apps question

2012-07-11 Thread totty
>From the turorials I've seen in the qooxdoo website I come to this conclusion: The main *Application.js* file is like a controller (in MVC) but also a view: *controller because listen on the view and "model"* (in this case a service) | and a *view because adds widgets to the screen*. (https://git

Re: [qooxdoo-devel] Disable context menu

2012-07-11 Thread A Matías Quezada
Any one? 2012/7/10 A Matías Quezada > Hi all, > > I have a problem with context menus, I've a file browser like app, it > shows a set of files as atoms and you can navigate through folders. > > I've captured the 'contextmenu' event of every atom, and when it's fired I > execute .prepareContextM