Hi Christian, while it is quite powerful to offer most features of the build process through Makefile variables, it is not as smooth a ride yet as it could be. We are working on a cool solution, stay tuned. ;-)
> Hi, > > playing around with some settings in mySkeletonApp/Makefile I have found, > that absolute path's do not work at all (even with Unix/Linux). > > So either documentation at > > http://qooxdoo.org/documentation/0.7/makefile_defaults#qooxdoo_path > and > http://qooxdoo.org/documentation/0.7/skeleton#configuration > > seems to be wrong or this should be considered a bug > (or I do something wrong ;-) ). > > Reason for misbehavior: > With > > QOOXDOO_PATH = /home/cguetter/qooxdoo/qooxdoo-0.7.1-sdk > > the generated source/script/custom.js does contain lines like > > <script type="text/javascript" > src="..//home/cguetter/qooxdoo/qooxdoo-0.7.1-sdk/frontend/framework/source/class/qx/core/Bootstrap.js"></script> > > Of course, such files does not exist and loading the page does result in > "qx is not defined" > errors. When you use an absolute path instead of the preferred relative path, you need to adjust the QOOXDOO_URI, because its default is wrong otherwise. > BTW: > Is there any detailed documentation regarding > APPLICATION_NAMESPACE ? > It does not work for me too, if I change default "custom" to any other value > (and neither searching the docs nor Google with "qooxdoo > APPLICATION_NAMESPACE" > did lead me to useful results)... The homepage includes a full-text search, so you should have found the appropriate pages. See http://qooxdoo.org/documentation/0.7/makefile_defaults This wiki page is updated manually, but auto-generated (therefore, any manual changes will be lost next time) from the application.mk that resides under framework/tool/make/ in a qooxdoo sdk or svn checkout. Have a look there for an version-specific description of all the Makefile variables. Regarding APPLICATION_NAMESPACE: changing its value should work. You need to adjust your application class(es) accordingly, e.g. class name and file name of custom.Application. If you prefer to give the final script file a different name (default: APPLICATION_NAMESPACE + .js), please use APPLICATION_SCRIPT_FILENAME and adjust index.html. Bye, Andreas ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
