Re: [qooxdoo-devel] Generator problem (Unknown class referenced: google.maps....) Addendum

2010-01-21 Thread Peter Schneider
[...] Can I tell the generator not to complain about some missing classes/namespaces ? Yep. In the corresponding class file, add a #ignore(...) at the top (like in your [6] link). You just can't use wildcards currently, so add #ignore(google.maps.Map2) #ignore(google.maps.LatLng)

Re: [qooxdoo-devel] Generator problem (Unknown class referenced: google.maps....) Addendum

2010-01-21 Thread Peter Schneider
Hi list, for those who might have similar things to do, here's what I did to make my 0.8.3 tool chain #ignore -able ;) Updated tool/pylib/ecmascript/frontend/treeutil.py to revision 21244 of trunk [1], updated tool/pylib/generator/code/DependencyLoader.py to revision 21244 of trunk. Those

[qooxdoo-devel] Generator problem (Unknown class referenced: google.maps....) Addendum

2010-01-20 Thread Peter Schneider
Maybe I should have added a question ;) : Can I tell the generator not to complain about some missing classes/namespaces ? Cheers and thanks in advance, Peter Original From: Peter Schneider Date: 20.01.2010 17:29 Hi all, while migrating a (quite big [1]) qooxdoo

Re: [qooxdoo-devel] Generator problem (Unknown class referenced: google.maps....) Addendum

2010-01-20 Thread thron7
On 01/20/2010 05:36 PM, Peter Schneider wrote: Maybe I should have added a question ;) : Can I tell the generator not to complain about some missing classes/namespaces ? Yep. In the corresponding class file, add a #ignore(...) at the top (like in your [6] link). You just can't use