Re: [qooxdoo-devel] Some for loop optimization tests

2009-09-28 Thread Fritz Zaucker
On Tue, 29 Sep 2009, A.Yerenkow wrote: > On 29.09.2009 9:26, Fritz Zaucker wrote: >> Hi Gene, >> >> you are right, I should stay consistent with the code examples to be sure >> there are no subtle differences. I found: >> >> - for (i=0, len=d.length; i> >> and >> >> len = d.length; >>

Re: [qooxdoo-devel] Some for loop optimization tests

2009-09-28 Thread A.Yerenkow
On 29.09.2009 9:26, Fritz Zaucker wrote: > Hi Gene, > > you are right, I should stay consistent with the code examples to be sure > there are no subtle differences. I found: > > - for (i=0, len=d.length; i > and > > len = d.length; > for (i=0; i > give exactly identical executi

Re: [qooxdoo-devel] Some for loop optimization tests

2009-09-28 Thread Fritz Zaucker
Hi Gene, you are right, I should stay consistent with the code examples to be sure there are no subtle differences. I found: - for (i=0, len=d.length; i Nice insight, Fritz. > > I noticed that in your first test discussion, you showed an example > where "len" was calculated prior to the loop str

Re: [qooxdoo-devel] Some for loop optimization tests

2009-09-28 Thread Gene Amtower
Nice insight, Fritz. I noticed that in your first test discussion, you showed an example where "len" was calculated prior to the loop structure, but later you included it in the loop initialization structure itself. Not knowing anything about the inner workings of JS, is there a chance that movin

Re: [qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-09-28 Thread MootCycle
Yeah, there are some known bugs in the designer at the moment. I'm trying to figure out how the UI can clearly display a form and it's actions. The simple "design view" isn't enough. I think that particular bug has to do with a context menu action removing the object that fired the context menu ev

Re: [qooxdoo-devel] Build speed

2009-09-28 Thread thron7
> I did some chrono and got 3 minutes !!! > It's just too long for a very simple application (15 classes, all > included) without translation, without ressources. Standard "Playground" application, 2 (!) app classes (but 240 classes including dependencies), on a single-core Windows machine with na

Re: [qooxdoo-devel] Native Window, again

2009-09-28 Thread panyasan
Fabian Jakobs wrote: > > I would try it from the outside of the iframe. Just load a blank html > file into the iframe. Then you can add a root widget to the iframe > > var iframeRoot = new > qx.ui.root.Application(qx.bom.Iframe.getDocument(iframeElement)); > > than place your widgets into t

[qooxdoo-devel] Some for loop optimization tests

2009-09-28 Thread Fritz Zaucker
Hi, after having read some comments about loop optimization somewhere, I ran some very simple minded tests with JS for loops just loading the code directly from the file system and found on a Lenovo X60 with Ubuntu Jaunty: var d = []; d[5000]=5000; for (i=0; ihttp://p.sf.net/sfu/devconf

[qooxdoo-devel] Unwanted scrollability of the application in Firefox - qooxdoo 0.7.4

2009-09-28 Thread Asen Draganov
I am experiencing a problem in a qooxdoo application that has one ore more non-maximized windows. If a window is dragged in the right and/or down side of the application, so it is partly hidden, the application could be scrolled with the keyboard navigation keys in Firefox. This is an undesirable

Re: [qooxdoo-devel] Problem in Chrome

2009-09-28 Thread Andreas Ecker
Hi Alexander, would be great you could file a bug report. This usually allows for the most effective processing of such defects: http://bugzilla.qooxdoo.org/enter_bug.cgi?product=framework Thanks, Andreas On Mon, 2009-09-28 at 13:27 +0300, A.Yerenkow wrote: > Hi all! > > I have a problem with

Re: [qooxdoo-devel] skip index.html from being built while running "./generate.py build"

2009-09-28 Thread skar
Matthew Gregory wrote: > Hi skar, > You can override the build-files job not to copy anything (it only > copies the index.html by default) > > Add this to your config.json: > >"jobs" : >{ > "=build-files" : > { > } >} > > Thanks. The empty jobs did it :) cheers, skar

Re: [qooxdoo-devel] skip index.html from being built while running "./generate.py build"

2009-09-28 Thread Matthew Gregory
Hi skar, You can override the build-files job not to copy anything (it only copies the index.html by default) Add this to your config.json: "jobs" : { "=build-files" : { } } That should work, Matt skar wrote: > Hi, > > Since I'm using a variation of the index.html wit

[qooxdoo-devel] Build speed

2009-09-28 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, I'm now using the officiel build and not only for a coded by hand application. What does that mean ? I'm launching create-appliction and then generate.py build at runtime. Unfortunatly, the geberate build is very very (very ?) long. What can I do on my side to improve speed of geenrate.py

[qooxdoo-devel] skip index.html from being built while running "./generate.py build"

2009-09-28 Thread skar
Hi, Since I'm using a variation of the index.html with AUTH_TOKEN variable to pass rails csrf checks, how do I make the build script not copy the index.html over to the build dir. I'm using index.html for the source version though. cheers, skar. -- -- The life so short, the craft so long to lea

Re: [qooxdoo-devel] Problem in Chrome

2009-09-28 Thread Guilherme Aiolfi
I have the same problem here. In Firefox the build works fine. On Mon, Sep 28, 2009 at 7:27 AM, A.Yerenkow wrote: > Hi all! > > I have a problem with Chrome 3.0.195.21 with qooxdoo 0.8.3 and "build". > With "source" all works fine, but we use "build" version for deploying our > app. > > > Unca

Re: [qooxdoo-devel] Native Window, again

2009-09-28 Thread Fabian Jakobs
Hi Christian, > Hello Fabian, > > thanks for the info. As long as very basic functionality exists, I'd > be happy. I basically only need to be able to render forms and maybe > also a table - nothing fancy. But how would I go about doing it? Do I > need to import the qx global object into the new wi

Re: [qooxdoo-devel] Validation didn't work well

2009-09-28 Thread Tino Butz
-- Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahea

Re: [qooxdoo-devel] Native Window, again

2009-09-28 Thread panyasan
Fabian Jakobs wrote: > > Hi Christian, >> I have asked this before but have been unsuccessful in attracting >> anyone's >> interest. New try: I want to use native browser windows in my >> application. >> If I create a new window with >> >> var win = qx.bom.Window.open(); >> >> I get a native Win

[qooxdoo-devel] Problem in Chrome

2009-09-28 Thread A.Yerenkow
Hi all! I have a problem with Chrome 3.0.195.21 with qooxdoo 0.8.3 and "build". With "source" all works fine, but we use "build" version for deploying our app. Uncaught TypeError: Cannot read property '$$hash' of null This is in build-script, at line 3 here: ,addListener:function(bq,br,bs,s

[qooxdoo-devel] Removal of legacy code from SVN trunk

2009-09-28 Thread Andreas Ecker
Hi, this is to remind you that we're about to remove all legacy code from SVN trunk that was kept til the release 0.8.3. This mainly includes the qx.legacy.* namespace (left from 0.7.x to allow for "hybrid" migration versions) as well as all API deprecations up to the recent 0.8.3 release. You co

Re: [qooxdoo-devel] Native Window, again

2009-09-28 Thread Fabian Jakobs
Hi Christian, > I have asked this before but have been unsuccessful in attracting anyone's > interest. New try: I want to use native browser windows in my application. > If I create a new window with > > var win = qx.bom.Window.open(); > > I get a native Window object which doesn't contain any refe