dperez <[EMAIL PROTECTED]> writes: > Hi, > > After having returned from my vacations, I'm happy to see that qooxdoo > activity is very high and two new versions have been published. > > I've tried to migrate from 0.6.1 to 0.6.3, and get this error: > > $ tool/generator.py --script-input a --migrate-source --migration-target > 0.6.3 > > INITIALIZATION: > ---------------------------------------------------------------------------- > * Processing arguments... > > SOURCE LOADER: > ---------------------------------------------------------------------------- > * Indexing files... > - ID mismatch: CONTENT=ContGlob != PATH=frm-rima
That error typically occurs when the full name of the class does not match the path name getting to the class file. It sounds like ContGlob is in a folder called frm-rima but the immediate prefix of the class name is not frm-rima, i.e. the class name should be <something>.frm-rima.ContGlob if the directory hierarchy is <something>/frm-rima/ContGlob.js Or maybe you've called the file frm-rima.js but declared within it a class called ContGlob. The two must match. I haven't tried migration, so I don't know if something different is going on due to that process. Cheers, 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
