Re: Supersourcing own clode and maintenance

2014-05-20 Thread Jens
* What if I have a basic exception class that will use the new constructor introduced in Java 1.7 with the two booleans but I also want to use the exception classes in shared code? https://gwt-review.googlesource.com/#/c/7661/ -- J. -- You received this message because you are

Re: Log4j problems in GWT/Maven project

2014-05-20 Thread Arthur Rosenzahl
Unfortunately, this did not fix the problem :( -- You received this message because you are subscribed to the Google Groups Google Web Toolkit 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

GWT compilation failed

2014-05-20 Thread giovanni . pinheiro
I am developping a GWT Application and when I was about to compile I got a message GWT Compilation Failed without any stacktrace. Then I've tried something even simpler, like creating the sample application and I've got Creation of element failed. Reason: Invocation of

Re: Need help with [ERROR] Annotation error: while doing GWT compile

2014-05-20 Thread George Varghese
You have to compile your java source files and add the classes directory to your classpath On Thursday, May 9, 2013 4:13:45 PM UTC-5, Asha Paul wrote: Hello Sanjeev: What exactly did you do to get rid of the error? Thank you, Asha On Tuesday, October 5, 2010 4:42:16 PM UTC-4, Sanjeev

Re: GWT compilation failed

2014-05-20 Thread Juan Pablo Gardella
Try this workaround: https://code.google.com/p/google-web-toolkit/issues/detail?id=5586 2014-05-19 18:59 GMT-03:00 giovanni.pinhe...@vilt-group.com: I am developping a GWT Application and when I was about to compile I got a message GWT Compilation Failed without any stacktrace. Then I've

Re: extend UiBinder engine

2014-05-20 Thread Zied Hamdi OneView
Hi Joseph and Jens, I didn't have the time to answer to your comments yesterday. *Instead of @RequireRole(superAdmin) you would then use @RequirePermission(canMakePersonToAdmin) . * It's pretty the same: my issue is that I cannot group widgets under the same umbrella : nothing says that is a

Re: extend UiBinder engine

2014-05-20 Thread Jens
I didn't have the time to answer to your comments yesterday. *Instead of @RequireRole(superAdmin) you would then use @RequirePermission(canMakePersonToAdmin) . * It's pretty the same: my issue is that I cannot group widgets under the same umbrella : nothing says that is a profile

Re: extend UiBinder engine

2014-05-20 Thread Zied Hamdi OneView
What I was wondering is, if you do that permission thing inside GWT's FieldWriter then isn't it annoying that you now must assume that all security relevant @UiFields may be null? So you must do quite a bit of null checks and deal with the fact that GWT developers normally think that a

Re: Hi Ajax experts, can Google spider read the content of Ajax app (that does not have any code to to make it Crawlable) by itself?

2014-05-20 Thread Joseph Lust
I misspoke, *Fetch As Google *will show you the HTML and request headers, what I was thinking of was *Labs Instant Previews* In the example below you can see the rendered subpage of the site that is totally AJAX driven:

GWT view reloads when I display another view - how do I clear it?

2014-05-20 Thread Glyndwr Bartlett
I have an application with a number of views. The sequence I am following is: - When the application starts it displays the Login view. - When I login the SelectPerson view is displayed showing the selectable images of a number of people. - When I select an image the AwardOverview

DeckLayoutPanel Sliding Views

2014-05-20 Thread Paul Mazzuca
By default a DeckLayoutPanel slides views from right to left in 2.6. However when returning to a previously loaded widget, rather than doing the opposite direction, the DeckLayoutPanel still slides right to left. In 2.5 this was not the case. Did something change? Is there an easy way to

[gwt-contrib] Errors in eclipse on gwt-user after cloning git

2014-05-20 Thread Zied Hamdi OneView
Hi Gwt friends :) I wanted to start contributing to GWT, so I followed the instructions until I arrived to the point of using my eclipse. There I have the following errors (and since I don't want to change code that I don't want to submit I'm kind of stuck in what to do now?). The errors are

[gwt-contrib] Re: Errors in eclipse on gwt-user after cloning git

2014-05-20 Thread Zied Hamdi OneView
I also have a doubt with the task in eclipse/README.txt : Project-Properties-Java Compiler-AnnotationProcessor-Factory Path - Add Variable - Select GWT_TOOLS and click Extend - Select lib/requestfactory and the most recently dated requestfactory-apt--MM-DD.jar the only one with a

[gwt-contrib] Re: Errors in eclipse on gwt-user after cloning git

2014-05-20 Thread Jens
See: https://groups.google.com/d/msg/google-web-toolkit-contributors/Ik4JOg-qIGk/PILkmFRz4gwJ Some errors can be ignored because they are produced by the Google Eclipse plugin. The RequestFactory errors can be solved by using an updated requestfactory-apt.jar (so you need to build GWT once).

Re: [gwt-contrib] Emma or JaCoCo support needs some attention

2014-05-20 Thread Jens
You can actually use JaCoCo with GWT but test coverage is not 100% correct. I do it through Gradle in a small private project. However some lines that a test do hit are not detected by JaCoCo. So reported coverage is less than it should be. Thats probably what the patched emma has corrected.

[gwt-contrib] Re: Errors in eclipse on gwt-user after cloning git

2014-05-20 Thread Jens
Can someone please change it to ease the process of contributing? (I still don't have the right to contribute: no answer from the electronic terms sign submission) You don't get a reply when using the online form at https://developers.google.com/open-source/cla/individual?csw=1 However

[gwt-contrib] Re: Errors in eclipse on gwt-user after cloning git

2014-05-20 Thread Zied Hamdi OneView
Perfect Jens :-), Thanks a lot for all these valuable answers!! I can get started now Le mardi 20 mai 2014 11:26:09 UTC+1, Zied Hamdi OneView a écrit : Hi Gwt friends :) I wanted to start contributing to GWT, so I followed the instructions until I arrived to the point of using my eclipse.

