Scroll techniques for mobile phones

2010-03-25 Thread Sekhar
How are folks (or is anyone) doing page scrolls for GWT apps on mobile phones? I'm having a bad time getting things going on say Android. E.g., the scroll bar doesn't appear at all (either with ScrollPanel or with a overflow: scroll CSS setting). Similarly, the handlers are just not picking up

Re: Problems using GWT for google gadget development

2010-03-25 Thread Graham Crosmarie
I solved the problem, it was that I did not deploy the whole war because I thought the gadget was only the file.gadget.xml and in fact the gadget needs both the gadget.xml and all teh js files in the war. On 23 mar, 10:59, Graham Crosmarie graham.crosma...@petalslink.com wrote: I am currently

GWT does not intercept some events in Internet Explorer 8 with standards mode on

2010-03-25 Thread Michail Prusakov
I've recently tried out the SuggestBox widget. I've used the following code, which I took from javadoc: MultiWordSuggestOracle oracle = new MultiWordSuggestOracle(); oracle.add(Cat); oracle.add(Dog); oracle.add(Horse); oracle.add(Canary); SuggestBox box = new SuggestBox(oracle);

Re: GWT does not intercept some events in Internet Explorer 8 with standards mode on

2010-03-25 Thread Thomas Broyer
On Mar 25, 10:02 am, Michail Prusakov michail.prusa...@gmail.com wrote: I've recently tried out the SuggestBox widget. I've used the following code, which I took from javadoc:   MultiWordSuggestOracle oracle = new MultiWordSuggestOracle();   oracle.add(Cat);   oracle.add(Dog);  

[Javascript Error] NumberFormat

2010-03-25 Thread StrongSteve
Hello, I experience the following - from my point of view unexplainable - behaviour when using the GWT NumberFormat (com.google.gwt.i18n.client.NumberFormat). I am using GWT 2.0.3, Eclipse Ganymed and IE8/FF3.6. Within my client package I have a static helper class which contains the following

Re: Making valid and accessible web pages with GWT

2010-03-25 Thread enTropy Fragment
I think I'll stay with FlowPanels + css for now... But thanks for the setAttribute stuff!!! I didn't know this could be done!. Btw there was a typo, where I said tag I meant to say ALT :P 2010/3/25 kozura koz...@gmail.com I've found the new LayoutPanel stuff to be much better for making

GWT RPC Thread safe

2010-03-25 Thread Ho Jimmy
Hi, I am new to GWT. So, this is a newbie question but I have google it a while but I am not able to find a simple example. How can I create the servlet thread safe? For traditional servlet, we use Threadlocal. So how can we define the similiar for GWT RPC servlet? Pls also describe a bit about

Expiration of Cookies

2010-03-25 Thread tdk
I would like to set a Cookie on my client which never expires, how do I do that? I tried setting a date, but when I check the cookie, it always says: Expires: At end of session: Cookies.setCookie(continuityUser, loginContext.getUsername(), new Date(Long.MAX_VALUE)); I use GWT

Re: GWT RPC Thread safe

2010-03-25 Thread olivier nouguier
IMHO GWT doesn't change anything On Thu, Mar 25, 2010 at 11:33 AM, Muhammad Saifullah msaif.muham...@gmail.com wrote: simply use the keyword synchronized in your servlet doService() or doGet() or doPost() method. thats it.Then concurrent threads cant enter at the same time. one after

Multiple entry points or multiple widgets?

2010-03-25 Thread ome
Hello everybody, We are about to start the migration of a huge desktop application to GWT and we faced the following problem. Application has a main module and about 20 different big submodules (almost independent and isolated from each other). These submodules are started from this main

GWT Browser Plugin for Mac Chrome?

2010-03-25 Thread Steven Jay Cohen
http://www.stevenjaycohen.com/journal/no-gwt-chrome-osx-googlefail Any word about when I will be able to use Mac Chrome for Development Mode? Speed Tracer is great, but not being able to use Dev Mode in Chrome really slows down development. Steven www.stevenjaycohen.com -- You received this

How to customize Tree's TreeItem padding?

