Again: GWT Struts2

2009-10-15 Thread grue
Hi, I have to extend an existing Struts2 application. Since we have created some other applications entirely with GWT I'd like to put some new GWT UI components in the existing Struts app. I've been digging through the web and it seems that this is possible and some people have done it. Anyway,

Re: ContentType application/json returned on form submission

2009-10-15 Thread Thomas Broyer
On 14 oct, 23:40, davis davisf...@zenoconsulting.biz wrote: Hi, I'm not sure this is necessarily germane to GWT, but I thought I'd give it a shot here. I am using a FormPanel to submit a POST.  When the post finishes, I return an application/json that I want to do something with. I have

Re: Trouble with Entity Beans in GWT

2009-10-15 Thread ylmz
First of all I am new to GWT too. So if anybody feel a need to correct me, please feel free to do so. I suggest you check home page of gwt first and understant what it is and where it runs. Basicly with gwt you write .java files and you create .js file from them. (.class) gwt cross compiles your

Re: OOPHM and Mac OSX

2009-10-15 Thread Miguel Méndez
Can you post back the command line from the problematic launch configuration? (You can see what the command line is by right-clicking on the process in the Debug View and selecting properties) Also, are you using a Contributor SDK? On Wed, Oct 14, 2009 at 10:33 PM, Will wil...@gmail.com wrote:

Re: OOPHM plugin for firefox problem.

2009-10-15 Thread dougx
Seems that because I was trying to switch an existing eclipse project over to the new version my war/WEB-INF/lib/gwt-servlet.jar was still the 1.7 version; replacing it with the same file from 2.0 ms1 archive fixed the problems I was having. (Well... the browser still doesn't launch

Re: Best practice for several html pages

2009-10-15 Thread Insano
How would you map the different entry points with different HTML files? On Sep 14, 8:08 pm, El Mentecato Mayor rogelio.flo...@gmail.com wrote: In my case, the login page needs functionality shared with the regular app, so it is better to have a single module with two entry points. Anoher

Re: GWT-Gears Offline Module

2009-10-15 Thread Alex Bertram
Hi Eric, Oh thanks for making the link with the issue tracker. I would actually like to move this code and the WorkerLinker I've been working on into the gwt-google-apis trunk -- but I'm having trouble with the build mechanism in the gwt-google-apis projects and haven't been able to get any unit

Re: Creating a sample application of 3 different pages

2009-10-15 Thread neerou
Any one has an idea abt the issue below? On Oct 14, 4:23 pm, neerou nee...@gmail.com wrote: Hello, I am novice to GWT. Since now I have been trying the exercises  on the Code.google site.  I would now want to create different pages in the application. 1) a login page 2) a list of items 3)

Re: IE freeze for GWT Flex Table with 300 rows

2009-10-15 Thread maheshm1206
It's also better to not attach the table to the page until the entire table has been created. Thanks, it helped a lot. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: panel in tabpanel cannot be set to invisible

2009-10-15 Thread Ian Bambury
I just ran a quick test, adding and removing the same item to a tab panel 25,000 times in Chrome, GWT1.7 - no memory increase. Just making the tab disappear means that you can't release the memory used by the corresponding widget if you wish. Can you post some code that demonstrates your memory

XML Parsing Issue with FireFox

2009-10-15 Thread Parmeet Kohli
Hi, Has anyone faced an issue with parsing XML in FF ?? I hope i can explain the problem accurately. My XML starts with ?xml version=1.0 encoding=ISO-8859-1? TestCase URLhttp://192.168.0.153:8080/axis2/services/Calculator?wsdl/ URL TestStep ... Now in IE

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Ian Bambury
I'm still not really clear on what you are doing, but is this any help? In 1.7 you can run 2 individual projects at the same time from within Eclipse if you use -noserver. You'll need 2 local web servers (I use Abyss) each having their document root pointed at one of the war folders of the

Re: panel in tabpanel cannot be set to invisible

2009-10-15 Thread Rockster
hi Alex, thanks for the code-snippet. It worked out as expected. The tabs are dynamically created, so removing them (and later adding them) would require that I keep references in memory to later make it visible again. So this code is really helpfull! On Oct 15, 1:26 pm, Ian Bambury

Re: Creating a sample application of 3 different pages

