Re: [qooxdoo-devel] 0.8: qx.event.Timer.once() can fire multiple times

2008-09-04 Thread stefan . hansel
verified, thanks for fixing. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Ope

Re: [qooxdoo-devel] Findings on memory leak 0.7.x

2008-09-04 Thread stefan . hansel
I'm afraid this last question was overseen. I might be able to work a bit on this in the next three weeks and provide a patch. Of course I only want to start if I'm on the right way ;-) ... >> So supposing there exists a new destroy-method - then this would be solved >> in deferring the dispo

Re: [qooxdoo-devel] Top Property In Composite

2008-09-04 Thread Sebastian Werner
Hi Lucas, welcome to our list. Please try the widget method "scrollChildIntoView". You call this method on any parent you like with the argument of the child you want to scroll to. Sebastian Am 05.09.2008 um 02:04 schrieb Lucas Oliveira: Hi everybody!!! Sorry about my newbie question,

Re: [qooxdoo-devel] Users double clicking

2008-09-04 Thread Petr Kobalíček
Hi Jim, very easy solution is to set some variable to true (or request object itself) and don't allow second request. You can also disable button during request. Cheers - Petr 2008/9/4 Jim Hunter <[EMAIL PROTECTED]>: > > How have any of you trapped for and solved the problem where a user double

[qooxdoo-devel] Top Property In Composite

2008-09-04 Thread Lucas Oliveira
Hi everybody!!! Sorry about my newbie question, but I'm trying to do it for a long time with no results! I'm trying to get the top property of an element into a composite. I will need it because I need to scroll to the elements.. (my composite is inside a Scroll) Sorry about my english, and my

[qooxdoo-devel] Users double clicking

2008-09-04 Thread Jim Hunter
How have any of you trapped for and solved the problem where a user double clicks on a button instead of single clicking? Right now, since a double-click also fires a second single click event, I get two requests sent to the server. Has anyone found a quick and easy way to deal with this? Thanks,

Re: [qooxdoo-devel] Catching Tab key in qx 0.7.3

2008-09-04 Thread Sebastian Werner
Am 04.09.2008 um 21:39 schrieb Rüdiger Herrmann: > Sebastian Werner wrote: >> Hi Rüdiger, >> >> ah I overlook that you still talk about 0.7.3. Not sure if this is >> possible at all in this version. >> >> All bubbling events supports to have listeners for the capture phase. >> It is the fourth ar

Re: [qooxdoo-devel] Catching Tab key in qx 0.7.3

2008-09-04 Thread Rüdiger Herrmann
Sebastian Werner wrote: > Hi Rüdiger, > > ah I overlook that you still talk about 0.7.3. Not sure if this is > possible at all in this version. > > All bubbling events supports to have listeners for the capture phase. > It is the fourth argument of addListener. You lost me, I don't understand

Re: [qooxdoo-devel] Catching Tab key in qx 0.7.3

2008-09-04 Thread Sebastian Werner
Hi Rüdiger, ah I overlook that you still talk about 0.7.3. Not sure if this is possible at all in this version. All bubbling events supports to have listeners for the capture phase. It is the fourth argument of addListener. Sebastian Am 04.09.2008 um 20:37 schrieb Rüdiger Herrmann: > Hi

Re: [qooxdoo-devel] Catching Tab key in qx 0.7.3

2008-09-04 Thread Rüdiger Herrmann
Hi Sebastian, I don't know what 'capture mode' is. Could you explain or point me where to read about? The listener itself is called. The code to add it looks like this: widget.addEventListener( "keydown", org.eclipse.swt.EventUtil.keyDown ); Rüdiger Sebastian Wern

Re: [qooxdoo-devel] PHP RPC

2008-09-04 Thread Derrell Lipman
On Thu, Sep 4, 2008 at 8:32 AM, Derrell Lipman < [EMAIL PROTECTED]> wrote: > > The backends are in the qooxdoo-contrib SVN repository. Take a look at > http://qooxdoo.org/contrib (and specifically the section titled > "Code/SVN") for instructions on how to check out that repository. Once > you'v