2010-03-25 Thread epaga
How can I change the padding in a tree's rows? It currently seems to be set to padding-top: 3px; padding-right: 3px; padding-bottom: 3px; margin- left: 0px; padding-left: 23px; Neither styling gwt-Tree nor gwt-TreeItem seems to help. I have even tried styling .gwt-Tree div { padding:

Re: Determining Permutation on Server

2010-03-25 Thread Nathan Wells
On Mar 24, 11:42 am, Thomas Broyer t.bro...@gmail.com wrote: On Mar 24, 5:09 pm, Nathan Wells nwwe...@gmail.com wrote: You're correct, in more complex environments where a more robust property provider is necessary, my approach wouldn't do much good. But then, I'm not talking about

Re: Bug in DateTimeFormat?

2010-03-25 Thread djd
Looks like I have this problem again... EEE, dd MMM yy HH:mm:ss Z Wed, 24 Mar 10 23:57:47 + I'm not sure why, but all invalid dates are between 22:00 and 23:59. Could be an hour issue? On Mar 3, 9:58 pm, Sorinel C scristescu...@hotmail.com wrote: Is this browser case? that means is it

Re: How do I override Safari's default behavior when the TAB key is pressed

2010-03-25 Thread djd
Widget.setIndex()? Usually (this is not the first question about browser behavior/ui) you cannot change what browser is offering you. On Mar 24, 10:41 pm, Rob Tanner caspersg...@gmail.com wrote: I am writing a password change/reset application.  When the user knows his/her current password,

Re: gwt app partially loaded but user can interact

2010-03-25 Thread aditya ch
AFAIK, onLoad would never get triggered. Typically window.onload would get invoked, when the DOM is ready to process the JS after loading every other JS, CSS files etc. Here in GWT, nocache.js has already got downloaded to the client and fired another request for loading browser corresponding HTML

Re: GWT RPC Thread safe

2010-03-25 Thread Lothar Kimmeringer
Muhammad Saifullah schrieb: simply use the keyword synchronized in your servlet doService() or doGet() or doPost() method. thats it.Then concurrent threads cant enter at the same time. one after another. That also means that you can only perform one request at a time, which is clearly not

Re: GWT RPC Thread safe

2010-03-25 Thread Lothar Kimmeringer
Ho Jimmy schrieb: I am new to GWT. So, this is a newbie question but I have google it a while but I am not able to find a simple example. How can I create the servlet thread safe? For traditional servlet, we use Threadlocal. So how can we define the similiar for GWT RPC servlet? Pls also

Re: GWT does not intercept some events in Internet Explorer 8 with standards mode on

2010-03-25 Thread Michail Prusakov
This is exactly the case! Thanks so much - the workaround works amazingly well! I did think about the same thing myself but kinda mist out that you should set 100% height on html, otherwise body will count its 100% from parent... Thanks again - you saved me a day of googling... I wish gwt guys

Re: Making valid and accessible web pages with GWT