2009-10-15 Thread Alex
As far as I know there are three ways to archive that goal (resp. an impression that there are multiple pages). 1. You could use the DeckPanel. This way you app reacts very fast on the user, but your design is hidden in the java code. 2. You could put your different pages into a single HTML file

Re: python gwt

2009-10-15 Thread Arthur Kalmenson
You could always look at Pyjamas project as an alternative: http://code.google.com/p/pyjamas/. I've never used it so I can't say how good it is, but it has quite a few people on the project, if that says anything :P -- Arthur Kalmenson On Sun, Oct 4, 2009 at 4:44 PM, alf alberto@gmail.com

Re: OOPHM GWT 2.0 Milestone 1 on Mac

2009-10-15 Thread Rajeev Dayal
Well, glad everything is working now. If you run into any related problems, post back on this thread. On Wed, Oct 14, 2009 at 2:45 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: Nah it wasnt the same name. Anyway the latest patch resolved my problem haha. At least I was able to

Re: Using terracotta with gwt eclipse plugin

2009-10-15 Thread Rajeev Dayal
Hey Edo, GWT's development mode web server uses Jetty, so it is also possible that the problem may have something to do with Jetty itself, or GWT's configuration of Jetty. To test if the plugin itself is the cause, can you create a pure Java launch configuration for your project, and launch it

Re: OOPHM plugin for firefox problem.

2009-10-15 Thread Rajeev Dayal
Hey dougx, Are you using the Google Plugin for Eclipse? If so, switching the SDK should update the gwt-servlet.jar in your war/WEB-INF/lib folder. However, there is another issue that you'd run into: http://code.google.com/p/google-web-toolkit/issues/detail?id=4126

problem with nocache.js

2009-10-15 Thread ramesh chiluveri
Hai All, I am facing problem to run my gwt application. I am using gwt-1.5.3 version in Eclipse. When i create sample application it is generating html as html head !-- -- !-- Any title is fine

Re: OOPHM and Mac OSX

2009-10-15 Thread Will
I managed to resolve the spinning beach ball by restarting eclipse after I regenerated GWT from trunk. My only guess is that the old libraries were still being held in memory and were not being replaced by the new ones? I'm at a loss but at this point I'm no longer getting the beach ball.

Re: GWT 2.0: development mode without gwt.hosted in URL

2009-10-15 Thread Chris Ramsdale
Given that the other apps which you are communicating with are out of your control, and that the issue you are experiencing is during development/testing your best route may be to mock up test servers that replicate the interfaces you are integrating with. These mocks would not only be able to

Error upon deploying to Google AppEngine through Eclipse plugin

2009-10-15 Thread bizkut
Hey, I just got my Wave account, and am working on making some test Robots, so I went ahead and followed all the instructions, and have a test Robot made. I go to deploy through the panel button, enter my login information, and about halfway through, I come across this in the error logs: Unable

is Gwt-Rpc compatible with WebApp Firewall ?

2009-10-15 Thread Olivier
Hello, My question is the following : is Gwt-Rpc type message compatible with web-app firewall ? Such tools will parse the incomming http with regex to block sequence like SELECT... for defense purpose against SQL injection... Since message are serialized with Gwt-Rpc, I would like to know if

Re: GWT-Gears Offline Module

2009-10-15 Thread Eric Ayers
Are you using trunk or one of the release branches (can you send me the path to your svn checkout?)? I believe the compile.emma issue is fixed in trunk. On Thu, Oct 15, 2009 at 6:58 AM, Alex Bertram akbert...@gmail.com wrote: Hi Eric, Oh thanks for making the link with the issue tracker. I

Re: DecoratorPanel - issue with the CSS inheritance.

2009-10-15 Thread before
Hi, I had more or less the same problem : an object extending DecoratorPanel, with its own style defined in the same style sheet than the DecoratorPanel one and set by setStyleName . The style seemed to not be applyed when my object was placed inside a DecoratorPanel. Thank's to Firebug, I

Re: Gears crashes the Chrome GWT DMP Plugin

2009-10-15 Thread Ian Bambury
Does no-one else get this? Or does everyone, but not care? Is no-one at Google interested that their product crashes? Oh, well... Ian http://examples.roughian.com 2009/10/10 Ian Bambury ianbamb...@gmail.com Is this a known issue? I can't find one. It's the simplest of tests and crashes on

