Re: GWT Button style using HTML - Mozilla Compatibility

2009-09-25 Thread abhiram wuntakal
Hi Zak, Thanks for that. But i was planning to have uniform style for all the buttons. I have some 15-20 different kinds of buttons. I dint want to write a separate CSS for each of them. I just realized that using HTML would be a really convenient way of implementing the icons for buttons.

Compilation Error

2009-09-25 Thread Raul
Why I am getting this while trying to compile... [ERROR] Line 3: The import java.text cannot be resolved [ERROR] Line 4: The import java.text cannot be resolved [ERROR] Line 5: The import java.text cannot be resolved [ERROR] Line 24: DateFormat cannot be resolved to a type [ERROR] Line 24:

Re: help on my small project

2009-09-25 Thread Norman Maurer
Hi Parvez, just a note.. Hupa moved to james.apache.org as subproject (I'm just in preparations to deploy the website). The website can be found ( after I finished the work) under http://james.apache.org/hupa. The svn repos is: http://svn.apache.org/repos/asf/james/hupa Bye, Norman Ps:

Re: buttons in the title bar

2009-09-25 Thread Parvez Shah
maybe this will help you put the title area on top of your window; that add code will depend on what kind of layout you are using on window HorizontalPanel titleArea = new HorizontalPanel(); titleArea .setSize(100%,100%); HorizontalPanel leftSide= new HorizontalPanel(); leftSide.setSpacing(5);

Re: Subclass or member variable?

2009-09-25 Thread mars1412
I'm afraid, I still don't really understand what you are trying todo. could you provide a concrete example of this? If there's only one MyType-class, there's no need to send anything just make it static final or skip it at all on the other hand, if you try to group several of your B-classes by

Re: Refresh is not working on Hosted mode and in IE

2009-09-25 Thread mars1412
so first your app is loaded in IE - everything's fine then you press the browsers refresh button and get a blank page? On Sep 24, 7:31 pm, Rahul bhatt rahul.anubh...@googlemail.com wrote: HI I am using GWT and GXT to develop a rich application. I get blank page while refreshing home page in

'Best practice' for unit testing servlets with init-params?

2009-09-25 Thread Richard Kennard
Hi guys, When unit testing a GWT app that uses servlets, it seems you cannot use the 'real' servlet definition in your app's web.xml. Instead you must put a 'servlet' element into your unit test's module.gwt.xml. However, the module.gwt.xml 'servlet' element is not as capable as the web.xml

Re: Refresh is not working on Hosted mode and in IE

2009-09-25 Thread Parvez Shah
as per the issue if it works for firefox then we can rule out. History object creating problem. what abt logs are you getting any error logs in hosted mode. error log will be silent if you have server side issue, but that should not also be your problem as it works for the first time, so GET is

Re: Compilation Error

2009-09-25 Thread Adam T
u can not use these classes in GWT - client side, read the doc for the allowed class, more specifically, this is what you are allowed to use on GWT client side: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //A --~--~-~--~~~---~--~~ You

Re: Working with JSNI $wnd

2009-09-25 Thread Steven De Groote
I'm afraid I lost you somewhere... Suppose I make a global var canvasname, what should I assign it to then? The problem is that this defineBridgeMethodSubmitDone() is static, while in the JS function I need to call a function on a specific object. The name of the object is cnv_fu1, so I think

Re: Working with JSNI $wnd

2009-09-25 Thread Paul Robinson
Does this work: var cnv = eval($wnd. + canvasname); Steven De Groote wrote: I'm afraid I lost you somewhere... Suppose I make a global var canvasname, what should I assign it to then? The problem is that this defineBridgeMethodSubmitDone() is static, while in the JS function I need to

Re: Working with JSNI $wnd

2009-09-25 Thread rudolf michael
OK.when you create a function in javascript with parameters then the function will look like function(var1, var2){}, you can use those variables by their name directly there is no need to use the $wnd with the variable name unless the variable is defined as global/outside the method scope {} Now

Re: SuggestBox manual override?

2009-09-25 Thread Nairutee
Hi Trevis, Can you please let me know how you managed to get it working. I dont have any custom suggest oracle class. I directly use MultiWordSuggestion and want a similar functionality of populating the suggestion box with all suggestions when the focus is on the suggestion box. Once the user

Re: Problem In implementing Right Click for Mozilla in smartgwt

2009-09-25 Thread Niks
still it is not coming i have written this code for disabling default effect but then it is showing menu once only on right click and then on again clicking it is not coming -

Re: Input Validation

2009-09-25 Thread mohan
Dude , thanks a ton. its a gud idea to work on :) thanks again On Sep 23, 7:18 pm, monk3y darkside...@hotmail.com wrote: Expanding on what Geraldo already said you can have the following Button saveBtn = new Button(Save) saveBtn.addClickHandler( new ClickHandler() {   public void

using affine transformations in GWT

2009-09-25 Thread Stephan
Hi, i want to use affine transformations in Google Web Toolkit... How do i do that? In AWT it's easy using the Graphics2D Object... thx --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Cookies and RPC

2009-09-25 Thread Thomas Holmes
excellent, thanks for the information! On Sep 24, 3:37 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: And if you want to access cookies on the server side , do this within your RPC Servlet HttpServletRequest request = getThreadLocalRequest(); request.getCookies(); --Sri

Re: Cookies and RPC

2009-09-25 Thread Thomas Holmes
excellent, I do appreciate the help. Thanks very much! On Sep 24, 10:31 am, Dominik Steiner dominik.j.stei...@googlemail.com wrote: Tom, this code has to be on client side (GWT code). HTH Dominik Yep, I found that API when I did a Google Search ... So, I tried the code:      

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-25 Thread Davis Ford
This subtle difference did the trick -- thanks! On Thu, Sep 24, 2009 at 5:07 PM, David Durham david.durham...@gmail.com wrote: You already called:   formPanel.setWidget(flexTable) then you called: // vPanel is from superclass which extends Composite vPanel.add(flexTable);

Re: Working with JSNI $wnd

2009-09-25 Thread Steven De Groote
Yep, thanks a lot Paul! Now the alert shows me: Form object: [Canvas ID:cnv_fu1] Looks good to me, until I try this: var myvar = c...@be.sofico.montelli.mmc.client.custom.widgets.upload.srafileupload::submitDoneInternal (Ljava/lang/String;)(filename); I do have this defined on SRAFileUpload

Re: help on my small project

2009-09-25 Thread monk3y
Hi derrck What i usually do is create a DockPanel, then set the width and height to 100% and stick my login box in the center panel of the DockPanel. TextBox login=new TextBox(); Dockpanel myDock=new DockPanel() myDock.setSize(100%,100%); myDock.add(login,DockPanel.CENTER); Something like that

Re: Embedded viewer for pdf

2009-09-25 Thread monk3y
Hi Looks like their pages are actually pdf scanned images(.jpg). So its would be really simple to implement. User clicks on a book server gets a list/Map of pages(images) urls, serves it to the client Image page=new Image(); page.setUrl(responseFromServer.get(i)); Something toward that

Help - my web site based on GWT fails to load in IE8

2009-09-25 Thread Itzik Yatom
I have just finished to develop a web site that is mostly written in GWT. During a non-trivial load that contains many panels and widgets build, asynchronous server requests for grabbing information from DB and XML file contents, it fails in IE8 on adding the main Composite object to the root

resizable dialog box

2009-09-25 Thread ylmz
Hi, I want to make a Dialog box component resizable. But I could not make it work yet. I have 2 ideas I am working on right now. 1) if I understant it right DialogBox gets the size of components it contains. so if I can find a panel that can be resized I could put it in Dialog box so when I

advantages of hibernate

2009-09-25 Thread ces
Hi guys! I'm new in GWT... I want to create a web app that will show a table from a database and I would like to know if I should use Hibernate and not the usual way in Java of fetching data from DB (i.e. resultset)? What are its advantages? thanks in advance for any information you'll give...

Re: New GWT event system performance problems during onMouseMove

2009-09-25 Thread sirtoxy
Hi, all! Have the same problem when use: onMouseMove(MouseMoveEvent event) Also interesting cast question cause use a lot of casts in my table. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

GWT Trunk UiBinder and UiHandler

2009-09-25 Thread Andrew Teirney
Recently i have been investigating UiBinder, i must say that it makes life a great deal easier. I have however come across a problem when using @UiHandler method annotations where the event type is a generic type. The following is a simple example of the sort of method annotated that causes a

Re: Embedded viewer for pdf

2009-09-25 Thread Prashant
try google docs viewer http://docs.google.com/viewer On Fri, Sep 25, 2009 at 7:26 PM, monk3y darkside...@hotmail.com wrote: Hi Looks like their pages are actually pdf scanned images(.jpg). So its would be really simple to implement. User clicks on a book server gets a list/Map of

ClosingHandler to prevent user from navigating away

2009-09-25 Thread Marcelo Sena
Hi, I have a classical situation where the user is trying to navigate away from a page while some of his works are not saved. How do I stop him from doing that. I tried to use the ClosingHandler, but unlike the deprecated closing Listener it does not give me the option to stop the event. Help :(

Re: Working with JSNI $wnd

2009-09-25 Thread Thomas Broyer
On 25 sep, 13:08, Paul Robinson ukcue...@gmail.com wrote: Does this work:     var cnv = eval($wnd. + canvasname); argl! Please: var cnv = $wnd[canvasname]; --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: AccessControlExeption: Access Denied

2009-09-25 Thread Justin
Hey, Ax and I are working on this together, so I wanted to thank you all for the replies. We got it working with all the help. Thanks!! On Sep 24, 3:39 pm, David Durham david.durham...@gmail.com wrote: On Thu, Sep 24, 2009 at 2:34 PM, Sripathi Krishnan sripathi.krish...@gmail.com wrote:

Re: Usage Scenario

2009-09-25 Thread Thomas Broyer
On 25 sep, 07:48, tin nitingupta...@gmail.com wrote: I am planning to use GWT in an already existing HTML GUI. I would request the group to point me to best practices for using GWT in this manner. Basically I am trying to make use of my existing MVC application and want to add the AJAX

Adding Maps Script Tag Options

2009-09-25 Thread thc
Ok, I am a MAPs novice, and having some trouble understanding where to add the scripts tag (I think this is for the API Key??) for my GWT project. The maps getting started tutorial provides a sample, which I don't think can possibly be right as written: script src=http://maps.google.com/maps?

Re: Error installing Google Plugin on Galileo

2009-09-25 Thread BH
I get the same problem... did you find a solution? Thanks On Sep 24, 8:18 pm, Ben Brown taipei...@gmail.com wrote: With a clean install of Galileo, I get the following error when installing using the update site:http://dl.google.com/eclipse/plugin/3.5 An error occurred while collecting

Re: Problem In implementing Right Click for Mozilla in smartgwt

2009-09-25 Thread Sanjiv Jivan
I had asked you to post SmartGWT related questions on the SmatGWT forums and yet you post your question here?? On Fri, Sep 25, 2009 at 8:13 AM, Niks sharma.sweet...@gmail.com wrote: still it is not coming i have written this code for disabling default effect but then it is showing menu once

list serialization

2009-09-25 Thread mwaschkowski
Hi, Quick question about serialization: If I have something to be serialized with the following type defined: private ListObject resultList gwt gives me a serialization error, but if I take away the Object tag: private List resultList it works fine. I'm a bit worried that I'm breaking

Re: Working with JSNI $wnd

2009-09-25 Thread Steven De Groote
@Thomas Broyer: Both solutions work for retrieving the cnv object, but I still can't call the submitDoneInternal() ... Any ideas welcome! Steven On Sep 25, 4:17 pm, Thomas Broyer t.bro...@gmail.com wrote: On 25 sep, 13:08, Paul Robinson ukcue...@gmail.com wrote: Does this work:     var

Re: CSS Reference Book

2009-09-25 Thread Zak
GWT doesnt support any version of CSS. You must decide which browsers you want your applications to support, and then look at each of the browsers' (slightly different) implementation of CSS. Most support almost all of CSS 2.1, while many are quickly adopting more and more bits of CSS3 On Sep

not removing event handlers -- bad practice?

2009-09-25 Thread Alexey
When registering handlers that may live on after the source widget is removed from GUI, is it acceptable to never explicitly release the handler relationship? If it was plain Java, the answer would be yes, because the handler would not have references to the source and therefore would not

Re: using affine transformations in GWT

2009-09-25 Thread David Given
Stephan wrote: [...] i want to use affine transformations in Google Web Toolkit... How do i do that? GWT has no graphics toolkit --- you can't actually *draw* anything other than inserting HTML into your document. So if you're wanting to transform graphics, you can't do that. Or did you

Re: Migration from 1.5 to 1.6 and 1.7

2009-09-25 Thread Sujay
Thanks for posting this, it definitely saved me a couple of hours of aggravation. Removing the xerces jar fixed the problem for me. On Aug 21, 12:59 pm, Sumit Chandel sumitchan...@google.com wrote: Hi Erik, Are you using XercesImpl classes in your actual application code? If not, try removing

How can GWT handle real time data?

2009-09-25 Thread looklook
I want to know how GWT handles real time data? For example, a text field of a web page needs to display real time data got from the server, this means once the server receives real time data, it will send to the web page and the text field of the web page gets updated. Can GWT handle this and

Re: buttons in the title bar

2009-09-25 Thread erico_morta...@hotmail.com
This code, you add the time or had already done? What GWT libraries you care? For code that you sent me I can not find. There are some parts that still accuse error here in my IDE. thanks! On 25 set, 05:13, Parvez Shah parvezs...@gmail.com wrote: maybe this will help you put the title area

Re: How to listen events for stack panel?

2009-09-25 Thread Chad
Jie, Subclass the StackPanel and override the showStack method: @Override public void showStack(int index) { super.showStack(index); // display your information } You could also add more methods to allow adding handlers/listeners if you want. HTH, Chad On Sep 24, 9:00 pm, Jie

Re: building trunk version of gwt

2009-09-25 Thread John (Eric) Hamacher
OK, I figured out you need to chekc the tools project. But the credentials anonymous/anonymous do not work. Isn't this what it means to log in anonymously? Thanks. On Sep 25, 12:27 pm, badgerduke badgerd...@gmail.com wrote: Hello: I don't often checkout source code and try to build it so

Re: ClosingHandler to prevent user from navigating away

2009-09-25 Thread daniel
make sure you use ClosingHandler and not CloseHandler... if a ClosingEvent arises set a message on the event - this will cause the browser to show a dialog with your message where the user have to confirm that he wants to leave the page On 25 Sep., 16:22, Marcelo Sena marceloslace...@gmail.com

Re: building trunk version of gwt

2009-09-25 Thread Ben Harris
No. You should not be asked for credentials. Make sure you aren't using https. On Sep 25, 5:41 pm, John (Eric) Hamacher badgerd...@gmail.com wrote: OK, I figured out you need to chekc the tools project.  But the credentials anonymous/anonymous do not work.  Isn't this what it means to log in

Re: SmartGWT Extensions

2009-09-25 Thread Thomas Holmes
Yep, I tried those forums and have left many messages over there. Some have gotten replies, and many have not ... that is VERY frustrating. So, I just figured someone over here might know something about the smartgwt-extensions, specifically the gwtrpcds (gwt rpc datasource). On Sep 24, 4:58 

parent-child add/update

2009-09-25 Thread Thomas Holmes
Ok ... I just figured out how to use a GWT-RPC Datasource with SmartGWT Widgets, specifically the ListGrid. so, there are two questions I have with gwt-rpc: 1) how are you handling a parent-child relationship from the database, how do you define the DTO(s). 2) how do you handle pushing

JSONNull oddness?

2009-09-25 Thread dk
Hi, I have probably missed something simple but JSONNull is not acting as I expect. At least in my current testing phase my incoming JSON data does contain some null values. In Perl terms my in-bound JSON object is an array of hashes. I can get the JSON string and parse it. I create te

Re: How can GWT handle real time data?

2009-09-25 Thread Sean
You would poll from a GWT page via some call, RPC or an HTTP request (I personally use RPC's) to get the information from the server. There is no sever push available though. You do have to ask for information before you get it in a web page. On Sep 25, 11:32 am, looklook zhaoyu...@gmail.com

Re: not removing event handlers -- bad practice?

2009-09-25 Thread Thomas Broyer
On 25 sep, 18:07, Alexey inline_f...@yahoo.com wrote: When registering handlers that may live on after the source widget is removed from GUI, is it acceptable to never explicitly release the handler relationship?  If it was plain Java, the answer would be yes, because the handler would not

Re: How can GWT handle real time data?

2009-09-25 Thread John Ivens
What would rock the world is to be able to do something like declare a variable on the server side volatile, and link it to the client side via some machinery built into a library. Then, you don't have to write all of the RPC stuff yourself. Something like a publish-subscribe mechanism, with a

Spam from JChimene

2009-09-25 Thread Jeff Chimene
Hi Folks, Sumit just alerted me to a possible compromise of my GMail account. I have it set to always login via https so it may be another issue. Anyway, I'm changing the password after this email. My apologies for the spam. I'd seen the messages, but didn't check the sender, as they went

Re: How can GWT handle real time data?

2009-09-25 Thread wil.pannell
One or the other -- GWT in Practice, or GWT in Action has a chapter on emulating server push using the Comet API. On Sep 25, 10:32 am, looklook zhaoyu...@gmail.com wrote: I want to know how GWT handles real time data? For example, a text field of a web page needs to display real time data got

Re: not removing event handlers -- bad practice?

2009-09-25 Thread Alexey
Thanks, this clarifies things, except I have one point of contention, likely having no bearing on the original question: On Sep 25, 2:32 pm, Thomas Broyer t.bro...@gmail.com wrote: 1. the actual JS function registered as an handler is the same for all events Unless I misunderstood, this can't

Re: Help - my web site based on GWT fails to load in IE8

2009-09-25 Thread t.dave
i had IE8 issues when it first came out. i'm still on GWT 1.5.3 - thought later versions should play nicer with IE8, but what fixed my issue was adding the following to the html host page: meta http-equiv=X-UA-Compatible content=IE=EmulateIE7 / not sure if that's a good long term solution, but

Problem with Getting Scripts Tag Working

2009-09-25 Thread thc
Hi, I am creating a very simple GWT that uses Google Maps API, and trying to run in hosted mode. At runtime, I receive the exception: The Maps API has not been loaded. Is a script tag missing from your host HTML or module file? Is the Maps key missing or invalid? However, since I am running

Re: JSONNull oddness?

2009-09-25 Thread dk
heh, never mind. I was of course using the idea in the wrong way. Everything is fine. Have a nice day --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

swt-win32-3235.dll

2009-09-25 Thread badgerduke
Today I built GWT from the trunk. I'm baffled by the following error when I build my project. This file is present in gwt- windows-0.0.0.zip which I installed to repository. I pretty new to both GWT and Maven. java.lang.UnsatisfiedLinkError: Can't load library: C:\Documents and Settings\er

Re: Why Not Bypass The Middle Man

2009-09-25 Thread lusus
Well it looks like this discussion is fizzling out, but just in case there are still people actually view this, I wanted to add some other related thoughts. I started doing some research into this idea, and found some interesting things. Like for one, that there are people much larger than me

Re: Problem In implementing Right Click for Mozilla in smartgwt

2009-09-25 Thread Niks
Sorry man... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com To unsubscribe from this group, send email to

Re: How to listen events for stack panel?

2009-09-25 Thread Jie
Chad, Thanks a lot! You have been a great help! Regards, Jie On Sep 26, 1:23 am, Chad chad...@gmail.com wrote: Jie, Subclass the StackPanel and override the showStack method:   @Override   public void showStack(int index) {     super.showStack(index);     // display your information   }

[gwt-contrib] [google-web-toolkit] r6210 committed - Fix the Showcase launch config after the Eclipse gwt-dev project was c...

2009-09-25 Thread codesite-noreply
Revision: 6210 Author: j...@google.com Date: Fri Sep 25 06:49:07 2009 Log: Fix the Showcase launch config after the Eclipse gwt-dev project was changed. Patch by: jat Review by: amitmanjhi (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6210 Modified:

[gwt-contrib] Proposed API Addition - GWTTestCase#getStrategy() to allow precompilation of JUnit tests

2009-09-25 Thread John LaBanca
If you override JUnitShell.Strategy, you should consider this email. JUnitShell.Strategy, which determines how GWT modules are compiled for test cases, is currently an interface. We would like to change it to be a class so we can add methods without breaking code. This is a relatively obscure

[gwt-contrib] Re: RR : Fix virtual override dispatch in SingleJsoImpl

2009-09-25 Thread Scott Blum
On Fri, Sep 25, 2009 at 8:52 AM, b...@vawter.org wrote: What's the de-facto version of Eclipse that's canonical for formatting? Good question, I have an 3.3 based Eclipse that's probably out of date now, and should probably update. But I was talking less about the particular settings, and

[gwt-contrib] Re: Proposed API Addition - GWTTestCase#getStrategy() to allow precompilation of JUnit tests

2009-09-25 Thread Ray Ryan
Please forward this to GWT announce, and cc skybrian On Friday, September 25, 2009, John LaBanca jlaba...@google.com wrote: If you override JUnitShell.Strategy, you should consider this email. JUnitShell.Strategy, which determines how GWT modules are compiled for test cases, is currently

[gwt-contrib] Re: RR : Fix virtual override dispatch in SingleJsoImpl

2009-09-25 Thread BobV
Good question, I have an 3.3 based Eclipse that's probably out of date now, and should probably update.  But I was talking less about the particular settings, and more meant to suggest committing the reformat separately so as to make clear the syntactic vs. semantic change in the history.

[gwt-contrib] Proposed API Addition - @WithModuleParameters on test cases

2009-09-25 Thread John LaBanca
Patch courtesy of pmuetschard. We propose adding the annotation @WithModuleParameters to specify deferred binding properties on specific test methods, as per this patch: http://gwt-code-reviews.appspot.com/71801/show For a specific example, see the test file in the patch:

[gwt-contrib] Re: Proposed API Addition - @WithModuleParameters on test cases

2009-09-25 Thread Bruce Johnson
Looks convenient, but I have a few questions/comments. 1) What happens if the module returned by getModuleName() already specifies a fix value for a given property? More generally, how should one think about how these annotations dovetail with the settings in the module config? 2) The

[gwt-contrib] Re: RR : Fix virtual override dispatch in SingleJsoImpl

2009-09-25 Thread Scott Blum
LGTM then. On Fri, Sep 25, 2009 at 12:09 PM, BobV b...@google.com wrote: Good question, I have an 3.3 based Eclipse that's probably out of date now, and should probably update. But I was talking less about the particular settings, and more meant to suggest committing the reformat

[gwt-contrib] [google-web-toolkit] r6211 committed - Changes to Showcase to make it crawlable.

2009-09-25 Thread codesite-noreply
Revision: 6211 Author: kpro...@google.com Date: Fri Sep 25 09:27:51 2009 Log: Changes to Showcase to make it crawlable. http://code.google.com/p/google-web-toolkit/source/detail?r=6211 Added: /branches/crawlability/samples/showcase/src/com/google/gwt/sample/showcase/server

[gwt-contrib] [google-web-toolkit] r6212 committed - Changes to History and Hyperlink to enable crawlability.

2009-09-25 Thread codesite-noreply
Revision: 6212 Author: kpro...@google.com Date: Fri Sep 25 09:28:36 2009 Log: Changes to History and Hyperlink to enable crawlability. http://code.google.com/p/google-web-toolkit/source/detail?r=6212 Modified: /branches/crawlability/user/src/com/google/gwt/user/client/History.java

[gwt-contrib] Re: Proposed API Addition - GWTTestCase#getStrategy() to allow precompilation of JUnit tests

2009-09-25 Thread Scott Blum
John, I'm kind of puzzled... how would a user actually override getStrategy()? The Strategy type is not compilable GWT client code, so a GWTTestCase that actually does the override should fail to compile as GWT client code. What am I missing? On Fri, Sep 25, 2009 at 11:33 AM, John LaBanca

[gwt-contrib] Re: Fix GC handling in hosted mode

2009-09-25 Thread Amit Manjhi
LGTM. Why use a TreeMap in RemoteObjectTable? On Thu, Sep 24, 2009 at 4:26 PM, j...@google.com wrote: Reviewers: amitmanjhi, Description: This corrects an issue that was there before and implements it on the client side of BrowserChannel, as needed by HtmlUnit in hosted mode. Please

[gwt-contrib] Re: Fix GC handling in hosted mode

2009-09-25 Thread John Tamplin
On Fri, Sep 25, 2009 at 1:22 PM, Amit Manjhi amitman...@google.com wrote: LGTM. Why use a TreeMap in RemoteObjectTable? I basically kept the same thing that Bob had there before, just moved it from ThreadLocals to an isolated synchronized class. I don't see any reason it needs to be ordered,

[gwt-contrib] Re: Fix GC handling in hosted mode

2009-09-25 Thread Amit Manjhi
Yes. On Fri, Sep 25, 2009 at 10:35 AM, John Tamplin j...@google.com wrote: On Fri, Sep 25, 2009 at 1:22 PM, Amit Manjhi amitman...@google.comwrote: LGTM. Why use a TreeMap in RemoteObjectTable? I basically kept the same thing that Bob had there before, just moved it from ThreadLocals to

[gwt-contrib] Re: Proposed API Addition - @WithModuleParameters on test cases

2009-09-25 Thread Bruce Johnson
On Fri, Sep 25, 2009 at 1:19 PM, Pascal Muetschard pmuetsch...@google.comwrote: 1) What happens if the module returned by getModuleName() already specifies a fix value for a given property? More generally, how should one think about how these annotations dovetail with the settings in the

[gwt-contrib] Re: Proposed API Addition - @WithModuleParameters on test cases

2009-09-25 Thread John LaBanca
I'll help Pascal with the changes, but it might be good to get a few more comments before changing too much. It *might *not be trivial for Benchmark to subclass the new Strategy because it does its own thing as well, but it shouldn't be too difficult. I agree that the annotation should override

[gwt-contrib] [google-web-toolkit] r6213 committed - Remove extra lines that got added while removing SWT....

2009-09-25 Thread codesite-noreply
Revision: 6213 Author: j...@google.com Date: Fri Sep 25 10:52:39 2009 Log: Remove extra lines that got added while removing SWT. Patch by: jat Review by: amitmanjhi (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6213 Modified:

[gwt-contrib] Re: Proposed API Addition - @WithModuleParameters on test cases

2009-09-25 Thread Bruce Johnson
On Fri, Sep 25, 2009 at 1:51 PM, John LaBanca jlaba...@google.com wrote: I vote for @WithBindingProperties for the annotation name. Is that a vote that we should start using the term binding properties in general? I think that's not quite the right term (perhaps this should be a separate

[gwt-contrib] [google-web-toolkit] r6214 committed - Made this launch config consistent with trunk (the only difference is ...

2009-09-25 Thread codesite-noreply
Revision: 6214 Author: amitman...@google.com Date: Fri Sep 25 10:58:07 2009 Log: Made this launch config consistent with trunk (the only difference is the reference to gwt-dev instead of gwt-dev-windows) and other samples. Patch by: amitmanjhi Review by: jat

[gwt-contrib] Re: Proposed API Addition - @WithModuleParameters on test cases

2009-09-25 Thread John LaBanca
@WithClientProperties is fine with me. I thought we used the term binding somewhere, but creating a DeferredBinding doesn't actual require the use of the term binding. The gwt.xml files just refer to these as properties. Thanks, John LaBanca jlaba...@google.com On Fri, Sep 25, 2009 at 1:57

[gwt-contrib] [google-web-toolkit] r6215 committed - Fix GC handling for HtmlUnit in development mode....

2009-09-25 Thread codesite-noreply
Revision: 6215 Author: j...@google.com Date: Fri Sep 25 11:00:02 2009 Log: Fix GC handling for HtmlUnit in development mode. Patch by: jat Review by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=6215 Added:

[gwt-contrib] Changes served location of UiBinder's xhtml.ent from svn to downloads

2009-09-25 Thread rjrjr
Reviewers: jgw, Message: Joel, this is to change the served location of xhtml.ent after discussion with Andrew Please review this at http://gwt-code-reviews.appspot.com/72801 Affected files: M user/src/com/google/gwt/uibinder/rebind/GwtResourceEntityResolver.java M

[gwt-contrib] [google-web-toolkit] r6216 committed - Fix compiler and hosted-mode crash caused by virtual overrides in Sing...

2009-09-25 Thread codesite-noreply
Revision: 6216 Author: b...@google.com Date: Fri Sep 25 11:27:03 2009 Log: Fix compiler and hosted-mode crash caused by virtual overrides in SingleJsoImpl types. Patch by: bobv Review by: scottb http://code.google.com/p/google-web-toolkit/source/detail?r=6216 Modified:

[gwt-contrib] Re: RR : Speed up class selector rewriting

2009-09-25 Thread bobv
Committed at r6218. http://gwt-code-reviews.appspot.com/67807 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit] r6218 committed - Speed CssResource class selector rewriting....

2009-09-25 Thread codesite-noreply
Revision: 6218 Author: b...@google.com Date: Fri Sep 25 12:26:41 2009 Log: Speed CssResource class selector rewriting. Patch by: amirkashani, bobv Review by: bobv, amirkashani http://code.google.com/p/google-web-toolkit/source/detail?r=6218 Modified:

[gwt-contrib] Support more structured GWT versions for 2.0+

2009-09-25 Thread jat
Reviewers: Ray Ryan, Description: As discussed, this does not include any support for snapshot version numbers, but would be trivial to add. Please review this at http://gwt-code-reviews.appspot.com/72802 Affected files: dev/core/src/com/google/gwt/dev/About.java

[gwt-contrib] Re: Support more structured GWT versions for 2.0+

2009-09-25 Thread jat
http://gwt-code-reviews.appspot.com/72802/diff/1/8 File dev/core/src/com/google/gwt/dev/cfg/ModuleDef.java (right): http://gwt-code-reviews.appspot.com/72802/diff/1/8#newcode131 Line 131: public void addLinker(String linkerName) { Hmm, not sure how these changes got into here. I think this is

[gwt-contrib] Re: Changes served location of UiBinder's xhtml.ent from svn to downloads

2009-09-25 Thread rjrjr
Can you look again? One of my unit tests was passing vacuously, and I also wasn't being strict enough when matching short circuited resource paths (needed to look for trailing '/' too). http://gwt-code-reviews.appspot.com/72801 --~--~-~--~~~---~--~~

[gwt-contrib] Re: Changes served location of UiBinder's xhtml.ent from svn to downloads

2009-09-25 Thread jlabanca
LGTM Code looks fine, but I really don't know what these files are doing, so I can't review the logic. http://gwt-code-reviews.appspot.com/72801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Changes served location of UiBinder's xhtml.ent from svn to downloads

2009-09-25 Thread Ray Ryan
Committed r6219 On Fri, Sep 25, 2009 at 1:48 PM, Ray Ryan rj...@google.com wrote: Since the logic hasn't changed, I'll take your LGTM and run with it. FYI, this is an object we plug in to the XML parser. It gets to turn URLs into streams. When it sees us serving from the magic url where our

[gwt-contrib] [google-web-toolkit] r6219 committed - Changes served location of UiBinder's xhtml.ent from svn to downloads...

2009-09-25 Thread codesite-noreply
Revision: 6219 Author: rj...@google.com Date: Fri Sep 25 13:56:23 2009 Log: Changes served location of UiBinder's xhtml.ent from svn to downloads Also makes match more stringent, and fixes vaccuous test case Review: jgw, jlabanca http://code.google.com/p/google-web-toolkit/source/detail?r=6219

[gwt-contrib] Re: Support more structured GWT versions for 2.0+

2009-09-25 Thread rjrjr
John, this seems awfully complicated, and a lot of that complixity is in support of big public API that as far as I can see is unused. Is all of this really necessary for us to tell that 2.0.0-rc 2.0.0, or whatever convention it was that we settled on? I also don't think this should gate

[gwt-contrib] [google-web-toolkit] r6220 committed - Turning off the batch mode for test.hosted and test.web targets ...

2009-09-25 Thread codesite-noreply
Revision: 6220 Author: amitman...@google.com Date: Fri Sep 25 16:33:38 2009 Log: Turning off the batch mode for test.hosted and test.web targets since batching currently does not honor the @DoNotRunWith annotation. Patch by: amitmanjhi

[gwt-contrib] Re: Support more structured GWT versions for 2.0+

2009-09-25 Thread Andrew Bowers
Milestone users are savvy, and shouldn't rely on the update mechanism to know what's going on. We don't need to worry about this case. On Fri, Sep 25, 2009 at 4:41 PM, Ray Ryan rj...@google.com wrote: On Fri, Sep 25, 2009 at 4:29 PM, John Tamplin j...@google.com wrote: On Fri, Sep 25, 2009

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

2009-09-25 Thread codesite-noreply
Comment by matt.smillie: An alternate approach to background images is not to use `...@sprite`s at all, but defining them as DataResource and using `...@url` replacement, e.g.: {{{ class SomeBundle extends ClientBundle { @Source(/some/tiling/background) DataResource aTile(); } --- css

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

2009-09-25 Thread codesite-noreply
Comment by matt.smillie: The above also raises a couple of questions: * would an @tile rule be useful? * should @url rules work on any class defining getUrl(), i.e., should ImageResource extend DataResource (or some hypothetical HasURL interface)? For more information:

[gwt-contrib] [google-web-toolkit] r6221 committed - Checkstyle fix, unused import in BrowserChannel.java

2009-09-25 Thread codesite-noreply
Revision: 6221 Author: rj...@google.com Date: Fri Sep 25 20:31:26 2009 Log: Checkstyle fix, unused import in BrowserChannel.java http://code.google.com/p/google-web-toolkit/source/detail?r=6221 Modified: /branches/farewellSwt/dev/oophm/src/com/google/gwt/dev/shell/BrowserChannel.java

  1   2   >