Re: [gwt-contrib] Re: Bad link in GWT Documentation

2014-06-12 Thread David
It was in the main navigation panel. But as of this morning (GMT+1)  it
works fine. So I guess it had something to do with caching ?



On Wed, Jun 11, 2014 at 6:01 PM, Thomas Broyer t.bro...@gmail.com wrote:

 Hmm, which link? (on which page)

 (there used to be such a bug, but it was fixed a few weeks ago; maybe
 there's a leftover somewhere)

 On Wednesday, June 11, 2014 3:58:43 PM UTC+2, stuckagain wrote:

 The link to the documentation on Editors is broken.
 It points to: http://www.gwtproject.org/doc/latest/doc/latest/
 DevGuideUiEditors.html
 iso http://www.gwtproject.org/doc/latest/DevGuideUiEditors.html


  --
 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 the web visit
 https://groups.google.com/d/msgid/google-web-toolkit-contributors/ffd7a0e6-eb17-4b31-b372-886f3d18e3ea%40googlegroups.com
 https://groups.google.com/d/msgid/google-web-toolkit-contributors/ffd7a0e6-eb17-4b31-b372-886f3d18e3ea%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.


-- 
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 the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CABrJHW3mTSkEfJwqOHA8i-5a6bsADug_ma_2X1XtLPXkBVr0Ug%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] user tests fail to compile

2014-06-12 Thread Colin Alworth
I’m trying to bring https://gwt-review.googlesource.com/#/c/3361/ up to 
date, and after rebasing and fixing a few whitespace nits I tried to run 
the tests by they failed. Concerned that I had broken something I backed 
off to current master, and ran tests again. First I did a clean dist-dev in 
the root directory, then simply compiling user tests, I get a failure:

[colin@modo user (master)]$ ant clean compile.tests
Buildfile: /Users/colin/Documents/idea/gwt/user/build.xml

clean:
   [delete] Deleting directory 
/Users/colin/Documents/idea/gwt/build/out/user

compile.dev.tests:

compiler.standalone:

build.alldeps.jar:

compile:

-filter.props:

build:

compile.emma.if.enabled:

-compile.emma.if.enabled:

compile.tests:
[gwt.javac] Compiling 1 source file to 
/Users/colin/Documents/idea/gwt/build/out/dev/bin-test

compile.emma.if.enabled:

-compile.emma.if.enabled:

compile.tests:
[mkdir] Created dir: 
/Users/colin/Documents/idea/gwt/build/out/user/bin-test
[gwt.javac] Compiling 1514 source files to 
/Users/colin/Documents/idea/gwt/build/out/user/bin-test
[gwt.javac] 
/Users/colin/Documents/idea/gwt/user/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem/ImmediateCompileFails.java:19:
 