Re: XML Parsing Issue with FireFox

2009-10-15 Thread Thomas Broyer
On 15 oct, 13:39, Parmeet Kohli parmeet.ko...@gmail.com wrote: Hi,     Has anyone faced an issue with parsing XML in FF ??     I hope i can explain the problem  accurately.     My XML starts with ?xml version=1.0 encoding=ISO-8859-1?    TestCase        

Re: Download file

2009-10-15 Thread Jeff Chimene
On Wed, Oct 14, 2009 at 4:04 PM, mikea_59 mikea...@yahoo.com wrote: I haven't tried the servlet route yet. I've been doing something like this:      Window.open(GWT.getHostPageBaseURL() + reports/ + (String) csvFile, _blank, ); where      GWT.getHostPageBaseURL() + reports/ + (String)

Re: Gears crashes the Chrome GWT DMP Plugin

2009-10-15 Thread Eric Ayers
Hi Ian, Could you please file an issue for this in the issue tracker? http://code.google.com/p/google-web-toolkit/issues Please let us know what versions of all software you are using (gwt-gears, GWT, OS platform, etc.) On Thu, Oct 15, 2009 at 10:32 AM, Ian Bambury ianbamb...@gmail.com wrote:

Using a define in java

2009-10-15 Thread tedpottel
Hi I may have already posted this, but cannot find it. I’n using Ajax code, I have 3 different servers the php file is in, depending on what I’m debugging. I have the Jiffy server when debugging within eclipse, then I have my local Apache server, when I’m trying to debug the php code, and a

Re: GWT-Gears Offline Module

2009-10-15 Thread Eric Ayers
No, wait, I see it now when I do an svn up in trunk. On Thu, Oct 15, 2009 at 7:09 AM, Eric Ayers zun...@google.com wrote: Are you using trunk or one of the release branches (can you send me the path to your svn checkout?)?  I believe the compile.emma issue is fixed in trunk. On Thu, Oct

Re: Download file

2009-10-15 Thread mikea_59
I'm not doing aything with MIME, I have a simple .csv on the server and I reference the full URL in the window.open() call. Where would I set the MIME type? Are you setting the MIME type on the server? You can either create it in your application or perhaps your server can set it via a

Re: GWT Cross-domain problem

2009-10-15 Thread Dominik Steiner
or you could use cross-site JSON requests http://code.google.com/intl/de/webtoolkit/tutorials/1.6/Xsite.html HTH Dominik On Oct 14, 8:53 am, Bakul bakul.ku...@gmail.com wrote: GWT RPC call must be served from the same server from where GWT generated script initially served on the browser.

Re: Horizontal Panel isn't displaying

