Re: Frame border and CSS

2012-06-14 Thread Craig Mitchell
Quick answer: IFrameElement.as(yourFrame.getElement()).setFrameBorder(0); On Tuesday, 14 November 2006 20:27:13 UTC+11, silent yorch wrote: so, that's why it sometimes worked in firefox, but never in IE... problem solved, thank you :D 2006/11/13, Mat Gessel : Frame border issue in IE:

Re: adding eventhandler to custon textbox field

2012-06-14 Thread arian
Hi, thanks for that. However the event is not fired. Could I be missing something. On Thursday, June 14, 2012 12:16:24 AM UTC+2, Jens wrote: Implement the HasXYZHandlers interfaces you need in your IndicatorTextField, e.g.: public class IndicatorTextField extends Composite implements

how to export a ArrayListString in gwt to external file?

2012-06-14 Thread tong123123
as captioned, assume I have an ArrayListString() sqlHistory in a gwt file, how to export this arraylist to an external file (prompt a save dialog and let user select where to save the file) on window platform? -- You received this message because you are subscribed to the Google Groups Google

Re: UiBinder as Cell widget

2012-06-14 Thread Thomas Broyer
On Thursday, June 14, 2012 5:47:05 AM UTC+2, Deepak Singh wrote: Then i will wait for 2.5. FYI, RC1 should be out within a week. -- 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: panel that implements RequiresResize

2012-06-14 Thread Thomas Broyer
On Thursday, June 14, 2012 6:18:20 AM UTC+2, tong123123 wrote: if a panel that implements RequiresResizehttp://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/RequiresResize.htmladd a widget, the panel always cannot be visible. is it a necessary that a

Re: SuperDevMode and APT

2012-06-14 Thread Paul Robinson
On 13/06/12 18:53, Andrea Boscolo wrote: I can confirm that copying the CodeServer's .gwt.rpc files in the local war dir, works but it's a pain: every time they change, they need to be copied. There's an alternative to copying gwt.rpc files. I've changed my app so that when it looks for the

Re: Designing for testability with MVP and Activities and Places

2012-06-14 Thread Thomas Broyer
On Thursday, June 14, 2012 6:19:23 AM UTC+2, Mike Dee wrote: Have a look at http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html The Wave guys came up with a model where the presenter controls the view, so there's no getter; the view calls the presenter back

Re: GWT UI Layout

2012-06-14 Thread Vasu
Rather than using any existing layout panel I would suggest you to use uiBinder by using HTMLPanel widget to design your root lay out and create the place holder using uifield which you can manipulate through your respective class of uibinder. That way you get a flexibility of having html and

Re-apply CSS Rules

2012-06-14 Thread Gary
I am modifying my program to react dynamically to window resizes, and also to make widget sizing more robust. I have a handler for window resize events; this calls a method in each of my main panels to resize all widgets accordingly. Everything is styled through CSS, mostly using percentages

Re: adding eventhandler to custon textbox field

2012-06-14 Thread Jens
Ooops, sorry my bad :) Somehow I assumed you want to fire events yourself using fireEvent() inside a composite. If you want to hook up your internal textbox then the easiest solution is to delegate to your internal textbox, e.g.: public HandlerRegistration addKeyUpHandler(KeyUpHandler handler)

Re: adding eventhandler to custon textbox field

