Ok, that's another solution which is new to me... but I also don't want to use ;) It's nearly the same as the make setting I mentioned.
The classes I'm using with the function (see below) getting more and more over time and I not really want to manually add each one in a make- or js-file (of course I could). My hope is that there is another setting I'm not familiar with, something where I can use wildcards for example "APPLICATION_ADDITIONAL_BUILD_OPTIONS = --add-require reform.Application:reform.dynamicClasses.*" (I know, this doesn't work I've tried it :D). Or a make setting which only add ALL custom files in the build-version without defining each one by hand but exclude the unneeded qooxdoo classes. Of course if there is nothing like this I've to use one of the solutions I mentioned or that one you mentioned. All work, but are not really nice to use in my case. :) Best regards Andreas ------------------------------------------------------------------------ ------------------------------------------------------------- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Dirk Wellmann Gesendet: Donnerstag, 31. Juli 2008 16:15 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] complete custom build Hi Andreas, just enter the needed Classes in your main-class, the build-system will include them: #require(qvis.PvTimeBarChartCellRenderer) #require(qvis.PvTimeBarChartHeaderRenderer) so this classes will be included. Regards Dirk Fink, Andreas schrieb: Hi, I have a little problem with the build version of my application. I have a lot of classes which get not accessed directly through the source code, but reference to them with the following function: callFrontend : function(paramMap) { var clazz = qx.Class.getByName(paramMap.clazz); clazz[paramMap.method](paramMap); } The class, method and parameters came from a backend call. The problem is, that the build version did not include the classes, referenced with this function. Is there something I can do instead of using the make setting "APPLICATION_ADDITIONAL_BUILD_OPTIONS = --add-require" and add each class. I've also tried "APPLICATION_COMPLETE_BUILD = true" but then my .js file grows to more than 1,2 MB instead of round about 0,8 MB (seems many unneeded qooxdoo-classes are included) and all the themes and icons get copied too. Thanks for help. Best regards Andreas ------------------------------------------------------------------------ - 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 ------------------------------------------------------------------------- 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