2009-10-15 Thread Dominik Steiner
Hi Brendan, for such problems I would recommend using GWT 2.0 and the OOPHM so that you can debug your application from within FF for example and use FireBug to inspect your HorizontalPanel (which will be a table in the DOM) and look with Firebug why the anchors are not visible in it. (which

Re: com.google.gwt.user.client.rpc.SerializationException: java.lang.reflect.InvocationTargetException

2009-10-15 Thread Dominik Steiner
you should check that all of the types of your properties insides your DTO are also serializable and have an empty default constructor. HTH Dominik On Oct 13, 11:45 pm, Satya Lakshminath lakshminat...@gmail.com wrote: Hi, I am too getting a similar problem like was reported above I am

Re: Announcing GWT 2.0 Milestone 1

2009-10-15 Thread Miguel Méndez
Thanks Ben. I'll correct the first post. On Thu, Oct 15, 2009 at 11:04 AM, Ben benzhe...@gmail.com wrote: Hi, Miguel, I already did that and I think maybe the instructions in the first post of this thread should do some changes otherwise it is going to confuse people. Thanks a lot! 1.1.2

Re: Run in hosted mode and web.xml

2009-10-15 Thread Brian
I've run into this exact same problem. I haven't tried too hard to fix it yet. It hasn't cropped up much since our web.xml changes so infrequently. I'm currently only working with 2 other developers, so it also hasn't been an issue to have everyone just know that they need to re-copy this file if

Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread francescoNemesi
Hello, I am using Eclipse 3.3.2, this morning I updated the Google eclipse plugin to 1.1.2.v200910130758 and I have a problem. Eclipse does not build my Google (I only GWT) projects anymore. It behaves as if it builds the project, does not give any error, but there no .class files in my classes

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread Miguel Méndez
Could you take a look at your eclipse .log file and see what errors are there? You can find it in your WORKSPACE_DIR/.metadata/.log. On Thu, Oct 15, 2009 at 11:51 AM, francescoNemesi nem...@yahoo.com wrote: Hello, I am using Eclipse 3.3.2, this morning I updated the Google eclipse plugin to

Re: Mouse Event Handling?

2009-10-15 Thread AndyB
Ah I see thank you very much. I have gone with using anonymous classes. Andyyy On Oct 12, 9:10 am, Thomas Broyer t.bro...@gmail.com wrote: On 12 oct, 00:37, AndyB rn.an...@gmail.com wrote: I am having difficulty understanding the GWT Mouse event handlers. I was hoping someone could offer

Good GWT Book?

2009-10-15 Thread AndyB
Hi, I have been reading Google Web Toolkit Applications from gwtapps.com in order to learn how to use GWT. But unfortunately it is from a much older version of gwt and a lot of the code has been depreciated. Has anyone got any good recomendations for resources or books on learning how to use

Re: Download file

2009-10-15 Thread Jeff Chimene
On 10/15/2009 08:20 AM, mikea_59 wrote: I'm not doing aything with MIME, I have a simple .csv on the server and I reference the full URL in the window.open() call. Where would I set the MIME type? That would be in some server-dependent configuration. However, after re-reading your posts,

Floting elements inside a ScrollPanel

2009-10-15 Thread grue
Hi, I have implementet some sort of calendar widget using a Grid. This calendar is supposed to show the availability of various things. To indicate that a particular object is occupied in a given timeframe I want to draw some bars across the calendar. Look at http://picbattle.ch/calendar.png to

Re: HistoryHandler GWT 1.7.1 doubleclick

2009-10-15 Thread Brian
Using the back/forward buttons for undo/redo is not a good idea. There are too many ways that your client app and server state could get out of sync. The forward/back button and history management should be used to control view state rather than application data state. This came up during the

Re: HistoryHandler GWT 1.7.1 doubleclick

2009-10-15 Thread mijaelovic
It looks History has a bug on 1.7.1 in general. I was having problems with Back button and then I re-compile and now in hosted mode I got: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/eb6cc9d038ffc3dd# On Oct 15, 6:10 pm, Brian brian.irei...@gmail.com wrote: Using the

Re: Gears crashes the Chrome GWT DMP Plugin

2009-10-15 Thread Ian Bambury
Submitted as issue 4131 Ian http://examples.roughian.com 2009/10/15 Eric Ayers zun...@google.com Hi Ian, Could you please file an issue for this in the issue tracker? http://code.google.com/p/google-web-toolkit/issues Please let us know what versions of all software you are using

Re: Floting elements inside a ScrollPanel

2009-10-15 Thread Ian Bambury
A FlexTable instead of a grid would allow you to span columns in a row, add padding, and put a label in it. The only problem you will hit is that cell numbers get right complicated. In your example, you seem to have a granularity of 15m so on row one, you'd have 8 empty cells, then another cell

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Romeo Sanchez
Thanks a lot for your help. I am going to take a look at your pointers. Sincerely, RSN On Thu, Oct 15, 2009 at 4:53 AM, Ian Bambury ianbamb...@gmail.com wrote: I'm still not really clear on what you are doing, but is this any help? In 1.7 you can run 2 individual projects at the same time

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Ian Bambury
Just shout if you get stuck. It's one of those situations where you just need to get it working and then you can ignore it, if you get it working, you don't actually need to *understand* it :-) Ian http://examples.roughian.com 2009/10/15 Romeo Sanchez romeo.sanc...@gmail.com Thanks a lot for

Can you detect a double click on a list box

2009-10-15 Thread tedpottel
Hi, I cannot figure out how to have a event go off for a doubl click on a list box? I heard tbhat version 2.0 supports this? -Ted --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Good GWT Book?

2009-10-15 Thread davis
Hi Andy, the code moves fast. That's the story with most frameworks that are actively under development. I picked up both Manning books GWT In Practice, GWT In Action -- and read them both. They are both decent in getting you familiar with the framework. Unfortunately, a lot of that code is