2012-06-14 Thread arian
Thanks again. Maybe I can post you what I have done and you can pinpoint what I am missing IndicatorTextField.java public class IndicatorTextField extends Composite implements HasText, HasKeyUpHandlers, HasBlurHandlers{ public interface Binder extends UiBinderWidget,

Java 7 - Diamond Operator

2012-06-14 Thread Albert Attard
Hi everyone, The following error is returned when compiling code using the diamond operator (part of project coin in Java 7). Syntax error on token , ? expected after this token I am using the GWT 2.40 (Plugin - com.google.gwt.eclipse.sdkbundle_2.4.0.v201205091048-rel-r37). The following

Re: Re-apply CSS Rules

2012-06-14 Thread Thomas Broyer
CSS is dynamic, if you specified 50% in CSS, then the browser will take care of it so it's always 50% (of the sizing container). On Thursday, June 14, 2012 11:43:36 AM UTC+2, Gary wrote: I am modifying my program to react dynamically to window resizes, and also to make widget sizing more

Re: Java 7 - Diamond Operator

2012-06-14 Thread Thomas Broyer
On Thursday, June 14, 2012 12:49:55 PM UTC+2, Albert Attard wrote: Question: 1. Does GWT support Java 7 features? No. Not yet. Though it will likely take some time. 1. What changed do I need to perform in order to have the Java 7 code working without having to change the

Re: Java 7 - Diamond Operator

2012-06-14 Thread Albert Attard
Thanks for your reply. Albert On Thursday, June 14, 2012 12:57:36 PM UTC+2, Thomas Broyer wrote: On Thursday, June 14, 2012 12:49:55 PM UTC+2, Albert Attard wrote: Question: 1. Does GWT support Java 7 features? No. Not yet. Though it will likely take some time. 1. What

Re: Java 7 - Diamond Operator

2012-06-14 Thread Albert Attard
The page ( https://developers.google.com/web-toolkit/doc/latest/DevGuideCodingBasicsCompatibility) only mentions support for Java 1.5. Sorry for the trouble, I missed it before. I was looking for diamond operator before and found nothing, where my search criteria had to be different :(.

Re: Re-apply CSS Rules

2012-06-14 Thread Gary
Perhaps I should have tested my CSS first before asking a question. I was just searching the API for methods. Such folly, I do apologise. Thanks anyway. On Thursday, June 14, 2012 11:52:24 AM UTC+1, Thomas Broyer wrote: CSS is dynamic, if you specified 50% in CSS, then the browser will take

Re: Trying to understand how RF picks the domain objects to compose a request to a service

2012-06-14 Thread Tiago
On Tuesday, June 12, 2012 5:31:01 PM UTC+2, Thomas Broyer wrote: See http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryMovingParts#Flow for details on how a request is processed. The B domain object is created/loaded in the “All domain objects referred to by the payload will

Issue Reloading Frame

2012-06-14 Thread Thomas Mancini
All, I am currently working on a GWT project where I am displaying an HTML file within an iframe in my application. This HTML file is actually being written to as it is getting displayed, and I am hoping to be able to reload the frame so that the changes made to the HTML file are reflected on

Re: how to export a ArrayListString in gwt to external file?

2012-06-14 Thread Joseph Lust
tong, I have not tested this, but the following should do the trick for you. 1) Write a method to convert your sqlHistory to a string with the desired line returns (if you want each list entry on a separate row). 2) Convert it to a DataUrl for a text file with MIME text/plain 3) Open a new

Re: Issue Reloading Frame

2012-06-14 Thread Paul Stockley
You can use some JSNI to do this. Create a method such as protected native void reloadIFrame(Element iframeEl) /*-{ iframeEl.contentWindow.location.reload(true); }-*/; Then call it with your iFrame element On Thursday, June 14, 2012 10:17:26 AM UTC-4, Thomas Mancini wrote: All, I am

CellTable - Editor Framework - Object deep hierarchy (objects of objects)

2012-06-14 Thread Alfredo Quiroga-Villamil
I would be interested in any advice/approaches I can get at this point regarding the usage of CellTable in conjunction (if possible) with the Editor Framework. More details below. Hierarchy - Suppose you have a Set of Objects of type A. - A contains a Set of objects of Type B.

Inheritance and Generics in RequestContext

2012-06-14 Thread thiago borges martins
I have a problem of inheritance and generics in the RequestContext and could not solve it. Based on the documentation of this site: 'http:// www.aceevo.com/requestcontext-inheritance-coming-to-client-in-gwt-2-4/' in version 2.4 of GWT is already permitted to use generics in interfaces mapping

Re: CellTable - Editor Framework - Object deep hierarchy (objects of objects)

2012-06-14 Thread Thomas Broyer
On Thursday, June 14, 2012 5:45:01 PM UTC+2, Alfredo Quiroga-Villamil wrote: I would be interested in any advice/approaches I can get at this point regarding the usage of CellTable in conjunction (if possible) with the Editor Framework. More details below. Hierarchy

Re: Inheritance and Generics in RequestContext

