GWT Serialization--Default Constructor Presence

2011-05-24 Thread Nitish Upreti
I noticed that all the Model classes which need to implement 'Serializable' interface need to have a default constructor in order to work properly. The Serialization otherwise fails. Why is it so? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Get keypress info without an event.

2011-05-24 Thread Gabriel
Hi, I think what you want can be done by calling sinkEvents(Event.ONKEYPRESS) in the constructor and overriding onBrowserEvent() like so: @Override public void onBrowserEvent(Event event) { super.onBrowserEvent(event); if(event.getTypeInt == Event.ONKEYPRESS) { // your logic here

Re: GWT Serialization--Default Constructor Presence

2011-05-24 Thread Gabriel
Since reflection is used to instantiate the classes with something like SerializedType.newInstance() , the default constructor has to be present. If the mechanism would allow for instantiation using non- default constructor, that would have required more configuration in your code and also that

Please send some sample code in detail for Gwt server side method unit test cases.

2011-05-24 Thread Rupesh
Hi, Please send some sample code for writing Unit test case on the Gwt server side method. Here Inside the method I am creating the HttpSession object. I am not able to create the same HttpSession object while writing unit test case on same method. I tried different approaches for mocking the

Re: adding code to RequestFactory Proxy

2011-05-24 Thread Claude
Hey, You can define and implement your methods on the server side, and then simply add them in your Proxy class, that's all. class Meeting { public boolean isStarted() { return getStartTime() != null ); public boolean isFinished() { return getStopTime() != null );

Re: Please send some sample code in detail for Gwt server side method unit test cases.

2011-05-24 Thread Max Jonas Werner
Hi Rupesh, I don't think this has anything to do with GWT. Perhaps you'll have more luck asking the folks on the EasyMock mailing list at http://tech.groups.yahoo.com/group/easymock/ or read the Spring docs at http://www.springsource.org/documentation. You should consider posting some more

Re: Setting Up A Login Page To Use SSL

2011-05-24 Thread Max Jonas Werner
Nick, two points: 1. Have you considered using TLS/SSL for your complete application? Without that a MITM would still be able to sniff the session cookie and act on behalf of the user, sniff users' data, modify data on the way between server and client and so on. 2. If you really really want

How to kill window close event directly?

2011-05-24 Thread Alex Luya
I know window.onbeforeunload can do it by JSNI,but my question is how to kill this event directly without any confirmation? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Issue in method anonymous class in GWT

2011-05-24 Thread ankit
Thnks Jens for ur reply...but as far as i know u thought that that my anonymous class method is not getting call. but it is not so. my anonymous class method is executing but only after the execution of outer method. On May 23, 3:50 pm, Jens jens.nehlme...@gmail.com wrote: Maybe I don't get

Re : Aw: [UIBinder] UIField mapping with a name different between template and Java classH

2011-05-24 Thread mat.gwt
Jens, Thank you for your reply. I already thought to this kind of annotation to define the mapping. It's reassuring to see you had the same idea :) I will investigate on how extend UIBinder generator... and request this new feature. Could you send me the URL of the bug tracker? Have a nice

Aw: Re: Issue in method anonymous class in GWT

2011-05-24 Thread Jens
No I assumed you call your model.setRecords() method inside the model() method (because thats the only place where you can call it). So in my example the call label.setText() would by the model.setRecords() call in your example. It has to be executed in order. Just imagine your anonymous

Problem with Long in Javascript JNI overlay types

2011-05-24 Thread Eugen Paraschiv
I'm having a problem with the conversion of a JSON to a JNI overlay type. The java code has to following method: long nr = 10l; public Long getNr() { return nr; } The JNI overlay type is: public final native Long getNr() /*-{ return this.nr; }-*/; I'm avoiding operating with the

Aw: Re : Aw: [UIBinder] UIField mapping with a name different between template and Java classH

2011-05-24 Thread Jens
Here you go: http://code.google.com/p/google-web-toolkit/issues/list If you try the annotation approach just keep in mind to disable the @UiField check the Google Plugin does (It marks your java file with an error if a given @UiField variable is not found in the corresponding *.ui.xml file). I

GWT, Eclipse, Maven Multi-Modules and Hosted Mode

2011-05-24 Thread Joern
Hi, I'm having a GWT module MyGwtModule that shall be used in multiple web applications and I created a Maven and Eclipse project for it. The Maven build creates a simple Jar file containing the compiles classes of the server, shared and client layer and additionally the sources for the shared

GWT getting started giving Missing required argument 'module[s]'

2011-05-24 Thread vaibhav mishra
I installed google plugin for eclipse from eclipse 3.6 marketplace, and following this tutorial http://code.google.com/webtoolkit/doc/latest/tutorial/create.html, when I click on Run as web application I am getting this Missing required argument 'module[s]' -- You received this message

RequestFactory, Multi-threading and GAE pricing

2011-05-24 Thread Mikael Couzic
Hi, I have read quite a lot about the new pricing of GAE, and it kind of got me confused. I understood that in order to save money, we should optimize instance time and the best way to do that is to use Java's multi-threaded capabilities. However, for the GWT application I am working on, I

Problem integrating GWT and OSGi

2011-05-24 Thread Jose Luis Hernandez
Hello! I have a problem integrating GWT into OSGi Equinox container. The entry point webpage runs. I see my first page. However, when I click on a button to realize server call, it does not run. I work with Firefox and I have firebug. Then, when I see network field I get the next message:

Problem integrating GWT and OSGi

2011-05-24 Thread Jose Luis Hernandez
Hello! I have a problem integrating GWT into OSGi Equinox container. The entry point webpage runs. I see my first page. However, when I click on a button to realize server call, it does not run. I work with Firefox and I have firebug. Then, when I see network field I get the next message:

gwt designer messes up when trying to have a RequestFactory on an instance Level..

2011-05-24 Thread Elhanan
hi.. i have an EntryPoint where i'm trying to init a RequestFactory member on a field level (to my understanding it should a singleton), however now matter what i try , the designer is unable to display the form at all, saying it cannot resolve various imports an such, it's only when i place

Re: Get keypress info without an event.

2011-05-24 Thread zip184
Thanks for the help. I tried overriding onBrowserEvent(Event) on MenuBar, but the Event data doesn't seem to be very helpful. I basically need to detect a Ctrl click and/or a middle click (the way to normally get the browser to open new tabs). So I was successful at detecting a click like this:

Re: RequestFactory, Multi-threading and GAE pricing

2011-05-24 Thread Thomas Broyer
If you didn't turn threadsafety on, then yes, AIUI: http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests But it's really no different than writing your servlet yourself, with your own serialization (well, except that writing everything yourself you have

Re: GWT Designer + GXT - Palette don't display GXT components

2011-05-24 Thread Eric Clayberg
Are you editing a GWT Java class or UiBinder file? The GXT palette will only appear if you are editing a GWT Java class. On May 22, 11:42 pm, Jonathan jonathan.aubuc...@gmail.com wrote: Hi, This is my versions: gxt-2.2.4-gwt22.jar Google Web Toolkit SDK 2.3.0    2.3.0.r36v201104261928

Re: GWT Designer + GXT - Palette don't display GXT components

2011-05-24 Thread Jonathan
Hi Eric, I'm editing a Uibinder file. I see all the gwt components, but not the gxt components Still have the problem. On 24 mai, 10:00, Eric Clayberg clayb...@google.com wrote: Are you editing a GWT Java class or UiBinder file? The GXT palette will only appear if you are editing a GWT Java

Error while deploying my gwt application on a websphere server 6.1 !!!!

2011-05-24 Thread Carlos
hi, This is the message i found in the log of the my websphere of version 6.1 i want to kno if the problem is a gwt issue or websphere issue so do you have any idea about it? am using gwt SDK 1.5 websphere 6.1 i deployed the .war on the server but i am recieving always this error: --Start of

Re: RequestFactory : Persisting List of Child EntityProxies : setting Child Properties to null.

2011-05-24 Thread Etienne P.
I ran across this issue recently when trying to update existing data. I am using the JDO API on GAE. I was able to get around this issue. I do believe making sure you share the PersistenceManager across for a single request was part of the solution. Also I've made changes to my Locator and forced

RequestFactory: Find out which exception was thrown at serverside

2011-05-24 Thread opn
Hello again to you all, I know this has been asked before, but there's no answer in the thread (pretty old one from 2010). I bet someone has found out meanwhile how to send the exception type with the ServerFailure that arrives at the client when doing a RequestFactory call. The exception message

Re: Problem with Long in Javascript JNI overlay types

2011-05-24 Thread Chris Conroy
Javascript cannot deal with longs properly since the VM only speaks in terms of doubles. Longs are emulated in GWT: http://code.google.com/p/google-web-toolkit/source/browse/trunk/#trunk%2Fdev%2Fcore%2Fsuper%2Fcom%2Fgoogle%2Fgwt%2Flang The reason this doesn't work is the compiler can only emulate

Re: RequestFactory: Find out which exception was thrown at serverside

2011-05-24 Thread Claude
Hey, You can implement the interface ExceptionHandler, and use it in your own implementation of RequestFactoryServlet public class MyExceptionHandler implements ExceptionHandler { @Override public ServerFailure createServerFailure( final Throwable throwable ) { // Create your

Re: RequestFactory: Find out which exception was thrown at serverside

2011-05-24 Thread Thomas Broyer
An ExceptionHandler (that you can pass to the constructor of the RequestFactoryServlet, defaults to… DefaultExceptionHandler) translates any exception thrown by your code to a ServerFailure; the same that you'll receive on the client side in your Receiver's onFailure. FWIW, we made one that

Forwarding all calls to the initial page

2011-05-24 Thread thebravoman
Hi. I have just created the example application in eclipse using New-Web Application Project. It has the initial page with the text field and the send button. I would like to forward all calls of the type http://myapplication.com/ABCDEF to the initial page of the application. Here ABCDEF are six

MVP pattern uncaught exception

2011-05-24 Thread Jordi Planadecursach
Hello guys, I have an exception in the following code using the MVP pattern. I'm just iniciaiting myself to the GWT world and I would need some help. Call: public class LoginActivity extends AbstractActivity implements LoginView.Presenter { private ClientFactory clientFactory;

document.getElementById returns null

2011-05-24 Thread Kevin Roarty
In gwt, or in a JSNI method (tried both ways), I create a simple empty div with id uniqueId. I add it to the panel, and verify that it is there using firebug. In a pure javascript text editor (we're incorporating Codemirror), onKeypress, I run document.getElementById(uniqueId). This returns null.

Maps : GeoXmlOverlay : max entries in feed(GeoRSS)

2011-05-24 Thread dissef12
Found in Release: gwt-maps-1.1.0 Detailed description: I'm using GeoXmlOverlay. how much entry the feed(GeoRSS) may contain ? If I have 200 entry in my feed, no overlay is displayed. Workaround if you have one: if I use feed with some entries -- You received this message because you are

Help with WindowBuilder Pro XWT Application Wizard

2011-05-24 Thread Eric
Hi guys, I tried to post before but it didnt post so I will try agian. I am trying to use the WindoBuilder Pro XWT Application Wizard but I keep seeing an error, and I don't know how to fix it. If anyone could help me I would greatly appreciate it. Here is what I did: 1) Install Java 2)

JSNI and Flex Intercommunication Problem (through Javascript Interface)

2011-05-24 Thread Debug Desperado
I'm trying to wrap a javascript library (Cytoscape Web: http://cytoscapeweb.cytoscape.org/documentation ) that exposes methods for interacting with a Flash object built with Flex. The library is designed very well, consisting of a single javascript Visualisation object and several member

Help - Trying to make XWT application

2011-05-24 Thread Eric
I did the following steps 1) Install Java 2) Install Eclipse 3) Install WindowBuilder, SWT Designer 4) File-New-Project-WindowBuilder\SWT Designer\SWT/JFace Java Project 5) Ctrl-N-SWT Designer\XWT\XWT Application Now I see my project, I can enter designer mode and edit my form, I can edit the

Could not find the main class: com.google.gwt.user.tools.WebAppCreator

2011-05-24 Thread María
When I want to create a web application project, this message appears: Could not find the main class: com.google.gwt.user.tools.WebAppCreator Creation of element failed Reason: Invocation of com.google.gwt.user.tools.WebAppCreator failed What could be wrong? thank you very much in advance --

Re: Help - Trying to make XWT application

2011-05-24 Thread Juan Pablo Gardella
What is XWT? 2011/5/23 Eric erics...@gmail.com I did the following steps 1) Install Java 2) Install Eclipse 3) Install WindowBuilder, SWT Designer 4) File-New-Project-WindowBuilder\SWT Designer\SWT/JFace Java Project 5) Ctrl-N-SWT Designer\XWT\XWT Application Now I see my project, I can

ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread Ash
I am getting this error when I run my application in hosted mode locally. I have tried to import the code fresh from repository and didn't work. Not able to understand why is this happening. I have 1.4.3 for App Engine and 2.30 for Gwt. [ERROR] javax.servlet.ServletContext log: loginService: An

