Re: can I send something like upload finished answere from HTTP servlet to my application ?

2011-05-02 Thread Manvel Saroyan
Thank You Alan Chaney. Now my project works ok. -- 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: can I send something like upload finished answere from HTTP servlet to my application ?

2011-05-02 Thread Manvel Saroyan
Thank you Alan Chaney now my project works ok:) -- 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

Cursor disappearing from TextBox

2011-05-02 Thread varakumar pjd
Hello, Cursor is being disappeared from my TextBox and I am unable to enter anything. Just have a look at this code once. TextBox textBox = new TextBox(); SimplePanel panel = new SimplePanel(); panel.addStyleName(downarrow); HorizontalPanel hPanel = new HorizontalPanel();

Cursor disappearing from TextBox

2011-05-02 Thread varakumar pjd
Hello, Cursor is being disappeared from my TextBox and I am unable to enter anything. Just have a look at this code once. TextBox textBox = new TextBox(); SimplePanel panel = new SimplePanel(); panel.addStyleName(downarrow); HorizontalPanel hPanel = new HorizontalPanel();

Re: Using Google Closure Library within GWT JSNI .....

2011-05-02 Thread nino ekambi
I was just wondering what s the best way to go ? GWT oder Closure oder botch ? maybe some one can explain to me the strengh of closure compare to gwt ? Thank 2011/5/2 Broc Seib broc.s...@gmail.com I just went down this road (with success). I've been using GWT, but I really wanted to use a

Aw: After using GIN,all events registered by @UiHandler don't work.

2011-05-02 Thread Jens
I never had a problem with GIN and @UiHandler. You can add a -gen custom path to your run configuration to see what code GWT generates. Seems to be very unlikely that @UiHandler does not work but everything else does. -- You received this message because you are subscribed to the Google Groups

Re: With GWT, when exactly do you need DTOs for your entities ?

2011-05-02 Thread dmen
I do use the same approach, though with Spring MVC Controllers + XStream instead of GWT RPC. https://github.com/scumm/mojo/tree/master/mojo-dao/src/main/java/mojo/dao/util On May 1, 10:27 pm, Celinio cel...@gmail.com wrote: Thanks for pointing it out. Well, apparently the author created a

Overriding RemoteServiceServlet.checkPermutationStrongName()

2011-05-02 Thread Ice13ill
Hello, i get this exception java.lang.SecurityException: Blocked request without GWT permutation header in my app, but only at some user requests. If i override the method checkPermutationStrongName() in the remote servlet (which checks a request header) by leaving it empty, will that cause

Re: With GWT, when exactly do you need DTOs for your entities ?

2011-05-02 Thread dmen
There is a catch however! You cannot safely use CascadeType.MERGE with ToMany associations. If you do, JPA will automatically delete the nullified collections when you sent those entities back to the server. On May 2, 1:45 pm, dmen dmenou...@gmail.com wrote: I do use the same approach, though

DataPicker Validation

2011-05-02 Thread Manvel Saroyan
Hi... please tell me is there a way to make a Datapicker value validation ? When I enter wrong value datePicker changes it's style making background red... so if DatePicker can recognise did I enter valid value I think there will be also method to check that validation for example on button click

how to reposition the popup when window gets resized

2011-05-02 Thread newbee
Hi All, I am using popups in my application and I am positioning them at absolute left and right of some other widget. Now the problem is that when i resize the window then the relative widget left and right are changing but the popup is still staying at the old position Is there anyway I can

Re: how to reposition the popup when window gets resized

2011-05-02 Thread jhulford
Use a Window ResizeHandle and reposition your dialog when the window is resized. On May 2, 9:16 am, newbee gandhamsat...@gmail.com wrote: Hi All, I am using popups in my application and I am positioning them at absolute left and right of some other widget. Now the problem is that when i

GWT - Capture values of dynamically created components

2011-05-02 Thread Bhavin
Hi, I have a GWT page with 2 text boxes, 1 hyperlink and 1 button initially (on page load). When I click on the hyperlink, I add another text box (dynamically without refreshing the page). Now when I click the button, I need to capture the values that lie in all the three text boxes. How can I

Re: GWT - Capture values of dynamically created components

2011-05-02 Thread Alisson Prestes
You can - use a simple ArrayList to store the values and - other ArrayList to store the widgets - create a function to update the values in the values ArrayList, that receives a integer that represents the position you're altering - create a click handler for each hyperlink with a

