Re: [gwt-contrib] Re: Stop calling it GWT 3.0

2015-08-01 Thread Ali Akhtar
Nevermind, found it. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscr...@googlegroups.com. To view this discussion on

Re: [gwt-contrib] Re: Stop calling it GWT 3.0

2015-08-01 Thread Ali Akhtar
I searched for the modernizing GWT talk but didn't find it on youtube - is there any other talk / article that we can refer to, on how to write future proof gwt code? -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this

[gwt-contrib] Re: Build failing on 2.8.0-SNAPSHOT

2015-07-27 Thread Ali Akhtar
Yeah, looks like you were right. Nuking ~/.m2/repository/com/google/gwt and running mvn install -U, the build is now passing with failOnError and dependencies specified. Thanks. On Tue, Jul 28, 2015 at 2:25 AM, Thomas Broyer wrote: > > > On Monday, July 27, 2015 at 9:59:04 PM UTC+2, A

[gwt-contrib] Re: Build failing on 2.8.0-SNAPSHOT

2015-07-27 Thread Ali Akhtar
It seems that removing the line: true from the of the plugin allows the build to pass, without the error about the JsMap. So I've done that, for now, in order to pass the build (this is on 2.7.0 plugin without the dependencies specified and the plugin repo also removed) However, it'd be good

[gwt-contrib] Re: Build failing on 2.8.0-SNAPSHOT

2015-07-27 Thread Ali Akhtar
-SNAPSHOT, can I see its pom.xml please? Thanks. On Monday, July 27, 2015 at 8:25:42 PM UTC+5, Ali Akhtar wrote: > > Since a few days ago, my maven build with 2.8.0-SNAPSHOT dependency has > been failing, with the following error: > > [ERROR] Errors in > 'jar:file:/home

[gwt-contrib] Re: Build failing on 2.8.0-SNAPSHOT

2015-07-27 Thread Ali Akhtar
liakhtar/c3a4bcffe66e97ccff20 Any ideas? On Monday, July 27, 2015 at 9:01:23 PM UTC+5, Thomas Broyer wrote: > > > > On Monday, July 27, 2015 at 5:25:42 PM UTC+2, Ali Akhtar wrote: >> >> Since a few days ago, my maven build with 2.8.0-SNAPSHOT dependency has >> been failing, w

[gwt-contrib] Build failing on 2.8.0-SNAPSHOT