Re: Problem with Long in Javascript JNI overlay types

2011-05-24 Thread Eugen Paraschiv
So essentially once you have a overlay type corresponding to a model on the server, and the server model has a method returning a Long, there is no way to have the overlay type return Long? On May 24, 2011 6:38 PM, Chris Conroy con...@google.com wrote: Javascript cannot deal with longs properly

Re: Problem with Long in Javascript JNI overlay types

2011-05-24 Thread Chris Conroy
For transport, you can send a Long across the wire as a String using Long.toString/Long.parseLong to serialize/deserialize. On the overlay you would then have something like: public final Long getNr() { return Long.parseLong(getNrRaw()); } private final native String getNrRaw() { return

Re: JSNI and Flex Intercommunication Problem (through Javascript Interface)

2011-05-24 Thread Alain Ekambi
I did had the same problem while working on gwt4air Flex API. Let me see if i can find the solution Best, Alain 2011/5/24 Debug Desperado debug.desper...@gmail.com I'm trying to wrap a javascript library (Cytoscape Web: http://cytoscapeweb.cytoscape.org/documentation ) that exposes methods

Re: How to force sort on CellTable with new Data or data updated

2011-05-24 Thread Celinio
Hi, I'm actually having the same problem. What happens is that when i reload the celltable data with new data (after a new search for instance) then it correctly reloads the celltable with the new results BUT if i try to sort the rows, using any column, then it actually brings back the initial

Re: Problem with Long in Javascript JNI overlay types

2011-05-24 Thread Eugen Paraschiv
I understand what you are saying. Unfortunately the serialization process on the server is not fully controller by me. Instead it's done via Spring MVC and Jakson, so I'm not sure I can hook into that process and do the changes you mention. Hopefully this will be supported out of the box by a

Project Creation Order

2011-05-24 Thread Deanna Bonds
What is the intended project creation order assuming the use of Roo, GPE, and GWT Designer for GAE? You can create the project in GPE or Roo, but I think GPE gives a better distinction of client and server - so my first assumption is GPE to create (is that right?) Next I would guess add Roo

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-05-24 Thread Alain Ekambi
Well no i did not had that in mind :) First I dont know if i m ready to give the project away. Also i dont know if Adobe will be interested in anything that do not include ActionScript and MXML to build Flexapplications. But i guess i will listen to them if they come to me and ask about the