2012-06-14 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6794 On Thursday, June 14, 2012 5:57:46 PM UTC+2, thiago borges martins wrote: I have a problem of inheritance and generics in the RequestContext and could not solve it. Based on the documentation of this site: 'http://

Re: UiBinder as Cell widget

2012-06-14 Thread Deepak Singh
Great news !!! On Thu, Jun 14, 2012 at 2:55 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, June 14, 2012 5:47:05 AM UTC+2, Deepak Singh wrote: Then i will wait for 2.5. FYI, RC1 should be out within a week. -- You received this message because you are subscribed to the Google

Re: CellTable - Editor Framework - Object deep hierarchy (objects of objects)

2012-06-14 Thread Alfredo Quiroga-Villamil
Really appreciate the response and help. This is definitely saving me a lot of time and confirms my previous suspicions. It really felt like my idea was forcing it to happen. It wasn't flowing and that is usually a good indication for me to hesitate and re-think the approach or look for guidance

Re: CellTable - Editor Framework - Object deep hierarchy (objects of objects)

2012-06-14 Thread Thomas Broyer
Basically when the editors fit nicely in the edit/flush flow. This is not the case with CellTwble which notifies you whenever a property changes, vs. waiting for you to flush the changes in batch. This can be worked around quite easily by queueing the changes as in the Showcase, but when you

Re: CellTable - Editor Framework - Object deep hierarchy (objects of objects)

2012-06-14 Thread Alfredo Quiroga-Villamil
Makes sense, thanks again for the help. Alfredo On Thu, Jun 14, 2012 at 1:49 PM, Thomas Broyer t.bro...@gmail.com wrote: Basically when the editors fit nicely in the edit/flush flow. This is not the case with CellTwble which notifies you whenever a property changes, vs. waiting for you to

Re: Designing for testability with MVP and Activities and Places

2012-06-14 Thread Mike Dee
We probably we go with Selenium. Someone else (other than me) will evaluate that. I look at MVP + JRE based testing/mocking and I have trouble seeing the value. All of our algorithms and database interactions are pojos and we have tons of JUnit tests written (without MVP + JRE tests/mocks).

Re: Issue Reloading Frame

2012-06-14 Thread Thomas Mancini
Thanks for the reply, although this also seems to work fine in Development mode, but not when Deployed and running via Tomcat. On Thursday, June 14, 2012 10:51:09 AM UTC-4, Paul Stockley wrote: You can use some JSNI to do this. Create a method such as protected native void

Re: SuperDevMode and APT

2012-06-14 Thread Stefano Ciccarelli
Great idea! It should work on GAE too using UrlFetch api to talk with the code server. Could you share some pieces of code, please? -- Inviato con Sparrow (http://www.sparrowmailapp.com/?sig) Il giorno giovedì 14 giugno 2012, alle ore 11:33, Paul Robinson ha scritto: On 13/06/12

Re: Designing for testability with MVP and Activities and Places

2012-06-14 Thread Peter Donald
On Fri, Jun 15, 2012 at 7:06 AM, Mike Dee mdichiapp...@gmail.com wrote: I look at MVP + JRE based testing/mocking and I have trouble seeing the value.  All of our algorithms and database interactions are pojos and we have tons of JUnit tests written (without MVP + JRE tests/mocks).  I ask

TextBox.selectAll/focus scroll issue

2012-06-14 Thread ado
The text is selected and the cursor is scrolled to the end of the text when the text box is focused. Why? If I want the text to be selected but the cursor to remain at position zero, how would I do that? /** * Entry point classes define codeonModuleLoad()/code. */ public class Main implements

GWT developer plugin for ie auto link is broken

2012-06-14 Thread aviad
i tried to search for different links online they are all broken the link i get when i press the blue button in development mode is :

Documents on GWT

2012-06-14 Thread vikash@Atos
Hi Google Apps Experts, We are looking out for some documents/tutorials and sample codes on GWT and JPA. Can anybody suggest where can we get it. Thanks, Vikash -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Getting started

2012-06-14 Thread vikash@Atos
Hi, Can you please suggest how the samples in Eclipse for GWT can be configured in Eclipse and run? Thanks, Vikash On May 31, 8:24 am, Kanagaraj M kanagaraj@gmail.com wrote: Eclipse GWT plugin comes with a nice and simple sample project. You are free to run without any changes. On

Development mode plugin for IE down

2012-06-14 Thread Wesley Moy
It seems like the development mode plugin for IE (both 32- and 64-bit) are inaccessible right now. Take a look at the links from http://gwt.google.com/missing-plugin/MissingPlugin.html. It seems that this page includes links to

GWT offline

2012-06-14 Thread DeathBlade
Can i use gwt offline? if so, how? I havent been able to get it to work offline for over a week -- 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: Firefox 13 DevMode Plugin

2012-06-14 Thread Luka Marinko
Thanks, works great. Luka Dne četrtek, 07. junij 2012 19:54:04 UTC+2 je oseba Alan Leung napisala: For the folks with fancy CPUs running Linux. http://acleung.com/ff13-linux64.xpi -Alan On Thu, Jun 7, 2012 at 9:40 AM, Yuri C che...@gmail.com wrote: LOL! I wish you didn't mention that.

ScriptEngineManager throws an Error but works... why?

2012-06-14 Thread Jepse
Hi there and hello to this group! (First Post) First i have to say gwt changed my programmer-life ;) Thanks for that! My Question: I'm using SctriptEngineManager in gwt shared package on client side to evaluate String based Conditions (42?) or formulas. Every time GWT executes the code, i