[qooxdoo-devel] Qooxdoo style oo in lightweight library

2008-09-04 Thread Petr Kobalíček
Hi all, I'm today created small library that simulates qooxdoo style inheritance in javascript. It's minimalistic solution, because I like this OO very much and I want to use it in traditional web pages. Here's code with small test: if (!bLite) bLite = {}; (function() { var _create = function(

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Petr Kobalíček
My version of complete qooxdoo is 1.1MB (with debug) and 0.9MB without debug. The qooxdoo is build with htmlarea and uploadwidget and without all legacy classes, progressive and treevirtual. I think that complete qooxdoo is in most cases about 1MB. Cheers - Petr 2008/9/4 Jean-Baptiste BRIAUD -

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Jean-Baptiste BRIAUD - Novlog
On 4 Sep 2008, at 18:28, Sebastian Werner wrote: > > Am 04.09.2008 um 17:47 schrieb Jean-Baptiste BRIAUD - Novlog: > >> So, is there any hope to find a separate lib file for 0.8 ? >> In fact, like most framework, it's always too big, so there are >> often several version : a big dev version and

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Sebastian Werner
Am 04.09.2008 um 17:47 schrieb Jean-Baptiste BRIAUD - Novlog: So, is there any hope to find a separate lib file for 0.8 ? In fact, like most framework, it's always too big, so there are often several version : a big dev version and an optimized version. A super optimized version would need to

Re: [qooxdoo-devel] Catching Tab key in qx 0.7.3

2008-09-04 Thread Sebastian Werner
Rüdiger, the interesting part is missing here. Do you add the listener in capture mode? Try that please. Sebastian Am 04.09.2008 um 17:52 schrieb Rüdiger Herrmann: > Hi, > > I need to prevent the Tab key from doing what it is meant for: > changing the focus. I know, you shouldn't ... and so

[qooxdoo-devel] Catching Tab key in qx 0.7.3

2008-09-04 Thread Rüdiger Herrmann
Hi, I need to prevent the Tab key from doing what it is meant for: changing the focus. I know, you shouldn't ... and so on ... anyway, I think it makes sense in a spreadsheet-like widget and even if not, the customer rules. The keydown event handler I implemented looks like this: _onKeyDown :

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Jean-Baptiste BRIAUD - Novlog
So, is there any hope to find a separate lib file for 0.8 ? In fact, like most framework, it's always too big, so there are often several version : a big dev version and an optimized version. A super optimized version would need to browse the application use of the lib so the packaged lib only

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread thron7
>> I'm using qooxdoo in similar way like you. I'm not using special >> environment, but my application uses compiled qooxdoo 0.8 + included >> my files (maybe 10 js files). >> > > I said "special" but there nothing so special in fact, I already have > a complex build system for the entire a

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Petr Kobalíček
Hi Jean, I try to answer your questions, I'm not experienced in qooxdoo as others, but my experiences improving day by day :-) Also sorry for my English:) The generator (I call it) is qooxdoo build system that builds optimal sized single (in version 0.8 there are two scripts) javascript file that

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread thron7
Jean-Baptiste BRIAUD - Novlog wrote: > Hi qooXdoo guru, > > New to qooXdoo, I'd like to start my first test in a particular > context : without using Phyton. > I started with HelloWorld example and I noticed I'll have to : > > * create-application.py > and then to > * generate.py source > > Unfort

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Jean-Baptiste BRIAUD - Novlog
See in the text : On 4 Sep 2008, at 14:53, Petr Kobalíček wrote: > Hi Jean-Baptiste, > > First, Phyton -> Python :-) > That may clarify I don't want it :-) Thanks for the correction. > I'm using qooxdoo in similar way like you. I'm not using special > environment, but my application uses compile

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Petr Kobalíček
Hi Jean-Baptiste, First, Phyton -> Python :-) I'm using qooxdoo in similar way like you. I'm not using special environment, but my application uses compiled qooxdoo 0.8 + included my files (maybe 10 js files). This can't be done now by generator itself, but with some hacks it's possible to confi