Firefox 5 beta

2011-05-24 Thread jonl
Is there a way to force GWT to work in firefox 5 beta? Or how soon will an update of the plugin be available now that firefox is going to a more rapid release schedule? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

GWT remote logging

2011-05-24 Thread Dave
I'm trying to Log a message to a server log. I found these instructions: http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging In my GWT XML I have inherits name=com.google.gwt.logging.Logging/ set-property name=gwt.logging.simpleRemoteHandler value=ENABLED / my code

Re: Get keypress info without an event.

2011-05-24 Thread Gabriel
I think you can achieve what you want by doing the same (sink in constructor + onBrowserEvent() logic) with ONKEYDOWN and ONKETUP - add a boolean variable to your class and in onBrowserEvent() set it to true when you detect ONKEYDOWN with Ctrl and set it to false similarly for ONKEYUP. Then you

Re: ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread Ash
Has anyone seen this error before and has any insights into how to get this debugged. On May 24, 10:40 am, Ash ashwani...@gmail.com wrote: I am getting this error when I run my application in hosted mode locally. I have tried to import the code fresh from repository and didn't work. Not able

Re: ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread miller
Are you doing anything strange with serialization? I can't remember specifics but I think this error is thrown incorrectly sometimes when there is another exception thrown in serialization/deserialization. Sorry I don't have more details but maybe this will point you in the correct direction.

