Re: Best image preloading practice?

2009-02-06 Thread Litty Preeth
You are thinking of loading 20MB of images into the DHTML DOM of you application Am I? Does the DOM keep them there even when not displayed? These images certainly wouldnt be displayed all at once. 1 or 2 at a time at most. I'm not absolutely sure, but I think if you load an image it

Re: Deploying GWT application (WAR)

2009-02-06 Thread Jonathan
Thanks for the answer ! What should I give to the user to allow him to run the WAR locally ? I mean i would like to embed tomcat in the application to allow the user to run it locally (without internet) and to deploy it on a server like you said. I already made the hierarchy of the war, it's

Re: Script error in IE 7 in web mode

2009-02-06 Thread Danny Goovaerts
Arend, Thanks for the reply. I've been able to pinpoint the place where the problem occurs and it is indeed in a class where I parse the XML reply coming back from the server. It was working fine previously in all browsers. The difference is that the XML is larger now. Maybe Internet Explorer has

Re: HorizontalSplitPanel issues in Firefox 3

2009-02-06 Thread vince
Hello, anyone? On 4 fév, 16:15, vince vincent.kir...@gmail.com wrote: Hi, I face an annoying issue in Firefox 3.0.6 (that doesn't occur in IE7). My application uses aHorizontalSplitPanelas main panel. The left side contain a StackPanel. There are 2 panels composing the stack panel. One

Re: Deploying GWT application (WAR)

2009-02-06 Thread Litty Preeth
http://www.onjava.com/pub/a/onjava/2002/04/03/tomcat.html http://www.javalobby.org/articles/tomcat2go/ On Fri, Feb 6, 2009 at 1:53 PM, Jonathan jonathan.delf...@gmail.com wrote: Thanks for the answer ! What should I give to the user to allow him to run the WAR locally ? I mean i would like

Popup panel over the cursor

2009-02-06 Thread ArunDhaJ
Hi, I've a tree and context menu associated with it. When I right click a tree item the context menu will pop-up below the cursor. In case the tree item at bottom of the page. the menu generated extends the page further. I need to scroll the page to see few of my menu items.. worst is that, when

RPC call efficiency

2009-02-06 Thread Rick
Hi I am using Java as server so I used RPC calls. The thing worrying me is the efficiency of RPC call. I just write a simple method getValue() on server which returns a long value. When I called it from client, it is taking 1 second to go to server and then come back. This 1 second time is

Re: Popup panel over the cursor

2009-02-06 Thread Litty Preeth
int posLeft = event.getScreenX(); if ((posLeft + popupWidth) (Window.getClientWidth() + Window .getScrollLeft())) posLeft = posLeft - (posLeft + popupWidth - (Window.getClientWidth() + Window

Re: RPC call efficiency

2009-02-06 Thread lowecg2004
Hi Rick, In my experience RPC is very efficient - I have a 100 or so objects serialising over the wire in less than 50ms, with simpler structures taking even less time. Something that returns just a long should complete in no time at all. Have you tried adding some timing logic to the server

Re: How to clear cache

2009-02-06 Thread Lore
you need to return the correct http response headers depending on the filename that is requested I did this using an HttpFilter that returns 'cache-forever' for *.cache.* (for performance) and 'no-cache' for *.nocache.* files (your problem) (google for the correct headers) this way you your

Re: Best image preloading practice?

2009-02-06 Thread darkflame
I use Firebug as well as the inbuilt tools of Chrome quite a lot. I will check out Fiddler2 though, thanks for the recomendation :) The thumbnails could be prefetched without problem, and even image bundled most probably. However, the bigger images they link too I wouldnt want to load on the fly

Re: multiple rpc calls to server

2009-02-06 Thread ytbryan
thank you mon3y . may i know which code snippet should i post? the Async, sync and impl interface? On Feb 6, 11:46 am, mon3y darkside...@hotmail.com wrote: Hi A code snippet would be nice, so we can see where you're going wrong. Also put a Window.alert(), in your onFailure and onSuccess of

Re: multiple rpc calls to server

2009-02-06 Thread ytbryan
below is the code where i execute the rpc request. i create getdata() and getdata1() to get execute different query. i am using two Async object to make call. i am not sure is it correct as i got error when i use one. any help/advice is welcome and appreciated. :D private void getData() {

Re: Anyone configure GWTShell to listen on a network interface?

2009-02-06 Thread Lore
you need to compile (from the shell or command line) with the current version of GWT On 6 feb, 03:57, Transplant transplant...@gmail.com wrote: Has anyone dug into GWTShell's tomcat configuration to figure out how to make it listen on a real network port? I'd like to make it listen on a real

Re: multiple rpc calls to server (can someone advise me!)

2009-02-06 Thread ytbryan
can someone help? below are my rpc request code. private void getData() { AsyncCallbackObject callback = new AsyncCallbackObject() { // fail public void onFailure(Throwable ex) { RootPanel.get().add(new HTML(ex.toString())); } // success public void onSuccess(Object

Re: Why can't I use GWT Theme support with a Gadget?

2009-02-06 Thread Eric Ayers
I just wrote the FAQ item yesterday, so I haven't a chance to explore a lot of different options. If you want to go the absolute path way, you could also use an external script that does some text processing (perl, python, sed) to substitute variables into your css from before deploying it.

Re: FlowPanel

2009-02-06 Thread Arthur Kalmenson
That's the way FlowPanel works. It's just a div tag. If you want them to stay on the same row you have two options a) use CSS to position them on the same row, or b) use HorizontalPanel which uses tables. -- Arthur Kalmenson On Thu, Feb 5, 2009 at 9:57 AM, TIGR www.dzgr...@gmail.com wrote:

Re: Deploying GWT application (WAR)

2009-02-06 Thread Jonathan
It's exactly what i try to use. I use the gwt-dev-linux.jar to get the catalina.tomcat package, and the server runs fine. But i don't success to deploy my applciation. I built my war as described in the faq (pretty sure it's ok), moved it to the webapps folder (the one which is gave by the gwt

Re: RPC call efficiency

2009-02-06 Thread Damien Picard
Hi, Could you try a simple Ajax call from your browser with native javascript instead of GWT ? This could be help us to determine if the issue is from teh network or from GWT. Regards... Damien P 2009/2/6 Rick rick4...@gmail.com Hi Thanks for reply.When I deploy application on local

Re: ScrollPanel maxWidth or maxHeight?

2009-02-06 Thread gregor
Is there a real browser-event or should i just call a check procedure whenever i add elements? The latter, no browser event available AFAIK. I have looked in vain for a general method to get ScrollPanels to resize and generally behave by themselves. I think the reason is that

Re: Managing SerializationPolicy...?

2009-02-06 Thread patnieme...@gmail.com
I described what I'm doing with the serialization in great detail here in a blog posting, just in case anyone is interested: http://www.techhui.com/profiles/blog/show?id=1702911%3ABlogPost%3A31619page=1#comment-1702911_Comment_31745 thanks, Pat

Re: Managing SerializationPolicy...?

2009-02-06 Thread patnieme...@gmail.com
I described what I am doing with the serialization in greater detail in this blog post: http://www.techhui.com/profiles/blogs/simpler-and-speedier-gwt-with thanks, Pat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

IE8 RC1 Very very slow

2009-02-06 Thread Si_gee
Anyone else seen this, IE 8 beta was fine. Got the RC1 today, and ever since it is very slow running anything GWT related - including the GWT Shell. I also tried compatability mode - but just as bad! --~--~-~--~~~---~--~~ You received this message because you are

Announcing GWT 1.6 Milestone 1

2009-02-06 Thread Scott Blum
Greetings GWT developers, The GWT team is happy to announce the availability of 1.6 Milestone 1! Binary distributions are available for download directly from GWT's Google Code project. http://code.google.com/p/google-web-toolkit/downloads/list?can=1q=1.6.0 As always, milestone builds like this

Re: Call event after an other

2009-02-06 Thread Neal
Use the queue in DeferredCommand http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/DeferredCommand.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: ScrollPanel maxWidth or maxHeight?

2009-02-06 Thread alex.d
Haven't found one either. But checking height while adding elements is ok - have it almoust working already. Well, almoust - the problem is that when height or width properties are set once, you can't take it back. So, while panel shows the desired behaviour while adding elements, it remains big

Re: Calling of business method from Client

2009-02-06 Thread Arul
Hi Gregor, I some how managed GWT component as replacement of my presentation layer. currenlty my application will be displaying like tree structure as menu in the left hand and selecting each link its content is diplayed in right side in grid with rows and columns. This kind of requirement

multiple rpc calls to server

2009-02-06 Thread ytbryan
Hi all, i know gwt don support synchronous call and i read it somwhere that there is actually don need to make rpc call synchronous. but i created an application with buttons like save data and display result that will communicate to server by fetching data or saving data. when the

Re: ScrollPanel maxWidth or maxHeight?

2009-02-06 Thread Davsket
well, at least replace it.. On 6 feb, 10:41, alex.d alex.dukhov...@googlemail.com wrote: Haven't found one either. But checking height while adding elements is ok - have it almoust working already. Well, almoust - the problem is that when height or width properties are set once, you can't

Re: Best image preloading practice?

2009-02-06 Thread gregor
@Litty: yes, I think you are right, my ignorance. Image.prefetch() will causes the image to be loaded into browser cache. You then use the same URL to instantiate an Image object later in code, and hopefully the image binary will be already downloaded. This old Mozzilla doc describes the process:

Re: multiple rpc calls to server

2009-02-06 Thread mon3y
Hi A code snippet would be nice, so we can see where you're going wrong. Also put a Window.alert(), in your onFailure and onSuccess of your second call to see what you get. If it comes into the onFailure of your second call, there must be something wrong with the way you're calling the server

Unicode problem in GWT

2009-02-06 Thread Machine_Head
Hi, i have a problem in gwt application with unicode, when i fill input fields with unicode font (Cyrillic) and then make rpc call, result is shown as Have anybody solved this problem? Thanks --~--~-~--~~~---~--~~ You received this message because you

Re: multiple rpc calls to server

2009-02-06 Thread ytbryan
I just insert Window.alert() into getdata1(); and i realised that the method is called but no window alert appears. i inserted a println after onsuccess and onfailure and something is printed out. basically, onsuccess and onfailure are skipped? how is it possible? On Feb 6, 11:58 am, ytbryan

Re: RPC call efficiency

2009-02-06 Thread Rick
Hi Thanks for reply.When I deploy application on local machine, RPC call get returned in 20 ms but when this application get deployed on Remote server, RPC call is taking 1000 ms. I am just returning a hard code long value from server. Thanks and regards Rick On Feb 6, 2:46 pm, lowecg2004

Re: RPC call efficiency

2009-02-06 Thread Jason Essington
Just curious, what happens if you return a string, or an int rather than a long? longs are emulated in GWT and have been pegged as being a bit slow, but 1s sure seems like an awful lot. The other thing to do is pull up FireBug (Firefox), or WebInspector (WebKit nightly builds) and check

Re: multiple rpc calls to server (can someone advise me!)

2009-02-06 Thread Jason Essington
gregor is right, you are trying to perform your update synchronously but your request is happening asynchronously. A full explanation of your exact problem can be found in this post: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/faca1575f306ba0f/3be719c021aa19bd

Re: multiple rpc calls to server (can someone advise me!)

2009-02-06 Thread gregor
Your problem looks like it's here: private void updateGrid1(GridPanel gridPanel, int cols, int rows) { if (store != null) { store.removeAll(); } getData1(1); PROBLEM Object[][] data = null; if(displayData1!= null) { PRBLEM: displayData not yet

Re: GWT-ext or ext-GWT?

2009-02-06 Thread DaBlick
On Feb 4, 3:57 am, Miles T. dupont.nico...@gmail.com wrote: Just a word about documentation. It is true that the documentation is far from complete but it is not true that it is non-existent. Well, it's not true that I said it was non-existent either. :-) I said it was more accurate to say

Re: Unicode problem in GWT

2009-02-06 Thread Sam sem
changing character encoding will help request.setCharacterEncoding(UTF8); On Fri, Feb 6, 2009 at 7:56 AM, Machine_Head ikax...@gmail.com wrote: Hi, i have a problem in gwt application with unicode, when i fill input fields with unicode font (Cyrillic) and then make rpc call, result is shown

Re: Calling of business method from Client

2009-02-06 Thread gregor
Hi Arul, Check out: http://code.google.com/p/google-web-toolkit-incubator/wiki/TreeTable Personally I find tree tables sometimes look confusing, especially if there are significant differences in the structure and/or size of the nodes, but a lot of people like them. They are also complicated

Google API Libraries for GWT: New binaries uploaded

2009-02-06 Thread Eric Ayers
Another round of updates is ready for the Google API Libraries for Google Web Toolkit (GWT). As just announced on the GWT blog, this update brings bug fixes and new features to three of the existing libraries. - The Google Visualization API Library for GWT moves from a release candidate to a

Re: ScrollPanel maxWidth or maxHeight?

2009-02-06 Thread gregor
Oh right... I think you've got to make sure that the whatever the ScrollPanel contains has actually reduced in size already - if it hasn't the ScrollPanel will refuse to cooperate (i.e. it won't squash it's contents by itself). Then you need to reset it to 1px more than the height/width of its

Re: Anyone configure GWTShell to listen on a network interface?

2009-02-06 Thread Transplant
On Feb 6, 3:01 am, Lore laurent.vanderlin...@gmail.com wrote: you need to compile (from the shell or command line) with the current version of GWT I'm using GWT 1.5.3 which is the current version? I don't understand how this relates. Thanks

Overlay invisible in Web mode

2009-02-06 Thread bogdan71
Hello, I'm new with GWT and GWT-Maps. I need to plot polylines over a Map widget. My problem is that the polyline only shows up in Hosted mode. When running in Web mode, I can't see it. More detailed, there's an addRoutes() function I wrote to plot the polylines: private void

Re: Overlay invisible in Web mode

2009-02-06 Thread Eric Ayers
I wouldn't assume that because everything worked fine in hosted mode that web mode will work perfectly. There can be hiccups every now and then! You didn't say which OS/browser you were running, but one of the first things to try is to run web mode under firefox/firebug and see if there are

Parsing http GWT command line

2009-02-06 Thread OffTheWall
I would like my GWT application to parse the url that it was called with. Something like this: http://mymachine.com/myapp?key1=value1 And be able to grab the key values pairs from within my application. The key may be a fixed value, and the value of course will change with invocation of my

Servlets and web.xml

2009-02-06 Thread Jonathan
Hi to all, I'm under linux and I follow this tutorial http://jeff.ourexchange.net/2008/03/01/deploying-gwt-applications-with-jetty/. I have a simple gwt application that browses for a file and upload it using a servlet (class FileServlet extends HttpServlet). In hosted mode (with tomcat) with

Re: Embedding a JavaScript-based widget in GWT?

2009-02-06 Thread Sumit Chandel
Hi Adam, Try including the script tag referencing the tweetgrid widget in your host HTML page directly. The reason why this won't work if you insert the script tag through an HTML widget is because GWT application load up in their own iframes. This means that references to variables that aren't

New Time Picker GWT widget (POC)

2009-02-06 Thread David
Here is a modest contribution for GWT widgets : a new time picker like jquery.TimePickr http://code.google.com/p/gwt-incubator-lib/ Here is a french presentation of this widget : http://www.insideit.fr/post/2009/02/06/GWT-Time-Picker-widget Feel free to give advices or anything you want :-)

Error in RPC call in weblogic server, works fine in hosted mode and tomcat server

2009-02-06 Thread Poorna
Hi I need some help regarding an error I get while deploying GWT in server side. Below is the error stack trace. Feb 6, 2009 2:41:19 PM EST Error ServletContext-/AltoCoutts Poorna AdminServer [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' anonymous

Re: New Time Picker GWT widget (POC)

2009-02-06 Thread Sumit Chandel
Hi David, This is great. Thanks for sharing! In case you're interested, I would like to suggest you let the GWT incubator team know about this useful widget to see if they can get it into the incubator. I'm sure other developers out there will find it useful. If you would like to contribute this

Problem with Generics and Serialization of Primitive Type Array Fields

2009-02-06 Thread jsegal
I've been having some trouble with using arrays of primitive type where an array of type Serializable is expected. I have an object similar to: class MySerializableObjectT extends Serializable implements Serializable { private Serializable serializableField; void

Re: Error with i.e. (this.el is null or not is a object)

2009-02-06 Thread Sumit Chandel
Hi Edu, I'm guessing that the error comes up in the execution of the ClickListener onClick() code. If that's the case, could you post up that code, including anything else relevant to how you're creating the button? Cheers, -Sumit Chandel On Wed, Feb 4, 2009 at 3:03 AM, Edu

Re: Old issues in the RichTextEditor

2009-02-06 Thread Sumit Chandel
Hi Vicente, Thanks for bumping this up. In aggregate, it seems that there are a few developers that are waiting for these enhancements to RichTextEditor, so these are definitely important to consider as we roll out future releases. I particularly bumped up Issue #1433 so the team gets to take a

Re: A possible critical bug for gwt-fabridge.

2009-02-06 Thread Sumit Chandel
Hi Jihong, Perhaps a more appropriate place to report this gwt-fabridge bug would be on the project Issue Tracker. I'm sure the developers behind the project would be happy to be notified about a potentially critical issue. http://code.google.com/p/gwt-fabridge/issues/list Hope that helps,

Re: IE8 RC1 Very very slow

2009-02-06 Thread Sumit Chandel
Hello everyone, Which platform are you running on? Windows XP or Windows Vista? Thanks, -Sumit Chandel On Fri, Feb 6, 2009 at 1:11 PM, Erron erron.aus...@gmail.com wrote: I'm suffering the same issue. On Feb 6, 10:05 am, Si_gee goldsmith.si...@gmail.com wrote: Anyone else seen this, IE 8

Re: Code Coverage with EclEmma

2009-02-06 Thread Sumit Chandel
Hi Matt, Are you building the latest version of GWT from the SVN trunk? The team has only just recently added better support for Emma, but it is still under development. The plan is to try and get this ready for either a coming milestone or final release, but until then you're likely to encounter

Re: horizontal scroll bar for ScrollTable

2009-02-06 Thread Tamigg
Hi Kay, I'm a beginner in GWT.. but for me it worked in similar situation but I used PaginScrollTable with setting below lines.. pagingScrollTable.setResizePolicy (ScrollTable.ResizePolicy.FLOW); paginScrollTable.setWidth(950px); Thanks..Let me know

Re: Servlets and web.xml

2009-02-06 Thread Jonathan
Wow, i'm almost happy ! I finally managed to get rid of the HTTP ERROR 503. I misplaced the bin files (.classes), they need to be under yourapp/ web-inf/classes/... So i took the time to copy libs here too (in lib folder). OK this done, i don't success to upload my file. I browse it correctly,

Re: Servlets and web.xml

2009-02-06 Thread Shawn Brown
Well you have to specify a valid url. You are configuring /fileServlet to go to your servlet and then asking requesting a url of /FileServlet. Aren't you? I am not sure but think capitalization is significant. Best, Shawn On Sat, Feb 7, 2009 at 9:42 AM, Jonathan jonathan.delf...@gmail.com

Re: Servlets and web.xml

2009-02-06 Thread Jonathan
Hey i just saw this before your message. But even with that, it stills not working. I still get this message 404pRequestURI=/com.tergwt.Main// FileServlet/ppismall... And i changed my formAction to form.setAction(/FileServlet); instead of form.setAction(GWT.getModuleBaseURL() + /FileServlet); So

Re: Servlets and web.xml

2009-02-06 Thread Jonathan
With form.setAction(/FileServlet); i get h2HTTP ERROR: 404/ h2preNOT_FOUND/pre pRequestURI=/FileServlet/p That's strange. Thanks for the help. Cheers On 7 fév, 01:59, Jonathan jonathan.delf...@gmail.com wrote: Hey i just saw this before your message. But even with that, it stills not working.

Re: Problem with Generics and Serialization of Primitive Type Array Fields

2009-02-06 Thread Ben Tilford
Primitives do not extend Object and cannot implement Serializable. You should use the Object versions of primitives (i.e. use Integer instead of int) I don't think the code would even compile if you tried to use a primitive with generics. On Fri, Feb 6, 2009 at 4:25 PM, jsegal

Re: -overwrite, -ignore and -addToClassPath

2009-02-06 Thread hezjing
On Mon, Jan 19, 2009 at 2:56 PM, Fred Janon fja...@gmail.com wrote: Even better would be to provide a clear explanation with an example in the projectcreator and applicationcreator pages, or to get rid of these options. I think there must be a reason the option is there, but I agree with

Google ( App Engine + Web Toolkit )

2009-02-06 Thread Omer Shakil
Hi Guys, I wanted to know what are the prospects of using Google App Engine with the Web Toolkit. I did some searches and read up on the documentation, it seems that the only way is to do JSON data transmission layer in the middle. I am no expert, just wanted to play with these two technologies,

Re: Google ( App Engine + Web Toolkit )

2009-02-06 Thread Shawn Brown
I wanted to know what are the prospects of using Google App Engine with the Web Toolkit. I did some searches and read up on the documentation, it seems that the only way is to do JSON data transmission layer in the middle. What about Django then? Have you read the docs on using Django to

Re: Google ( App Engine + Web Toolkit )

2009-02-06 Thread Omer Shakil
Thanks Shawn. Okay, Django will help me convert python objects to JSON, and at the GWT end, you can use a standard JSON Parser, but besides that, all of the rest you will never ever use, correct? Nothing wrong with that, but was just curious, all this Django capabilities are of no use to you all

Re: Google ( App Engine + Web Toolkit )

2009-02-06 Thread Shawn Brown
At this point I really don't know. GWT + json works fine for me using DWR. I can throw GWT under appengine at the moment calling my java sevlets for authentication and data requests. To convert the servlets to python and run it all under appengine -- I don't know that would take. Sorry. On

Accessing a value from a servlet in a gwt Entry point class

2009-02-06 Thread sriram
Hi, I am doing a sample login application using login jsp, tomcat and gwt. I would like to pass username from the login servlet after a successful login to gwt entrypoint class either using a session or static variable Code snippet using static variable Login servlet pubcli class LoginServlet

how to set the size of a dialog box with respect to the flex table inside it?

2009-02-06 Thread malen
Hi! I'm quite new with gwt and I have a simple yet annoying problem. I want to show a dialog box that contains a flex table that adjusts according to the columns and rows of data. I tried getting the offset height and width of flex table but it gives me a value of 0. I also tried to set the

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-06 Thread nicolas de loof
Your example works, The issue is that I don't load the class from a classloader, I'm using BCEL to read the .class and access the GWT_VERSION_NUM field, so static initializer is not executed. I now fallback to reading the About.properties if present, this fix my version-detection issue Cheers,

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-06 Thread Scott Blum
LOL, well that would explain it. :) To be fair, in previous versions this would have worked since those fields were (I think wrongly) compile-time-constants. On Fri, Feb 6, 2009 at 3:10 AM, nicolas de loof nicolas.del...@gmail.comwrote: Your example works, The issue is that I don't load the

[gwt-contrib] [google-web-toolkit commit] r4639 - in branches/snapshot-2009.01.29/user: src/com/google/gwt/user/client/ui test/com/google/g...

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Thu Feb 5 11:18:14 2009 New Revision: 4639 Modified: branches/snapshot-2009.01.29/user/src/com/google/gwt/user/client/ui/PopupPanel.java branches/snapshot-2009.01.29/user/test/com/google/gwt/user/client/ui/DialogBoxTest.java Log: Fixes squirrely case

[gwt-contrib] default GWT version in Maven central repo wrong

2009-02-06 Thread Arthur Kalmenson
Hello everyone, I'm not sure who rsyncs GWT releases to Maven central, but if you look at: http://mvnrepository.com/artifact/com.google.gwt/gwt-user you can see that the default GWT version is 1.5-RC1 and not 1.5.3. -- Arthur Kalmenson --~--~-~--~~~---~--~~

[gwt-contrib] Re: default GWT version in Maven central repo wrong

2009-02-06 Thread nicolas de loof
What make you say ths is the default one ? Index of /maven2/com/google/gwt/gwt-user/ ../ 1.4.60/17-Sep-2007 17:57 - 1.4.62/23-Mar-2008 09:10 - 1.5-M1/

[gwt-contrib] Work around for gwt issue 3340

2009-02-06 Thread ecc
Reviewers: jgw, Description: issue url: http://code.google.com/p/google-web-toolkit/issues/detail?id=3340 This work around stops a race condition from happening in IE that causes the image not to be cached correctly if the onLoad event is hooked up to the image immediately after the image is

[gwt-contrib] Re: default GWT version in Maven central repo wrong

2009-02-06 Thread nicolas de loof
AFAIK, mvnrepository latest is based on textual version comparison, so 1.5-RC* 1.5.3 On Fri, Feb 6, 2009 at 4:54 PM, nicolas de loof nicolas.del...@gmail.comwrote: What make you say ths is the default one ? Index of /maven2/com/google/gwt/gwt-user/ ../ 1.4.60/

[gwt-contrib] Re: Tighten up query string parsing for locale value in I18N.gwt.xml

2009-02-06 Thread Scott Blum
You could also check that the preceding character is '?' or ''. I'm not sure in this context if it can actually be at pos 0 or not. On Thu, Feb 5, 2009 at 7:55 PM, zun...@google.com wrote: Reviewers: jat, Description: Tighten up query string parsing for locale value in I18N.gwt.xml.

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-06 Thread Matthew Mastracci
Scott et. al, Great release! I spent a few hours migrating our codebase and build process without much trouble. 1. The new expanded WAR format makes life a lot easier for us to run with -noserver. With 1.5, we had to regenerate the hosted.html and nocache.js files every time something

[gwt-contrib] [google-web-toolkit commit] r4650 - in changes/bobv/elide_rpc_type_names_r4602: dev/core/src/com/google/gwt/dev dev/core/src/...

2009-02-06 Thread codesite-noreply
Author: b...@google.com Date: Fri Feb 6 07:43:25 2009 New Revision: 4650 Added: changes/bobv/elide_rpc_type_names_r4602/dev/core/src/com/google/gwt/dev/util/arg/ArgHandlerDisableClassMetadata.java (contents, props changed)

[gwt-contrib] [google-web-toolkit commit] r4648 - changes/bobv/elide_rpc_type_names_r4602/dev/core/src/com/google/gwt/dev/js

2009-02-06 Thread codesite-noreply
Author: b...@google.com Date: Fri Feb 6 06:39:06 2009 New Revision: 4648 Modified: changes/bobv/elide_rpc_type_names_r4602/dev/core/src/com/google/gwt/dev/js/JsInliner.java Log: Fix runAsync interaction by not expanding top-level function invocations. Modified:

[gwt-contrib] [google-web-toolkit commit] r4651 - changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 08:56:43 2009 New Revision: 4651 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/BinaryCompilationUnitBuilder.java changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/CompilationState.java Log: Add TODO about linking source

[gwt-contrib] [google-web-toolkit commit] r4649 - tags/1.6.0

2009-02-06 Thread codesite-noreply
Author: sco...@google.com Date: Fri Feb 6 07:31:15 2009 New Revision: 4649 Added: tags/1.6.0/ - copied from r4621, /releases/1.6/ Log: Tagging 1.6 Milestone 1. --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: RR : Declassifying RPC / Removing all type names from compilation

2009-02-06 Thread BobV
On Thu, Feb 5, 2009 at 12:28 AM, BobV b...@google.com wrote: http://google-web-toolkit.googlecode.com/svn/changes/bobv/elide_rpc_type_names_r4602 Future changes: - A compiler flag or optional module to neuter Class.getName(). I've added an -XdisableClassMetadata flag to this branch. This

[gwt-contrib] Google API Libraries for GWT: New binaries ready for download

2009-02-06 Thread Eric Ayers
Another round of updates is ready for the Google API Libraries for Google Web Toolkit (GWT). As just announced on the GWT blog, this update brings bug fixes and new features to three of the existing libraries. - The Google Visualization API Library for GWT moves from a release candidate to a

[gwt-contrib] [google-web-toolkit commit] r4654 - in releases/1.6/user: src/com/google/gwt/user/client/ui test/com/google/gwt/user/client/ui

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 11:11:50 2009 New Revision: 4654 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/PopupPanel.java releases/1.6/user/test/com/google/gwt/user/client/ui/DialogBoxTest.java Log: Merge of c4628, c4639 from branches/snapshot-2009.01.29.

[gwt-contrib] [google-web-toolkit commit] r4655 - in releases/1.6/user: src/com/google/gwt/dom/client src/com/google/gwt/user/client/ui tes...

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 11:16:54 2009 New Revision: 4655 Added: releases/1.6/user/test/com/google/gwt/user/client/ui/ButtonTest.java - copied unchanged from r4624, /branches/snapshot-2009.01.29/user/test/com/google/gwt/user/client/ui/ButtonTest.java Modified:

[gwt-contrib] [google-web-toolkit commit] r4656 - releases/1.6/user/src/com/google/gwt/user/client/ui

2009-02-06 Thread codesite-noreply
Author: e...@google.com Date: Fri Feb 6 11:20:51 2009 New Revision: 4656 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/Image.java Log: Fixes issue 3340 by preventing IE race condition from occurring when the on load handler is set. Review by:jlabanca Modified:

[gwt-contrib] [google-web-toolkit commit] r4657 - releases/1.6

2009-02-06 Thread codesite-noreply
Author: fabb...@google.com Date: Fri Feb 6 11:33:34 2009 New Revision: 4657 Modified: releases/1.6/branch-info.txt Log: Typo correction: I backmerged c4*6*03, at 4*6*05, not 450[35] Modified: releases/1.6/branch-info.txt

[gwt-contrib] [google-web-toolkit commit] r4658 - in releases/1.6: dev/core/src/com/google/gwt/dev/shell user

2009-02-06 Thread codesite-noreply
Author: amitman...@google.com Date: Fri Feb 6 11:47:58 2009 New Revision: 4658 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java releases/1.6/user/build.xml Log: Update to the test target for emma hosted mode. Plus, added check to not generate

[gwt-contrib] Re: [google-web-toolkit commit] r4657 - releases/1.6

2009-02-06 Thread Scott Blum
BTW: your merge computation was off... On Fri, Feb 6, 2009 at 2:36 PM, codesite-nore...@google.com wrote: -/tr...@c4503 was merged (r4505) into /releases/1.6 +/tr...@c4603 was merged (r4605) into /releases/1.6 We probably want to say (c4605) to be clear. The next merge into trunk will

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-06 Thread Scott Blum
On Fri, Feb 6, 2009 at 12:30 PM, Matthew Mastracci matt...@mastracci.comwrote: 2. The compiler task crashes Java 1.6 on Mac now. The previous versions would run fine with the 64-bit JVM (even though SWT isn't compatible). Would it be possible to lazy load SWT so that we can take advantage

[gwt-contrib] Re: RR : Declassifying RPC / Removing all type names from compilation

2009-02-06 Thread Scott Blum
FYI: this will break some JRE code that depends on inspecting Class names of array types to do optimized things. On Fri, Feb 6, 2009 at 1:21 PM, BobV b...@google.com wrote: On Thu, Feb 5, 2009 at 12:28 AM, BobV b...@google.com wrote:

[gwt-contrib] Re: [google-web-toolkit commit] r4657 - releases/1.6

2009-02-06 Thread Scott Blum
On Fri, Feb 6, 2009 at 4:19 PM, Freeland Abbott fabb...@google.com wrote: Sigh. Right; everybody else does start to just-before-end, but svn merge does just-after-start to end. :-/ Remember, once you have applied c100, you will be at r100. :)

[gwt-contrib] Re: code review requested - merge OOPHM hosted.html

2009-02-06 Thread John Tamplin
Updated patch -- I had tested only on my local machine, so I didn't notice it wasn't picking up gwt.hosted from the URL properly. -- John A. Tamplin Software Engineer (GWT), Google --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit commit] r4661 - trunk/dev/oophm/overlay/com/google/gwt/dev

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 13:24:55 2009 New Revision: 4661 Modified: trunk/dev/oophm/overlay/com/google/gwt/dev/GWTShell.java Log: Fix build breakage introduced by 1.6 merge. Patch by: jgw Review by: jat (Desk check) Modified:

[gwt-contrib] [google-web-toolkit commit] r4664 - in trunk/dev/oophm/overlay/com/google/gwt/dev: . shell

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 14:54:00 2009 New Revision: 4664 Modified: trunk/dev/oophm/overlay/com/google/gwt/dev/GWTShell.java trunk/dev/oophm/overlay/com/google/gwt/dev/shell/PlatformSpecific.java trunk/dev/oophm/overlay/com/google/gwt/dev/shell/ShellMainWindow.java

[gwt-contrib] [google-web-toolkit commit] r4662 - in trunk: dev/core/src/com/google/gwt/dev/shell user

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 13:29:31 2009 New Revision: 4662 Modified: trunk/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java trunk/user/build.xml Log: Merging releases/1.6 into trunk. svn merge -r4657:4658

[gwt-contrib] [google-web-toolkit commit] r4660 - releases/1.6

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 13:07:25 2009 New Revision: 4660 Modified: releases/1.6/branch-info.txt Log: Merging releases/1.6 into trunk. Modified: releases/1.6/branch-info.txt == ---

[gwt-contrib] [google-web-toolkit commit] r4663 - releases/1.6

2009-02-06 Thread codesite-noreply
Author: j...@google.com Date: Fri Feb 6 13:29:55 2009 New Revision: 4663 Modified: releases/1.6/branch-info.txt Log: Merging releases/1.6 into trunk. Modified: releases/1.6/branch-info.txt == ---

  1   2   >