Re: [qooxdoo-devel] google Chrome and html embedded Application Problem

2008-09-04 Thread westor
The line 87 in the qx/html/StyleSheet.js is: document.getElementsByTagName("head")[0].appendChild(vElement); this seems to fail and bring back not the correct element? westor wrote: > > Back to my problem, maybe someone has an idea. Any embedded Application, > which is not using tables seems

Re: [qooxdoo-devel] google Chrome and html embedded Application Problem

2008-09-04 Thread westor
Back to my problem, maybe someone has an idea. Any embedded Application, which is not using tables seems to run, but I found out, that initialization of a table fails. But I think, this is a problem caused by something else, failing at startup... Here is my code alert("Test 1"); v

Re: [qooxdoo-devel] PHP RPC

2008-09-04 Thread Derrell Lipman
On Thu, Sep 4, 2008 at 7:11 AM, Jean-Baptiste BRIAUD - Novlog < [EMAIL PROTECTED]> wrote: > > I'm not able to reach the doc and download pages for PHP RPC (0.8). > > As I very very new to qooXdoo, I'm sorry if it the answer is obvious, > I may not know where to search. Hi. Welcome to qooxdoo.

Re: [qooxdoo-devel] singleton window

2008-09-04 Thread Philippe Poulard
Sebastian Werner a écrit : > Philippe Poulard schrieb: >> Sebastian Werner a écrit : >>> Philippe, >>> >>> don't know what's wrong in your setup, but for me your demo comes up >>> with an error message. This is the log output: >>> >>> 700ms Part boot successfully loaded >>> 760ms qx.core.Init: Loa

Re: [qooxdoo-devel] Backend Connection for Qooxdoo

2008-09-04 Thread Derrell Lipman
On Wed, Sep 3, 2008 at 11:11 PM, salman farci <[EMAIL PROTECTED]> wrote: > Thanx Thomas, > > could u pls provide me a sample of both front end & backend implementation. It occurs to me that the RPC test program(s) that were in 0.7 probably did not make it to 0.8 when the backends were migrated t

Re: [qooxdoo-devel] image rescaling

2008-09-04 Thread Stephan Veigl
Hi Sebastian, > sorry for the delay. I had to do some other stuff first. No problem. I can imagine that you have a lot to do at the moment. Btw: all the best for your new job. > I have detected the issue and fixed it in SVN. When you use SVN, you can > verify updating to at least revision 16276

Re: [qooxdoo-devel] qx.io is undefined