Re: Get keypress info without an event.

2011-05-24 Thread zip184
I thought of that. The problem is that the user might hold the key down before they're over the object I'm capturing the events on. So in that case I wouldn't get the event. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Help with WindowBuilder Pro XWT Application Wizard

2011-05-24 Thread Eric
Also the XWT application wizard page is here: http://code.google.com/javadevtools/wbpro/wizards/xwt/application.html On May 24, 9:39 am, Eric erics...@gmail.com wrote: Hi guys, I tried to post before but it didnt post so I will try agian. I am trying to use the WindoBuilder Pro XWT

Re: JSNI and Flex Intercommunication Problem (through Javascript Interface)

2011-05-24 Thread Debug Desperado
Hmm, after searching I'll bet it has something to do with the iframe that GWT embeds. According to w3schools, the browser creates one window object for the HTML document, and one additional window object for each frame. Weirdly, an Array object in one window isn't the same as one in another:

Re: MVP pattern uncaught exception

2011-05-24 Thread Alisson Prestes
You must find the caused by on the stack trace: Caused by: java.lang.NullPointerException: null at com.rourevell.booking.client.ui.ControlPanelViewImpl.init(ControlPanelViewImpl.java:80) at

Editor concept. RequestFactoryEditorDriver and Generics

2011-05-24 Thread Bademus
Hello. Curently I'm trying to implement editor: //Main Viewer with Save\Cancel Buttons and other common stuff public class EntityEditorViewImplP extends Composite implements EditorView { @UiField Button saveButton; @UiField Button cancelButton; @UiField EditorP editor; //editor created

