[gwt-contrib] A new library to integrate GWT with any CSS Framework

2015-04-01 Thread Arnaud TOURNIER
Hello Everyone, I come up here to let you know about a library i build, aiming at* integrating efficiently any CSS framework with GWT*. This allows your application to type-safely use *Sass, Less, Susy, GSS, vanilla css or any other*. From the developper point of view, it *works almost the

Re: [gwt-contrib] A new library to integrate GWT with any CSS Framework

2015-04-01 Thread 'Daniel Kurka' via GWT Contributors
Hi Arnaud, great work! Have you considered using a APT generator instead of hooking into the old GWT Generator API? -Daniel On Wed, Apr 1, 2015 at 11:08 AM, Arnaud TOURNIER ltea...@gmail.com wrote: Hello Everyone, I come up here to let you know about a library i build, aiming at

Re: [gwt-contrib] JsInterop Questions

2015-04-01 Thread Julien Dramaix
Thanks Goktug ! That works better with GWT 2.8 indeed. However, it seems there is a bug with @JsExport and super dev mode in the last snapshot. When I use sdm, the prototype of my JsType is correctly defined (fields and function are defined with the right name) but the constructor is not

Re: [gwt-contrib] A new library to integrate GWT with any CSS Framework

2015-04-01 Thread Arnaud TOURNIER
Hi Daniel, Not yet, i wrote the project well before use APT in GWT was hype ! But that's definitely something i will do on all my projects, as time goes by. If i manage to migrate to APT for this project, that will replace the whole chain of gwt generators + gwt linker (which i use in this

Re: [gwt-contrib] JsInterop Generator from webidl

2015-04-01 Thread Stefano Ciccarelli
http://www.gwtproject.org/articles/elemental.html Is it the same? Il giorno mer 1 apr 2015 alle 23:32 nick936 niklas...@googlemail.com ha scritto: Hi, while playing with the new JsInterop feature i decided to write a code generator which generate the interfaces out of webidls fetched from

Re: [gwt-contrib] JsInterop Questions

2015-04-01 Thread Julien Dramaix
If you have JsExport on a class in the first compilation, it works fine right? Nope I doesn't work. Even in the first compilation I receive a Uncaught ReferenceError: jdramaix is not defined On Wed, Apr 1, 2015 at 8:15 PM 'Goktug Gokdogan' via GWT Contributors

[gwt-contrib] JsInterop Generator from webidl

2015-04-01 Thread nick936
Hi, while playing with the new JsInterop feature i decided to write a code generator which generate the interfaces out of webidls fetched from https://html.spec.whatwg.org/ or the mozilla repository. Yesterday i started this littel project. It's a prototype and far away from being stable, but