gwt form

2009-06-15 Thread zhyar
Hi All, I want to create gwt form with (http request POST method) and retrieve the data in PHP file ,so please can one help me..?. regards, zhyar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Community announcements on GWT blog

2009-06-15 Thread Shawn Brown
Because it's just a community announcement. I use ExtGWT too so understand your question. They're just pointing out related projects like Gilead which I do use! If ExtGWT wants to announce a release but the blog says no, then let's raise a ruckus. I bet it won't ever happen though. Shawn On

Re: GWT best Practices - JS Library Wrappers Overlay Types

2009-06-15 Thread Bobby
I ended up updating the following classes to generics: 1. com.google.gwt.gdata.client.atom.Feed 2. com.google.gwt.gdata.client.Feed 3. com.google.gwt.gdata.client.EventFeed The implementation is, respectively: 1. public class FeedE extends Entry extends JavaScriptObject 2. public class FeedE

Re: DialogBox Width Problem in v.1.6.4

2009-06-15 Thread Dalla
Hi Ed, Are you building you´re project from a Google Web Application Project? If this is the case, check your .css in the \war folder. There is a setting in there which affects the Dialog Box width if I recall correctly. On 15 Juni, 05:30, Ed edgam...@gmail.com wrote: Hi, After upgrading to

Re: Eclipse is not stopping on breakpoints in GWTTest. Why?

2009-06-15 Thread Paul Robinson
Check your version of the JDK: http://code.google.com/p/google-web-toolkit/issues/detail?id=3724 Igor Moochnick wrote: Can;t figure out why Eclipse (during debug) is not stopping on breakpoints both in hosted and web modes. I've checked that I have all the reqired configuration, all the

OK to host multiple GWT applications/clients on one page?

2009-06-15 Thread peterk
Hey all, This might seem like an unusual use-case, but I'm wondering if it is OK to host multiple, independent GWT applications on a single HTML page? i.e. to embed two -no-cache.js files from seperate gwt apps in one page? I have done a little testing, I have two trivial gwt clients hosted in

Re: OK to host multiple GWT applications/clients on one page?

2009-06-15 Thread David
Hi, There used to be issue in GWT 1.4 but I think those issues have all been fixed in 1.5. David On Mon, Jun 15, 2009 at 9:50 AM, peterkpeter.ke...@gmail.com wrote: Hey all, This might seem like an unusual  use-case, but I'm wondering if it is OK to host multiple, independent GWT

Re: history does not work propertly

2009-06-15 Thread Joe Cole
Your doctype has to be set correctly for history to work in IE. What is your doctype set to? It should be: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http:// www.w3.org/TR/html4/loose.dtd On Jun 15, 2:02 am, Gabriel Gutierrez gutierrez...@gmail.com wrote: Does anyone knows why

Introducing GWTUML, a GWT UML Drawer.

2009-06-15 Thread mounier.flor...@gmail.com
Hello everyone ! I would like to introduce to you the open source project I've been working on these past 6 months : GWTUML. This is an UML drawer that uses of course gwt and aims to be a light and fast one. For now all the code is client side but nothing but time prevents it to become

Java 5 enums losing property values

2009-06-15 Thread ped
We are using GWT 1.5.2 and I'm having a problem with a Java 5 enum. In general, they have worked fine since we upgraded to 1.5.2, but I recently tried to add a property to one of my enume, and I do not see the correct value of the property in my GWT code. I have an enum (OperatingSystemType) that

Get local war path programmatically? Or how to read a config file!

2009-06-15 Thread ronald
Hi everybody, I want my server classes to find out the local path of their war directory (like c:\tomcat\webapps\myapp-war\) programmatically. First of all, this is to get them read a config file, but also to allow them to write files into subdirectories (like images). Here's how I got it work

sizing ListBoxes inside container

2009-06-15 Thread otismo
I want to create a layout with 3 listboxes that are 20%, 20%, and 60% of the page height. I tried: ui = new VerticalPanel(); ui.setStyleName(test); ui.setBorderWidth(3); ui.setHeight(100%); ui.setWidth(100%); ListBox box1 = new ListBox();

Unexpected behviour on server down or violation of same-origin policy in hosted mode

