Re: Re : Developing GWT App using Tomcat

2011-09-07 Thread Sudhakar Abraham
To remove the GAE jars from the classpath, you uncheck GAE in the project properties. Step 1: Project -- Properties--Java Build path-- Libraries -- remove App Engine SDK jars. step 2 :Remove all jar from war\WEB-INF\lib except gwt-servlet, my- sql jars. S. Abraham www.DataStoreGwt.com On Sep

How to expand tree in GWT ?

2011-09-07 Thread Sanjay Jain India
I a using GWT 2.3.In which I am using import com.google.gwt.user.client.ui.Tree. I want to show tree expanded always.For that I did below code for every tree item treeItem.setState(true); But it is not working.I am not getting how to expand tree. Please help me out.Thanks in advance -- You

Re: JSNI - Managing arrays in native method

2011-09-07 Thread Alexandre Ardhuin
Hi, As said in http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html#passing-java, Java arrays appear to javascript as opaque value that can only be passed back into Java code. You have to use JsArray, JsArrayBoolean, JsArrayInteger, JsArrayNumber or JsArrayString to pass

Re: Re : Developing GWT App using Tomcat

2011-09-07 Thread Ashwani Sharma
Hi, Thanks all for you help. The java build path was causing the issue. Ideally, the IDE should remove the class-path container App Engine SDK when Use Google App Engine option is un-selected. Now development with embedded jetty server works very well. Best Regards, Ashwani Kr Sharma On Wed,

Split panel doubt

2011-09-07 Thread riyaz ahmed
Hi , I am using split panel for my UI, I have a scenario where i need to refresh the center panel with different widgets based on a few actions, for which i need to clear the center panel every time a new widget is assigned Can anyone please let me know how to do it -- Thanks in advance Riyaz

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-07 Thread Tiago Rinck Caveden
It seems I might indeed be the first one to encounter this problem, so I've opened an issue for it: http://code.google.com/p/google-web-toolkit/issues/detail?id=6767 Thanks, Tiago. On Fri, Sep 2, 2011 at 10:39 AM, Tiago Rinck Caveden cave...@gmail.comwrote: Hello again, Sorry for annoying

For JavascriptObject,what is counterpart for HashMap?

2011-09-07 Thread Alex Luya
I am change RPC to JSON ,Two questions: 1,Can I always change ArrayList to JsArray?In other worlds,JsArray is the counterpart of ArrayList,rigth? 2,What is the counterpart of HashMap?Should I construct a new one?or any existings?Or any example? -- You received this message because you are

editor framework suggestion ?

2011-09-07 Thread kim young ill
Hi gwt gurus i want to to use editorframework implement this: Person extends ValueProxy -name:String -attributes:ListKeyValueProxy KeyValueProxy extends ValueProxy -key:String -value:String want to populate a popup-editor where you can edit person : add/remove/edit attributes, change

Re: How to expand tree in GWT ?