Re: GWT 2.0: development mode without gwt.hosted in URL

2009-10-15 Thread itsnotme
Hi, I'm already doing that: I'm developing on a test website and I can do anything I want with it. I just wanted to point out that, IMHO, the solution of polluting the URL is not the best one considering the vast amount of scenarios which GWT is applicable to. If only the plugin were able to

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread francescoNemesi
Hi Miguel, thanks for your reply, below you can find the log, written when I started Eclipse. I only have one project open in my workspace, the one mentioned in the second error. !SESSION 2009-10-15 21:01:15.965 --- eclipse.buildId=M20080221-1800

Re: Good GWT Book?

2009-10-15 Thread Ben
I agree with Davis. The GWT is changing very fast especially with GWT 2.0 coming out. You should try to read some GWT blogs and Google IO stuff. And Google is always a good way if you have some problem. Just search it. HTH Ben On Oct 15, 1:49 pm, davis davisf...@zenoconsulting.biz wrote: Hi

Re: Announcing GWT 2.0 Milestone 1

2009-10-15 Thread Eric
On Oct 5, 7:43 pm, Amit Manjhi amitman...@google.com wrote: * Changes to the distribution: Note that there's only one download, and it's no longer platform-specific. You download the same zip file for every development platform. This is made possible by the new plugin approach used to

Re: Client Side Logging

2009-10-15 Thread Adligo
Hi, Also there is i_log a apache commons logging port; http://cvs.adligo.org/viewvc/ i_log project depends on i_util and gwt_util for gwt runtime See the dist package for compiled code http://www.adligo.com/dist2/gwt/gwt_main_v3_0/ and some examples http://www.adligo.com/#Products Also I

Is there a way to block until a server response is available?

2009-10-15 Thread AndiMullaraj
There are cases when blocking calls to server are indispensable (agreed, assync calls are the way to go for 99% of the cases). I scanned the client API and cannot find a way on how to do this. If not through a direct API call, is there a way on how to achieve this? (Like having a

Re: GWT documentation available for download?

2009-10-15 Thread El Mentecato Mayor
There's an outdated version here: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/6cadca3f1e1c9fcf/0235d6eb2c9df85d#0235d6eb2c9df85d On Oct 14, 7:37 am, jAY jaychandra...@gmail.com wrote: Is it available for download? On Oct 2, 8:25 pm, mo moritz.peter...@gmail.com

Re: Is there a way to block until a server response is available?

2009-10-15 Thread Shawn Pearce
On Thu, Oct 15, 2009 at 15:48, AndiMullaraj andimulla...@gmail.com wrote: There are cases when blocking calls to server are indispensable (agreed, assync calls are the way to go for 99% of the cases). I scanned the client API and cannot find a way on how to do this. If not through a direct

HorizontalPanel Cell Alignments

2009-10-15 Thread AndyB
Hi, I know this is more of a HTML/CSS question then a GWT related question, But I just cant figure it out with the Java code. I have a header HorizontalPanel, with three cells that all contain a Simple Panel (headerLeft, headerCenter, headerRIght). headerCenter contains my applications logo

GWT 2.0 ms1 RPC issue IncompatibleRemoteServiceException: Parameter 0 of is of an unknown type 'java.lang.String/2004016611'

2009-10-15 Thread tskaife
While running in either hosted mode, or compiled I get this error. I have no problems with RPC calls that pass primitive types. But I've tried both java.lang.String and java.lang.Long and get the same results. I've tried both JDK 1.6.0_10 and 1.5.0_21 to no avail. I'm on Linux, if that matters,

Spam messages to the group

2009-10-15 Thread Jason Essington
I just noticed that there were several spam messages in my Gmail sent box that came to this group over the last couple of days. Very odd indeed, but I believe that I've remedied the situation. Apologies for not noticing this earlier. -jason

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Davis Ford
Hi, I'm not sure you can do this in hosted mode, but I had a similar situation that I solved, and now it is a set and forget. To be up front -- I am a maven bigot. I think Ant is fine if it is done right, but maven makes my life so much easier that I use it for all new projects. That said, I

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread francescoNemesi
For Your Information, I reverted back to my previous Eclipse configuration with gwt plugin version 1.1.1v200909221731 and everything seems to work now. Apparently there is a problem with version 1.1.2.v200910130758? On Oct 15, 9:08 pm, francescoNemesi nem...@yahoo.com wrote: Hi Miguel,

Re: problem with nocache.js

2009-10-15 Thread ramesh chiluveri
Thanks for your reply. When i changed script tag it is working fine. I have some other old projects which are in same system . At the time of creation of older projects it is generated boot start up script as nocache.js only. Now , i am trying to create new project in same system it is

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread Rajeev Dayal
Hi Francesco, Sorry that you've been running into trouble. I've tried to reproduce the problem by: 1) Installing Eclipse 3.3.2 on Linux 2) Installing version 1.1.1 of the plugin and the 1.7.1 GWT SDK 3) Restarting Eclipse 4) Creating a new Project 5) Adding some JSNI to one of the client classes