2010-03-25 Thread Eric
On Mar 24, 6:05 am, enTropy Fragment poemcompi...@gmail.com wrote: Hi! I am developing a web page that should be accesible. While working with GWT I have discovered it is more focused in RIA than in creating standard and good code. It is so open and powerfull that it still makes sense (to

Disable Google Web Toolkit Version 1.7 Available

2010-03-25 Thread sneer
Every time when I'm started GWT hosted mode (1.4.62) I see window with such message Google Web Toolkit Version 1.7 Available GWT 1.7 provides updated support for the latest versions of major browsers including Safari 4, Firefox 3.5, and Internet Explorer 8. Download GWT 1.7 from Google Code For

Re: Problem with the datebox : handling to value change events when setting a format

2010-03-25 Thread Diego Alvarez Araujo Correia
I'm facing the same problem and have opened a bug for it: http://code.google.com/p/google-web-toolkit/issues/detail?id=4785q=ValueChangeEvent Thanks Youen On Dec 30 2009, 2:50 pm, Youen youen.ch...@gmail.com wrote: Hi, I've just detecting aproblemwith thedateboxwidget with GWT 2.0, the

Re: Problem with the datebox : handling to value change events when setting a format

2010-03-25 Thread Diego Alvarez Araujo Correia
Hi Youen, I'm facing the same problem here. After I set the format of a datebox (and I do it only once) everytime I change the value of the widget it throws two ValueChangeEvent. It seems like a bug to me. Anybody else with this problem? I'm

google map api setGoogleBarEnabled

2010-03-25 Thread bálint
Hi! I have a mapwidget on my gwt applications. I want to add a search field. I found the embadded search. It can be enabled with the setGoogleBarEnabled(true) call. It works fine exept for displaying the search text field. The fields height is 6px and I cannot change it. I cant find the TextFiled

Serialization problem -- nested ArrayLists are full of NULL instead of data

2010-03-25 Thread Daniel Kvasnicka jr.
Hi guys, I'm using GWT and I have problem with sending nested ArrayLists through a RPC service. The data produced by the service look like this: ArrayList of objects of type A. every A has a (Array)List of B property every B has a (Array)List of C property that property contains

Problem reading a file GWT

2010-03-25 Thread Lucas Rios
Hi everybody, I have a similar problem. My case is: I have a java project that has a lot of funcionalities, one of them is read text files or .xls files. So I want that the client upload a file(.txt, or .xls) and I take this file content and process it in the server side and return the result.

No Log in GWT Development Shell

2010-03-25 Thread Jagrut
I have included GWT plugin in Netbeans. When i am running the application in the Hosted mode. GWT Development Shell is not showing any Logs. It is very annoying because it is stopping me to debugging the application. :( -- You received this message because you are subscribed to the Google

Re: Making valid and accessible web pages with GWT

2010-03-25 Thread Thomas Broyer
On Mar 24, 11:05 am, enTropy Fragment poemcompi...@gmail.com wrote: Hi! I am developing a web page that should be accesible. While working with GWT I have discovered it is more focused in RIA than in creating standard and good code. It is so open and powerfull that it still makes sense (to

read remote binary file

2010-03-25 Thread alessandro
hi all, I need to read a binary file located on a remote server I also see that I can't use HttpURLRequest java class how can I do? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Unable to Use GWT Developer Plugin with Firefox 3.6

2010-03-25 Thread Chris Balz
This approach seemed to work for me. The language was already set to en-us though. I just opened the preferences/options dialog, re- selected it, and closed the dialog. System info: Linux cbalz-tp-r51-0 2.6.31-20-386 #58-Ubuntu SMP Fri Mar 12 07:29:24 UTC 2010 i686 GNU/Linux

Multipage application -- essentially another window.open question

2010-03-25 Thread Emil
Very new to GWT. start playing with it. It looks like the design of GWT is trying to have all the UI components modularized and then everything happens in one page. In old fashioned JSP/JSF world, the controller servlet decides which page to load and each page layout its own UI components and load

Re: Receiving Plugin failed to connect to hosted mode server 127.0.0.1:9997 Error

2010-03-25 Thread Janko
Hi! This helped me!!! I was also very frustrated... The eclipse was working fine until I got the plugin failed to connect to hosted mode server at 127.0.0.1:9997 error... Nothing helped... not uninstalling,.. reverting to old installation date... -bindAddress helped. Thanks! On Mar 22, 3:10 pm,

Re: google map api setGoogleBarEnabled

2010-03-25 Thread Eric Ayers
Hi Balint, I sniffed around in the JavaScript Maps API docs: http://code.google.com/apis/maps/documentation/reference.html#GGoogleBarOptions and didn't see a direct way to set it, but there might be a way to do it by messing around with CSS definitions. The Google Maps API group would be a

Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-25 Thread spacejunkie
That sounds familiar. I wanted to the the same thing some time back which is when I wrote this: http://priyanksden.blogspot.com/2009/11/incorporating-gwt-into-your-project.html It works with GWT 2.0 too. Integrating GWT is a common tasks that most nontrivial applications have to go through. Each

Re: Multi-tenancy in GWT

2010-03-25 Thread Kyle Baley
Is that possible with GAE? In any case, I found something that works. I created a JSP page and dumped the contents of the MyApp.html into it. Then added the following to my web.xml: servlet servlet-nametest/servlet-name jsp-file/MyApp.jsp/jsp-file

Re: Problems using GWT for google gadget development

2010-03-25 Thread Eric Ayers
Thanks for the followup. -Eric. On Thu, Mar 25, 2010 at 4:35 AM, Graham Crosmarie graham.crosma...@petalslink.com wrote: I solved the problem, it was that I did not deploy the whole war because I thought the gadget was only the file.gadget.xml and in fact the gadget needs both the gadget.xml

Image loading and exception handling - access to HTTPResponse object

2010-03-25 Thread d95sld95
Environment: GWT 2.0.3 + Image serving -- using Apache CXF restful service I am working on an application that shows thumbnails in a list/grid view. Each row resembles a media item (picture, video, audio, etc). Some media has thumbnails like picture and video, other do not like audio. Also some

Re: Image loading and exception handling - access to HTTPResponse object

2010-03-25 Thread d95sld95
By the way, I looked at using the RequestBuilder but I believe it does not handle binary data. Am I correct? -- 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-tool...@googlegroups.com. To

Can we close tabs in a DecoratedPanel

2010-03-25 Thread ceeed
Hi, is there a way to close the tabs in a decorated panel. Thanks, -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Server side: start independent Thread at deploy on server

2010-03-25 Thread cretz
I have had marginal success integrating http://code.google.com/p/gwt-websockets/ with http://github.com/gimite/web-socket-js with http://jwebsocket.org/. The latter project is lacking in some quality aspects which made me switch to a custom solution based on the latest Netty (which has this patch

Re: No Log in GWT Development Shell

2010-03-25 Thread Eric
On Mar 25, 2:18 am, Jagrut jagru...@gmail.com wrote: I have included GWT plugin in Netbeans. When i am running the application in the Hosted mode. GWT Development Shell is not showing any Logs. It is very annoying because it is stopping me to debugging the application. :) Try looking at

Re: Image loading and exception handling - access to HTTPResponse object

2010-03-25 Thread Thomas Broyer
On Mar 25, 3:39 pm, d95sld95 steen.laur...@gmail.com wrote: Environment: GWT 2.0.3 + Image serving -- using Apache CXF restful service I am working on an application that shows thumbnails in a list/grid view. Each row resembles a media item (picture, video, audio, etc). Some media has

Re: Making valid and accessible web pages with GWT

2010-03-25 Thread Eric
I figured out how to use label correctly in UiBinder. In MyPanel.ui.xml: g:HTMLPanel p label ui:field='nameLabel'g:TextBox ui:field='name' /p /g:HTMLPanel In MyPanel.java: public interface MyUiBinder extends UiBinderComposite, MyPanel{} public ststic MyUiBinder =

Re: 'Stop running this script' message in browsers

2010-03-25 Thread Jim
Hello you should use IncrementalCommand when items are added On Mar 24, 4:54 pm, keyboard_samurai yog...@gmail.com wrote: Hi, Yes the script process all the data at once because we have a requirement that all the nodes to be expanded rather than collapsed. Thank you! On Mar 24, 1:24 am,

Re: Expiration of Cookies

2010-03-25 Thread Thomas Broyer
On Mar 25, 11:39 am, tdk kloe...@ics.de wrote: I would like to set a Cookie on my client which never expires, how do I do that? Don't. Expire in a year from now, two eventually, but there's no point in never ever expiring. I tried setting a date, but when I check the cookie, it always says:

Re: Multipage application -- essentially another window.open question

2010-03-25 Thread kozura
Can always do Window.open (http://google-web-toolkit.googlecode.com/ svn/javadoc/2.0/com/google/gwt/user/client/Window.html#open %28java.lang.String,%20java.lang.String,%20java.lang.String%29) Would recommend however looking at other options to make your app much more usable, like DialogBoxes and

Re: No Log in GWT Development Shell

2010-03-25 Thread kozura
Have you clicked on the tab for the browser you've opened? The dev shell has a log window for the jetty server, and for each browser connected to it. You can use GWT.log() to send your own messages, or change the logLevel argument to get more messages from GWT itself, all documented here

Re: Problem reading a file GWT

2010-03-25 Thread kozura
Not sure what you mean, have the client read a file from the user's computer and send it to your server? This is a security risk, so there are only very restricted way of doing this, requiring the user to select the file. I recommend using the gwt-upload library, found here:

Re: Multiple entry points or multiple widgets?

2010-03-25 Thread kozura
Yes! Fantastic new feature in GWT 2.0 called Code Splitting addresses exactly this. See here: http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html With a good code base and intelligent partitioning of separate pieces, GWT will do all the dependency analysis and break off as

Re: Problem reading a file GWT

2010-03-25 Thread Lucas Rios
First thanks for reply, My issue is: I need take one or more files uploaded by the user and procesing it in the server side consuming a service that is imported of another project. Thanks again, 2010/3/25 kozura koz...@gmail.com Not sure what you mean, have the client read a file from the

Re: Multipage application -- essentially another window.open question

2010-03-25 Thread kozura
Didn't notice the title included window.open, but the answer is the same - to have the contents of the window be a module you just include the URL to the module, possibly with URL parameters to pass any information needed. Again this is how Gmail and the like work with their pop out feature, you

Re: read remote binary file

2010-03-25 Thread Thad
You must read the file on the server side, in an RPC method or in a servlet. Then form up what you find there in a fashion that your software or the browser will understand--a serializable object in the case of an RPC method, a mime type in the case of a servlet--and return it to your client.

Re: Problem reading a file GWT

2010-03-25 Thread kozura
The answer is the same, you need to use something like gwt-upload to get the files from the user/client to your server. Once this gets the file onto your server, you can process it however you want, with another service or anything. You cannot use RPC to do this because your client has no direct

Re: Server side: start independent Thread at deploy on server

2010-03-25 Thread dolcra...@gmail.com
You would start it any way you would normally do such things in Java/ Servlets (not a GWT specific question). Maybe something like static Thread mythread = new Thread(){ }; mythread.run(); if you need this to start on server startup you need to have this hooked into whatever server you're using

Re: Problem reading a file GWT

2010-03-25 Thread Thad
Ask the user to select the file via a FormPanel with a FileUpload widget. Process the file in your RPC method, and return the user what results you will in a serializable object. On Mar 25, 2:13 pm, Lucas Rios lucasri...@gmail.com wrote: First thanks for reply, My issue is: I need take one or

Re: Serialization problem -- nested ArrayLists are full of NULL instead of data

2010-03-25 Thread Thad
You may have to do a deep copy of your arrays. For example, I had to do a deep copy to get a copy of a window location parameter map: private HashMapString, ListString getParamMap() { MapString, ListString paramMap = Window.Location.getParameterMap(); //

Re: How to customize Tree's TreeItem padding?

2010-03-25 Thread Thad
The values in standard.css are below. Maybe they are a starting point: .gwt-Tree .gwt-TreeItem { padding: 1px 0px; margin: 0px; white-space: nowrap; cursor: hand; cursor: pointer; } .gwt-Tree .gwt-TreeItem-selected { background: #93c2f1 url(images/hborder.png) repeat-x 0px -1463px; }

Re: onSubmitComplete is not fired when response.setContentType(application/x-download)

2010-03-25 Thread Thad
Request the file with a servlet vs. an RPC method. On Mar 23, 1:11 pm, Kewei keweish...@gmail.com wrote: I found that the onSubmitComplete will not be fired when in the servlet, the response's content type is set to application/x- download. I am using GWT and FormPanel, I just wanted to

Re: How can I change the body's background without using external style sheets?

2010-03-25 Thread Shedokan
Oh, so that's what getStyle does, I thought it was getting the class name because setStyleName sets the calss name. Thanks. On 24 מרץ, 23:11, Olivier Monaco olivier.mon...@free.fr wrote: Hi, Did you try something like: Document.get().getBody().getStyle().setBackgroundColor(...); Where

RPC call in onModuleLoad()? Is it good approach??

2010-03-25 Thread Yogesh Naik
Hi All, I have just started learning GWT. I have went through the tutorials and created StockWatcher application provided in the tutorial. One thing I noticed that when I open the StockWatcher.html, it doesn't show me any stocks. I was thinking how I can change this behavior. Say, any time any

Re: RPC call in onModuleLoad()? Is it good approach??

2010-03-25 Thread kozura
I see no reason why making RPC calls as part of the onModuleLoad sequence (presumably from some classes it calls, but whatever) is a bad thing, in fact it's good to have these called out early, so while the code is running to build the GUI, the RPCs are off fetching data in parallel. With good

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-25 Thread Bert
Keith, Trying to follow the instructions I cannot find a URL field in the GWT tab I'm not asked for the war directory 1. and on the GWT tab change the URL field to point to your server (e.g. http://localhost:8080/WebApp). 2. Run/Debug your new launch configuration. The first time you do

Model objects in GWT and app engine's datastore

2010-03-25 Thread jbdhl
I have build my GWT project upon an MVP architecture. In that, model objects are transferred between the server and the client. It is tempting to just add @PersistentCapable to the model classes in order to be able to store them directly in datastore. Is that a good strategy? My concern is: as

Adding, updating and deleting fields in app engine's datastore

2010-03-25 Thread jbdhl
I try to figure out how easy it is to ruin/break the data in app engine's datastore by accident. Assume that a class, say MyClass, has a number of persistent members, e.g. ... int a int b int c ... and assume a number of MyClass objects have been stored in app engine's persistent

Re: Error while installing Google Plugin for (Fedora) Eclipse 3.5.1

2010-03-25 Thread Randell
I filed it here: http://code.google.com/p/google-web-toolkit/issues/detail?id=4791, although I didn't see any fields to indicate EclipsePlugin. On Wed, Mar 24, 2010 at 10:36 PM, Rajeev Dayal rda...@google.com wrote: Ha, hopefully you won't encounter too many! You can file an issue via this

import java.io.File help

2010-03-25 Thread Chris
can gwt use this java class? if not, are there any ways around that if I want to create a list of all the files in a particular directory? thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Some directions needed

2010-03-25 Thread JB70
I am working on a simple web app that will let users Login and change some profile information. I have downloaded the toolkit and came up with the sample page. I am able to call get the data from the data store. I need some directions on how to proceed with the app. I see that I need to think in

Re: import java.io.File help

2010-03-25 Thread Lothar Kimmeringer
Chris schrieb: can gwt use this java class? On the client side? No. if not, are there any ways around that if I want to create a list of all the files in a particular directory? Create a signed Java applet that accesses the directory and pass that information to your application. Regards,

Re: Google Maps V3 use with the GWT (JSNI)

2010-03-25 Thread Jeff Schnitzer
I stumbled across this while doing a related search... if you haven't already figured it out, your problem is that in JSNI you need to call: new $wnd.google.maps.LatLng(...) not: new google.maps.LatLng(...) There's also a basic-but-functional GWT wrapper for maps v3 at

Anyaware of Hadoop/HBase/BigTables

2010-03-25 Thread sridevi macherla
Hi, Anyone aware of Hadoop/HBase/BigTables, did anyone working on this modules. please let me know. Thanks Sri -- 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-tool...@googlegroups.com. To

Re: Some directions needed

2010-03-25 Thread kozura
Well there's of course a plethora of ways to proceed, but the basic idea is that the contents of any panel can be dynamically changed by your code. So at the very simplest, say you create a SimplePanel as the top level widget. You could start out creating a login widget, and use

[gwt-contrib] ServerMessenger Design Review

2010-03-25 Thread Nathan Wells
Hey, I brought this up in the user's forum, but I forgot to post it here! I'm working on designing a wrapper for all server communications. I have a preliminary design doc here:

[gwt-contrib] Re: Ant changes in response to a stable htmlUnit. (issue269801)

2010-03-25 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/269801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] [google-web-toolkit] r7783 committed - Backing out the manual tools update...

2010-03-25 Thread codesite-noreply
Revision: 7783 Author: amitman...@google.com Date: Thu Mar 25 07:52:22 2010 Log: Backing out the manual tools update Patch by: amitmanjhi Review by: fabbott (over IM) http://code.google.com/p/google-web-toolkit/source/detail?r=7783 Deleted: /tools/lib/htmlunit/htmlunit-r5607 --

[gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread fabbott
LGTM http://gwt-code-reviews.appspot.com/232801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread Rodrigo Chandia
Thx! 2010/3/25 fabb...@google.com LGTM http://gwt-code-reviews.appspot.com/232801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with

Re: [gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread דניאל רייס
I disagree with point (1). The APIs are not the same, just almost the same. IMHO the builder should have a freeze method while the MutableArray should not. This makes it clear that freezing is a build-time process. It seems to me that this could be done with a little interface inheritance

[gwt-contrib] Bikeshed: Wait until user stops typing before fetching stocks (issue270801)

2010-03-25 Thread jlabanca
Reviewers: jgw, Dan Rice, Description: Currently, we fetch stocks on every key up event. This is inefficient, and it means that the stocks table is out of sync with the search query. Fix: This patch adds a 250ms timeout before querying stocks so that we wait until the user pauses their

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

2010-03-25 Thread codesite-noreply
Revision: 7784 Author: b...@google.com Date: Thu Mar 25 08:47:46 2010 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=7784 Modified: /wiki/ConditionalProperties.wiki === ---

[gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread rchandia
http://gwt-code-reviews.appspot.com/232801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread rchandia
I have just uploaded a couple of checkstyle fixes for a quick review. I'll get to the ImmutableArray implementation now. It seems the builder approach has merits. I'd like to give it a little more thought. On 2010/03/25 16:39:42, rchandia wrote:

[gwt-contrib] Re: Bikeshed: Wait until user stops typing before fetching stocks (issue270801)

2010-03-25 Thread rice
LGTM http://gwt-code-reviews.appspot.com/270801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] Re: RR : Soft permutations (issue160801)

2010-03-25 Thread spoon
LGTM http://gwt-code-reviews.appspot.com/160801/diff/70001/71009 File dev/core/src/com/google/gwt/dev/CompilePerms.java (right): http://gwt-code-reviews.appspot.com/160801/diff/70001/71009#newcode354 dev/core/src/com/google/gwt/dev/CompilePerms.java:354: PropertyPermutations workList =

[gwt-contrib] [google-web-toolkit] r7786 committed - Reverting svn r7783...

2010-03-25 Thread codesite-noreply
Revision: 7786 Author: amitman...@google.com Date: Thu Mar 25 10:53:06 2010 Log: Reverting svn r7783 Patch by: amitmanjhi Review by: fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=7786 Added: /tools/lib/htmlunit/htmlunit-r5607 Replaced:

[gwt-contrib] [google-web-toolkit] r7787 committed - Ant changes in response to a stable htmlUnit....

2010-03-25 Thread codesite-noreply
Revision: 7787 Author: amitman...@google.com Date: Thu Mar 25 07:19:13 2010 Log: Ant changes in response to a stable htmlUnit. Patch by: amitmanjhi Review by: jlabanca Review at http://gwt-code-reviews.appspot.com/269801 http://code.google.com/p/google-web-toolkit/source/detail?r=7787

Re: [gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread Bruce Johnson
On 3/25/10, Daniel Rice (דניאל רייס) r...@google.com wrote: I disagree with point (1). The APIs are not the same, just almost the same. IMHO the builder should have a freeze method while the MutableArray should not. This makes it clear that freezing is a build-time process. It seems to

[gwt-contrib] [google-web-toolkit] r7788 committed - Only show results of the current search query....

2010-03-25 Thread codesite-noreply
Revision: 7788 Author: jlaba...@google.com Date: Thu Mar 25 10:42:25 2010 Log: Only show results of the current search query. http://gwt-code-reviews.appspot.com/270801/show http://code.google.com/p/google-web-toolkit/source/detail?r=7788 Modified:

Re: [gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread דניאל רייס
I have the feeling that if we pushed on the API a bit we could satisfy all the constraints without having to do anything weird. The only downside would be somewhat more interfaces to understand. For example, the builder could have create() and createFrozen() methods -- a clever builder

[gwt-contrib] Fix external issue 4772 (com.google.gwt.user.client.ui.UIObject.setHeight(1em) causes an asser... (issue271801)

2010-03-25 Thread rice
Reviewers: scottb, Description: Fix external issue 4772 (com.google.gwt.user.client.ui.UIObject.setHeight(1em) causes an assert error with rhino) Tighten the regex defining a number (the old one could accept inputs such as '.' and 'e5') Please review this at

Re: [gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread Freeland Abbott
Am I right to think that the problem with builder.create() is that it implies a defensive copy, to allow you to do builder.add() afterwards, and we want to avoid that? (If not, then what is the problem?) The solution to that could indeed be a more clever builder: at create() time, we return the

Re: [gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread Lex Spoon
On Thu, Mar 25, 2010 at 2:16 PM, Freeland Abbott fabb...@google.com wrote: Am I right to think that the problem with builder.create() is that it implies a defensive copy, to allow you to do builder.add() afterwards, and we want to avoid that? (If not, then what is the problem?) The solution

[gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread Bruce Johnson
On Thursday, March 25, 2010, Freeland Abbott fabb...@google.com wrote: Am I right to think that the problem with builder.create() is that it implies a defensive copy, to allow you to do builder.add() afterwards, and we want to avoid that?  (If not, then what is the problem?) Yes, or to avoid

[gwt-contrib] [google-web-toolkit] r7789 committed - Fixes a sporadic RunStyleSelenium bug caused by not properly waiting f...

2010-03-25 Thread codesite-noreply
Revision: 7789 Author: jlaba...@google.com Date: Thu Mar 25 11:02:16 2010 Log: Fixes a sporadic RunStyleSelenium bug caused by not properly waiting for the URL to load before checking the title of the page. Also adds a thread lock to ensure that we don't get harmless but visible errors in

[gwt-contrib] Add a demo of SimpleCellList and fix some bugs found by the demo (issue272801)

2010-03-25 Thread rice
Reviewers: jlabanca, Description: Add a demo of SimpleCellList and fix some bugs found by the demo Please review this at http://gwt-code-reviews.appspot.com/272801/show Affected files: M bikeshed/src/com/google/gwt/bikeshed/list/client/SimpleCellList.java M

[gwt-contrib] Re: Proposed Change: Allow mulitple runStyles to execute simultaneously (issue267801)

2010-03-25 Thread jat
Mostly LGTM. http://gwt-code-reviews.appspot.com/267801/diff/1/8 File user/build.xml (right): http://gwt-code-reviews.appspot.com/267801/diff/1/8#newcode195 user/build.xml:195: echo message=DEPRECATED: test.web.remote is deprecated, use test.web instead/ Why are these deprecated? If I only

[gwt-contrib] Re: Fix external issue 4772 (com.google.gwt.user.client.ui.UIObject.setHeight(1em) causes an asser... (issue271801)

2010-03-25 Thread scottb
LGTM if the regexes are right. :D I'll assume it's correct if the tests pass. http://gwt-code-reviews.appspot.com/271801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to

[gwt-contrib] Re: Fix external issue 4772 (com.google.gwt.user.client.ui.UIObject.setHeight(1em) causes an asser... (issue271801)

2010-03-25 Thread rice
On 2010/03/25 20:39:00, scottb wrote: LGTM if the regexes are right. :D I'll assume it's correct if the tests pass. The heart of the old regex was \d*\.?\d*, which allowed both sets of digits to be empty (thus allowing a '.' by itself). I changed it to force digits to appear either before or

[gwt-contrib] [google-web-toolkit] r7791 committed - Fix external issue 4772 (com.google.gwt.user.client.ui.UIObject.setHei...

2010-03-25 Thread codesite-noreply
Revision: 7791 Author: r...@google.com Date: Thu Mar 25 14:04:46 2010 Log: Fix external issue 4772 (com.google.gwt.user.client.ui.UIObject.setHeight(1em) causes an assert error with rhino) Tighten the regex defining a number (the old one could accept inputs such as '.' and 'e5') Review at

[gwt-contrib] Re: Add a demo of SimpleCellList and fix some bugs found by the demo (issue272801)

2010-03-25 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/272801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] Re: Array implementation for Lightweight Collections. Pure Java implementation only. (issue232801)

2010-03-25 Thread Rodrigo Chandia
(Sorry for the spam, Bruce. I forgot to press reply to all.) I seem to be missing some piece from the puzzle: in which way does freezing a MutableArray prevent the allocation of an ImmutableArray object? // This creates a new MutableArray instance MutableArray ma = CollectionsFactory.

  1   2   >