error: duplicate class: 
com.google.gwt.dev.testdata.incrementalbuildsystem.ImmediateCompileFails
[gwt.javac] public class ImmediateCompileFails {
[gwt.javac]^
[gwt.javac] 
/Users/colin/Documents/idea/gwt/user/test/com/google/web/bindery/requestfactory/apt/RfValidatorTest.java:177:
 
error: cannot find symbol
[gwt.javac] rfValidator.setClientOnly(clientOnly);
[gwt.javac]^
[gwt.javac]   symbol:   method setClientOnly(boolean)
[gwt.javac]   location: variable rfValidator of type RfValidator
[gwt.javac] Note: Some input files use or override a deprecated API.
[gwt.javac] Note: Recompile with -Xlint:deprecation for details.
[gwt.javac] Note: Some input files use unchecked or unsafe operations.
[gwt.javac] Note: Recompile with -Xlint:unchecked for details.
[gwt.javac] 2 errors

BUILD FAILED
/Users/colin/Documents/idea/gwt/user/build.xml:150: Compile failed; see the 
compiler error output for details.

Total time: 15 seconds

Anyone else seeing this, or is it likely a local env issue? I’ve confirmed 
that my tools/ dir is up to date, and I’m not sure what other local 
configuration might be required just to compile tests.

-- 
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 the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/0703af1b-e8bd-420d-9b6d-71dbbd281ce0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Colin Alworth
With some help from Jens Nehlmeier over in ##gwt, it looks like there are 
two distinct issues preventing the build from passing presently The first 
is that the class ImmediateCompileFails does in fact cause problems with 
compiling - the simplest fix was to tell the compile.tests target to leave 
off compiling any super sources:
diff --git a/user/build.xml b/user/build.xml
index 274f4ef..54fc17d 100755
--- a/user/build.xml
+++ b/user/build.xml
@@ -147,7 +147,7 @@
   depends=compile.dev.tests, compile.emma.if.enabled
   unless=compile.tests.complete
 mkdir dir=${javac.junit.out}/
-gwt.javac srcdir=test excludes=com/google/gwt/langtest/** 
destdir=${javac.junit.out}
+gwt.javac srcdir=test 
excludes=com/google/gwt/langtest/**,**/super/** 
destdir=${javac.junit.out}
   classpath
 pathelement location=${javac.out}/
 pathelement location=${gwt.tools.lib}/junit/junit-4.8.2.jar/

The second issue is that the requestfactory-apt.jar in the GWT Tools SVN 
repo appears to be out of date. Doing a dist-dev build and copying the 
newly generated -apt over to my local SVN checkout seems to bring this back 
into working order.

-- 
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 the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/79c83872-2dfc-4272-be9d-9b08845ace22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Michael Prentice
I hit the same thing last night. The fix you suggested may help with Ant, 
but it does not resolve the compile errors in Eclipse :( It doesn't look 
like Eclipse has any Annotations to ignore these types of severe errors 
either,

I just pulled in the 4 commits from today and they don't help with this:


   - List cannot be resolved to a type ImmediateCompileFails.java 
  - 
  
/gwt-user/core/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem
 line 
  20 Java Problem
   - ArrayList cannot be resolved to a type ImmediateCompileFails.java 
  - 
  
/gwt-user/core/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem
 line 
  20 Java Problem
   - The declared package 
   com.google.gwt.dev.testdata.incrementalbuildsystem does not match the 
   expected package 
   
com.google.gwt.dev.testdata.incrementalbuildsystem.super.com.google.gwt.dev.testdata.incrementalbuildsystem
 
  - ImmediateCompileFails.java 
  
/gwt-user/core/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem
 line 
  14 Java Problem
   
I also get errors on the Ant build even after replacing the 
requestfactory-apt.jar in the GWT Tools SVN repo with the output of my 
dist-dev build.

-- 
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 the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/98c574dc-ba43-4906-926b-9804f39a7533%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Michael Prentice
Full clean Ant build just finished and it passed with the build.xml tweak 
and the requestfactory-apt.jar update. Thanks Colin.

Eclipse still unhappy though of course.

Is there an issue/patch for this? Has anyone tracked down the original 
change set that caused this? I might be able to take a look in the morning 
if not.

On Friday, June 13, 2014 12:34:21 AM UTC-4, Michael Prentice wrote:

 I hit the same thing last night. The fix you suggested may help with Ant, 
 but it does not resolve the compile errors in Eclipse :( It doesn't look 
 like Eclipse has any Annotations to ignore these types of severe errors 
 either,

 I just pulled in the 4 commits from today and they don't help with this:


- List cannot be resolved to a type ImmediateCompileFails.java 
   - 
   
 /gwt-user/core/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem
  line 
   20 Java Problem
- ArrayList cannot be resolved to a type ImmediateCompileFails.java 
   - 
   
 /gwt-user/core/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem
  line 
   20 Java Problem
- The declared package 
com.google.gwt.dev.testdata.incrementalbuildsystem does not match the 
expected package 

 com.google.gwt.dev.testdata.incrementalbuildsystem.super.com.google.gwt.dev.testdata.incrementalbuildsystem
  
   - ImmediateCompileFails.java 
   
 /gwt-user/core/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem
  line 
   14 Java Problem

 I also get errors on the Ant build even after replacing the 
 requestfactory-apt.jar in the GWT Tools SVN repo with the output of my 
 dist-dev build.


-- 
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 the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/93d20ccf-91c2-491a-8519-f321bbab4535%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.