2009-06-15 Thread dikappa
Hi. I'm testing the http request builder in hosted mode, trying to access a server that is down or beyond SOP. When I access a server which is actually down (ie http://localhost:), or one that is beyond SOP (ie http://www.example.com), onResponseReceived is fired, and

GWT Java-to-JavaScript compiler

2009-06-15 Thread Neeraj Lal
Hi, Could somebody please give me links/pointers to GWT's Java-JavaScript compiler? I'm interested in understanding the Architecture, Front End and BackEnd of the GWT's Java-to-JavaScript compiler? How is the language translation done? What does the translation engine work? Thanks Neeraj

Rpxnow.com and GWT

2009-06-15 Thread joop23
Hello, how would I integrate using Rpxnow.com with GWT? thank you. --~--~-~--~~~---~--~~ 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

Re: Introducing GWTUML, a GWT UML Drawer.

2009-06-15 Thread walterc
very nice! On Jun 15, 4:54 pm, mounier.flor...@gmail.com mounier.flor...@gmail.com wrote: Hello everyone ! I would like to introduce to you the open source project I've been working on these past 6 months : GWTUML. This is an UML drawer that uses of course gwt and aims to be a light and

Re: Java 5 enums losing property values

2009-06-15 Thread Paul Robinson
(1) You have an unused private static final VALUES (2) You don't need to make an enum implement IsSerializable for GWT to serialize it (3) Why don't you pass an extra boolean argument to your enum constructor that says whether it is windows? (4) Why do you have separate enums for use in GWT and

Re: Get local war path programmatically? Or how to read a config file!

2009-06-15 Thread Kousik Rajendran
Hi, There are two ways to do that. One is by simply *File file = new File(); file.getAbsolutePath();* in the code where u need will give u the war file path. Or what u can do is Add a servlet in you program. and while adding it the web.xml u add a property loadonstartup1/loadonstartup.

Thanks

2009-06-15 Thread CALIMERO
Please take in account my request for unsubscription to your group. Thank you for your services. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

onModuleLoad is not called when there is an image tag with name body

