Re: [qooxdoo-devel] Authentication in tutorial part 3?

2010-05-19 Thread MartinWittemann
Hey, as far as I can remember, twitter offers a OAuth login mechanism to log in. But thats not as easy as the mechanism used in the tutorial. Maybe you should have a look at the twitter API to get your answer: http://apiwiki.twitter.com/ Regards, Martin -- View this message in context:

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread Christian Hagendorn
Hi, no worry about this waning, in your example the generator warns that your use two job names in the config.json which are already defined in a included genoratior configuration. But in your case it is okay, it is intended (It shows how to change an existent job) Cheers, Chris Am

Re: [qooxdoo-devel] Using qooxdoo for strategy game?

2010-05-19 Thread Simon Bull
It depends on what you want to do -- anything is possible given enough time. As as example, we have implemented a very sophisticated graphical map application on qooxdoo, which is visually much like Google maps, but has much richer functionality within our more limited domain. Our map is

Re: [qooxdoo-devel] qx not defined

2010-05-19 Thread thron7
When you say refresh you mean reload? - If so, it might be that during application shutdown some handlers are called too late, when the qx object is already removed. T. On 05/18/2010 09:30 PM, Greg Beaver wrote: Hi, I'm using trunk in my development build, and have noticed that on almost

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread rsantiagopaz
But I can't use the Dialog library. For example, if I add this line to my application.js (same like de Demo application) dialog.Dialog.init(); all my application dissapear from the browser. Nothing happens. I compile, the warning is show, but the application dont run. If I use this only line

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread panyasan
Hi, I was just testing the Dialog contrib - the demo builds and runs fine for me. Have you tried to do ./generate.py distclean and redownload the contrib? Maybe it did not fully download the first time for some reason... C. -- View this message in context:

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread thron7
I tried to re-create the issue from a standard gui skeleton, and it worked for me. I created the skeleton, add the contrib:// entry in the config.json, like you did, added the following lines to my Application.js dialog.Dialog.init(); dialog.alert(Hiho Cosmos!); , ran 'generate.py

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Fritz Zaucker
On Tue, 18 May 2010, Derrell Lipman wrote: On Tue, May 18, 2010 at 16:08, Fritz Zaucker zauc...@oetiker.ch wrote: Hi Derrell, wouldn't it make sense to ask for addition of this directly to the qx.core.Object? Or to at least add your mixin to the standard distribution? I suggested

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Derrell Lipman
On Wed, May 19, 2010 at 14:00, Fritz Zaucker zauc...@oetiker.ch wrote: P.S.: I don't understand mixin's well enough, so this might be a silly question: if I use it in my application, then the method is added to every object in my application? Or could a mixin just have a local

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Fritz Zaucker
On Wed, 19 May 2010, Derrell Lipman wrote: On Wed, May 19, 2010 at 14:00, Fritz Zaucker zauc...@oetiker.ch wrote: P.S.: I don't understand mixin's well enough, so this might be a silly question: if I use it in my application, then the method is added to every object in my

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Derrell Lipman
On Wed, May 19, 2010 at 14:19, Fritz Zaucker zauc...@oetiker.ch wrote: On Wed, 19 May 2010, Derrell Lipman wrote: On Wed, May 19, 2010 at 14:00, Fritz Zaucker zauc...@oetiker.ch wrote: P.S.: I don't understand mixin's well enough, so this might be a silly question: if I use it in

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Fritz Zaucker
On Wed, 19 May 2010, Derrell Lipman wrote: On Wed, May 19, 2010 at 14:19, Fritz Zaucker zauc...@oetiker.ch wrote: On Wed, 19 May 2010, Derrell Lipman wrote: On Wed, May 19, 2010 at 14:00, Fritz Zaucker zauc...@oetiker.ch wrote: P.S.: I don't understand mixin's well enough, so this might be

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Derrell Lipman
Cool. Now, if this would also be possible qx.Class.define(my.classA, { extend : qx.ui.window.Window, construct : function() { this.base(arguments); qx.Class.include(my.classA, my.UtilMixin); ... I'd have a generic include mechanism for my own classes. But I

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Alexander Steshenko
It works so perfectly. Not even necessary an array if it's just one mixin. Like here is one of mine: qx.Class.define(desktopforum.view.ForumsList, { extend : qx.ui.form.List, include : desktopforum.view.ControlledView, construct : function() { // Configuring the window

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Fritz Zaucker
On Wed, 19 May 2010, Derrell Lipman wrote: Cool. Now, if this would also be possible qx.Class.define(my.classA, { extend : qx.ui.window.Window, construct : function() { this.base(arguments); qx.Class.include(my.classA, my.UtilMixin); ... I'd have a generic

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-19 Thread Fritz Zaucker
Hi Alexander, thanks to you as well. Cheers, Fritz On Wed, 19 May 2010, Alexander Steshenko wrote: It works so perfectly. Not even necessary an array if it's just one mixin. Like here is one of mine: qx.Class.define(desktopforum.view.ForumsList, { extend : qx.ui.form.List, include :

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread rsantiagopaz
Thanks for all. Some your comments made me think about some wrong settings in my Eclipse. Now is working all. I suppose this warning: INITIALIZING: PRUEBA