2015-07-27 Thread Ali Akhtar
Since a few days ago, my maven build with 2.8.0-SNAPSHOT dependency has been failing, with the following error: [ERROR] Errors in 'jar:file:/home/ali/.m2/repository/com/google/gwt/gwt-user/2.7.0/gwt-user-2.7.0.jar!/com/google/gwt/emul/java/util/InternalJsHashCodeMap.java' [INFO] [ERROR

Re: [gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Ali Akhtar
I turned on: However, still don't see the cause of the UmbrellaException -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors

Re: [gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Ali Akhtar
y the wiring that calls into the widget event handling from the dom. > > On Thu, Jul 9, 2015 at 10:08 PM Ali Akhtar wrote: > >> In 2.8.0-SNAPSHOT, when the ValueChangeEvent is triggered for a dropdown, >> I'm encountering the following stack trace: >> >> Unca

[gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Ali Akhtar
In 2.8.0-SNAPSHOT, when the ValueChangeEvent is triggered for a dropdown, I'm encountering the following stack trace: Uncaught com.google.gwt.event.shared.UmbrellaException: Exception caught: Exception caught: (TypeError) : Cannot read property 'java_util_LinkedList_size' of undefined com_goog

[gwt-contrib] Re: Snapshot repo?

2015-03-25 Thread Ali Akhtar
Ah, https://oss.sonatype.org/content/repositories/google-snapshots/ is the repo. Got it, working now. +1 in favor of not deleting the last working build, please. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this grou

Re: [gwt-contrib] Re: Snapshot repo?

2015-03-25 Thread Ali Akhtar
s without complaining On Thursday, March 26, 2015 at 1:10:57 AM UTC+5, Ali Akhtar wrote: > > It appears that the web bindery jars are still missing on sonatype? > > [ERROR] Non-resolvable import POM: Could not find artifact com.google. > web.bindery:requestfactory:pom:2.8.0-S

Re: [gwt-contrib] Re: Snapshot repo?

2015-03-25 Thread Ali Akhtar
.testIncrementalRecompile_defaultMethod >>>> >>>> com.google.gwt.dev.CompilerTest.testIncrementalRecompile_devirtualizeUnchangedJso >>>> >>>> com.google.gwt.dev.CompilerTest.testIncrementalRecompile_devirtualizeString >>>> >>>> com.google.gwt.dev.CompilerTest.t

Re: [gwt-contrib] Re: Snapshot repo?

2015-03-25 Thread Ali Akhtar
alRecompile_singleJsoIntfDispatchChange >>> >>> com.google.gwt.dev.CompilerTest.testIncrementalRecompile_dualJsoIntfDispatchChange >>> >>> com.google.gwt.dev.CompilerTest.testIncrementalRecompile_generatorInputResourceChange >>> >>> com.google.gwt.d

[gwt-contrib] Snapshot repo?

2015-03-19 Thread Ali Akhtar
Hey guys, Is there a maven repo to use for getting snapshot builds? Sonatype doesn't contain .jars, https://oss.sonatype.org/content/repositories/google-snapshots/com/google/gwt/gwt-user/2.8.0-SNAPSHOT/ And https://github.com/manolo/gwt-snapshot/ doesn't appear to have been updated for 28 days

Re: [gwt-contrib] Re: Possible bug with method references when doing this::foo

2015-02-13 Thread Ali Akhtar
method > reference. > > On Friday, February 13, 2015 at 6:47:29 AM UTC-8, Ali Akhtar wrote: >> >> In a project, when I do the following: >> >> SomeClass.someMethod( this::handleResult); >> >> >> I get : com.google.gwt.event.shared.UmbrellaExcepti

[gwt-contrib] Possible bug with method references when doing this::foo

2015-02-13 Thread Ali Akhtar
In a project, when I do the following: SomeClass.someMethod( this::handleResult); I get : com.google.gwt.event.shared.UmbrellaException: Exception caught: (ReferenceError) : xFf_g$ is not defined But when I replace the above line with: SomeClass.someMethod( r-> handleResult(r) ); That work

Re: [gwt-contrib] Re: UiBinder changes don't get picked up in SDM (trunk)

2015-02-12 Thread Ali Akhtar
problem. Still, it would be a good idea for the mvn plugin to detect this, as you suggested. Thanks. On Thu, Feb 12, 2015 at 3:25 PM, Thomas Broyer wrote: > > > On Thursday, February 12, 2015 at 2:35:36 AM UTC+1, Ali Akhtar wrote: >> >> I have a maven layout, and the ui.x

Re: [gwt-contrib] Re: UiBinder changes don't get picked up in SDM (trunk)

2015-02-11 Thread Ali Akhtar
ml file is in the classpath but not > included as a resource in the gwt.xml file. I think if we notice that > during compilation, we will print a warning about it. > > On Wed, Feb 11, 2015 at 4:12 AM, Ali Akhtar wrote: > >> I'm using the snapshot build, so it might be a re

Re: [gwt-contrib] Re: UiBinder changes don't get picked up in SDM (trunk)

2015-02-11 Thread Ali Akhtar
I'm using the snapshot build, so it might be a recent issue. I'm not sure if I could've done anything in my project to cause this, I just have a regular ui binder file / class. On Wed, Feb 11, 2015 at 4:50 PM, Jens wrote: > We are currently using a GWT trunk build from 5. Jan 2015 and don't see

[gwt-contrib] Re: UiBinder changes don't get picked up in SDM (trunk)

2015-02-11 Thread Ali Akhtar
Update: Seems like this issue applies to all changes made to ui.xml files. If I have an existing foo.ui.xml file, and I made a change to it, such as adding the text 'foo' anywhere inside a HtmlPanel, reloading doesn't pick up the change. A full sdm restart is required. -- You received this mes

[gwt-contrib] UiBinder changes don't get picked up in SDM (trunk)

2015-02-10 Thread Ali Akhtar
I'm using 2.8.0-SNAPSHOT. If I add any new ui-field=".." to a ui.xml file, they aren't picked up either on refresh, or on clearing the SDM cache . Instead, I have to restart SDM in order for these changes to be picked up. Otherwise, I keep getting the error that there's no @UiField for the corr

Re: [gwt-contrib] GWT 2.8.0-SNAPSHOT

2015-02-10 Thread Ali Akhtar
couple of hours, although there are no > changes in the repo. > Try to force your maven cache to be updated: mvn -U > > On Tue, Feb 10, 2015 at 7:39 AM, Ali Akhtar wrote: > >> Hey Manuel, >> >> I'm using your linked repo, but I'm not sure if its updating. De

Re: [gwt-contrib] Javascript Exceptions in SDM about classes not being defined

2015-02-10 Thread Ali Akhtar
you can clear your SDM cache (button on its page) and you should be > able to continue. > > On Tue, Feb 10, 2015 at 7:16 AM, Ali Akhtar wrote: > >> I'm using 2.8.0-SNAPSHOT, from >> https://github.com/manolo/gwt-snapshot/raw/master/ >> >> When I try to invoke

Re: [gwt-contrib] GWT 2.8.0-SNAPSHOT

2015-02-09 Thread Ali Akhtar
Hey Manuel, I'm using your linked repo, but I'm not sure if its updating. Defender methods were added a few days ago, however when I try to use them within client code, I get an 'undefined' javascript error. -- You received this message because you are subscribed to the Google Groups "GWT Con

[gwt-contrib] Javascript Exceptions in SDM about classes not being defined

2015-02-09 Thread Ali Akhtar
I'm using 2.8.0-SNAPSHOT, from https://github.com/manolo/gwt-snapshot/raw/master/ When I try to invoke the following method: public Clerk setEvents(HasValue... fields) { for (HasValue f : fields) { f.addValueChangeHandler( e -> validate() ); } r

[gwt-contrib] asm.js compilations in GWT

2014-11-12 Thread Ali Akhtar
Hi there, Just wondering whether GWT supports any asm.js like optimizations, or if there are any plans for adding them in the future? It can make GWT very attractive for writing games, for example. -- You received this message because you are subscribed to the Google Groups "GWT Contributors