Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-11-28 Thread Slava Pankov
No, I have not tried SSO. But in 2.7 it was working fine without SSO, I 
will try SSO and let you know.

On Saturday, November 26, 2016 at 12:55:25 AM UTC-8, Kirill Prazdnikov 
wrote:
>
> Hi
>  
>
>> I've tried WITHOUT any success to use closure compiler externally with 
>> GWT 2.8
>>
>
> Did you try SSO ? Did you run Closure Compiler on SSO output script ?
>
>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Adding Material Design Inherits elements to already existing vanilla GWT project changes the main look of the application

2016-11-28 Thread Olar Andrei
@Jens

If that is the case (can't check right now), is there a possibility to 
disable that? Beacause I just want to redraw the login and register screen 
using MD. The main app I want to stay the same using vanilla gwt.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: gwt compile error "No source code" using gwt-lib with transient sources

2016-11-28 Thread Michael Budnick
It's my mistake, I had a typing error in the path with the lib-shared 
classes.
So [ERROR] Line 8: No source code is available was correct because the java 
file was on an other location then the packagename sayes.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Adding Material Design Inherits elements to already existing vanilla GWT project changes the main look of the application

2016-11-28 Thread Jens
Just check your CSS in browser dev tools. I guess by inheriting MD some 
additional CSS has been loaded that now makes your login screen look 
different.

-- J.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Adding Material Design Inherits elements to already existing vanilla GWT project changes the main look of the application

2016-11-28 Thread Rodolfo Raya
Hi,

Can you share the .ui.xml part? If you didn't use UIBinder, can you share a
simplified version of your Java code?

Regards,
Rodolfo

On Mon, Nov 28, 2016 at 5:29 AM Olar Andrei  wrote:

> Hello everybody,
>
> Today I'm trying to integrate GWT Material Design into my project. I
> already have an existing vanilla GWT project to which I wish to add some
> other look and feel by using MD. I have added all the necessary depencies
> in my pom file and I have also added these lines in the gwt.xml file.
>
> 
> 
> 
> 
> 
>
> Before adding those lines my login page looks something like this:
>
>
> 
> After adding those lines and reloading the page it looks something like
> this:
>
>
> 
>
> Does anybody know why this is happening?
>
> Thanks in advance,
> Andrei
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Adding Material Design Inherits elements to already existing vanilla GWT project changes the main look of the application

2016-11-28 Thread Olar Andrei
Hello everybody,

Today I'm trying to integrate GWT Material Design into my project. I 
already have an existing vanilla GWT project to which I wish to add some 
other look and feel by using MD. I have added all the necessary depencies 
in my pom file and I have also added these lines in the gwt.xml file.







Before adding those lines my login page looks something like this:


After adding those lines and reloading the page it looks something like 
this:



Does anybody know why this is happening?

Thanks in advance,
Andrei

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-11-28 Thread Kirill Prazdnikov
I have some glue. Google JS Compiler used in chrome is able to detect some
patterns and jit. But some patterns are not detected.

Ex: for are deceted, do ... while sometimes not.

It happens so that GWT produce patterns detectable for JS Compiler. And
Closure can break that structure.

I am happy that GWT dropped cl suppert and focus on JsInterop (where is
JsIndexer?)

28 нояб. 2016 г. 11:04 пользователь "Frank" 
написал:

> I am also interested in answers to this question.
>
> When Closure became available in GWT I did many real world tests on real
> world projects. And in the end the code compiled with closure was slower in
> every case (although smaller). So I never understood why anyone would want
> to use that closure compile on top of gwt compile.
>
> Op donderdag 24 november 2016 15:05:50 UTC+1 schreef Kirill Prazdnikov:
>>
>> Do you have performance measurements ?
>> Did the performance better for 2.7 ?
>> Did you measured real transfer traffic (web server supports real-time GZ
>> compression over HTTP) ?
>>
>> Thanks
>>
>>>
>>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/google-web-toolkit/IIQk4xH0-g8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-11-28 Thread Frank
I am also interested in answers to this question.

When Closure became available in GWT I did many real world tests on real 
world projects. And in the end the code compiled with closure was slower in 
every case (although smaller). So I never understood why anyone would want 
to use that closure compile on top of gwt compile.

Op donderdag 24 november 2016 15:05:50 UTC+1 schreef Kirill Prazdnikov:
>
> Do you have performance measurements ? 
> Did the performance better for 2.7 ?  
> Did you measured real transfer traffic (web server supports real-time GZ 
> compression over HTTP) ?
>
> Thanks
>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.