Re: ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread Ashwani Gupta
Hi Miller, Thanks for your reply. I don't think there is anything strange with serialization but I will give it a look. On Tue, May 24, 2011 at 1:15 PM, miller millermich...@gmail.com wrote: Are you doing anything strange with serialization? I can't remember specifics but I think this

Re: Setting Up A Login Page To Use SSL

2011-05-24 Thread Nick Apperley
Max - With regards to point 1 I did consider it but it isn't feasible to use SSL for the entire website when large amounts of data is being sent to/from the server. Most of the data being received from the server is in JSON format, which although it is less verbose than XML it does include other

Re: GWT/GPE 2.3 unable to sign in with Google Apps account

2011-05-24 Thread Alyxandor Aristocles
I found the old repository from a manifest of the update site: http://commondatastorage.googleapis.com/eclipse_toolreleases/products/d2gwt/release/v2.2.0_20110255/3.6/GWTDesigner_v2.2.0_UpdateSite_for_Eclipse3.6.zip It would be very nice if someone at google could alter their search results

Re: GWT/GPE 2.3 unable to sign in with Google Apps account

2011-05-24 Thread Alyxandor Aristocles
Wait, nevermind. That eclipse repo only had the gwt designer modules in it. My bad, jumped the gun. Note that my login fails on both apps accounts and gmail accounts. I have to wonder if this is because I'm on windows and eclipse may rely on Internet Explorer in the auth procedure. I'm

Aw: Re: ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread Jens
GWT has an internal version to make sure client and server can speak with each other correctly. Currently your client side code talks version 7 but your server code only understands version 5 and 6. I would say you have upgraded to a newer version of GWT (e.g. 2.3.0) but your IDE does not have

Re: Aw: Re: ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread Paul Stockley
You can also clear these kind of mismatch errors by clearing your browser cache/cookies -- 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

Re: Help with WindowBuilder Pro XWT Application Wizard

2011-05-24 Thread Eric
I figured it out myself, I needed to add three .jar's to my project's references, org.eclipse.core.databinding org.eclipse.core.databinding.observable org.eclipse.jface.databinding I did that by clicking Project - Properties - Java Build Path - Libraries, Add External Jar's, and then I browsed

Re: Problem with combining amcharts(Java Script Version) with smartgwt

2011-05-24 Thread Rob
Hi, Take a look at this post - http://uptick.com.au/content/smartgwt-and-fusioncharts The same approach (e.g. wrapping smartGWT's Flashlet class) will work for amCharts. Cheers Rob On May 23, 8:00 pm, Viswam viswanath.du...@gmail.com wrote: Hi, I am getting a problem like the checkbox is

