"Jim Hunter" <[EMAIL PROTECTED]> writes: > I added that line to my make file and it made no difference. At the risk of > repeating myself (since many seem to have missed some of the details), here > are the specifics:
Hi Jim, Although it is possible that the situation you present is as it seems, I *really* think that you just have a misunderstanding of what gets put where and what command does what. Let's try this differently. Please do the following and ensure that you get the same results that I do... 1. Check out the soon-to-be-released 0.6.6 branch from svn: svn co http://qooxdoo.svn.sourceforge.net/svnroot/qooxdoo/branches/legacy_0_6_x 2. Change directory into qooxdoo/frontend/application/apiviewer 3. Type "make build" 4. Change directory into build/script, which should put you in qooxdoo/frontend/application/apiviewer/build/script. Note that you are changing ito the "build/script" directory, *not* into the "source/script" directory. 5. In that build/script directory, look at the generated output file called apiviewer.js. It should contain something very similar to the attached file: the required classes' complete implementations (not script calls to include their files) and the apiviewer application classes. It begins like this: if(!window.qx)qx={};if(!qx.Settings)qx.Settings={}; 6. Now move back to qooxdoo/frontend/application/apiviewer 7. Type "make source" 6. Now move into source/script, which should put you in the qooxdoo/frontend/application/apiviewer/source/script directory which was just created. 7. In that source/script directory, look at the generated output file called apiviewer.js (yes, it's the same name as you looked at in build/script). It produce a bunch of <script> tags to bring in the the various classes, and it should begin something like this: document.write('<script type="text/javascript">if(!window.qx)qx={}; 8. Please let me know if you get different results than I did. Derrell ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