2009-06-15 Thread Arnold
Having an image tag in the host page with its name attribute = body cause the onModuleLoad not to be called. The module onLoad contains nothing but: Window.alert([Empty]); The host page contains an image tag with name =body like so: img name=body/ This happens in hosted mode (and IE in web

Re: How to implement GWT interfaces in javascript

2009-06-15 Thread iuri matias
-- On Jun 13, 12:59 pm, iuri matias iuri.mat...@gmail.com wrote: correction in the code supplied:  -  package com.mypackage;  public interface MyCallback {       public void onResponseReceived(String text);  }  

Wishlist - Data Oriented Grid

2009-06-15 Thread Salvin
I really feel that Gwt should contain a Data-oriented-grid It should be nothing but a simple table with the following features: 1. Seperate css classes @ header , table cells 2. Sorting of loaded data (pagination may hinder this) 3. Resizing of Columns (maybe use cookies to remember values) 4.

Re: Image not appearing for ImgButton in SmartGWT

2009-06-15 Thread abhiram wuntakal
Hi Sanjiv, Thanks for that link. I have posted that query at that forum. Please let me know if u have a solution for that problem of mine. thanks, Abhiram On Sat, Jun 13, 2009 at 9:58 PM, Sanjiv Jivan sanjiv.ji...@gmail.comwrote: Hi Abhiram,Please post your question on the SmartGWT forum :

Event Handling in 1.6: set up multiple widgets to listen to a specific event

2009-06-15 Thread mabogie
Hi, I have the following situation: Composite Widget A, with somewhere in it's children's children's ... children a Button z. Composite widget B, with a composite widget T, instance 1: a flextable. Composite widget C, with another instance of composite widget T, instance 2. I want T1 an T2 to

Re: onModuleLoad is not called when there is an image tag with name body

2009-06-15 Thread Thomas Broyer
On 15 juin, 13:29, Arnold arnold.mi...@gmail.com wrote: Having an image tag in the host page with its name attribute = body cause the onModuleLoad not to be called. The module onLoad contains nothing but: Window.alert([Empty]); The host page contains an image tag with name =body like so:

Re: Event Handling in 1.6: set up multiple widgets to listen to a specific event

2009-06-15 Thread Thomas Broyer
On 15 juin, 15:31, mabogie mabo...@gmail.com wrote: Hi, I have the following situation: Composite Widget A, with somewhere in it's children's children's ... children a Button z. Composite widget B, with a composite widget T, instance 1: a flextable. Composite widget C, with another

Re: Cross Domain with window.name

2009-06-15 Thread Chris
I quick followup. It appears the code (modified for IE) works on IE 6. The trouble I am having is with FireFox 3.0.10. Does any know if the code should work with FF3? Is there some restricted access to window.name on FF? Thanks, Chris On Jun 14, 4:25 am, Chris chrish...@gmail.com wrote:

Re: onModuleLoad is not called when there is an image tag with name body

2009-06-15 Thread Arnold
That says it all. Your last example works ... well, works to illustrate your point by messing things up. And form name=body/form seems to has the same side effect as the image tag. Thanks for the enlightenment. Arnold. On Jun 15, 5:00 pm, Thomas Broyer t.bro...@gmail.com wrote: On 15 juin,

Mouseover/mouseout event on GRID/FLEX TABLE

2009-06-15 Thread ping2ravi
Hi All, I have a small requirment of highlighting a row of grid when mouseover it and make it normal when it goes out. I am not able to implement this. Can anyone help please. all suggestions will be welcome I dont want to use GWT-EXT or some other kind of project, as this project is for Google

Re: Java 5 enums losing property values

2009-06-15 Thread ped
(1) You have an unused private static final VALUES It is used - I didn't show it (2) You don't need to make an enum implement IsSerializable for GWT to serialize it Didn't realize that (3) Why don't you pass an extra boolean argument to your enum constructor that says whether it is

Overriding default CurrencyData.properties in GWT 1.5

2009-06-15 Thread StephenSmith
Hi all I'm trying to internationalise monetary values in GWT 1.5, and am struggling with overriding currency symbols in the default locale. For example, in CurrencyData.properties (which I assume is the file used by the default locale - or does it use the hardcoded JavaScript in the

RPC MySQL problem

2009-06-15 Thread Roger
Hello everyone, I am trying to connect a MySQL database to a simple GWT application. I build a simple application from scratch using the eclipse plugin. This application runs correctly. I changed the GreetingServiceImpl.java file as follow. And there is no way to run it correctly. Following the

Re: Mouseover/mouseout event on GRID/FLEX TABLE

2009-06-15 Thread Hiedi
This is basically how I did it: 1) Create a RowListener interface 2) Create a RowListenerCollection 3) Create an implementation of RowListener 4) Add your rowListener to the table you care about -- the table should know what its styles are and have a contract for hovering and resetting its own

Minor error in GWT toolkit documentation

2009-06-15 Thread arcy
In http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html there is an explanation of the basic RPC mechanisms, which I appreciate. At one point, however, it says that an application's service implementation will extend RemoteServletServelet; I'm pretty sure it means

Images won't load from full pathname in FireFox