Re: [gwt-contrib] Emma or JaCoCo support needs some attention

2014-05-20 Thread Nicolas Wetzel
HI ! did you try gwt-test-utils ? it's a very good tool for testing widgets and more without GWTTestCase. 2014-04-11 21:11 GMT+02:00 David david.no...@gmail.com: Any plans to improve unit testing abilities so that we might be able to do more unittesting without using GWTTestCase ? I've

[gwt-contrib] Re: Errors in eclipse on gwt-user after cloning git

2014-05-20 Thread Thomas Broyer
After you compile with Ant, select the requestfactory-apt.jar you just built for use in Eclipse (GWT_ROOT/build/lib/requestfactory-apt.jar) We should definitely fix the instructions (feel free to provide the patch) On Tuesday, May 20, 2014 12:26:09 PM UTC+2, Zied Hamdi OneView wrote: Hi Gwt

Re: [gwt-contrib] Emma or JaCoCo support needs some attention

2014-05-20 Thread David
Hi Nicolas, No I did not try that one. I tried GWT Mockito which looked promising and I actually managed to test a few widgets until someone added CssResources and other GWT features and then GWTMockito just exploded with a generic error that I should try disabling the classloading cache. I am

Re: [gwt-contrib] Emma or JaCoCo support needs some attention

2014-05-20 Thread Jonathan Fuerth
Hey David, Christian Sadilek and I found a working solution to the GWTTestCase vs JaCoCo problem. Of course, it doesn't make GWTTestCase any faster, but it does give you correct coverage reporting for your test cases. Instructions are here: https://github.com/errai/jacoco-gwt-maven-plugin

Re: [gwt-contrib] Emma or JaCoCo support needs some attention

2014-05-20 Thread John A. Tamplin
On Tue, May 20, 2014 at 1:12 PM, David david.no...@gmail.com wrote: No I did not try that one. I tried GWT Mockito which looked promising and I actually managed to test a few widgets until someone added CssResources and other GWT features and then GWTMockito just exploded with a generic error