Insert an image in a RichTextArea

2012-06-14 Thread Mar
Hi, I'm developing a project that uses the RichTextToolbar as shown in the showcase ( http://gwt.google.com/samples/Showcase/Showcase.html#!CwRichText ) I need to insert an image in the RichTextArea but it needs to be resized before being added into the RichTextArea. The toolbar does this:

download gwt developer plugin for ie8 link broken

2012-06-14 Thread aviad shifman
when i try to install the developer plugin it tells me the link is broken -- 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

gxt, gin and guice example application

2012-06-14 Thread lingesh
hi, i need an application developed by using GXT, front end GIN and backend GUICE. thanks in advance. -- 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

Using GWT with UCSC Genome Browser

2012-06-14 Thread CF
I'm hoping someone might have suggestions or point me in the right direction. The UCSC group was unsure when I asked. I have a basic GWT setup and we want to be able to use this: http://genome.ucsc.edu/cgi-bin/hgCustom from the UCSC genome browser group. Basically, the form lets you upload a

Re: Super Dev Mode : Cannot get module to compile with -workDir

2012-06-14 Thread Brian Slesinsky
On Monday, June 11, 2012 6:02:05 PM UTC-7, Danny Kirchmeier wrote: I'm trying out the new Super Dev Mode from the trunk. While I can get the codeserver to compile the module normally, it hangs when I specify -workDir. Well, it shouldn't do that :-) When it hangs, could you try running

Re: SuperDevMode and GwtGenerators

2012-06-14 Thread Brian Slesinsky
I haven't done anything special to try to make this work, but it sounds like a nice performance win. I created an issue for this: http://code.google.com/p/google-web-toolkit/issues/detail?id=7422thanks=7422ts=1339527186 On Thursday, June 7, 2012 6:25:20 AM UTC-7, Gal Dolber wrote: Are

popupPanel position

2012-06-14 Thread Bruno Barreto
Hi, I am trying to set the position of a simple popupPanel that contains a Loading message. I want to show it in the top of the user screen, but it must follow the top of the screen when the user scrolls down the page, still being visible. Anyone know how I can do that? thanks -- You received

broken link for IE devmode browser plugin

2012-06-14 Thread Allan
When I go to http://gwt.google.com/missing-plugin/MissingPlugin.html, The links for both IE plugin versions are broken (404). Is there somewhere else I can get those plugins? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Need to style DataGrid's header table element

2012-06-14 Thread Jeremy Ross
I need to set border-collapse: collapse on the table element that makes up the DataGrid's header. I don't see a style class in DataGrid.Stylehttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/cellview/client/DataGrid.Style.htmlthat would allow me to do this. Also,

Re: GWT Spring Security

2012-06-14 Thread khk
On Wednesday, June 13, 2012 8:47:47 AM UTC+8, dhoffer wrote: I'd like to get feedback on the best way to secure GWT apps with Spring Security. I read several existing blogs about this online but they are all (that I have found) quite old at this point. Specifically what's the best way