req.getContentLength() returns -1, what is wrong ???

2011-05-02 Thread Manvel Saroyan
Hi. I'm using current validation code on my HTTPServlet to check if the user uploads big files: public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { long maxSize = 1024*1024 * 1; //Limit 50 MB int contentLength = req.getContentLength(); if

Re: How to update CellTable's Header Cell based on action in data table

2011-05-02 Thread Jason
Darn it! I think I was just staring at my code for too long last Friday. Thanks Thomas! I was successfully able to update my header cell's value in the onSelectionChange method of my SelectionHandler and call redrawHeaders() which successfully re-renders the header cell. I'm not sure how I

Re: CellTree with CellTable nodes

2011-05-02 Thread lamre
CellCartella cell = new AbstractCellCartella(click) { @Override public void render(Context context, Cartella value, SafeHtmlBuilder sb) {

Re: CellTree with CellTable nodes

2011-05-02 Thread lamre
CellCartella cell = new AbstractCellCartella(click) { @Override public void render(Context context, Cartella value, SafeHtmlBuilder sb) {

CellTable colspan or rowspan...

2011-05-02 Thread scarlatine
Hi! I need to merge cells with same data in a CellTable. I have seen this thread https://groups.google.com/d/topic/google-web-toolkit/K0YBv819i70/discussion, but where can I put cellTable.getRowElement(row).getCells().getItem(column).setRowSpan(rowSpan); to use it when the table receives its

Unable to get result object from Service layer

2011-05-02 Thread Debolina Dan
Hi All, I am trying to get the result object from service layer through handler, i am getting this error org.springframework.transaction.UnexpectedRollbackException: Transaction rolledback because it has been marked as rollback-only Service layer code is : public VerifyDataResult

Get the underlying object in a chart using onSelect event

2011-05-02 Thread Gopi Krishnan Nambiar
Hi, Is there any way to get hold of the underlying object, whose row has been selected in an orgChart ? I am only able to get the row, using the selection event as of now. The intent is to populate the an employee's details based on which employee is clicked on in the orgChart. Thanks in advance.

Offline map functionallity GWT

2011-05-02 Thread qperez
Hi, is there any way to obtain offline map functionallity for a GWT application? We are using GWT 2.1 with gwtmaps module from google apis, but the map goes away as soon as our computer goes offline. we need to implement some kind of offline functionallity. Thanks in advance, Ana -- You

Application need to be recompiled on a Tomcat server ? It's a GWT Maven Project ?

2011-05-02 Thread Alexis10
Hi, I had this common error of compilation of Maven GWT project: # GWT module 'www.mysociety.Application' may need to be (re)compiled # I tried several things I can found on the web, during 3 days. People says always to add ?gwt.codesvr=127.0.0.1:9997 after the url without understanding that

HasDataEditor + CellTable

2011-05-02 Thread erank
Hi all, I'm looking for a good example howto write an editor for a CellTable. I understand that I need to use the HasDataEditor of ListEditor but I can't find anything about it.. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Data-binding, Konckout.js

2011-05-02 Thread Artem Nikulchenko
I've recently seen Knockout.js presentation at MIX 11 and it looks amazing. It removes all boilerplate code around data-binding and looks really amazing!!! We do have a lot of development in both GWT and Silverlight, and Silverlight data-binding is probably the only advantage left (and we really

Downloading older GWT plugin versions

2011-05-02 Thread tharkun
Hi, I am trying to set up a co-worker with my GWT based project, which I started on GWT 2.2.0. Obviously, if he tries to install the Google Plugin via update-site, he's going to get version 2.2.1 and you can't simply install older versions from the update-site. Unfortunately however, you also

Re: how to reposition the popup when window gets resized

2011-05-02 Thread mike b
If you find an elegant solution, please post it. I have the same thing on my to do list. Thx -- 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

Re: Application need to be recompiled on a Tomcat server ? It's a GWT Maven Project ?

2011-05-02 Thread Thomas Broyer
Best solution is to *not* launch DevMode using your src/main/webapp as the war folder. See http://code.google.com/eclipse/docs/faq.html#gwt_with_maven -- 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: how to reposition the popup when window gets resized

2011-05-02 Thread Ben Imp
I believe the center() method on the dialog will re-center a dialog even if its already visible. Stick that into a resize handler and you should be good to go. -Ben -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Downloading older GWT plugin versions

2011-05-02 Thread Chris Conroy
The plugin ships with an SDK, but that doesn't mean you must use that SDK with the plugin: Right click on your project - Google - Web Toolkit Settings - Configure SDKs. On Mon, May 2, 2011 at 10:45 AM, tharkun thar...@gmx.de wrote: Hi, I am trying to set up a co-worker with my GWT based

Re: Probleme when compiling gwt project

2011-05-02 Thread David Chandler
Can you supply sample code so we can reproduce this and research it? On Sun, May 1, 2011 at 4:11 AM, nino ekambi jazzmatad...@googlemail.comwrote: Hello people, i m getting this error when compiling my GWT Project : [ERROR] Unexpected java.lang.ArrayIndexOutOfBoundsException: -1 at

How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-02 Thread sipungora
Hi, My problem: on the page: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/39e0ff6325e4d504/55bfd342d77ec910?pli=1 one explains how gwt-module can be extended to Dynamic Web Module in order to be deploybar into eclipse tomcat. I've configured my pom so, that item 3 will

Re: removing focus border from CellTable cells

2011-05-02 Thread Jeff.Lowery
If you can add a class name to the table, you can try this: .table-class-name td { border-style: none; } Which will remove all table cell borders on selection -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-02 Thread David Chandler
Hi sipungora, This info is pretty outdated. With Google Plugin for Eclipse 2.x, you can simply Import | Existing maven project, point it to your POM, and the project will be configured correctly. Provided you have the correct POM, of course. Here are several you can look at:

Re: Offline map functionallity GWT

2011-05-02 Thread Eric Ayers
The underlying javascript api requires an Internet connection. If you are providing your own map tiles you might be able to use openmaps or a gwt project called Saschamaps in combination with gears or html5 persistence. On May 2, 2011 11:51 AM, qperez qpe...@gmail.com wrote: Hi, is there any way

Re: Probleme when compiling gwt project

2011-05-02 Thread nino ekambi
Hi David, It looks like i had a broken workspace. Switching to another one solved the problem. Thank you. Alain 2011/5/2 David Chandler drfibona...@google.com Can you supply sample code so we can reproduce this and research it? On Sun, May 1, 2011 at 4:11 AM, nino ekambi

dynamic GWT page creation based on Java Bean

2011-05-02 Thread Ajay
Hi, I have one use case and want to know whether we can achieve it through GWT or not. I have a XML which has set of elements along with their property.This configuration gets persisted in DB and later point of time based on user request we load the configuration and convert it into some kind of

Re: How to select a row on click of any cell in that row - Celltable

2011-05-02 Thread Alexandre Ardhuin
Define a SingleSelectionModel and add it to CellTable : final SingleSelectionModelT ssm = new SingleSelectionModelT(); cellTable.setSelectionModel(ssm); ssm.addSelectionChangeHandler(new Handler() { @Override public void onSelectionChange(final SelectionChangeEvent event) {

Re: dynamic GWT page creation based on Java Bean

2011-05-02 Thread David Chandler
Hi Ajay, GWT doesn't generate dynamic HTML pages like server-side frameworks. The GWT compiler produces highly optimized JavaScript that runs in the browser. Also, the GWT compiler doesn't support reflection, so you can't parse an arbitrary Java type at runtime. You could, however, use GWT's

Re: Problems with Godaddy hosting and server-side deserialization

2011-05-02 Thread Joe D.
Alan, Do you have suggestions for hosting providers that you are happy with. I'm so sick of NoDaddy and trying to fit a square peg (eg GWT) into a round hole (eg CrapDaddy). *Webhostingjava.net *looks interesting. There's of course the appengine route, but wouldn't I have to covert my

Re: Problems with Godaddy hosting and server-side deserialization

2011-05-02 Thread Alan Chaney
Joe On 5/2/2011 3:26 PM, Joe D. wrote: Alan, Do you have suggestions for hosting providers that you are happy with. I'm so sick of NoDaddy and trying to fit a square peg (eg GWT) into a round hole (eg CrapDaddy). *Webhostingjava.net *looks interesting. I've used what was thePlanet but has now

SmartGWT, UIBinder and GWT Designer

2011-05-02 Thread richip
Has anyone successfully used the above products / technologies to create a UIBinder GUI object that's editable in GWT Designer and makes use SmartGWT? Can you send me some tips? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Offline map functionallity GWT

2011-05-02 Thread chris
GWT 2.3http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#LocalStorage seems to have a Local Storage API, maybe that can be used to do what you need. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

how do u capture click events in cellbrowser

2011-05-02 Thread alexl
hi, I want to make cellbrowser consisting of albums and photos, and when you click on a photo (ImageCell) the id is returned, how do you capture those events thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: how to reposition the popup when window gets resized

2011-05-02 Thread newbee
Thanks guys. I will try this ResizeHandle solution and will post it if that works well. On May 2, 9:24 pm, Ben Imp benlee...@gmail.com wrote: I believe the center() method on the dialog will re-center a dialog even if its already visible.  Stick that into a resize handler and you should be

Map not displayed in broaser after adding map api.jar also...

2011-05-02 Thread Ram
I have included GWT Maps api.jar file in my GWT Project build path.Then i try sample program given by GWTI did all same as instructed by that samplebut the map is not displayed in my browser when i run my project... What is the Problem here...Also i noticed, when i try try to

[gwt-contrib] Re: Using the Editor framework to edit tasks in the MobileWebApp sample. The DateButton widget is li... (issue1425808)

2011-05-02 Thread Rodrigo Chandia
Thanks for reporting the issue! Filed at: http://code.google.com/p/google-web-toolkit/issues/detail?id=6300 On Fri, Apr 29, 2011 at 3:15 PM, misra.a...@gmail.com wrote: There is a small issue with cancel button, when you add task. It doesn't work. On 2011/04/27 17:38:57, jlabanca wrote:

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1380806)

2011-05-02 Thread t . broyer
I addressed the feedback (including Brian's one, adding a paragraph to SafeUri javadoc) and formatted the files. http://gwt-code-reviews.appspot.com/1380806/diff/29005/user/src/com/google/gwt/resources/client/ImageResource.java File user/src/com/google/gwt/resources/client/ImageResource.java

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

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

[gwt-contrib] Add a convenience base class for value type locators (issue1428809)

2011-05-02 Thread rice
Reviewers: rjrjr, robertvawter, Description: Add a convenience base class for value type locators Please review this at http://gwt-code-reviews.appspot.com/1428809/ Affected files: A user/src/com/google/web/bindery/requestfactory/shared/ValueLocator.java Index:

[gwt-contrib] Remove duplicate build target (issue1423812)

2011-05-02 Thread rice
Reviewers: rjrjr, Description: Remove duplicate build target Please review this at http://gwt-code-reviews.appspot.com/1423812/ Affected files: M build.xml Index: build.xml === --- build.xml (revision 10116) +++ build.xml

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

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

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

2011-05-02 Thread zundel
I decided to back out the original patch and go with using the output of resource.getPath() as the key for the cache. This should differentiate between source and super-source but not include any special prefixes for .jar files or generated files. http://gwt-code-reviews.appspot.com/1428805/

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

2011-05-02 Thread zundel
I should also mention that this makes a follow-on patch to check contentId in case jar file timestamps update a little bit easier when updating the cached unit. http://gwt-code-reviews.appspot.com/1428805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add a convenience base class for value type locators (issue1428809)

2011-05-02 Thread t . broyer
My 2c. http://gwt-code-reviews.appspot.com/1428809/diff/1/user/src/com/google/web/bindery/requestfactory/shared/ValueLocator.java File user/src/com/google/web/bindery/requestfactory/shared/ValueLocator.java (right):

[gwt-contrib] Re: Remove duplicate build target (issue1423812)

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

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

2011-05-02 Thread tobyr
LGTM Nice change. I like this better. http://gwt-code-reviews.appspot.com/1428805/diff/1/dev/core/src/com/google/gwt/dev/javac/MemoryUnitCache.java File dev/core/src/com/google/gwt/dev/javac/MemoryUnitCache.java (right):

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

2011-05-02 Thread tobyr
LGTM Nice change. I like this better. http://gwt-code-reviews.appspot.com/1428805/diff/1/dev/core/src/com/google/gwt/dev/javac/MemoryUnitCache.java File dev/core/src/com/google/gwt/dev/javac/MemoryUnitCache.java (right):

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

2011-05-02 Thread tobyr
LGTM Nice change. I like this better. http://gwt-code-reviews.appspot.com/1428805/diff/1/dev/core/src/com/google/gwt/dev/javac/MemoryUnitCache.java File dev/core/src/com/google/gwt/dev/javac/MemoryUnitCache.java (right):

[gwt-contrib] Re: Adds HTML5 App Cache support to MobileWebApp sample. (issue1422815)

2011-05-02 Thread pdr
Rietveld is giving me a bunch of errors trying to read files such as web.xml. I reviewed the one file I could access and that is relevant to this change, but do you mind re-uploading the patch?

[gwt-contrib] [google-web-toolkit] r10117 committed - Adding the SourceElement for use with Audio and Video, and adding conv...

2011-05-02 Thread codesite-noreply
Revision: 10117 Author: jlaba...@google.com Date: Mon May 2 06:45:06 2011 Log: Adding the SourceElement for use with Audio and Video, and adding convenience methods in those widgets to use the element. Multiple SourceElements can be specified for an AudioElement/VideoElement

[gwt-contrib] Re: Adding the SourceElement for use with Audio and Video, and adding convenience methods in those w... (issue1423810)

2011-05-02 Thread jlabanca
committed as r10117 http://gwt-code-reviews.appspot.com/1423810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Promoting LazyDomElement to be used externally. LazyDomElement can be (issue1427809)

2011-05-02 Thread rjrjr
Needs integration test, but let's leave that for a follow up. I want to land http://gwt-code-reviews.appspot.com/1421811/ first. http://gwt-code-reviews.appspot.com/1427809/diff/1/user/src/com/google/gwt/uibinder/client/LazyDomElement.java File

[gwt-contrib] Re: Discards the jar file name in the resource location. It isn't necessary, and (issue1428805)

2011-05-02 Thread tobyr
LGTM Nice change. I like this better. (This failed last time. This might be a duplicate). http://gwt-code-reviews.appspot.com/1428805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Implementation of a RecordingEventBus, which is useful for writing (issue1429801)

2011-05-02 Thread rjrjr
LGTM Thanks! http://gwt-code-reviews.appspot.com/1429801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread rjrjr
Some nits. Needs Rafa's LGTM http://gwt-code-reviews.appspot.com/1428807/diff/1/user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java File user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java (right):

[gwt-contrib] Re: Fix Attachable for those poor fellows who don't have the bliss of SafeHtml enabled (yet). (issue1426808)

2011-05-02 Thread Ray Ryan
LGTM On Fri, Apr 29, 2011 at 2:06 PM, rdcas...@google.com wrote: Reviewers: rjrjr, Description: Fix Attachable for those poor fellows who don't have the bliss of SafeHtml enabled (yet). Please review this at http://gwt-code-reviews.appspot.com/1426808/ Affected files: M

[gwt-contrib] [google-web-toolkit] r10118 committed - Implementation of a RecordingEventBus, which is useful for writing...

2011-05-02 Thread codesite-noreply
Revision: 10118 Author: bd...@google.com Date: Mon May 2 08:00:17 2011 Log: Implementation of a RecordingEventBus, which is useful for writing tests that verify whether certain events have been fired. Review at http://gwt-code-reviews.appspot.com/1429801 Review by: rj...@google.com

[gwt-contrib] [google-web-toolkit] r10119 committed - Fix Attachable for those poor fellows who don't have the bliss of Safe...

2011-05-02 Thread codesite-noreply
Revision: 10119 Author: gwt.mirror...@gmail.com Date: Mon May 2 11:17:34 2011 Log: Fix Attachable for those poor fellows who don't have the bliss of SafeHtml enabled (yet). Review at http://gwt-code-reviews.appspot.com/1426808 Review by: rj...@google.com

[gwt-contrib] SafeHtmlRenderer code gen for UiBinder. (issue1427810)

2011-05-02 Thread rchandia
Reviewers: rjrjr, Description: SafeHtmlRenderer code gen for UiBinder. Picking-up patch from rietveld issue 1426803 Please review this at http://gwt-code-reviews.appspot.com/1427810/ Affected files: M user/src/com/google/gwt/uibinder/UiBinder.gwt.xml M

[gwt-contrib] Re: SafeHtmlRenderer code gen for UiBinder (issue1426803)

2011-05-02 Thread rchandia
Review will continue at http://gwt-code-reviews.appspot.com/1427810 On 2011/04/26 23:07:59, rjrjr wrote: Turns out the useLazyWidget stuff isn't passing all of the UiBinder tests yet. Ignoring that path for now seems reasonable. Sorry for the flip flop. On Mon, Apr 25, 2011 at 3:19 PM,

[gwt-contrib] Re: Phase 1 of GWT Dashboard. This includes an interface in gwt-dev for posting to a dashboard (defa... (issue1427807)

2011-05-02 Thread jhumphries
http://gwt-code-reviews.appspot.com/1427807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding additional testing for GWT RPC. Some custom serialized objects (issue1424801)

2011-05-02 Thread unnurg
LGTM On 2011/04/28 15:12:50, Stephen Chenney wrote: I have removed the out-of-date comment and ran a smoke test with a fresh pull of GWT. Everything is checking out. http://gwt-code-reviews.appspot.com/1424801/diff/1/user/test/com/google/gwt/user/client/rpc/CoreJavaTest.java File

[gwt-contrib] Adding a tutorial video to the MobileWebApp sample as an example of using HTML5 video. Also fixi... (issue1425815)

2011-05-02 Thread jlabanca
Reviewers: rchandia, Description: Adding a tutorial video to the MobileWebApp sample as an example of using HTML5 video. Also fixing issue 6300 (pressing cancel button doesn't work when adding a new task). Demo at http://jlabanca-testing.appspot.com/. Click the Need Help? link in the upper

[gwt-contrib] Re: Phase 1 of GWT Dashboard. This includes an interface in gwt-dev for posting to a dashboard (defa... (issue1427807)

2011-05-02 Thread jhumphries
I also added some conditions to BrowserChannelServerTest to integration test the way this class works with DevModeSession. And I had to add a utility class in the dev.shell package for use by unit tests when working with DevModeSession class (since its constructor and

[gwt-contrib] Re: Adding a tutorial video to the MobileWebApp sample as an example of using HTML5 video. Also fixi... (issue1425815)

2011-05-02 Thread rchandia
LGTM. Awesome! On 2011/05/02 18:56:59, jlabanca wrote: http://gwt-code-reviews.appspot.com/1425815/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Makes some private info from AttachableHTMLPanel accessible to subclasses. (issue1423813)

2011-05-02 Thread rdcastro
Reviewers: rjrjr, Description: Makes some private info from AttachableHTMLPanel accessible to subclasses. Please review this at http://gwt-code-reviews.appspot.com/1423813/ Affected files: M user/src/com/google/gwt/user/client/ui/AttachableHTMLPanel.java Index:

[gwt-contrib] Re: Makes some private info from AttachableHTMLPanel accessible to subclasses. (issue1423813)

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

[gwt-contrib] Add runtime-locale support for Localizable subtypes. (issue1425816)

2011-05-02 Thread jat
Reviewers: unnurg, Description: Add runtime-locale support for Localizable subtypes. This is a prerequisitive for later work moving things from being generated at compile-time to being mostly pre-generated during the CLDR import step. What can't be pre-generated is the runtime locales support,

[gwt-contrib] Re: Add runtime-locale support for Localizable subtypes. (issue1425816)

2011-05-02 Thread jat
http://gwt-code-reviews.appspot.com/1425816/diff/1/user/src/com/google/gwt/i18n/client/impl/cldr/LocalizedNamesImplBase.java File user/src/com/google/gwt/i18n/client/impl/cldr/LocalizedNamesImplBase.java (right):

[gwt-contrib] Fixing MediaTest#testAddSource to only compare the end of the src to the src that was set. Some... (issue1427811)

2011-05-02 Thread jlabanca
Reviewers: sbrubaker, Description: Fixing MediaTest#testAddSource to only compare the end of the src to the src that was set. Some browsers automatically prepend the host path to the src file name. Please review this at http://gwt-code-reviews.appspot.com/1427811/ Affected files: M

[gwt-contrib] Re: Fixing MediaTest#testAddSource to only compare the end of the src to the src that was set. Some... (issue1427811)

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

[gwt-contrib] [google-web-toolkit] r10121 committed - Fixing MediaTest#testAddSource to only compare the end of the src to t...

2011-05-02 Thread codesite-noreply
Revision: 10121 Author: jlaba...@google.com Date: Mon May 2 09:30:06 2011 Log: Fixing MediaTest#testAddSource to only compare the end of the src to the src that was set. Some browsers automatically prepend the host path to the src file name. Review at

[gwt-contrib] Re: Fixing MediaTest#testAddSource to only compare the end of the src to the src that was set. Some... (issue1427811)

2011-05-02 Thread jlabanca
committed as r10121 http://gwt-code-reviews.appspot.com/1427811/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10122 committed - Adding a tutorial video to the MobileWebApp sample as an example of us...

2011-05-02 Thread codesite-noreply
Revision: 10122 Author: jlaba...@google.com Date: Mon May 2 09:33:23 2011 Log: Adding a tutorial video to the MobileWebApp sample as an example of using HTML5 video. Also fixing issue 6300 (pressing cancel button doesn't work when adding a new task). Demo at

[gwt-contrib] Re: Adding a tutorial video to the MobileWebApp sample as an example of using HTML5 video. Also fixi... (issue1425815)

2011-05-02 Thread jlabanca
committed as r10122 http://gwt-code-reviews.appspot.com/1425815/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread hermes
http://gwt-code-reviews.appspot.com/1428807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread hermes
http://gwt-code-reviews.appspot.com/1428807/diff/1/user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java File user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java (right):

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread rjrjr
http://gwt-code-reviews.appspot.com/1428807/diff/1/user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java File user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java (right):

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread hermes
http://gwt-code-reviews.appspot.com/1428807/diff/1/user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java File user/src/com/google/gwt/uibinder/rebind/AbstractFieldWriter.java (right):

[gwt-contrib] [google-web-toolkit] r10123 committed - Guide eclipse users to jdk 1.6, not 1.5

2011-05-02 Thread codesite-noreply
Revision: 10123 Author: rj...@google.com Date: Mon May 2 09:43:22 2011 Log: Guide eclipse users to jdk 1.6, not 1.5 http://code.google.com/p/google-web-toolkit/source/detail?r=10123 Modified: /trunk/eclipse/README.txt === ---

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread rjrjr
Looks good as soon as I see FieldWriterOfExsitingTypeTest.java. It's okay to hold off on the integration test, but there shouldn't be anything in the way of writing a unit test a la FieldWriterOfGeneratedCssResourceTest. Sorry, I could have sworn I asked for that in the first review. Must have

[gwt-contrib] Including the TaskProxy (when available) in TaskEditPlace so we do not do an extra round trip to... (issue1428810)

2011-05-02 Thread jlabanca
Reviewers: rchandia, Description: Including the TaskProxy (when available) in TaskEditPlace so we do not do an extra round trip to the server to lookup the task. Also fixing a bug where the Task List menu item isn't selected when the task list is visible because TaskListPlace is no longer a

[gwt-contrib] [google-web-toolkit] r10124 committed - Edited wiki page TroubleshootingOOPHM through web user interface.

2011-05-02 Thread codesite-noreply
Revision: 10124 Author: to...@google.com Date: Mon May 2 13:03:37 2011 Log: Edited wiki page TroubleshootingOOPHM through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=10124 Modified: /wiki/TroubleshootingOOPHM.wiki

[gwt-contrib] [google-web-toolkit] r10125 committed - Edited wiki page TroubleshootingOOPHM through web user interface.

2011-05-02 Thread codesite-noreply
Revision: 10125 Author: to...@google.com Date: Mon May 2 13:04:25 2011 Log: Edited wiki page TroubleshootingOOPHM through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=10125 Modified: /wiki/TroubleshootingOOPHM.wiki

[gwt-contrib] Re: Adds ability to include SafeHtml objects in dom based UI's if the lazy (issue1421811)

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

[gwt-contrib] Re: Introducing FieldTypeWriter, an enum that identifies field writers and (issue1428807)

2011-05-02 Thread rjrjr
LGTM Hermes will follow up with tests posthaste http://gwt-code-reviews.appspot.com/1428807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds ability to include SafeHtml objects in dom based UI's if the lazy (issue1421811)

2011-05-02 Thread rjrjr
Updated with support for type parameters like W extends IsWidget IsPlaid in @UiChild methods. Unnur, can you take another look? http://gwt-code-reviews.appspot.com/1421811/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds ability to include SafeHtml objects in dom based UI's if the lazy (issue1421811)

2011-05-02 Thread rjrjr
Hey there Rodrigo. Unnur is on point for this review, but you might find it interesting. http://gwt-code-reviews.appspot.com/1421811/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Improve runtime locales support, so runtime locales that are under a (issue1421812)

2011-05-02 Thread jat
Reviewers: unnurg, Description: Improve runtime locales support, so runtime locales that are under a more specific compile-time locale do not appear under a more general one. An example would be compile locales of [es, es-419] and runtime locales of [es-es, es-co, es-ar] -- the runtime locales

  1   2   >