2009-06-15 Thread Steven
The example code below works for IE but not FireFox. (I'm using GWT 1.6.4). Is there a consistent, programatic way I can load image files with URI pathnames into FireFox and IE? (My application involves manipulating images). public void onModuleLoad() { Image image =

Re: Eclipse - debugging gwt app

2009-06-15 Thread Alex
I had the same problem with breakpoints in Eclipse debugging GWT application. In my case, it was definitely problem with JDK 1.6.0_14. When I switched to 1.6.0_11 everything was fine and my breakpoints weren't ignored anymore. --~--~-~--~~~---~--~~ You received

Re: Images won't load from full pathname in FireFox

2009-06-15 Thread Rajneesh Aggarwal
Why don't you try ImageBundle? http://code.google.com/p/google-web-toolkit/wiki/ImageBundleDesign http://code.google.com/p/google-web-toolkit/wiki/ImageBundleDesignThanks, Rajneesh On Mon, Jun 15, 2009 at 10:19 PM, Steven sglic...@ticom-geo.com wrote: The example code below works for IE but

Re: GWT+ Gmaps doesnt work in firefox

2009-06-15 Thread G
Never mind. I was able to resolve the issue. The problem was in the hosted browser response.getText() corresponds to response.getText().trim() where in IE, Firefox, Safari etc it doesn't do trim. My app now works like a charm. On Jun 14, 9:03 pm, G gaur...@gmail.com wrote: Eric - Thanks

Integrate GWT 1.6 into Struts 2.x

2009-06-15 Thread Kady
How do I integrate a GWT 1.6 module created(in eclipse) into a Struts 2.1 application? In other words, I want to integrate the war directory created by the GWT module into the struts structure. So how do I place the files and do the necessary edits? Thank you, Kaushik

Re: Images won't load from full pathname in FireFox

2009-06-15 Thread Steven
On Jun 15, 1:02 pm, Rajneesh Aggarwal rajneesh.aggar...@gmail.com wrote: Why don't you try ImageBundle? Thanks for your quick reply. The end user dynamically queries for these images (they don't exist at startup time, so compile-time bundling won't work). Any other ideas would be greatly

Jumping screens

2009-06-15 Thread Erron
Hi, I've been looking into this issue for some time and still haven't found the cause. We have a financial application that displays a listing of accounts on one screen. When the user clicks on a link, it displays a hidden tab with the detailed information for that account. The problem is that

Common GWT Modules In JAR File Problems.

2009-06-15 Thread gazarcher
Hello All, I had a largish Web app with several GWT modules in different packages. These modules shared common code which I put into a separate module, also in it's own package. As simple as I can describe it, it looked a bit like this: // Modules specific to the app:

getInteger problem when trying to run hosted mode.

2009-06-15 Thread Joel Paulsson
Hi! I run gwt as a plug-in to Eclipse and i have no errors in Eclipse, but when i run the program to hosted mode i get this error in the AppEngine Server: [ERROR] Line 53: The method getInteger(String) is undefined for the type Integer If i comment that line it works great, but using

Re: Images won't load from full pathname in FireFox

2009-06-15 Thread Steven
BTW, after an image query I'm getting the image's URI and was planning to load the image file directly into the brower. Alternatively I can load it into a servlet and use GWT RCP to move it into the browser. The image files are 100K and up. Would using the servlet like this be generally advisable

Rocket-gwt Viewport alternative

2009-06-15 Thread lhoracek
Is there any alternative to the Viewport widget from rocket-gwt package working with 1.6? I need loading of tiles of custom map, the best would be with overlay or something working like that, no need for zoor, just showing tiled image --~--~-~--~~~---~--~~ You

Re: Jumping screens

2009-06-15 Thread flyingb...@gmail.com
screen jumps lot of time is the case of hidden boxes. I had jumping screen problem and set tons of styles of hidden value to prevent it.. On Jun 15, 1:27 pm, Erron erron.aus...@gmail.com wrote: Hi, I've been looking into this issue for some time and still haven't found the cause.  We have a

Re: Reference to interface in another project

2009-06-15 Thread bdemchak
Hi, Isaac and Rajeev and everyone else ... I got a good result by following this advice, though with a few bumps. I'm posting a (hopefully) good accounting here so that this post can be helpful to others. As originally described, I was trying to create a project that contains common constants

Re: Mouseover/mouseout event on GRID/FLEX TABLE

2009-06-15 Thread Kelo
Heidi, Your code was based on old event's model, you should write this one on 1.6.4. Check this out http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/0b3158d9e7e2d21a# On 15 jun, 14:24, Hiedi hiedi.ut...@gmail.com wrote: This is basically how I did it: 1) Create a

Re: MVC question

2009-06-15 Thread Ian Bambury
Not an expert, but in lieu of one... If the view already has the data and is just 'unhiding' it (via a hidden area or a popup) then you are not breaking the pattern any more than if the user scrolls down to a bit of the screen they can't see.. Where you would be breaking MVC would be where you

Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-06-15 Thread Dean S. Jones
Thanks for the example - I have to support 1.5 and 1.6 - so I am still coding to the old event model... But it's nice to see looking inside HandlerManager that they defer editing of the handler list while the event it firing. --~--~-~--~~~---~--~~ You received

Re: MVC question

2009-06-15 Thread Adligo
Hi Dalla, There are quite a few variations on MVC, I my opinion GWT is best implemented using A MVC variation similar to swing. First consider this article; http://www.javaworld.com/jw-04-1998/jw-04-howto.html?page=1 Often the whole MVC Framework (dealing with a button component in the

cannot debug in eclipse :(

2009-06-15 Thread gwt-newbie
Vista 64-bit JRE 1.7 (also tried JRE 1.6 and 1.5) Installed Eclipse 3.4 Ganymede for Java Development (also tried 3.4 Ganymede for Java EE dev; and 3.5 Galileo for Java EE) Installed GWT and AppEngine Eclipse Plugins from inside Eclipse from the Google Update Site for Eclipse 3.4 Created New

Re: Images won't load from full pathname in FireFox

2009-06-15 Thread Dean S. Jones
You can't use a file:: URI to load an image ( that would attempt to load it from the machine the browser is on ), you can in theory load an image from bytes via RPC ( tho it's not worth the highly incredible ugliness of hackery to do that ) You can sorta write images to the filesystem and serve

Re: cannot debug in eclipse :(

2009-06-15 Thread Miguel Méndez
The only issue that I'm aware of is this one: http://code.google.com/p/google-web-toolkit/issues/detail?id=3724 . Does that sound like the problem that you are experiencing? On Mon, Jun 15, 2009 at 7:10 PM, gwt-newbie an...@anjul.com wrote: Vista 64-bit JRE 1.7 (also tried JRE 1.6 and 1.5)

Re: MVC question

2009-06-15 Thread Daniel Wellman
This talk from the Google I/O 2009 conference has a lot of good advice about building GWT applications (as presented by Ray Ryan): http://code.google.com/events/io/sessions/GoogleWebToolkitBestPractices.html Ray advocates an alternative to Model-View-Controller called Model- View-Presenter

Re: DialogBox Width Problem in v.1.6.4

2009-06-15 Thread Ed
You are absolutely right, Dalla. Thanks for your suggestion. It is now rendering properly. -Ed On Jun 15, 12:02 am, Dalla dalla_man...@hotmail.com wrote: Hi Ed, Are you building you´re project from a Google Web Application Project? If this is the case, check your .css in the \war folder.

Re: cannot debug in eclipse :(

2009-06-15 Thread gwt-newbie
Firstly, yes, it sounds related, although at a first-cousin level rather than a sibling bug. Secondly, boy GWT debugging is fragile!! The guide really needs to emphasize that, although not in those exact words. Please consider that: (a) I spent an entire day wondering what I might have been

Re: cannot debug in eclipse :(

2009-06-15 Thread gwt-newbie
Firstly, yes, it sounds related, although at a first-cousin level rather than a sibling bug. Secondly, boy GWT debugging is fragile!! The guide really needs to emphasize that, although not in those exact words. Please consider that: (a) I spent an entire day wondering what I might have been

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-15 Thread tamsler
Here is an update on my current approach. I have created a servlet filter that inspects each request. I use a HttpServletRequestWrapper to get the request body. The filter checks the request's content type for the text/x-gwt-rpc string and then does a regular expression check on the request body

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-15 Thread Dean S. Jones
Such checks can be routine if you are using proper server side validation of input. I have written several such frameworks, which work on generic RPC Models... hence the validation can be routine and generic. This, as I have pointed out before, is one of the dangers of using Domain Objects for

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-15 Thread Thomas Amsler
Are any of your frameworks, which work on generic RPC Models available to use? Best, -- Thomas On Mon, Jun 15, 2009 at 9:32 PM, Dean S. Jonesdeansjo...@gmail.com wrote: Such checks can be routine if you are using proper server side validation of input. I have written several such

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-15 Thread tamsler
In my opinion, the optimal solution would enable a validation framework on top of the RPC infrastructure so that user can declare the validation/filter properties. Following an AOP approach to deal with such concerns. -- Thomas On Jun 15, 9:32 pm, Dean S. Jones deansjo...@gmail.com wrote: Such

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-15 Thread Dean S. Jones
no, but they are not hard to replicate - they rely generally on patterns like SDO http://en.wikipedia.org/wiki/Service_Data_Objects , which can be trivial to validate, and reasonably easy to bridge to O/R frameworks. They are also much easier to bridge to client side MVC/PVC patterns, without

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-15 Thread Dean S. Jones
The problem here is that you can only validate post-de- serialization, and then you have to have knowledge of the DTO type(via reflection/AOP monkey business per type ), which gets complicated FAST. My best approach was to validate in the Generic Model to Domain Object Mapper ( BOTH directions

Compiled version of 2.0

2009-06-15 Thread Ramas
Hello, I'd like to try 2.0, to help and fill the bugs, however, I'm on Win machine, without C/C++ compiler (for required tools) and cannot build the trunk myself. Could trunk be auto-build each day and put in some repository, too ? --~--~-~--~~~---~--~~ You

is there a way to getText of all fields in an application?

2009-06-15 Thread zujee
Hi all, I want to getText of all fields in a page and want to setText with another. Please help me how can I do that, rather than manually getting the text. Exampl code might help me more. thanks in advance zuje --~--~-~--~~~---~--~~ You received this message

Re: getInteger problem when trying to run hosted mode.

2009-06-15 Thread Dean S. Jones
Integer.getInteger(name) gets an integer from System properties. it is ( roughly ) equal to: Integer.parseInt(System.getProperty(name)); So, in the GAE, what is the definition if System.getProperty() ??? You have no method or means of setting them, you don't know the properties of the Runtime

Thinking about learning GWT

2009-06-15 Thread tedpottel
Hi, I'm thinking about using GWT. Quastion, will GWT run ok on my current web hosting service? Since it does not support jsp, I'm assuming GWT will work, except for doing rpc? - Ted --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[gwt-contrib] Re: Fwd: DateTimeFormat parsing patch

2009-06-15 Thread Florbela Lei
Hi Shanjian, Alex, I have verified that the new DateTimeFormat parsing code correctly rejects zero month and zero day-of month values. However, it now accepts zero year values. Is this desired? Thanks, Florbela On Apr 17, 2:55 pm, Alex Rudnick a...@google.com wrote: LGTM. Thanks,

[gwt-contrib] Re: Comment on OverlayTypes in google-web-toolkit

2009-06-15 Thread Joel Webber
I'm assuming we'd have to rewrite new and field access operators to these classes in the hosted-mode classloader, right? I haven't messed with the hosted-mode classloader in a *very* long time, so we may be doing this already for all I know. If that's feasible, this sounds like it would be pretty

[gwt-contrib] Re: Comment on OverlayTypes in google-web-toolkit

2009-06-15 Thread BobV
On Mon, Jun 15, 2009 at 7:26 AM, Joel Webberj...@google.com wrote: I'm assuming we'd have to rewrite new and field access operators to these classes in the hosted-mode classloader, right? I haven't messed with the hosted-mode classloader in a *very* long time, so we may be doing this already

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

2009-06-15 Thread codesite-noreply
Comment by ivancevic.nikola: Works fine (Windows Vista 32-bit, jdk 1.6.0u13, Eclipse 3.4, GWT trunk rev5557, FireFox 3.0.11). With jdk 1.6.0u14, after the page has been opened, it is needed to reload it once more in order to activate breakpoints. For more information:

[gwt-contrib] Re: Comment on OverlayTypes in google-web-toolkit

2009-06-15 Thread Bruce Johnson
+1 to field overlays. Just need to schedule the work. On Mon, Jun 15, 2009 at 9:23 AM, BobV b...@google.com wrote: On Mon, Jun 15, 2009 at 7:26 AM, Joel Webberj...@google.com wrote: I'm assuming we'd have to rewrite new and field access operators to these classes in the hosted-mode

[gwt-contrib] Re: [google-web-toolkit commit] r5537 - Ant rework for speed:

2009-06-15 Thread Freeland Abbott
+GWTC With regard to the Mac looking for gwt-dev-linux, since I don't literally see a build-dev target, what's the chain above the line you cited? I thought my fixes to property.ensure in e.g. user/build.xml line 47 addressed that, and I see I missed some (in doc, samples, and soyc-vis... only

[gwt-contrib] Re: [google-web-toolkit commit] r5537 - Ant rework for speed:

2009-06-15 Thread Freeland Abbott
Bob, John, can you review? This doesn't address the buildonly or dist-dev as precursor to user/test question, but I think addresses Thomas' and Bob's other issue. On Mon, Jun 15, 2009 at 11:47 AM, Freeland Abbott fabb...@google.comwrote: +GWTC With regard to the Mac looking for

[gwt-contrib] RPC extension points

2009-06-15 Thread noon
Hello, This thread follows this one (http://groups.google.com/group/Google- Web-Toolkit-Contributors/msg/582cfe33f17deab3), so please read it before this one. To make Google App Engine and GWT work together (in adapter4appengine project), I had to modify the RPC serialization code. My first

[gwt-contrib] [google-web-toolkit commit] r5558 - Fixed an HTMLTable bug where getCellElement would add the row offset instead of subtracti...

2009-06-15 Thread codesite-noreply
Author: jlaba...@google.com Date: Mon Jun 15 08:53:50 2009 New Revision: 5558 Modified: changes/jlabanca/scrolltable/user/src/com/google/gwt/user/client/ui/HTMLTable.java Log: Fixed an HTMLTable bug where getCellElement would add the row offset instead of subtracting it. Patch by:

[gwt-contrib] Re: [google-web-toolkit commit] r5537 - Ant rework for speed:

2009-06-15 Thread Freeland Abbott
Bob notes that dist-dev doesn't need (and thus shouldn't have) its dependency on tools. I take that as tacit agreement that dist-dev can be the minimally build everything for test execution name. On Mon, Jun 15, 2009 at 11:53 AM, Freeland Abbott fabb...@google.comwrote: Bob, John, can you

[gwt-contrib] Re: initial load sequence for runAsync's

2009-06-15 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/33848/diff/4002/4005 File dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java (right): http://gwt-code-reviews.appspot.com/33848/diff/4002/4005#newcode68 Line 68: String location = splitPointMap.get(sp); assert location != null

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

2009-06-15 Thread codesite-noreply
Comment by liang.chu: I was trying to follow the Compiling guide and I'm getting the following ant compiling error: BUILD FAILED google/trunk/build.xml:43: The following error occurred while executing this line: google/trunk/platforms.ant.xml:36: The following error occurred while

[gwt-contrib] Re: DockLayoutPanel

2009-06-15 Thread Joel Webber
I'm still not 100% done with the API design, and a few edge-cases, but will announce on the lists as soon as I have something ready for everyone to try out. It uses a similar approach to the code in Wave, but is rather more general, and supports IE6 (which Wave doesn't). On Thu, Jun 11, 2009 at

[gwt-contrib] RR : Allow user-provided bridge classes in hosted mode

2009-06-15 Thread bobv
Reviewers: scottb, Message: Requesting review Description: This patch would allow user-provided code to escape from the CompilingClassLoader sandbox. Use case: - Create a type that should be used only in hosted mode which lives somewhere in the classpath - Create a web-mode

[gwt-contrib] RR : Make ClientBundle and CssResource generators faster

2009-06-15 Thread bobv
Reviewers: Dan Rice, Message: Requesting review Description: This change speeds up the ClientBundle and CssResource generators. - Use the compiler's ResourceOracle instead of the ClassLoader to find resources - Add a caching mechanism to ClientBundle's ResourceContext to allow

[gwt-contrib] [google-web-toolkit commit] r5559 - Add additional RPC sanity checks.

2009-06-15 Thread codesite-noreply
Author: b...@google.com Date: Mon Jun 15 14:00:16 2009 New Revision: 5559 Modified: trunk/user/src/com/google/gwt/user/server/rpc/RPC.java trunk/user/src/com/google/gwt/user/server/rpc/RemoteServiceServlet.java

[gwt-contrib] Re: RR : Allow user-provided bridge classes in hosted mode

2009-06-15 Thread scottb
Bob, I have some questions about the twilight zone in which this new class loader lives, but I'm kinda swamped this week. Maybe we can make some time to discuss? http://gwt-code-reviews.appspot.com/34836 --~--~-~--~~~---~--~~

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-15 Thread Stefan Haustein
Ray, I think we can improve the class over time -- any reasonable starting point (even without iterators or with non-optimal iterators) would help significantly. Stefan On Sat, Jun 13, 2009 at 4:21 AM, Ray Cromwell cromwell...@gmail.com wrote: BTW, the last proposal is very unsafe with some

[gwt-contrib] Re: initial load sequence for runAsync's

2009-06-15 Thread spoon
Committed at r5560. http://gwt-code-reviews.appspot.com/33848/diff/4002/4005 File dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java (right): http://gwt-code-reviews.appspot.com/33848/diff/4002/4005#newcode68 Line 68: String location = splitPointMap.get(sp); On 2009/06/15

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-15 Thread Bruce Johnson
I'm starting to make a bit o' progress on this. I'll send out a design doc real soon now. BTW, anyone on the Contributors list here have Wave sandbox accounts? Sure would be easier to discuss this in a wave... On Mon, Jun 15, 2009 at 7:54 PM, Stefan Haustein haust...@google.comwrote: Ray, I

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-15 Thread Cameron Braid
2009/6/16 Bruce Johnson br...@google.com I'm starting to make a bit o' progress on this. I'll send out a design doc real soon now. BTW, anyone on the Contributors list here have Wave sandbox accounts? Sure would be easier to discuss this in a wave... No :( But if you are offering invites,

[gwt-contrib] [google-web-toolkit commit] r5560 - Allow specifying an initial load sequence for runAsync calls

2009-06-15 Thread codesite-noreply
Author: sp...@google.com Date: Mon Jun 15 17:20:03 2009 New Revision: 5560 Added: trunk/dev/core/src/com/google/gwt/dev/jjs/impl/JsniRefLookup.java (contents, props changed) Modified: trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-15 Thread Ray Cromwell
I do, cromwellian is my id on the sandbox. -Ray On Mon, Jun 15, 2009 at 6:14 PM, Bruce Johnsonbr...@google.com wrote: I'm starting to make a bit o' progress on this. I'll send out a design doc real soon now. BTW, anyone on the Contributors list here have Wave sandbox accounts? Sure would

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-15 Thread Matt Mastracci
I do as well - I'm mmastrac. On 15-Jun-09, at 8:02 PM, Ray Cromwell wrote: I do, cromwellian is my id on the sandbox. -Ray On Mon, Jun 15, 2009 at 6:14 PM, Bruce Johnsonbr...@google.com wrote: I'm starting to make a bit o' progress on this. I'll send out a design doc real soon

[gwt-contrib] [google-web-toolkit commit] r5562 - Edited wiki page through web user interface.

2009-06-15 Thread codesite-noreply
Author: fabb...@google.com Date: Mon Jun 15 19:57:26 2009 New Revision: 5562 Modified: wiki/DefaultLocaleBinding.wiki Log: Edited wiki page through web user interface. Modified: wiki/DefaultLocaleBinding.wiki ==

[gwt-contrib] Re: i18n support for concrete default locale

2009-06-15 Thread Freeland Abbott
Revision to the concept, for design review: See http://code.google.com/p/google-web-toolkit/wiki/DefaultLocaleBinding, but the short-and-sweet is: - Introduction of XML tag set-property-fallback name=*propname* value=*fallbackString*/. It's fine, and expected, to set this zero, one, or

[gwt-contrib] Reducing noise in GWT compiler output

2009-06-15 Thread Bruce Johnson
We've known for a while that the GWT compiler is spammy, even at default log levels. There is a reason for this behavior, believe it or not: TypeOracle's JClassType#getSubtypes() call. Because generators can ask for the subtypes of any type, the compiler has to parse essentially everything, not

[gwt-contrib] Re: Reducing noise in GWT compiler output

2009-06-15 Thread John Tamplin
On Mon, Jun 15, 2009 at 11:11 PM, Bruce Johnson br...@google.com wrote: We've known for a while that the GWT compiler is spammy, even at default log levels. There is a reason for this behavior, believe it or not: TypeOracle's JClassType#getSubtypes() call. Because generators can ask for the

[gwt-contrib] Re: Reducing noise in GWT compiler output

2009-06-15 Thread Freeland Abbott
+1 from me; I did a similar thing in STOB with regard to non-serializable types. I also think---though I don't have data to prove---that we often get spam from classes that happen to be on the classpath, but could be provably *not* reachable (even by things like RPC polymorphism), for example from

[gwt-contrib] Re: Speed up compilation by rewriting for loops to avoid iterators

2009-06-15 Thread Ray Cromwell
Would it not be possible to store the Unified/Precompiled/Unoptimized AST to disk and then you'd only have to JDT-reparse any classes that changed? Or use, was it Toby?'s, old idea of tunneling compiler information in .class files on disk (e.g. have the GWT compiler store the AST as some extra

[gwt-contrib] Re: [google-web-toolkit commit] r5537 - Ant rework for speed:

2009-06-15 Thread Freeland Abbott
Ping. Bob, I think you had special interest in this one. ;-) On Mon, Jun 15, 2009 at 1:27 PM, Freeland Abbott fabb...@google.com wrote: Bob notes that dist-dev doesn't need (and thus shouldn't have) its dependency on tools. I take that as tacit agreement that dist-dev can be the minimally