It sounds like working with the source-all build hides an underlying
problem. Try 'generate.py source' and I expect you get the same issue,
but maybe with better error reporting.

It looks like dependencies are not picked up correctly, but why I cannot
say from what you write. If the problem reproduces in the 'source'
version, it might help if you post your config.json (if you are at
liberty to disclose it).

T.

On 05/04/2010 08:52 PM, AndyWhite wrote:
> 
> I see that there are other 'is not a constructor' topics out here, but they
> do not seem related to my problem.
> 
> For me the source-all generates correctly and runs well (I've been working
> on this for a couple of weeks, so I'm fairly sure source is working
> correctly).  For quite some time the build option also seemed to work, but
> now when I run build and load index.html I'm getting this error in FireBug
> console:
> 
> console.Controller is not a constructor
> 
> on this section of code in console.js
> 
> main:function(){qx.application.Standalone.prototype.main.call(this);
> this.__cv=new console.Controller(this);
> this.__cv.addListener(q,function(){this.__cs.disableConnect();
> },this);
> this.__cv.addListener(p,function(x){this.__cu.updateStatus(x.getData());
> },this);
> var z=new qx.ui.layout.VBox(); 
> var B=new qx.ui.container.Composite(A);
> this.getRoot().add(B,{edge:0});
> this.__cu=new console.view.Header();
> B.add(this.__cu,{flex:0}); 
> 
> just to be sure I commented out that part and built again:
> 
> main:function(){qx.application.Standalone.prototype.main.call(this);
> var A=new qx.ui.layout.VBox();
> var B=new qx.ui.container.Composite(A);
> this.getRoot().add(B,{edge:0});
> this.__cu=new console.view.Header();
> B.add(this.__cu,{flex:0}); 
> 
> Now the error is console.view.Header is not a constructor
> 
> Searching through console.js in build/script I can find no code that looks
> like it comes from my classes - it is almost as if all my classes, except
> for the Application subclass, are missing from the build.
> 
> Any suggestions on where to look or what to try?  I have tried both 1.0.1
> and 1.1 by the way.
> 

------------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to