gwt 2.7 And speed tracer?

2015-01-27 Thread Clement Boret
Hi. My app is running slow and I saw that speed tracer is supposed to help. me in finding where and why things are slow HOWEVER I really have issues: 1)On the official page https://developers.google.com/web-toolkit/speedtracer/get-started#downloading it seems that the link to install speed

How to Find RTL (or) LTR themes Loaded In GWT application?

2015-01-27 Thread Mohammed Sameen
Hi, In my GWT Application, I need to support multiple languages like english,arabic,hebrew langauages and also i am using LTR and RTL themes in module.gwt.xml.But internally in my application i need to know which themes is loading (RTL,LTR).Since i need to write some logic in my application for

Re: Regex matches error in production

2015-01-27 Thread Jens
Seems like you can not do \d{0,15}+ in JavaScript. You have to wrap it in a group (\d{0,15})+ or remove the plus quantifier. .matches(^\\d{0,15}(\\.\\d{1,2})?$) .matches(^(\\d{0,15})+(\\.\\d{1,2})?$) You can easily test this using https://www.regex101.com/#javascript (you need to change the

Re: Can not deploy GWT application into a standalone Jetty server

2015-01-27 Thread ingenieria . stv
I have the same problem too. If i make mvn:clean and mvn:package the super dev mode problem disappear but i get a Not Request Context for operation. If a run the super dev mode, it solves me the Not Request Context for operation problem but i get the super dev mode error. Anyone know how to

Re: Window.confirm() on Chrome 16 throws an exception.

2015-01-27 Thread Eugene Labonarsky
I have the same problem on GWT 2.6.1 Any news on this? вторник, 5 августа 2014 г., 14:29:21 UTC+3 пользователь Reinhard Stein написал: I have the same problem on GWT 2.6. Any news on this? In Super Dev Mode in Chrome I get the following message, but no stack trace: Exception caught:

Re: client logging config help with unexpected popup

2015-01-27 Thread rjcarr
So I looked at the logging module's xml files and it seems most of the things I'm disabling are disabled by default. So, I changed my module file to just be this: inherits name=com.google.gwt.logging.Logging/ set-property name=gwt.logging.logLevel value=CONFIG/ And I'm still getting the

JSInterop sample / tutorial?

2015-01-27 Thread marian lux
Is there a working JSInterop sample (e.g. project on github) online or an article how to get started? It is part of the current gwt 2.7 release but I could not find a working project or article. It would be nice if the gwtproject.org site will contain any tutorial / article too. E.g. I found

Re: JSInterop sample / tutorial?

2015-01-27 Thread Juan Pablo Gardella
See - https://github.com/workingflows/gwt-jscore.git - https://github.com/workingflows/gwt-jquery.git - https://github.com/workingflows/gwt-playground.git On 27 January 2015 at 18:30, marian lux mlux...@gmail.com wrote: Is there a working JSInterop sample (e.g. project on github)

Re: GWT compile times between 2.6.0 2.7.0

2015-01-27 Thread Martin Kersten
As for better computers for the developers, we try. We've mandated 16GB+ RAM all computers are refreshed every 3 years with good specs. I've been pushing for SSDs but we have limited availability to most developers. :) I use a old T410 with 8GB and a hard drive. I ran it on linux and what I

Re: client logging config help with unexpected popup

2015-01-27 Thread rjcarr
One more note: removing the logLevel property didn't change anything, the popup still shows up. So, at that point, all I'm doing is inheriting the Logging module. inherits name=com.google.gwt.logging.Logging/ However, if I explicitly disable logging with this: set-property

Re: JSInterop sample / tutorial?

2015-01-27 Thread marian lux
Thank you. How to run this projects (ideally in eclipse)? Am Dienstag, 27. Januar 2015 22:49:20 UTC+1 schrieb Juan Pablo Gardella: See - https://github.com/workingflows/gwt-jscore.git - https://github.com/workingflows/gwt-jquery.git -

Re: GWT compile times between 2.6.0 2.7.0

2015-01-27 Thread mdwarne
Depending on how many permutations you compile, setting localWorkers to a larger number then one can make a big difference if you have a multi-core workstation. My compiles are 2-3 times faster with local workers set to 4. Mike. -- You received this message because you are subscribed to the

Re: client logging config help with unexpected popup

2015-01-27 Thread Jens
I am not sure if that also applies to GWT 2.7 as I am using GWT trunk but I had to delete SDM caches to let changes to logging configuration take effect. When SDM starts it tells you which workDir it uses for compilation. Next to that workDir SDM also creates a cache directory named

Re: Regex matches error in production

2015-01-27 Thread Bhumika Thaker
Jens, Thanks for addressing issue and url. This is working fine. ^\\d{0,15}(\\.\\d{1,2})?$ Thanks, Bhumika On Tuesday, 27 January 2015 15:17:38 UTC+5:30, Jens wrote: Seems like you can not do \d{0,15}+ in JavaScript. You have to wrap it in a group (\d{0,15})+ or remove

Re: client logging config help with unexpected popup

2015-01-27 Thread Robert J. Carr
Thanks for the response, but I'm fairly certain I've never started super dev mode, certainly not on my build server, nor do I see any unexpected cache folders in my working directory. I like the idea though, maybe there is some other cache I can try? I vaguely remember seeing such a thing but I

GWT 2.7 Incremental Build

2015-01-27 Thread Martin Kersten
Hi all, I just noticed that 2.7 seams to support incremental build? Is that right? How efficient is it? Thanks, Martin (Kersten) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: gwt 2.7 And speed tracer?

2015-01-27 Thread Thomas Broyer
SpeedTracer appears to be dead (it hadn't been updated for a while anyway) and seems to have been removed form the Chrome Web Store. AFAIK, most (if not all) of what it was doing is now available in Chrome Dev Tools directly. On Tuesday, January 27, 2015 at 2:43:40 PM UTC+1, Clement Boret

Error migrating to GWT 2.7.0 (script tags in the gwt.xml files)

2015-01-27 Thread ssg
Hi All, I am getting the following error while running ANT Build.xml; Please help me in correcting the following. *[java] [ERROR] The Cross-Site-Iframe linker does not support script tags in the gwt.xml files, but the gwt.xml file (or the gwt.xml files which it includes) contains the

Re: Error migrating to GWT 2.7.0 (script tags in the gwt.xml files)

2015-01-27 Thread Jim Douglas
Yeah, this was a hassle for me too. This is the breaking change in 2.7.0: https://code.google.com/p/google-web-toolkit/issues/detail?id=8578 I did a few things to bridge the gap from 2.6.1 to 2.7.0. (1) Add this to the project.gwt.xml to not crash on those script tags:

Re: How to Find RTL (or) LTR themes Loaded In GWT application?

2015-01-27 Thread Thomas Broyer
Not sure if that's you're looking for but LocaleInfo.getCurrentLocale().isRTL() will tell you if the current locale is RTL vs. LTR. On Tuesday, January 27, 2015 at 2:55:21 PM UTC+1, Mohammed Sameen wrote: Hi, In my GWT Application, I need to support multiple languages like