Gaetan de Menten wrote:
> 
> * I had to add #asset hints to my code, while it previously worked
> without.
> 
> * I had to add these lines (copied from the skeleton) to my
> Application.js, to have debugging output. Couldn't find this mentioned
> anywhere, and the migration script could have added that
> automatically...
> 
>             if (qx.core.Variant.isSet("qx.debug", "on")) {
>                 qx.log.appender.Native;
>                 qx.log.appender.Console;
>             }
> 
> * Also not mentioned in the doc, I had to change all occurences of
> adding several items to a menu at once to one item per call:
> -            file_menu.add(new_mb, open_mb, save_mb);
> +            file_menu.add(new_mb);
> +            file_menu.add(open_mb);
> +            file_menu.add(save_mb);
> 
> * This was mentioned in the doc but could have easily been done
> automatically:
>  qx.util.Mime.XML -> "application/xml"
> 
> * table.model.Simple: _rowArr was renamed to __rowArr and wasn't
> mentioned in the doc. This is a private variable but should be
> mentioned in the "migration notes" anyway as people using a custom
> table model usually inherit from it, so it does matter. Btw,
> treevirtual/SimpleTreeDataModel.js still use _rowArr, but since it
> inherits from table.model.Simple, it has both.
> Same comment for _sortMethods and _sortColumnIndex.
> 

Great report! :-) These are relevant issues, both in the semi-automated
migration process and the migration documentation. Shouldn't they be added
to the bug tracker (at least to make this doesn't get lost)? ;-)

Regards,

 Helder Magalhães
-- 
View this message in context: 
http://www.nabble.com/0.8-migration-report-tp19858400p19874821.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to