Re: app not reload from android chrome

2021-01-11 Thread Peter Donald
There's a library that manages this for you at https://github.com/realityforge/gwt-cache-filter which will set the caching parameters as required. On Mon, Jan 11, 2021 at 9:35 PM pierre...@gmail.com wrote: > Hi, > I have a gwt app developed with gwt-material but I assume it's not > relevant for

Re: GWT built in History and HTML5 pushstate

2021-01-11 Thread Thomas Broyer
Are you using Places? Have a look at https://gist.github.com/tbroyer/1883821 Otherwise (using plain com.google.gwt.user.client.History), you'd have to migrate your code to use something else, possibly based on elemental2-dom: https://javadoc.io/doc/com.google.elemental2/elemental2-dom/latest/ele

Re: CodeServer looks for (not required?) source

2021-01-11 Thread Gordan Krešić
On 10. 01. 2021. 15:53, Gordan Krešić wrote: When using SDM's Code Server, I get following error during initial load: [ERROR] Could not find org.apache.commons.lang3.LocaleUtils in types compiled from source. Is the source glob too strict? That's it, no further reference which class depe

Re: CodeServer looks for (not required?) source

2021-01-11 Thread Gordan Krešić
On 11. 01. 2021. 17:00, Jens wrote: A parameter option (like ALL in -logLevel ALL) is also an argument on its own, so you need to split your argument string into two as needed. Yep, thanks. -gkresic. -- You received this message because you are subscribed to the Google Groups "GWT

Re: app not reload from android chrome

2021-01-11 Thread pierre...@gmail.com
Thanks, I guess so. Will try ... Le lundi 11 janvier 2021 à 17:58:42 UTC+1, lofid...@gmail.com a écrit : > Can this Blog Post help you? > > > https://seewah.blogspot.com/2009/02/gwt-tips-2-nocachejs-getting-cached-in.html > > pierre...@gmail.com schrieb am Montag, 11. Januar 2021 um 11:34:58 UTC+

Re: app not reload from android chrome

2021-01-11 Thread lofid...@gmail.com
Can this Blog Post help you? https://seewah.blogspot.com/2009/02/gwt-tips-2-nocachejs-getting-cached-in.html pierre...@gmail.com schrieb am Montag, 11. Januar 2021 um 11:34:58 UTC+1: > Hi, > I have a gwt app developed with gwt-material but I assume it's not > relevant for this problem. > The ap

Re: CodeServer looks for (not required?) source

2021-01-11 Thread Jens
> Unreletaed to this, but Thomas one more question if I may: can you see a > problem with folloging Gradle task: > > task gwtCodeServerManual(type: JavaExec) { > main = 'com.google.gwt.dev.codeserver.CodeServer' > classpath += files(sourceSets.main.compileClasspath, > sourceSets.main.runtime

Re: GWT built in History and HTML5 pushstate

2021-01-11 Thread Vegegoku
I would suggest that you take a look at domino-history On Monday, January 11, 2021 at 2:17:25 PM UTC+2 Martin Nguyen wrote: > Hi, > > We are using the GWT built in History which leads to the hashtag tokens. > This is leading to a problem when we are

GWT built in History and HTML5 pushstate

2021-01-11 Thread Martin Nguyen
Hi, We are using the GWT built in History which leads to the hashtag tokens. This is leading to a problem when we are trying to redirect in a Microsoft teams app. Is there a way for us to try removing that hashtag sign in the urls, are there any up-to date libraries or implementation to go fro

Re: CodeServer looks for (not required?) source

2021-01-11 Thread Gordan Krešić
On 11. 01. 2021. 09:42, Thomas Broyer wrote: On Sunday, January 10, 2021 at 10:29:06 PM UTC+1 Gordan Krešić wrote: On 10. 01. 2021. 21:58, lofid...@gmail.com wrote: > Actually you have following options for the transpiler with Maven plugin. > Maybe it is the same with the Gradl

app not reload from android chrome

2021-01-11 Thread pierre...@gmail.com
Hi, I have a gwt app developed with gwt-material but I assume it's not relevant for this problem. The app is served by Tomcat. Everything is fine with PC/iphone/iPad but with android after deploying a new app, the old one is still showned. The nocache mecanism doesnot work in android chrome. Rem

Re: CodeServer looks for (not required?) source

2021-01-11 Thread Thomas Broyer
On Sunday, January 10, 2021 at 10:29:06 PM UTC+1 Gordan Krešić wrote: > On 10. 01. 2021. 21:58, lofid...@gmail.com wrote: > > Actually you have following options for the transpiler with Maven > plugin. > > Maybe it is the same with the Gradle? > > > > -logLevel > > INFO > > This changes l

Re: CodeServer looks for (not required?) source

2021-01-11 Thread Thomas Broyer
Fwiw, there are and