2011-09-07 Thread Sanjay Jain India
found the solution.First Need to add child then need to set state true. private Tree createTree() { // Create a Tree TreeItem root = new TreeItem(root); root.addItem(item0); root.addItem(item1); root.addItem(item2); TreeItem childwithsubchilder = new TreeItem(subitmes);

Re: Help! Some confusing problems about gwt rpc with generics!

2011-09-07 Thread Ali Jalal
Hi Lan, I encounter this problem in my services, for more info see: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/64560785342d2dfd?hl=en Test this: If id type (K generic parameter) be a primitive-wrapper type (like Long or Integer) you will not get exception, but if K

Re: redirect GWT application URL

2011-09-07 Thread Qiang Ma
Hi, Thomas, I learned a lot from your latest answer. Thanks! caniuse.com's approach is exactly what I want. Can you give more details on how the redirecting is done for the comment below? So redirecting from /foo to #foo might be better (caniuse.com does just that: redirect /history to

Re: JSNI Unkown callback

2011-09-07 Thread Fabe
Indeed, I didn't think to encapsulate the Java call in an inline JS function. Works great ! Thank you Alexandre. On Sep 6, 5:22 pm, Alexandre Ardhuin alexandre.ardh...@gmail.com wrote: Hi, You can define an interface like : package myPackage; interface GetUrlCallback{   String

Re: Backend Socket Connection

2011-09-07 Thread J.Ganesan
What I understand from your problem statement is that your GWT front end has to asynchronously respond to an event fired by server. If you use App Engine, you can make use of Channel API. If not, make use of websockets (http://jwebsocket.org/). J.Ganesan www.DataStoreGwt.com On Sep 7, 5:48 am,

is there are complete of wbp source tags for gwt?

2011-09-07 Thread Elhanan
except found in here? http://code.google.com/javadevtools/wbpro/DesignerCustomizationAPI.pdf -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

how to make panel fill in the whole body?

2011-09-07 Thread wahaha
how to make a panel in the body element,and full filled the body. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: cnn news portelt

2011-09-07 Thread yashujn
somebody plz plz plz plz rply On Sep 6, 11:04 am, yashujn yashssha...@gmail.com wrote: hello everyone,                        i want to create a portel like cnn news(available in igoogle) can somebody plz help me how to devlope it. i am using ext gwt in eclipse and i am able to

Refresh and Maximize options not working

2011-09-07 Thread yashujn
Hi All, I am new in ext gwt. I am using Windows xp + Eclipse (Helios) + EXT GWT. I am trying to devlope portal similar to igoogle but in my portlets refresh and maximze button not working... somebody plz help about this. Tool refresh = new Tool(Tool.REFRESH, new Function(){ publicvoid

what is a BitlessEvent?

2011-09-07 Thread wahaha
what is a BitlessEvent,and what is the difference betten this to a normal Event ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send

Change image of an image cell on click

2011-09-07 Thread Sven
Hi everybody, I am trying to change the image of an image cell on click. My code looks like this: final TrafficLightCell imageCell = new TrafficLightCell(); ColumnSomewhat, ImageResource potentiallyAffectedColumn = new ColumnSomewhat, ImageResource(

Re: For JavascriptObject,what is counterpart for HashMap?

2011-09-07 Thread dreamer
JSON is equivalent to XML without tags not directly to java. Though java objects can be marshelled into xml and then to json. So I guess all collection types are converted into json arrays. If you see at high level java/javascript object can contain another object or collection of object or

Re: redirect GWT application URL

2011-09-07 Thread Thomas Broyer
On Wednesday, September 7, 2011 1:04:59 PM UTC+2, maq wrote: Hi, Thomas, I learned a lot from your latest answer. Thanks! caniuse.com's approach is exactly what I want. Can you give more details on how the redirecting is done for the comment below? So redirecting from /foo to #foo might

GWT + No Java Server

2011-09-07 Thread Fabe
Hi, Maybe the question can seem weird but I was wondering whether it is possible to build something else than a WAR with GWT and especially, whether it is possible to build all combinations of HTML+JavaScript sources without any part of Java code/files. The idea would be to host those files on a

Creating ReadOnly Tree

2011-09-07 Thread rahul
I have created a tree which has its nodes taken from datasource. Now i have to use that tree for view purpose only(It is a combobox tree(Multiple Select)). So how i can do that one. Disabling the widget had almost work for me but it is not the way since i cannot use the expand button . All i need

Re: Unable to parse module

2011-09-07 Thread Alexandre Dupriez
Hello Fabio. Do you achieve to get the application running in dev mode? Could you please provide us with the content of your WEB-INF\web.xml file? Regards, A. On 6 sep, 15:12, Fábio Marigo fabiomar...@gmail.com wrote: Could someone help me with the error below? I am having trouble trying to

Re: What about non Javascript sites?

2011-09-07 Thread Alexandre Dupriez
Hello, Could you please tell us more about the tier application you would have to maintain? Which technology is used, if not Javascript? On 6 sep, 15:43, raks rakesh.mailgro...@gmail.com wrote: Hi, I am very taken with GWT and I believe will make maintaining my company's site easier.

Aw: Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-07 Thread StefanR
You can use the OpenEntityManagerInView pattern (servlet filter with Spring) to ensure a EntityManager session is open during the RF-request. Regards, Stefan. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-07 Thread Tiago
Hello Stefan, Thank you for your answer. Yes, I could do that, but then I would be loading unnecessary data from the DB. Depending on the entity graph, that could go really far. In order words, that just switches one problem for another. The correct solution is not to have these unnecessary

Re: JSNI - Managing arrays in native method

2011-09-07 Thread Jésica
Thanks for your help Alexandre, I would like to add more context to the issue I'm facing: I have a domain object called Location, with the following structure: public class Location{ Double latitude; Double longitude; (...) }

Re: JSNI - Managing arrays in native method

2011-09-07 Thread Alexandre Ardhuin
Hi, You should use Overlays (see http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsOverlay.html ) In your case : public class Location extends JavaScriptObject { public static final native Location create(double latitude, double longitude) /*-{ return

Re: Unable to parse module

2011-09-07 Thread Thomas Broyer
Huh! Using a two-and-half year old (and discontinued) maven plugin and an almost-three year old GWT (1.5.3) is probably not a good idea, to start with! You'd better move to the gwt-maven-plugin and a more recent GWT version (the most recent as far as possible), then try again. -- You

Re: GWT + No Java Server

2011-09-07 Thread Michael Vogt
Hi. The idea would be to host those files on a non Java server, a classic Apache 2 server for instance. Server treatments could be in PHP or something else (but not generated by GWT of course). Is this possible? Absolutely. When you use REST for server access. you get a completely server

CellTable / Column based on NumberCell, wrapping problem

2011-09-07 Thread Christophe
Hi, I have a TableCell, with a Column?,Number created on a NumberCell. My numberCell uses a NumberFormat where groupingSeparator is a space ( ). I have too much columns to fit in a single page, and if column header is too small, the numbers are wrapped. I can't find any method to force a nowrap

Re: What about non Javascript sites?

2011-09-07 Thread karim duran
Hi Raks Alexandre, Absolutely. It is even recommended to have a standard behavior if javascript is disabled (which is rare these days). To do this, create web pages with a traditional business logic. They will be displayed without javascript enabled. If javascript is on, it must dynamically

Re: CellTable / Column based on NumberCell, wrapping problem

2011-09-07 Thread Jeff Larsen
you'll just have to add it with inside column (2.4rc1) There is a method public void setCellStyleNames(String styleNames) { this.cellStyleNames = styleNames; } where it links to a style where you set white-space:nowrap; -- You received this message because you are subscribed to

Re: Request implementation couldn't be found.

2011-09-07 Thread Nik
To handle server-side errors I have defined an custom servlet extending the default RequestFactoryServlet and passed a custom exception handler in the constructor.. That has shown me a real causes of my problem located on the server side. Good tutorial to define a custom servlet can be found

How to combine client-only and server-only code in an integration test?

2011-09-07 Thread Michael Würtinger
Hi folks, I'm using a mechanism to pass bootstrapping information embedded in the host page (which is a servlet/jsp combination) from the server to the client. The bootstrapping information contains vital information which is required during client start up which saves one client/server round

Overriding themes

2011-09-07 Thread Tobias
Hi, I am trying to customize the look of my application. My plan was to keep one of the default themes and override just those styles that I want to change. My first attempt was to add the overridden styles to the CSS file that I am including in my HTML host page using link ... But unfortunately

jQuery plugins

2011-09-07 Thread Darnok
I've developed a jQuery widget that makes use of jQuery plugins, which works fine standalone. However, once plugged into GWT, it seems not to wait for the jQuery plugins... I load the plugins with: module script src=js/hcView/jquery.min.js/ script src=js/hcView/jquery-ui.min.js/

Set html field from GWT code?

2011-09-07 Thread Ahmed
Hello, I have a GWT application that need to set html field from java code(GWT) i tried this but element is always null Element element = Document.get().getElementById(progressStatus); if (element != null) { GWT.log(found element with id: +

Re: JSNI - Managing arrays in native method

2011-09-07 Thread Jésica Cuello
Thanks a lot Alexandre!, It worked like a charm! Jésica. On Wed, Sep 7, 2011 at 11:31 AM, Alexandre Ardhuin alexandre.ardh...@gmail.com wrote: Hi, You should use Overlays (see http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsOverlay.html ) In your case : public class

Re: HTML5 local object persistence for GWT

2011-09-07 Thread joergviola
Hi, just a remark: You can now use direct object references in your persistent class: class A { long id; B b; } if A and B are Persistable. b will be put and get EAGER, so beware of performance issues! I plan to support a Lazy Annotation that instantiates only empty objects with the ID and

Re: HTML5 local object persistence for GWT

2011-09-07 Thread joergviola
Yepp, something like that would work. I am currently working on persisting object graphs eagerly. When I come across the local storage I will take a look at piriti again. Please use http://groups.google.com/group/mobile-objects-discuss for further discussions. On 31 Aug., 11:20, Harald Pehl

RichTextArea and valueChangeHandler

2011-09-07 Thread Rick Poleshuck
Has anyone implemented or knows how to implement a ValueChangeHandler on a RichTextArea similar to TextArea? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: One codebase for all sorts of targets??

2011-09-07 Thread Marc Graham
Thanks for your help! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

All EntityProxies inside ValueProxy inside Collection do not get properties populated?

2011-09-07 Thread Kevin Jordan
I have a ValueProxy which references an EntityProxy to add some data to return to the client, in this case a child count for the current branch in a tree structure. I want properties reference from the EntityProxy, but only one Entity seems to have the getter on my domain object called.

Re: Menu options missing in GWT Designer

2011-09-07 Thread Eric Clayberg (Google)
Those 3rd party features are only supported by the full version of GWT Designer available herehttp://code.google.com/webtoolkit/tools/download-gwtdesigner-beta.html . -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-07 Thread Alain Ekambi
Hello folks, Some days ago we introduced * Gwt4Titanium Mobile*, which aims to give developers the ability to write* native mobile applications* for Android and IOS by leveraging *GWT* and the* Appcelerator Titanium Platform*. Next to provide a *100% coverage of the Titanium API*, we added

multithreading in Jetty(not exactly what I mean)

2011-09-07 Thread wasyl
Hi. I'm a newbie in GWT and my JAVA skills aren't to good as well. In order to learn these technologies I'm trying to implement an e-mail client. Time needed to get all messages (say: 200) from mail-server is quite long (using pop3). My solution looks like that: User puts access data in

Re: multithreading in Jetty(not exactly what I mean)

2011-09-07 Thread Juan Pablo Gardella
each request is handled by a different thread, but the servlet is a singleton. 2011/9/7 wasyl wass...@gmail.com Hi. I'm a newbie in GWT and my JAVA skills aren't to good as well. In order to learn these technologies I'm trying to implement an e-mail client. Time needed to get all messages

TextShadow won't apply

2011-09-07 Thread Evan Ruff
I think I might be going crazy. I have a Label element. I'm trying to apply a simple text shadow using: myLabel.getElement().getStyle().setProperty( textShadow, #000 5px 5px 5px ); and it does not show up. I've also tried: DOM.setStyleAttribute( myLabel.getElement(), textShadow, #FFF 5px 5px

Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-07 Thread Gal Dolber
now is a good deal! Great job! On Wed, Sep 7, 2011 at 7:26 PM, Alain Ekambi jazzmatad...@googlemail.comwrote: Hello folks, Some days ago we introduced * Gwt4Titanium Mobile*, which aims to give developers the ability to write* native mobile applications* for Android and IOS by leveraging

RequestBuilder doesnt work

2011-09-07 Thread wahaha
i tested the RequestBuilder class,it does not work. final RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, http://code.google.com/intl/zh-CN/webtoolkit/doc/1.6/tutorial/ RPC.html); rb.setCallback(new RequestCallback()

Re: TextShadow won't apply

2011-09-07 Thread Gal Dolber
that should work, why don't you use myLabel.getElement().getStyle().setProperty(textShadow, ...) ? On Wed, Sep 7, 2011 at 10:54 PM, Evan Ruff evan.r...@gmail.com wrote: I think I might be going crazy. I have a Label element. I'm trying to apply a simple text shadow using:

Re: TextShadow won't apply

2011-09-07 Thread Gal Dolber
never mind... On Thu, Sep 8, 2011 at 1:55 AM, Gal Dolber gal.dol...@gmail.com wrote: that should work, why don't you use myLabel.getElement().getStyle().setProperty(textShadow, ...) ? On Wed, Sep 7, 2011 at 10:54 PM, Evan Ruff evan.r...@gmail.com wrote: I think I might be going crazy. I

Multiple application versions on one code basis

2011-09-07 Thread Raivis Vasilevskis
Hello all! I am about to start new and quite complex project (desktop like RIA, with many dialogboxes and other stuff that desktop app has). I've been studying how to implement MVP pattern quite a lot and there shouldn't be any problems on that. What worries me is that this app has to be accessed

[gwt-contrib] How to expand tree in GWT ?

2011-09-07 Thread Sanjay Jain
I am using GWT 2.3.In which I am using import com.google.gwt.user.client.ui.Tree. I want to show tree expanded always.For that I did below code for every tree item treeItem.setState(true); But it is not working.I am not getting how to expand tree. Please help me out.Thanks in advance --

[gwt-contrib] Re: ui:with to set property values (issue1524803)

2011-09-07 Thread Rafael Castro
+hermes On Tue, Sep 6, 2011 at 8:35 PM, jus...@jhickman.com wrote: I was able to test this and verified successful generation when setting the configuration property to true: set-configuration-property name=UiBinder.useLazyWidgetBuilders value=true/ Since the implementation I'm presenting

[gwt-contrib] Re: Fixes and cleanup to expenses sample pom.xml (issue1534805)

2011-09-07 Thread rchandia
Submitted as r10598 http://gwt-code-reviews.appspot.com/1534805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes for MobileWebApp pom.xml (issue1520809)

2011-09-07 Thread rchandia
Submitted as r10603 http://gwt-code-reviews.appspot.com/1520809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Ensures that we cleanup CellTree nodes when we are done using them. Currently, some deleted node... (issue1542803)

2011-09-07 Thread jlabanca
Reviewers: skybrian, Description: Ensures that we cleanup CellTree nodes when we are done using them. Currently, some deleted nodes aren't cleaned up, which leads to JS errors when the last node of a CellTree is removed. Even when the errors do not occur, forgetting to cleanup the nodes leaves

[gwt-contrib] Less Name Mangling (issue1542804)

2011-09-07 Thread stephen . haberman
Reviewers: cromwellian, Please review this at http://gwt-code-reviews.appspot.com/1542804/ Affected files: M dev/core/src/com/google/gwt/core/ext/typeinfo/JClassType.java M dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java M dev/core/src/com/google/gwt/dev/asm/Type.java M

[gwt-contrib] Re: Less Name Mangling (issue1542804)

2011-09-07 Thread stephen . haberman
http://gwt-code-reviews.appspot.com/1542804/diff/1/dev/core/src/com/google/gwt/dev/javac/CompilationStateBuilder.java File dev/core/src/com/google/gwt/dev/javac/CompilationStateBuilder.java (right):

[gwt-contrib] [google-web-toolkit] r10617 committed - Adds requestfactory-apt-src to the RF produced artifacts...

2011-09-07 Thread codesite-noreply
Revision: 10617 Author: rchan...@google.com Date: Wed Sep 7 04:43:34 2011 Log: Adds requestfactory-apt-src to the RF produced artifacts Review at http://gwt-code-reviews.appspot.com/1540803 http://code.google.com/p/google-web-toolkit/source/detail?r=10617 Modified:

[gwt-contrib] Re: Adds requestfactory-apt-src to the RF produced artifacts (issue1540803)

2011-09-07 Thread rchandia
Submitted as r10617 http://gwt-code-reviews.appspot.com/1540803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Updates pom.xml to use new Request Factory libraries (issue1541803)

2011-09-07 Thread drfibonacci
LGTM http://gwt-code-reviews.appspot.com/1541803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10618 committed - Cherry picking r10617 into releases/2.4

2011-09-07 Thread codesite-noreply
Revision: 10618 Author: rchan...@google.com Date: Wed Sep 7 05:23:59 2011 Log: Cherry picking r10617 into releases/2.4 http://code.google.com/p/google-web-toolkit/source/detail?r=10618 Modified: /releases/2.4/requestfactory/build.xml === ---

[gwt-contrib] [google-web-toolkit] r10619 committed - Updates pom.xml to use new Request Factory libraries...

2011-09-07 Thread codesite-noreply
Revision: 10619 Author: rchan...@google.com Date: Wed Sep 7 05:15:46 2011 Log: Updates pom.xml to use new Request Factory libraries Review at http://gwt-code-reviews.appspot.com/1541803 http://code.google.com/p/google-web-toolkit/source/detail?r=10619 Modified:

[gwt-contrib] dependencies/qualified refs

2011-09-07 Thread Stephen Haberman
Hi, There was one place in the name mangling that I had to leave an ugly replacement: https://github.com/stephenh/scalagwt-gwt/blob/embed/dev/core/src/com/google/gwt/dev/javac/CompilationStateBuilder.java#L109 allValidClasses is by internal name now, but the qualified references coming from ecj

Re: [gwt-contrib] less name mangling

2011-09-07 Thread Stephen Haberman
We chatted, and Ray C is up for reviewing this, but I'm afraid it'll be the usual maybe-this-week drill. No problem. I uploaded the patch as: http://gwt-code-reviews.appspot.com/1542804/ Thanks! - Stephen -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread rchandia
http://gwt-code-reviews.appspot.com/1520810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread rchandia
Ready for review! http://gwt-code-reviews.appspot.com/1520810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread rjrjr
Mark, could you review this too? http://gwt-code-reviews.appspot.com/1520810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread rchandia
http://gwt-code-reviews.appspot.com/1520810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread rchandia
http://gwt-code-reviews.appspot.com/1520810/diff/1/maven/poms/gwt/gwt-servlet/pom-template.xml File maven/poms/gwt/gwt-servlet/pom-template.xml (right): http://gwt-code-reviews.appspot.com/1520810/diff/1/maven/poms/gwt/gwt-servlet/pom-template.xml#newcode15

[gwt-contrib] Re: Updates pom.xml to use new Request Factory libraries (issue1541803)

2011-09-07 Thread rchandia
Submitted as r10619 http://gwt-code-reviews.appspot.com/1541803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread rjrjr
http://gwt-code-reviews.appspot.com/1520810/diff/12001/maven/lib-gwt.sh File maven/lib-gwt.sh (right): http://gwt-code-reviews.appspot.com/1520810/diff/12001/maven/lib-gwt.sh#newcode87 maven/lib-gwt.sh:87: maven-deploy-file $mavenRepoUrl $mavenRepoId $jarExpandDir-user/gwt-user-sources.jar

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-07 Thread t . broyer
http://gwt-code-reviews.appspot.com/1520810/diff/12001/maven/poms/requestfactory/pom-template.xml File maven/poms/requestfactory/pom-template.xml (right): http://gwt-code-reviews.appspot.com/1520810/diff/12001/maven/poms/requestfactory/pom-template.xml#newcode25

[gwt-contrib] [google-web-toolkit] r10620 committed - Cherry picking r10619 into releases/2.4

2011-09-07 Thread codesite-noreply
Revision: 10620 Author: rchan...@google.com Date: Wed Sep 7 06:20:38 2011 Log: Cherry picking r10619 into releases/2.4 http://code.google.com/p/google-web-toolkit/source/detail?r=10620 Modified: /releases/2.4/samples/mobilewebapp/pom.xml === ---

[gwt-contrib] Re: Event handling support for UiRenderer (issue1534806)

2011-09-07 Thread rjrjr
http://gwt-code-reviews.appspot.com/1534806/diff/10001/user/src/com/google/gwt/uibinder/client/impl/AbstractUiRenderer.java File user/src/com/google/gwt/uibinder/client/impl/AbstractUiRenderer.java (right):

[gwt-contrib] Re: Serialization of Final Fields in RPC (issue1380807)

2011-09-07 Thread zhuyi
http://gwt-code-reviews.appspot.com/1380807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Serialization of Final Fields in RPC (issue1380807)

2011-09-07 Thread zhuyi
On 2011/09/07 18:00:10, zhuyi wrote: I test this through the entire test suite. It still broke one case (testEnumArray): http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/user/client/rpc/CollectionsTest.java?r=8394#268 It seems that something is not

[gwt-contrib] Re: Event handling support for UiRenderer (issue1534806)

2011-09-07 Thread rchandia
http://gwt-code-reviews.appspot.com/1534806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Event handling support for UiRenderer (issue1534806)

2011-09-07 Thread rchandia
http://gwt-code-reviews.appspot.com/1534806/diff/10001/user/src/com/google/gwt/uibinder/client/impl/AbstractUiRenderer.java File user/src/com/google/gwt/uibinder/client/impl/AbstractUiRenderer.java (right):

[gwt-contrib] Re: Ensures that we cleanup CellTree nodes when we are done using them. Currently, some deleted node... (issue1542803)

2011-09-07 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1542803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Event handling support for UiRenderer (issue1534806)

2011-09-07 Thread Ray Ryan
LGTM On Wed Sep 07 11:50:58 GMT-700 2011, rchan...@google.comgt wrote:

[gwt-contrib] Re: Update the missing plugin page to stop taunting Safari 5.1 users, and (issue1536803)

2011-09-07 Thread knorton
lgtm. http://gwt-code-reviews.appspot.com/1536803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10623 committed - added corrected svn:mime-type

2011-09-07 Thread codesite-noreply
Revision: 10623 Author: mrruss...@google.com Date: Wed Sep 7 12:38:49 2011 Log: added corrected svn:mime-type http://code.google.com/p/google-web-toolkit/source/detail?r=10623 Modified: /javadoc/2.4/index.html /javadoc/2.4/stylesheet.css --

[gwt-contrib] [google-web-toolkit] r10624 committed - Ensures that we cleanup CellTree nodes when we are done using them. Cu...

2011-09-07 Thread codesite-noreply
Revision: 10624 Author: jlaba...@google.com Date: Wed Sep 7 09:07:21 2011 Log: Ensures that we cleanup CellTree nodes when we are done using them. Currently, some deleted nodes aren't cleaned up, which leads to JS errors when the last node of a CellTree is removed. Even when the

[gwt-contrib] Re: Event handling support for UiRenderer (issue1534806)

2011-09-07 Thread rchandia
Submitted as r10627 http://gwt-code-reviews.appspot.com/1534806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10625 committed - added corrected svn:mime-type

2011-09-07 Thread codesite-noreply
Revision: 10625 Author: mrruss...@google.com Date: Wed Sep 7 12:41:19 2011 Log: added corrected svn:mime-type http://code.google.com/p/google-web-toolkit/source/detail?r=10625 Modified: /javadoc/2.4/allclasses-frame.html /javadoc/2.4/allclasses-noframe.html

[gwt-contrib] [google-web-toolkit] r10626 committed - added corrected svn:mime-type

2011-09-07 Thread codesite-noreply
Revision: 10626 Author: mrruss...@google.com Date: Wed Sep 7 12:42:07 2011 Log: added corrected svn:mime-type http://code.google.com/p/google-web-toolkit/source/detail?r=10626 Modified: /javadoc/2.4/resources/inherit.gif --

[gwt-contrib] [google-web-toolkit] r10629 committed - Updating javadoc/latest for release 2.4

2011-09-07 Thread codesite-noreply
Revision: 10629 Author: mrruss...@google.com Date: Wed Sep 7 13:16:52 2011 Log: Updating javadoc/latest for release 2.4 http://code.google.com/p/google-web-toolkit/source/detail?r=10629 Deleted: /javadoc/latest -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10630 committed - Updating javadoc/latest for release 2.4

2011-09-07 Thread codesite-noreply
Revision: 10630 Author: mrruss...@google.com Date: Wed Sep 7 13:18:12 2011 Log: Updating javadoc/latest for release 2.4 http://code.google.com/p/google-web-toolkit/source/detail?r=10630 Added: /javadoc/latest -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] dependencies/qualified refs

2011-09-07 Thread Ray Ryan
Scott says: Stephen misunderstands what Dependencies.apiRefs means (which isn't suprising, it's not well commented). The simple and qualified references answer the question What references do I depend on to correctly parse and resolve the source code? Api refs answer the question What program

[gwt-contrib] [google-web-toolkit] r10631 committed - Update the missing plugin page to stop taunting Safari 5.1 users, and...

2011-09-07 Thread codesite-noreply
Revision: 10631 Author: gwt.mirror...@gmail.com Date: Wed Sep 7 15:49:25 2011 Log: Update the missing plugin page to stop taunting Safari 5.1 users, and suggest they try out OmniWeb. Review at http://gwt-code-reviews.appspot.com/1536803 Review by: knor...@google.com

[gwt-contrib] Re: Less Name Mangling (issue1542804)

2011-09-07 Thread stephen . haberman
I found some issues with JSNI and am still poking around, so this is not ready for review yet. http://gwt-code-reviews.appspot.com/1542804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] jsni refs

2011-09-07 Thread Stephen Haberman
Hi, It looks like JSNI refs can be either source names or binary names? I found a gwt-contrib discussion from 2009, talking deprecating anonymous inner classes in JNSI [1], and John tangentially mentioned it'd be nice to just pick one of source or binary names in JSNI refs for the 1.6 release.

Re: [gwt-contrib] jsni refs

2011-09-07 Thread Stephen Haberman
Did that decision ever happen? ...would it be an option on the table if not? grepping through the GWT source, I see usages of both source and binary names of inner classes. Shoot. So, that answers my first question. - Stephen -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] GWT 2.4 Download

2011-09-07 Thread Daniel Bell
In case it was missed, the download link on the Google Code site for what appears to be v2.4.0 says GWT 2.4.0 RC1 (for all platforms) ( http://code.google.com/p/google-web-toolkit/downloads/list). -- http://groups.google.com/group/Google-Web-Toolkit-Contributors