Tutorials on SmartGWT Google Visualization

2012-06-14 Thread Songtao
Hello, I am newbie to GWT and looking for some light on how implanting Google Visualization into SmartGWT Canvas, if anyone has ideas or solutions about it, or having a tutorial available online, please direct me to that. Thank you! -- You received this message because you are subscribed

ScriptEngineManager

2012-06-14 Thread Jepse
Hi there, I'm curious about the gwt behavior with ScriptEngineManager. Everytime it comes over this class it throws an error in development console. But it works fine - feels more like a warning in this case: *No source code is available for type javax.script.ScriptEngineManager; did you

Re: GWT, SmartGWT, Google Visualization Help

2012-06-14 Thread Songtao
Hello Matt, I am newbie for GWT but currently developing a machine system monitoring web application and using SmartGwt as my tool. Right now I am having trouble with implanting Google Visualization into the the SmartGwt Canvas. If you have any ideas or solutions about it, please shed me

Re: GWT draggable CellTable cells

2012-06-14 Thread js
Hi, I faced same problem. I set draggable to true on cellTable.getElement() and added DragStartHandler to CellTable. This works. cellTable.getElement().setDraggable(Element.DRAGGABLE_TRUE); cellTable.addDomHandler(new DragStartHandler() {...}); I can drag selected rows (with help of selection

Re: Problem installign gwt in eclipse

2012-06-14 Thread Jeff Silverman
On Friday, June 8, 2012 4:56:20 AM UTC-7, Ed wrote: If your using AVG turn off link checker. Ed, I am something of a Newbie to Eclipse. What is AVG and what is the link checker? How do I turn it off? Many thanks, Jeff Silverman On Tue, Jun 5, 2012 at 1:14 PM, sahli sabrina

Update GWT for eclipse

2012-06-14 Thread Nguyen Chi Thanh
I have had trouble when checking for update on eclipse Unable to connect to repository http://dl.google.com/eclipse/inst/d2gwt/latest/3.7/content.xml; -- 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: Standalone zip download of GWT Designer

2012-06-14 Thread upasana k
https://code.google.com/p/gwt-designer/downloads/detail?name=GWTDesigner_v2.4.2_UpdateSite_for_Eclipse3.7.zipcan=2q= On Friday, 12 August 2011 21:11:53 UTC+5:30, DMcC wrote: Does anyone have the latest standalone links? On Jul 6, 3:23 am, Eric Clayberg - Instantiations clayb...@gmail.com

installation of GWT 2.4.0 and failure in building first application.

2012-06-14 Thread Huib Valstar
I installed Eclipse 3.7 (Indigo), GWT 2.4.0, GWT Designer, Apache ANT 2.0. And finally I created a web project. The application in the web project can be built. I start the web application and get the constant message the xx.nocache.js has a failure and the webpage is incomplete. In the

Re: GWT Spring Security

2012-06-14 Thread dhoffer
Joseph, How do you handle Spring's 'remember me', session management and auto login/logout? I'm curious how you setup your use of Spring. Could you post your configuration? I assume you don't use Spring's auto- config, etc? Thanks, -Dave On Jun 13, 3:56 pm, Joseph Lust lifeofl...@gmail.com

Re: Super Dev Mode : Cannot get module to compile with -workDir

2012-06-14 Thread Danny Kirchmeier
On Tuesday, June 12, 2012 1:43:09 PM UTC-5, Brian Slesinsky wrote: When it hangs, could you try running jstack on the process to get a thread dump? Well, now it appears to be working. I haven't updated the code with a new version, so I don't know what happened. If it happens again, I'll

Re: HTML-safety best practices

2012-06-14 Thread tong123123
I found in gwt 2.4, the ImageCell Class is interface Template extends SafeHtmlTemplates{ @Template (img src=\{0}\/ SafeHtml img(String url); } so it will rise the warning Template with variable in URL attribute context:The template code generator cannot guarantee HTML-safety of the

[gwt-contrib] Re: Elemental + build scripts initial import. (issue1728806)

2012-06-14 Thread cromwellian
Thomas, I went ahead and landed this because we need to start testing 2.5 for release and this patch is unwieldly large. I will follow up with much smaller patches that fix the various issues. :) http://gwt-code-reviews.appspot.com/1728806/ --

[gwt-contrib] Re: Include json-1.5.jar in gwt-dev.jar. JSON is needed by the Closure (issue1732804)

2012-06-14 Thread t . broyer
LGTM. I'll make another CL updating the Maven artifacts. http://gwt-code-reviews.appspot.com/1732804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Include json-1.5.jar in gwt-dev.jar. JSON is needed by the Closure (issue1732804)

2012-06-14 Thread t . broyer
On 2012/06/14 07:17:21, tbroyer wrote: I'll make another CL updating the Maven artifacts. http://gwt-code-reviews.appspot.com/1732804/ http://gwt-code-reviews.appspot.com/1732804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Include json-1.5.jar in gwt-dev.jar. JSON is needed by the Closure (issue1732804)

2012-06-14 Thread t . broyer
On 2012/06/14 07:25:50, tbroyer wrote: On 2012/06/14 07:17:21, tbroyer wrote: I'll make another CL updating the Maven artifacts. http://gwt-code-reviews.appspot.com/1732804/ Oops, sorry, wrong link: https://gwt-code-reviews.appspot.com/1737805/

[gwt-contrib] Update Maven deployment re. JSON dependency. (issue1737805)

2012-06-14 Thread t . broyer
Reviewers: cromwellian, skybrian, Message: This is a follow up to http://gwt-code-reviews.appspot.com/1732804/ It unbundles org/json from gwt-dev before deploying to Maven Central, and adds it as a dependency instead (as we did for requestfactory-*). org.json is also added as a dependency to

[gwt-contrib] Re: Bundle org.json in gwt-dev and javax.validation into gwt-user, unbundle from requestfactory-* (issue1731804)

2012-06-14 Thread t . broyer
On 2012/06/14 01:20:58, skybrian wrote: To fix the compiler and close issue 7397, we only need to add json (of any version) to gwt-dev.jar. So I think I'm going to commit a tiny change that just does that. We can defer the other stuff until we have a better plan. OK let's do that. Baby

[gwt-contrib] Re: Bundle org.json in gwt-dev and javax.validation into gwt-user, unbundle from requestfactory-* (issue1731804)

2012-06-14 Thread Thomas Broyer
On Wed, Jun 13, 2012 at 11:23 PM, Rajeev Dayal rda...@google.com wrote: On Wed, Jun 13, 2012 at 5:04 PM, Brian Slesinsky skybr...@google.com wrote: I don't think we support Java 1.5 anymore? http://code.google.com/p/google-web-toolkit/issues/detail?id=6790

Re: [gwt-contrib] Re: Make CodeSplitter2 outputs a reasonable SOYC. (issue1726803)

2012-06-14 Thread Freeland Abbott
On Wed, Jun 13, 2012 at 3:15 PM, Alan Leung acle...@google.com wrote: On Mon, Jun 11, 2012 at 5:23 PM, skybr...@google.com wrote: I don't understand this code, but I wonder if there is any way to write a smoke test for soyc? I left a TODO for now. Without challenging Alan's decision here

[gwt-contrib] Re: Extracted constant strings to the constructor, that allow translation to be provided from the ou... (issue1739803)

2012-06-14 Thread jat
On 2012/06/14 15:19:09, rkj wrote: I am a bit confused now. I follow the example: https://developers.google.com/web-toolkit/doc/latest/tutorial/i18n As I understand the GWT.create should create proper implementation based on properties file - why isn't that so? The issue is that they would

[gwt-contrib] Re: Update POM versions to 2.5.0-rc1 (issue1734804)

2012-06-14 Thread rchandia
Submitted as r11057 http://gwt-code-reviews.appspot.com/1734804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Prevent compilation failures due to type inferencing bugs (bug 6302954 at bugs.sun.com) in older... (issue1736805)

2012-06-14 Thread rdayal
Reviewers: skybrian, Description: Prevent compilation failures due to type inferencing bugs (bug 6302954 at bugs.sun.com) in older versions of JDK6. Please review this at http://gwt-code-reviews.appspot.com/1736805/ Affected files: M user/src/com/google/gwt/core/client/GWT.java M

[gwt-contrib] Removes execution order dependency on EnumOrdinalizerTest (issue1731806)

2012-06-14 Thread acleung
Reviewers: skybrian, Description: Removes execution order dependency on EnumOrdinalizerTest Please review this at http://gwt-code-reviews.appspot.com/1731806/ Affected files: M dev/core/test/com/google/gwt/dev/jjs/impl/EnumOrdinalizerTest.java --

[gwt-contrib] Re: Extracted constant strings to the constructor, that allow translation to be provided from the ou... (issue1739803)

2012-06-14 Thread jat
http://gwt-code-reviews.appspot.com/1739803/diff/6002/user/src/com/google/gwt/user/cellview/client/CellTree.java File user/src/com/google/gwt/user/cellview/client/CellTree.java (right):

[gwt-contrib] Re: Prevent compilation failures due to type inferencing bugs (bug 6302954 at bugs.sun.com) in older... (issue1736805)

2012-06-14 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1736805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Update Maven deployment re. JSON dependency. (issue1737805)

2012-06-14 Thread skybrian
LGTM. I'll submit this. On 2012/06/14 07:32:40, tbroyer wrote: because gwt-user has no declared dependency on gwt-dev (this might be a mistake, or not) I'm guessing this is because we don't want GWT user code to have dependencies on classes that should only be used in the compiler.

[gwt-contrib] Re: Removes execution order dependency on EnumOrdinalizerTest (issue1731806)

2012-06-14 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1731806/diff/1/dev/core/test/com/google/gwt/dev/jjs/impl/EnumOrdinalizerTest.java File dev/core/test/com/google/gwt/dev/jjs/impl/EnumOrdinalizerTest.java (right):

[gwt-contrib] Re: Integrate Elemental to the build and deploy as Maven artifact (issue1727808)

2012-06-14 Thread t . broyer
Updated the CL with some fixes to the Ant build: - failed in the absence of a CC environment variable - tried to copy to elemental/java where as the source is in elemental/src; instead of copying to src, I instead kept the generated source separate and simply added elemented/idl/generated/src

Re: [gwt-contrib] Re: Integrate Elemental to the build and deploy as Maven artifact (issue1727808)

2012-06-14 Thread Ray Cromwell
I fixed those already but unfortunately it looks like the Google - SVN mirror is stuck again. opps, no, my internal commit failed to through) I'll accept your solution because it's better than copying (doesn't pollute your SVN directories) -Ray On Thu, Jun 14, 2012 at 2:46 PM,

[gwt-contrib] Re: Integrate Elemental to the build and deploy as Maven artifact (issue1727808)

2012-06-14 Thread skybrian
https://gwt-code-reviews.appspot.com/1727808/diff/8001/build.xml File build.xml (right): https://gwt-code-reviews.appspot.com/1727808/diff/8001/build.xml#newcode41 build.xml:41: call-subproject subproject=elemental subtarget=build / I asked Ray about this. Elemental is experimental and its

[gwt-contrib] Fix Super Dev Mode's code server to launch on localhost by default. (issue1740803)

2012-06-14 Thread skybrian
Reviewers: acleung, Description: Fix Super Dev Mode's code server to launch on localhost by default. (There were comments about this but it wasn't actually true.) Add -bindAddress option to override this. In particular, -bindAddress 0.0.0.0 restores previous behavior. Please review this at

[gwt-contrib] Re: Fix Super Dev Mode's code server to launch on localhost by default. (issue1740803)

2012-06-14 Thread cromwellian
On 2012/06/15 00:48:51, skybrian wrote: LGTM http://gwt-code-reviews.appspot.com/1740803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix Super Dev Mode's code server to launch on localhost by default. (issue1740803)

2012-06-14 Thread cromwellian
http://gwt-code-reviews.appspot.com/1740803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Integrate Elemental to the build and deploy as Maven artifact (issue1727808)

2012-06-14 Thread Ray Cromwell
In particular, elemental will not build on a Windows box or an OSX box that does not have XCode installed. The requirements for the code-gen are Python 2.6 pre-installed and gcc pre-installed. So I don't think we can add it to the default built, but rather, we will distribute the jar in the 2.5