Jean, Today Jean-Baptiste BRIAUD - Novlog wrote: [...] > After that I understood the problem is not Python but the > toolchain itself. I really need to use qooXdoo like a framework + > widget lib that I wan't to see like Java/Swing. No one force me > to use Eclipse as a toolchain or netbean or IntelliJ or the > notepad. Java/Swing is "just" a library. A lot of possible > toolchain exists but I can choose not to use any of them.
have you noticed that ALL javascript libraries go to great lengths at trying to make themselfes small and fast-loading? They use various techniques and most of the time you end up with a "uncompressed" and a "compressed" version of the library. Drawing a clear line between your code and "the library". With qooxdoo there is no such spearation. The library is implemented in exactly the same terms as your qooxdoo application. The "compression" step happens after your bits of code have been included and not before as with other less advanced libraries. Look at qooxdoo as if it was a compiled language ... you do not run your C code directly on the CPU, you complie it into a binary first and then you execute the binary. Qooxdoo uses the same idea: you write your javascript application in a 'user friendly' way and then there is a 'compiler' that wraps your code up into an application ready to go. For me this is the best way of writing browser based applications there is. Have you actually written code using qooXdoo ? I think either you have not, or you are looking for something other than qooxdoo. cheers tobi -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland http://it.oetiker.ch [EMAIL PROTECTED] ++41 62 775 9902 / sb: -9900 ------------------------------------------------------------------------- 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 Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
