Re: SuperDevMode with 2.6.0-rc3 and logLevel
Hello,
Thanks, but the error in the Guava is ignored as we not use this class in a GWT class.
For the warning, thanks for explanation, theses code must be changed in futur developpement, that why I not correct it at this time.
I manage to use the super dev mode, the problem went from dependency libs (gwt-dnd).
But the question, is there a way to set the logLevel in Super Dev Mode ?
Thanks.
Patrice de Saint Steban
On Sat, Dec 7, 2013 at 2:24 PM, Jens <jens.nehlmeier@gmail.com> wrote:
[ERROR] Errors in 'jar:file:/C:/Users/sfeir/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/Lists.java'--
[ERROR] Line 595: No source code is available for type com.google.common.math.IntMath; did you forget to inherit a required module?
I would call that an error message ;) Can you make sure you Guava setup is correct? On first sight Guava's Collect.gwt.xml file does inherit Guava's Math.gwt.xml file which in turn makes a super sourced version of IntMath visible to the GWT compiler. So technically it should work. Maybe you just have some sort of Maven class path issue.Generating method body for communityPopUp()
Template with variable in URL attribute context: The template code generator will sanitize the URL. Use SafeUri to specify arguments in a URL attribute context that should not be sanitized.
Generating method body for eventPopUp()
Template with variable in URL attribute context: The template code generator will sanitize the URL. Use SafeUri to specify arguments in a URL attribute context that should not be sanitized.
If you want to fix these kind of warnings you should use SafeUri instead of String as parameter type for any kind of urls in your SafeHtmlTemplates. E.g. something like
@Template("<span class=\"{3}\">{0}: <a href=\"{1}\">{2}</a></span>")
SafeHtml messageWithLink(SafeHtml message, String url, String linkText, String style);
should be@Template("<span class=\"{3}\">{0}: <a href=\"{1}\">{2}</a></span>")
SafeHtml messageWithLink(SafeHtml message, SafeUri url, String linkText, String style);
-- J.
You received this message because you are subscribed to a topic in the Google Groups "Google Web Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/jikekBQr5O8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home