Re: GWT and Developing UI

2011-05-24 Thread Rob
Hi, Take your time and read through the GWT Developers Guide (e.g. http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html). Also take a loom at - http://uptick.com.au/content/create-gwt-project Cheers Rob On May 24, 6:11 am, Alisson Prestes javalis...@gmail.com wrote: For 1 and 2

Code Google Information

2011-05-24 Thread Noor
Hello, I'm doing a project on google web tookit, i want to know if i can use reference from code google in my project, as some people claims this info may change and is thus not reliable thanks kind regards Noor -- You received this message because you are subscribed to the Google Groups

Re: Tried to implement MVP Part 2 - some Questions remain

2011-05-24 Thread tanteanni
push -- 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. For more options,

[gwt-contrib] Earn $1000-$2500 per month

2011-05-24 Thread amala a
Earn $1000-$2500 per month If you Register your name You Get Sign-up bonus $5 AND Get $.20 cent for each referral. Further details http://www.earnbyforex.com/index.php?id=35678365

Re: [gwt-contrib] gwtc classpath

2011-05-24 Thread Grzegorz Kossakowski
2011/5/24 Eric Ayers zun...@google.com: Hi Grzegorz, You mentioned the compiled classes in the class path are used to populate the type orace.  For the most part, the type oracle types are compiled from source.  Types that don't have source are then checked to see if they are binary

Re: [gwt-contrib] gwtc classpath

2011-05-24 Thread Eric Ayers
On Tue, May 24, 2011 at 8:00 AM, Grzegorz Kossakowski grzegorz.kossakow...@gmail.com wrote: 2011/5/24 Eric Ayers zun...@google.com: Hi Grzegorz, You mentioned the compiled classes in the class path are used to populate the type orace. For the most part, the type oracle types are

[gwt-contrib] Re: Public (steph...@gmail.com): (issue1450802)

2011-05-24 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1450802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Updating apichecker for GWT 2.4. (issue1447807)

2011-05-24 Thread jlabanca
Reviewers: rjrjr, Description: Updating apichecker for GWT 2.4. Please review this at http://gwt-code-reviews.appspot.com/1447807/ Affected files: M build.xml A tools/api-checker/config/gwt23_24userApi.conf M tools/api-checker/reference/README M