2008-09-04 Thread Matthew Gregory
Have you done a "generate source" recently? Yann Farge wrote: > hi, > > i'm a super newbie... but i want to improve! > > i'm on qooxdoo 0.8. > > i just want to do a login page with RPC > > here is the beginning of my code (Application.js) > > > qx.Class.define("custom2.Application", > { >

[qooxdoo-devel] PHP RPC

2008-09-04 Thread Jean-Baptiste BRIAUD - Novlog
Hi again, I'm not able to reach the doc and download pages for PHP RPC (0.8). As I very very new to qooXdoo, I'm sorry if it the answer is obvious, I may not know where to search. Any feedback on that PHP RPC ? Is it stable enough to be used in production ? Thanks ! ---

[qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-04 Thread Jean-Baptiste BRIAUD - Novlog
Hi qooXdoo guru, New to qooXdoo, I'd like to start my first test in a particular context : without using Phyton. I started with HelloWorld example and I noticed I'll have to : * create-application.py and then to * generate.py source Unfortunatly, I'd like not to use that kind of script nor I

Re: [qooxdoo-devel] qx.io is undefined

2008-09-04 Thread Yann Farge
oh my mistake its a wrong copy and paste... but even with the "qx.io" instead of the "qx.legacy.oi" , the problem is the same Le jeudi 04 septembre 2008 à 12:28 +0200, Amit Rana a écrit : > Hi, > I am also a beginner, so don't mind if I state something very stupid. > > But, it seems that

Re: [qooxdoo-devel] qx.io is undefined

2008-09-04 Thread Amit Rana
Hi, I am also a beginner, so don't mind if I state something very stupid. But, it seems that in your code you have a stmt : var rpc = new qx.legacy.io.remote.Rpc(); but, there is no such namespace as *qx.legacy. *Maybe instead of qx.io, you called a wrong class. cheers Amit Yann Farge ha s

[qooxdoo-devel] qx.io is undefined

2008-09-04 Thread Yann Farge
hi, i'm a super newbie... but i want to improve! i'm on qooxdoo 0.8. i just want to do a login page with RPC here is the beginning of my code (Application.js) qx.Class.define("custom2.Application", { extend : qx.application.Standalone, /* **

[qooxdoo-devel] Javascript function call

2008-09-04 Thread Philippe Poulard
Hi all, This is rather a javascript question than a qooxdoo specific one I have some code like this that passe an anonymous function: foo.bar(p1, function(p2) { alert(qx.util.Json.stringify(p2)); }); in foo.bar, i create a button with a listener; when it is executed, the following code fa

Re: [qooxdoo-devel] singleton window

2008-09-04 Thread Philippe Poulard
Sebastian Werner a écrit : > Philippe Poulard schrieb: >> Sebastian Werner a écrit : >>> Philippe, >>> >>> don't know what's wrong in your setup, but for me your demo comes up >>> with an error message. This is the log output: >>> >>> 700ms Part boot successfully loaded >>> 760ms qx.core.Init: Load

[qooxdoo-devel] qooxdoo 0.8 :: contextmenu

2008-09-04 Thread Ian Horst
Hi, I wonder how people implement contextmenu in browsers where default action of mouse right click cannot be prevented. I implemented temporary "CTRL + Mouse Left Click" to open context menu. But I'd like to avoid usage of CTRL or SHIFT as they are used in selection. What alternatives people

Re: [qooxdoo-devel] singleton window

2008-09-04 Thread Sebastian Werner
Philippe Poulard schrieb: > Sebastian Werner a écrit : >> Philippe, >> >> don't know what's wrong in your setup, but for me your demo comes up >> with an error message. This is the log output: >> >> 700ms Part boot successfully loaded >> 760ms qx.core.Init: Load runtime: 760ms >> 821ms qx.core.Ini

Re: [qooxdoo-devel] singleton window

2008-09-04 Thread Philippe Poulard
Sebastian Werner a écrit : > Philippe, > > don't know what's wrong in your setup, but for me your demo comes up > with an error message. This is the log output: > > 700ms Part boot successfully loaded > 760ms qx.core.Init: Load runtime: 760ms > 821ms qx.core.Init: Main runtime: 57ms > [Exception

Re: [qooxdoo-devel] singleton window

2008-09-04 Thread Sebastian Werner
Philippe, don't know what's wrong in your setup, but for me your demo comes up with an error message. This is the log output: 700ms Part boot successfully loaded 760ms qx.core.Init: Load runtime: 760ms 821ms qx.core.Init: Main runtime: 57ms [Exception... "'Error: At least one child in control q

Re: [qooxdoo-devel] singleton window

2008-09-04 Thread Ian Horst
You can always check demos. They are helpful. I found it quite useful to dig into qooxdoo source to understand how it works. Not always API gives you understanding what this method etc does. I usually keep open qooxdoo: - bug tracker; - source; - api; - demo. Qooxdoo could help developers by im

[qooxdoo-devel] XPath support

2008-09-04 Thread Philippe Poulard
Hi, qx.xml.Element.selectNodes() allow to apply an XPath expression on a node -is XPath fully supported ? -how to bind a prefix to a namespace URI ? Thanks -- Cordialement, /// (. .) ooO--(_)--Ooo | Philippe Poulard |