Unable to use gadget api along with GWT 2.0 M1

2009-10-15 Thread balachandra maddina
Hi There, I have been trying to get the gadget api work with GWT V2 but so far i couldn't make it work the document available online is out of date it wont even work with GWT 1.7. anyway, my question is, has any one tried Gadget API with GWT V2 M1, if so could you share the details please, when

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-10-15 Thread codesite-noreply
Comment by Douglas.Linder: @myonceinalifetime, Thanks! That totally worked for me. I was having the issue where the plugin would not connect to the server running GWT 2.0 MS1; but creating a new project totally worked. Looking carefully, it seems like the new project had a different

[gwt-contrib] Fix for JsInliner literals bug, b/2153220

2009-10-15 Thread cromwellian
Reviewers: Lex, scottb, Description: Patched AffectedBySideEffectsVisitor so that Object and Array literals are not incorrectly inlined. Note: JsNew is already handled because it's hasSideEffects method returns true. By contrast, JClassSeed/JNewInstance/JNewArray return false. A difference we

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-10-15 Thread codesite-noreply
Comment by rda...@google.com: Regarding the issue that myonceinalifetime and Douglas.Linder were experiencing, see http://code.google.com/p/google-web-toolkit/issues/detail?id=4126 For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM

[gwt-contrib] Re: Refactored DisclosurePanel and better DisclosurePanelParser

2009-10-15 Thread jgw
On 2009/10/14 21:47:10, Ray Ryan wrote: As we discussed, dropping g:body again for consistency w/Tab and Stack panels. Groovy, LGTM. I have some separate thoughts on what we can do about issue 1449 without mangling DisclosurePanel too much. I'll add them to the issue.

[gwt-contrib] Re: Hosted.html reaches too far when getting the top window

2009-10-15 Thread John Tamplin
LGTM -- John A. Tamplin Software Engineer (GWT), Google --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Addition of remotemessage.proto file

2009-10-15 Thread John Tamplin
On Thu, Oct 15, 2009 at 11:22 AM, rda...@google.com wrote: Reviewers: mmendez, Description: Adds the remotemessage.proto file, which defines the message types that are passed between the OOPHM View and the OOPHM Server, and vice-versa. Once we have agreement on this file and it is

[gwt-contrib] [google-web-toolkit] r6381 committed - Modifying hosted.html so it only reaches up to windows that it has per...

2009-10-15 Thread codesite-noreply
Revision: 6381 Author: jlaba...@google.com Date: Thu Oct 15 08:36:29 2009 Log: Modifying hosted.html so it only reaches up to windows that it has permission to access. Patch by: jlabanca Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6381 Modified:

[gwt-contrib] Re: Addition of remotemessage.proto file

2009-10-15 Thread mmendez
LGTM - I agree with Tamplin's comments on the package location. It's been a while, but com.google.gwt.dev.shell.remoteui would seem like a reasonable package location to me. http://gwt-code-reviews.appspot.com/78825/diff/1/2 File dev/oophm/src/com/google/gwt/dev/shell/log/remotemessage.proto

[gwt-contrib] Clean up SOYC options

2009-10-15 Thread kprobst
Reviewers: Lex, Description: Hi Lex, could you review this small patch for me? It cleans up the SOYC options (b/2153332) by: 1) undocumenting -soyc and introducing -compileReport (which is documented), both of which will set soycEnabled to true. 2) causing -XsoycDetailed to turn on soycEnabled