[gwt-contrib] Re: 1. Assert, at runtime, that GWT is running in Standards Mode (i.e. with an appropriate DOCTYPE d... (issue1422816)

2011-05-24 Thread dmenounos
Standards Mode is not only HTML5 !DOCTYPE html. (X)HTML Strict and Transitional modes also qualify as such. http://en.wikipedia.org/wiki/Quirks_mode I hope this patch does not force us to move to HTML5, which is not even finalized yet. http://gwt-code-reviews.appspot.com/1422816/ --

[gwt-contrib] Re: 1. Assert, at runtime, that GWT is running in Standards Mode (i.e. with an appropriate DOCTYPE d... (issue1422816)

2011-05-24 Thread dmenounos
On 2011/05/23 18:26:02, dmenounos wrote: Standards Mode is not only HTML5 !DOCTYPE html. (X)HTML Strict and Transitional modes also qualify as such. http://en.wikipedia.org/wiki/Quirks_mode I hope this patch does not force us to move to HTML5, which is not even finalized yet.

[gwt-contrib] Re: Add the method name to the message of InvocationService to make it easier to (issue1450803)

2011-05-24 Thread Ray Ryan
LGTM On Tue, May 24, 2011 at 5:04 AM, gaill...@google.com wrote: Reviewers: rjrjr, Description: Add the method name to the message of InvocationService to make it easier to find out the rootcause of the exception. Please review this at http://gwt-code-reviews.appspot.com/1450803/

[gwt-contrib] Fixing checkstyle error. (issue1448805)

2011-05-24 Thread jlabanca
Reviewers: zundel, Description: Fixing checkstyle error. Please review this at http://gwt-code-reviews.appspot.com/1448805/ Affected files: M user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java Index: user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java

[gwt-contrib] Re: Fixing checkstyle error. (issue1448805)

2011-05-24 Thread zundel
LGTM http://gwt-code-reviews.appspot.com/1448805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] gwtc classpath

2011-05-24 Thread Grzegorz Kossakowski
2011/5/24 Eric Ayers zun...@google.com: Yes, that class does read bytecode, but the source of the bytecode isn't usually compiled .class files from the classpath, its the result of running JDT on the sources.  I think it might be confusing because I worked on a project to try to build type

Re: [gwt-contrib] gwtc classpath

2011-05-24 Thread John Tamplin
On Tue, May 24, 2011 at 9:33 AM, Grzegorz Kossakowski grzegorz.kossakow...@gmail.com wrote: 2011/5/24 Eric Ayers zun...@google.com: Yes, that class does read bytecode, but the source of the bytecode isn't usually compiled .class files from the classpath, its the result of running JDT on

[gwt-contrib] Re: Updating apichecker for GWT 2.4. (issue1447807)

2011-05-24 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1447807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixing checkstyle errors... for realz this time. (issue1446808)

2011-05-24 Thread jlabanca
Reviewers: zundel, Description: Fixing checkstyle errors... for realz this time. Please review this at http://gwt-code-reviews.appspot.com/1446808/ Affected files: M user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java Index:

[gwt-contrib] [google-web-toolkit] r10206 committed - Fixing checkstyle error....

2011-05-24 Thread codesite-noreply
Revision: 10206 Author: jlaba...@google.com Date: Tue May 24 03:25:31 2011 Log: Fixing checkstyle error. Review at http://gwt-code-reviews.appspot.com/1448805 http://code.google.com/p/google-web-toolkit/source/detail?r=10206 Modified:

[gwt-contrib] Re: Fixing checkstyle error. (issue1448805)

2011-05-24 Thread jlabanca
committed as r10206 http://gwt-code-reviews.appspot.com/1448805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing checkstyle errors... for realz this time. (issue1446808)

2011-05-24 Thread jlabanca
committed as r10208 http://gwt-code-reviews.appspot.com/1446808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10208 committed - Fixing checkstyle errors... for realz this time....

2011-05-24 Thread codesite-noreply
Revision: 10208 Author: gwt.mirror...@gmail.com Date: Tue May 24 07:52:07 2011 Log: Fixing checkstyle errors... for realz this time. Review at http://gwt-code-reviews.appspot.com/1446808 http://code.google.com/p/google-web-toolkit/source/detail?r=10208 Modified:

[gwt-contrib] Re: Updating apichecker for GWT 2.4. (issue1447807)

2011-05-24 Thread jlabanca
committed as r10209 http://gwt-code-reviews.appspot.com/1447807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10209 committed - Updating apichecker for GWT 2.4....

2011-05-24 Thread codesite-noreply
Revision: 10209 Author: jlaba...@google.com Date: Tue May 24 04:12:44 2011 Log: Updating apichecker for GWT 2.4. Review at http://gwt-code-reviews.appspot.com/1447807 Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10209 Added:

[gwt-contrib] [google-web-toolkit] r10210 committed - SafeHtmlRenderer code gen for UiBinder. Picking up issue 1426803...

2011-05-24 Thread codesite-noreply
Revision: 10210 Author: rchan...@google.com Date: Tue May 24 04:45:28 2011 Log: SafeHtmlRenderer code gen for UiBinder. Picking up issue 1426803 Review at http://gwt-code-reviews.appspot.com/1442804 Review by: rj...@google.com

[gwt-contrib] Add BatchedRequestScope utility class to aggregate all requests made within a single tick of the... (issue1449804)

2011-05-24 Thread bobv
Reviewers: rjrjr, Description: Add BatchedRequestScope utility class to aggregate all requests made within a single tick of the event loop. Add FanoutReceiver utility class. Remove redundant tests from RequestFactoryGwtJreSuite. Patch by: bobv Review by: rjrjr Please review this at

[gwt-contrib] Re: SafeHtmlRenderer code gen for UiBinder. Picking up issue 1426803 (issue1442804)

2011-05-24 Thread rchandia
Submitted as of r10210 On 2011/05/23 20:00:39, rjrjr wrote: LGTM Woot! http://gwt-code-reviews.appspot.com/1442804/diff/10001/user/test/com/google/gwt/uibinder/elementparsers/DialogBoxParserTest.java File user/test/com/google/gwt/uibinder/elementparsers/DialogBoxParserTest.java

[gwt-contrib] [google-web-toolkit] r10211 committed - Add missing xpcomglue_s.a for Darwin Gecko 2.0

2011-05-24 Thread codesite-noreply
Revision: 10211 Author: con...@google.com Date: Tue May 24 08:31:32 2011 Log: Add missing xpcomglue_s.a for Darwin Gecko 2.0 http://code.google.com/p/google-web-toolkit/source/detail?r=10211 Added: /plugin-sdks/gecko-sdks/gecko-2.0.0/Darwin-gcc3/lib/libxpcomglue_s.a

Re: [gwt-contrib] gwtc classpath

2011-05-24 Thread Eric Ayers
On Tue, May 24, 2011 at 9:33 AM, Grzegorz Kossakowski grzegorz.kossakow...@gmail.com wrote: 2011/5/24 Eric Ayers zun...@google.com: Yes, that class does read bytecode, but the source of the bytecode isn't usually compiled .class files from the classpath, its the result of running JDT on

[gwt-contrib] [google-web-toolkit] r10212 committed - Add a ServletContext ThreadLocal to RequestFactoryServlet....

2011-05-24 Thread codesite-noreply
Revision: 10212 Author: larse...@gmail.com Date: Tue May 24 05:33:27 2011 Log: Add a ServletContext ThreadLocal to RequestFactoryServlet. http://gwt-code-reviews.appspot.com/1448804/ Patch by: larsenje Review by: bobv http://code.google.com/p/google-web-toolkit/source/detail?r=10212

[gwt-contrib] Rollback Issue 1442804. Causes build breakage. (issue1447808)

2011-05-24 Thread rchandia
Reviewers: rjrjr, rdcastro, Description: Rollback Issue 1442804. Causes build breakage. Please review this at http://gwt-code-reviews.appspot.com/1447808/ Affected files: M user/src/com/google/gwt/uibinder/UiBinder.gwt.xml M

[gwt-contrib] Re: Adds a ui:safehtml tag to UiBinder (issue1422812)

2011-05-24 Thread sbrubaker
http://gwt-code-reviews.appspot.com/1422812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds a ui:safehtml tag to UiBinder (issue1422812)

2011-05-24 Thread sbrubaker
Also, merged with Rodrigo's patch and updated the function naming in Constants.java to disambiguate the testing for SafeHtmlRenderer and this change. http://gwt-code-reviews.appspot.com/1422812/diff/7001/user/test/com/google/gwt/uibinder/elementparsers/ElementParserTester.java File

[gwt-contrib] Re: Autoformats user/super and user/test-super (issue1442805)

2011-05-24 Thread zundel
http://gwt-code-reviews.appspot.com/1442805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Autoformats user/super and user/test-super (issue1442805)

2011-05-24 Thread zundel
So, other then the space before an auto decl of a for loop index, I think this seems pretty reasonable: for (var i = 0; i 10 ; ++i) { } turns into for ( var i = 0; i 10 ; ++i) { } I can live with it... http://gwt-code-reviews.appspot.com/1442805/ --

[gwt-contrib] Re: Rollback Issue 1442804. Causes build breakage. (issue1447808)

2011-05-24 Thread Rafael Castro
LGTM On May 24, 2011 12:46 PM, rchan...@google.com wrote: Reviewers: rjrjr, rdcastro, Description: Rollback Issue 1442804. Causes build breakage. Please review this at http://gwt-code-reviews.appspot.com/1447808/ Affected files: M user/src/com/google/gwt/uibinder/UiBinder.gwt.xml M

[gwt-contrib] Re: Adds a ui:safehtml tag to UiBinder (issue1422812)

2011-05-24 Thread rjrjr
LGTM! Woo hoo! Just a couple of typos, yay! http://gwt-code-reviews.appspot.com/1422812/diff/11009/user/src/com/google/gwt/uibinder/elementparsers/ComputedAttributeInterpreter.java File user/src/com/google/gwt/uibinder/elementparsers/ComputedAttributeInterpreter.java (right):

  1   2   >