[gwt-contrib] Re: Fix for JsInliner literals bug, b/2153220

2009-10-15 Thread Scott Blum
+bobv Bob is also looking at a bug in JsInliner right now. Dunno if it's related to this or not, but maybe Ray+Bob you guys can pair up on those two bugs? On Thu, Oct 15, 2009 at 4:50 AM, cromwell...@gmail.com wrote: Reviewers: Lex, scottb, Description: Patched AffectedBySideEffectsVisitor

[gwt-contrib] [google-web-toolkit] r6383 committed - Moved remotemessage.proto to the com.google.gwt.dev.shell.remoteui pac...

2009-10-15 Thread codesite-noreply
Revision: 6383 Author: rda...@google.com Date: Thu Oct 15 10:50:37 2009 Log: Moved remotemessage.proto to the com.google.gwt.dev.shell.remoteui package located under dev/core. Also added some comments to the file. http://code.google.com/p/google-web-toolkit/source/detail?r=6383 Added:

[gwt-contrib] Re: Log a deprecation warning for CellPanelParsers

2009-10-15 Thread jgw
On 2009/10/14 22:50:19, Ray Ryan wrote: Here's an easy one. It logs lines like this: [WARN] gwt:DockPanel is deprecated. Use the appropriate LayoutPanel instead. Is this deprecating all CellPanels, though? I worry a bit about this, because we don't have any good replacement for

[gwt-contrib] Re: Fix parser order, ditch MenuItemHTML

2009-10-15 Thread jgw
On 2009/10/15 00:43:55, Ray Ryan wrote: Sorry, Joel, but you're the most appropriate for this one too. It's small, at least. LVGTM. I love code removal. http://gwt-code-reviews.appspot.com/77821 --~--~-~--~~~---~--~~

[gwt-contrib] Code review: import CheckForUpdatesIE6 into unified distro

2009-10-15 Thread Scott Blum
Hi John, Can you please review this? Start with a clean, updated trunk and do: svn cp https://google-web-toolkit.googlecode.com/svn/trunk/j...@6365 jni svn cp

[gwt-contrib] Re: Log a deprecation warning for CellPanelParsers

2009-10-15 Thread Ray Ryan
On Thu, Oct 15, 2009 at 11:20 AM, j...@google.com wrote: On 2009/10/14 22:50:19, Ray Ryan wrote: Here's an easy one. It logs lines like this: [WARN] gwt:DockPanel is deprecated. Use the appropriate LayoutPanel instead. Is this deprecating all CellPanels, though? Yup. I worry a bit

[gwt-contrib] HostedMode relay to DevMode

2009-10-15 Thread jat
Reviewers: amitmanjhi, Description: This is the class which will take the place of the existing HostedMode entry point (which will be renamed to DevMode). All it does is log a warning and run the real DevMode main. As noted in the code, this is suitable for testing in current trunk but things

[gwt-contrib] Re: Code review: import CheckForUpdatesIE6 into unified distro

2009-10-15 Thread John Tamplin
On Thu, Oct 15, 2009 at 2:37 PM, Scott Blum sco...@google.com wrote: Stuff that might not be self-explanatory: - LowLevel is now completely unused, I moved the code that used to load gwt-ll into LowLevelIE6. - The 1-arg ctor for CheckForUpdates was never used anywhere. - Had to modify

[gwt-contrib] Re: Code review: import CheckForUpdatesIE6 into unified distro

2009-10-15 Thread Scott Blum
On Thu, Oct 15, 2009 at 2:52 PM, John Tamplin j...@google.com wrote: On Thu, Oct 15, 2009 at 2:37 PM, Scott Blum sco...@google.com wrote: Stuff that might not be self-explanatory: - LowLevel is now completely unused, I moved the code that used to load gwt-ll into LowLevelIE6. - The 1-arg

[gwt-contrib] [google-web-toolkit] r6384 committed - Disable tests of unpaired surrogates, since the IE and Safari plugins ...

2009-10-15 Thread codesite-noreply
Revision: 6384 Author: j...@google.com Date: Thu Oct 15 12:17:51 2009 Log: Disable tests of unpaired surrogates, since the IE and Safari plugins at least seem to have issues, and HtmlUnit did before them. We need to decide if we want to specify the behavior here or just leave it as undefined.

[gwt-contrib] Add Open Source Protobuf Library to Tools

2009-10-15 Thread rdayal
Reviewers: mmendez, Description: Adds the Open Source Protobuf library to GWT_TOOLS. The protobuf jar file is not included in this patch. Please review this at http://gwt-code-reviews.appspot.com/77828 Affected files: lib/protobuf/COPYING.txt lib/protobuf/README

[gwt-contrib] Re: Add Open Source Protobuf Library to Tools

2009-10-15 Thread John Tamplin
On Thu, Oct 15, 2009 at 3:48 PM, rda...@google.com wrote: Adds the Open Source Protobuf library to GWT_TOOLS. The protobuf jar file is not included in this patch. Remember that tools is add-only, so if there is any question if the README and COPYING.txt might change with the version,then they

[gwt-contrib] Re: HostedMode relay to DevMode

2009-10-15 Thread Amit Manjhi
LGTM, with a minor update to the WARN message, as we discussed on IM. Final text of the WARN message: The class com.google.gwt.dev.HostedMode is deprecated and will be removed -- use com.google.gwt.dev.DevMode instead for launching development mode On Thu, Oct 15, 2009 at 11:40 AM,

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

2009-10-15 Thread codesite-noreply
Revision: 6385 Author: rj...@google.com Date: Thu Oct 15 13:34:49 2009 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=6385 Modified: /wiki/UiBinder.wiki === --- /wiki/UiBinder.wiki Thu Oct 8

[gwt-contrib] RR: Fix SingleJsoImpl hosted mode crash with contravariant return types in virtual override scenario

2009-10-15 Thread bobv
Reviewers: scottb, Message: Review requested. @Scott, I think you're most familiar with the class rewriting implementation. Please check the extra comments in this review for orientation. http://gwt-code-reviews.appspot.com/77831/diff/1006/1007 File

[gwt-contrib] [google-web-toolkit] r6386 committed - Fix incorrect test reference....

2009-10-15 Thread codesite-noreply
Revision: 6386 Author: j...@google.com Date: Thu Oct 15 18:11:02 2009 Log: Fix incorrect test reference. Patch by: jat Review by: jlabanca (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6386 Modified: /trunk/user/build.xml === ---

[gwt-contrib] [google-web-toolkit] r6387 committed - DisclosurePanel now does ImageResource and is nice in UiBinder....

2009-10-15 Thread codesite-noreply
Revision: 6387 Author: rj...@google.com Date: Thu Oct 15 18:41:37 2009 Log: DisclosurePanel now does ImageResource and is nice in UiBinder. Deprecates many of its convience constructors--necessary for UiBinder sanity, and just plain good API hygiene. Reviewed by: jgw

[gwt-contrib] Re: RR: Fix SingleJsoImpl hosted mode crash with contravariant return types in virtual override scenario

2009-10-15 Thread BobV
Bob, is there any real logic change between this and the original computeSingleJsoImplData() method?  IE, do I need to make the effort to figure out a way to side-by-side diff them? If you open up patch set 2 on the issue, I had added some comments to point out a couple of changes to the

[gwt-contrib] Re: RR: Fix SingleJsoImpl hosted mode crash with contravariant return types in virtual override scenario

2009-10-15 Thread Scott Blum
Gotcha... I missed the comments due to the updated patch set... wish they would carry forward or something. LGTM. On Thu, Oct 15, 2009 at 10:24 PM, BobV b...@google.com wrote: Bob, is there any real logic change between this and the original computeSingleJsoImplData() method? IE, do I need

[gwt-contrib] In-block Clinit Pruner

2009-10-15 Thread cromwellian
Reviewers: Lex, scottb, Description: Intended to be sandwiched between Flattener/UnFlattener, prunes duplicate clinit calls within a single control flow block. Currently prunes about 62 cliints from Showcase (probably saves 7 chars average per clinit, or about 420 bytes). Hopefully this'll get

[gwt-contrib] [google-web-toolkit] r6389 committed - Fix another mistake, this time in test.nometa.remote....

2009-10-15 Thread codesite-noreply
Revision: 6389 Author: j...@google.com Date: Thu Oct 15 21:52:05 2009 Log: Fix another mistake, this time in test.nometa.remote. Patch by: jat Review by: jlabanca (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6389 Modified: /trunk/user/build.xml