IE freeze for GWT Flex Table with 300 rows

2009-10-14 Thread maheshm1206
I am trying to create a Flex Table in GWT with 300+ rows. I am adding each cell using a Horizontal Widget having the data to be shown. The css for the data is added to Horizontal Widget. This takes almost 3 to 4 minutes in Mozilla. In IE 7 its totally frozen and does not respond. Thanks for any

Re: Cumbersome jUnit setup

2009-10-14 Thread Juri
Of course it has to. Damn, didn't think about that, sorry. Thanks for your help. On Oct 6, 7:35 pm, Thomas Broyer t.bro...@gmail.com wrote: On 6 oct, 18:43, Juri juri.strumpfloh...@gmail.com wrote: Ok...sounds straightforward and I actually also tried that, but if I change it like you

Re: panel in tabpanel cannot be set to invisible

2009-10-14 Thread Rockster
It is customer requirement so we want to make it invisble. I know what you mean, but other visible tabs (that are not in scope for this user) could confuse the user. So Again, how do I make the tab invisible ? On Oct 14, 8:44 am, alex.d alex.dukhov...@googlemail.com wrote: Do you really want

Re: Debuuging GWT with PHP as the back end cant talk to the server

2009-10-14 Thread Dimitrijević Ivan
When you set -noserver option and start debuging process, you should refresh your application. Aftrer that debuger will be avaliable. On Oct 14, 12:04 am, Ian Bambury ianbamb...@gmail.com wrote: The easiest way to develop with PHP that I've found is to use -noserver and -port to point to a

No addClosingHandler(CloseHandler handler) in Window class

2009-10-14 Thread goolie
Hi, I'm upgrading my code to the new event structure in gwt 1.6 and I have a class that was implementing WindowCloseListener, which should now be replaced by ClosingHandler and CloseHandler instead. My problem is that I can't get the method onWindowClosing(ClosingEvent event) to be fired. There

Re: Trouble with Entity Beans in GWT

2009-10-14 Thread iaio81
And how can i test my GWT application that call via-RPC EJB deployed on my JBoss? Have I to import EJB as classes not compiled? On 14 Ott, 10:32, mariyan nenchev nenchev.mari...@gmail.com wrote: Hi, you do not have to add  your ejb jar in the gwt client side. It is only needed in the server

Re: No addClosingHandler(CloseHandler handler) in Window class

2009-10-14 Thread gwtfanb0y
Try this: Window.addWindowClosingHandler(new ClosingHandler() { @Override public void onWindowClosing(ClosingEvent closingEvent) { closingEvent.setMessage(Are you sure?); } }); Have a lot of fun, regards gwtfanb0y On 14 Okt., 11:05, goolie oskar.ka...@teliasonera.com wrote: Hi,

Re: env-entry in jetty...NoInitialContextException...

2009-10-14 Thread golfdude
I got it to work by creating a jetty-web.xml in WEB-INF. But I had to create the Arg as java:comp/env/MyEnvEntry like below... ( shouldnt I be just registering MyEnvEntry ) ? Configure class=org.mortbay.jetty.webapp.WebAppContext !-- Add an EnvEntry only valid for this webapp -- New

Caching and SSL

2009-10-14 Thread Andrey
Hello! I am using Tomcat with SSL and it seems that my GWT app is not cached. I've read some posts here but still don't have clear understanding. My questions are: 1. How can I check whether caching for my app is enabled or not? 2. Why GWT http headers contain cache-control: no-cache by

Re: url question, hosted/web mode

2009-10-14 Thread Thomas Broyer
On 13 oct, 21:02, mwaschkowski mwaschkow...@gmail.com wrote: Hi, In hosted mode, my url looks like:  http://localhost:8090/xyz.html but when deployed looks like:  http://localhost:8090/zzz/xyz.html Because of this slight difference, I'm having a mapping issue. In my web.xml, I have

Re: Caching and SSL

2009-10-14 Thread gwtfanb0y
Hello Andrey! Why do you want to cache a SSL connection? For security reasons, i would not recommend this. What exactly do you want to cache - the GWT GUI or Database-Access? Remember that the generated JavaScript is executed fully inside the Client-Browser. Regards, gwtfanb0y On 14 Okt.,

Re: panel in tabpanel cannot be set to invisible

2009-10-14 Thread Ian Bambury
Remove and add them as required Ian http://examples.roughian.com 2009/10/14 Rockster rjan...@gmail.com It is customer requirement so we want to make it invisble. I know what you mean, but other visible tabs (that are not in scope for this user) could confuse the user. So Again, how do I

Re: Caching and SSL

2009-10-14 Thread Austen
I believe that the no-cache issue is only a problem for IE? Does this help? http://www.symphonious.net/2007/06/19/caching-in-tomcat/ Austen On Oct 14, 11:20 am, Andrey mino...@gmail.com wrote: Hello! I am using Tomcat with SSL and it seems that my GWT app is not cached. I've read some

GWT Shell size

2009-10-14 Thread mpallesen
Hi This problem has been bugging me for a long time and google can't help (or I'm typing in the wrong search keys). I'm building a application in GWT (with GXT ontop). The application requires a rather large height to work probably. Therefore I have to resize the window every time I start the

Re: GWT documentation available for download?

2009-10-14 Thread jAY
Hi, I also want to download the doc. Not able to find the link at all! On Oct 2, 8:25 pm, mo moritz.peter...@gmail.com wrote: Hi everyone, maybe you can help me out. I know the documentation online athttp://code.google.com/webtoolkit. But I'd like to download the documentation to my local

Horizontal Panel isn't displaying

2009-10-14 Thread Brendan
Hello, I am trying to use a HorizontalPanel for a navigation bar that I am building with a loop. The code looks like this: code HorizontalPanel navigation = new HorizontalPanel(); int count = 0; for (final String name : artists.keySet()) { //

GWT Cross-domain problem

2009-10-14 Thread Jakes
I have made a component using gwt, this is a GIS-card viewer that uses a C# made server where i use RPC calls to send data between the server and the client (cardviewer). All this works like a charm. The problem is that while this component runs from the domain cardviewer.company.com, and the

Re: GWT documentation available for download?

2009-10-14 Thread jAY
Is it available for download? On Oct 2, 8:25 pm, mo moritz.peter...@gmail.com wrote: Hi everyone, maybe you can help me out. I know the documentation online athttp://code.google.com/webtoolkit. But I'd like to download the documentation to my local disc so I can browse it while I'm not

Re: How to add different css for each tab in the TabPanel

2009-10-14 Thread maheshm1206
Thanks for all the suggestions. I have customized the gwt- incubator.jar and its working. Just added overloaded methods in TabPanel and TabBar respectively. The following is the add method in TabPanel which also takes a style name specific to tab. searchTabs.add(new VericalPanel(), TabTitle

Google Eclipse Plugin - doubt about Web Application

2009-10-14 Thread Diego Lovison
click with the right button in the project will open one window click in properties.. go to Google - Web Application what is the propose add the jar here? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: Google Eclipse Plugin - doubt about Web Application

2009-10-14 Thread Ittai
+1 I'd like to know what it does? It says Suppress warnings about these build path entries outside of WEB-INF/lib but what does it actually do? only suppress the warnings? On Oct 14, 3:12 pm, Diego Lovison diegolovi...@gmail.com wrote: click with the right button in the project will open one

Re: GWT Shell size

2009-10-14 Thread Paul Robinson
If you use GWT 2.0 (trunk or MS1), then you can use OOPHM and the problem goes away because you run hosted mode inside your normal browser mpallesen wrote: Hi This problem has been bugging me for a long time and google can't help (or I'm typing in the wrong search keys). I'm building a

Re: Trouble with Entity Beans in GWT

2009-10-14 Thread mariyan nenchev
Let's make the things clear. Are you talking about entity beans or session beans? If session beans, you just have to add the interfaces to your sejbs and use them only at the server side. If you want to use entity beans you may make your persistance jar(that containes your entities + dtos) as gwt

Re: panel in tabpanel cannot be set to invisible

2009-10-14 Thread Bakul
I agree with Ian. On Oct 14, 7:30 am, Ian Bambury ianbamb...@gmail.com wrote: Remove and add them as required Ian http://examples.roughian.com 2009/10/14 Rockster rjan...@gmail.com It is customer requirement so we want to make it invisble. I know what you mean, but other visible

Re: GWT Cross-domain problem

2009-10-14 Thread Bakul
GWT RPC call must be served from the same server from where GWT generated script initially served on the browser. For example I am the user and I am requesting page from domain A, as my page has been served from domain A, GWT RPC calls must be served from domain A.GWT RPC can't communicate to

Re: OOPHM and Mac OSX

2009-10-14 Thread willr3
I am experiencing the same problem when trying to launch OOPHM from within Eclipse and I have OSX 10.6. I did notice that even though the swing UI hangs I am still able to manually direct the browser to the correct URL and interact with my GWT project however it is very slow. Do you know if the

Re: OOPHM and Mac OSX

2009-10-14 Thread Miguel Méndez
The plugin update was pushed out last night. You plugin's notification system should kickoff within the next 24hrs. You can always manually trigger a check for updates from eclipse. On Wed, Oct 14, 2009 at 10:59 AM, willr3 wil...@gmail.com wrote: I am experiencing the same problem when

Re: GWT Shell size

2009-10-14 Thread charlie
Paul is OOPHM noticeably slower than hosted mode within google's browser ? On Wed, Oct 14, 2009 at 8:45 AM, Paul Robinson ukcue...@gmail.com wrote: If you use GWT 2.0 (trunk or MS1), then you can use OOPHM and the problem goes away because you run hosted mode inside your normal browser

Re: GWT Shell size

2009-10-14 Thread Paul Robinson
I haven't noticed a difference (although it's now been a long time since I used the old shell). I think I remember reading from some google person that some things are faster and some are slower. YMMV. charlie wrote: Paul is OOPHM noticeably slower than hosted mode within google's browser ?

Re: IE freeze for GWT Flex Table with 300 rows

2009-10-14 Thread tskaife
Yes, adding that many elements, and especially tables will take a long time to render. One thing I want to let you know is that a HorizontalPanel is rendered as a table itself. So basically you have a table of one column of which each row contains another table that only has one row. Rendering

Creating a sample application of 3 different pages

2009-10-14 Thread neerou
Hello, I am novice to GWT. Since now I have been trying the exercises on the Code.google site. I would now want to create different pages in the application. 1) a login page 2) a list of items 3) a list of users Do i need to create 3 different modules for the 3 different pages?

Re: Google Eclipse Plugin - doubt about Web Application

2009-10-14 Thread Keith Platfoot
Yes, it just suppresses the warnings. When you launch or deploy a web app project, any jars used at runtime (i.e. anything your server-side code uses) need to be bundled within your servlet in WEB-INF/lib. The plugin will automatically warn if you have jars on your build path which are *not* in

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Ben
I have just installed 1.1.2 in my Eclipse 3.5. Created a new sample project using plugin with newest GWT 2 MS1. Then launch the application, it still throws out error msg like this: 2009-10-14 12:16:42.869 java[8409:80f] [Java CocoaComponent compatibility mode]: Enabled 2009-10-14 12:16:42.871

Client Side Logging

2009-10-14 Thread Thomas Holmes
I know this is client side code with a GWT-RPC DataSource, but I have a bug, and I am trying to find out what is going on. I have firebug installed, but that isn't helping me at all. System.out.println doesn't seem to work of course, so in my GWT-RPC DataSource had can I debug or log what is

Re: Client Side Logging

2009-10-14 Thread charlie
I am very happy with http://code.google.com/p/gwt-log/ , gwt-log+ firebug = win. On Wed, Oct 14, 2009 at 11:37 AM, Thomas Holmes thomas.j.hol...@gmail.com wrote: I know this is client side code with a GWT-RPC DataSource, but I have a bug, and I am trying to find out what is going on.   I have

Passing Id to DataSource

2009-10-14 Thread Thomas Holmes
I have two GWT-RPC datasources that have a parent-child relationship. I am using the SmartGWT UI Widgets, but they don't seem to be very helpful, and I hate to say it, but there seems to be an attitude there. So, if I just stick to the GWT-RPC DataSource Demo from the SmartGWT- Extensions ...

How to generate KML overlays from (kml) files NOT on Public Internet Options

2009-10-14 Thread thc
Hello, my understanding (and experience thus far) is that, in order to use GeoXmlOverlay.load(), the url param (1st param) MUST map to a KML file on the public internet. My problem is that I CANNOT put my files on the internet. I can however, load them to a non-internet addressible location

Re: Problems creating new project with gwt and Eclipse on Mac

2009-10-14 Thread Jesper
Getting same error on mac running 10.5 just trying to run a a newly createt emprty web project... any pointers? On 11 Okt., 05:41, circaeng circa...@hotmail.com wrote: Hi, I installed Eclipse and the GWT plugin on a Mac running OSX 10.4.11 and when I create a new project and then select

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Miguel Méndez
Strange. I just tried it on my Eclipse 3.5 carbon cocoa 64 bit and both work correctly. Are you sure that you have the 1.1.2 plugin? Are you using GWT App Engine or just GWT? It would help to get see the command line used to by the launch configuration. Lastly, are you using a Contributor

Re: GWT 1.7.1 don't show app in hosted mode (Jetty bug: FULL head)

2009-10-14 Thread Rajeev Dayal
As an FYI, I think the default buffer size on Jetty 6 is 8k, so your current setting will not change anything. However, you should really not need to modify Jetty's parameters in this way. Do you have any idea as to why your request header could be more than 8k in size? Can you compile your app,

Re: Help: Adding Login to an existing app.

2009-10-14 Thread Jamie
The most successful method I have used is to use a login filter. - The filter will redirect to a login form if not logged in - If the user is logged in (for example, checking a session var, cookie, or database), the filter wraps the request with a HttpServletRequestWrapper that implements

Re: Help: Adding Login to an existing app.

2009-10-14 Thread Jamie
Oops, when I say login filter, I mean a class that implements javax.servlet.Filter configured in your web.xml, applied to incoming requests to your RPC servlet. --- Search for analog and digital television broadcast antennas in your area: http://www.antennamap.com/

Re: OOPHM GWT 2.0 Milestone 1 on Mac

2009-10-14 Thread Rajeev Dayal
Hey Christian, On Tue, Oct 13, 2009 at 11:12 AM, Christian Goudreau goudreau.christ...@gmail.com wrote: Yes, the windows is frozen and I'm running on Mac Os X 10.6.1 Can you try installing the latest version of the plugin (1.1.2)? It contains a fix that should remedy this problem? My

Re: RichTextArea inserting html

2009-10-14 Thread Max
Re-implement execCommand command as native method. On Oct 9, 12:46 pm, Max max.seven@gmail.com wrote: I wish to have quotes button like in gmail. On Oct 8, 12:22 pm, Max max.seven@gmail.com wrote: Hello, 1. Is it possible to insert HTML code into RichTextArea? 2. Is it

Re: OOPHM GWT 2.0 Milestone 1 on Mac

2009-10-14 Thread Christian Goudreau
Nah it wasnt the same name. Anyway the latest patch resolved my problem haha. At least I was able to debug my app even if the latest patch wasnt out yet :) Christian On Wed, Oct 14, 2009 at 2:08 PM, Rajeev Dayal rda...@google.com wrote: Hey Christian, On Tue, Oct 13, 2009 at 11:12 AM,

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Christian Goudreau
Same for me, I'm using the same thing and it's working correctly ! Although it's a bit slow, but not slower than the old hosted mode. Christian 2009/10/14 Miguel Méndez mmen...@google.com Strange. I just tried it on my Eclipse 3.5 carbon cocoa 64 bit and both work correctly. Are you sure

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Ben
Okay, just checked the command line. It looks like it still appends - XstartOnFirstThread: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/ java -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost: 57735 -Xmx512m -XstartOnFirstThread -Dfile.encoding=UTF-8

Which is the best way to intercept POST from an other web site?

2009-10-14 Thread iaio81
Hi all, I need to receive a form (with POST method) from an other WEB site. I've created in GWT a servlet and it's work fine. Is it correct or there are other solutions? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Ben
I tried again with a clean install of eclipse 3.5.1 and google plugin 1.1.2 with Milestone 1 releases. Still the same problem. I am using Leopard instead of Snow Leopard. Not sure if this is the problem. -Ben On Oct 14, 1:54 pm, Miguel Méndez mmen...@google.com wrote: Strange.  I just tried it

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Rajeev Dayal
Thanks for posting the command line. The following entry caught my eye: *Users/bhu/Downloads/gwt-2.0.0-ms1/gwt-dev-mac.jar * * * *If you're using GWT 2.0 MS1, you should not have a jar named 'gwt-dev-mac.jar'. There should only be a gwt-dev.jar. Can you try again with a clean install of GWT 2.0

Re: Announcing GWT 2.0 Milestone 1

2009-10-14 Thread Ben
Thanks for the reply Rajeev. This does solve the problem! I was following instruction in this thread from Amit: * The Google Eclipse Plugin will only allow you to add GWT release directories that include a file with a name like gwt-dev-windows.jar. You can fool it by sym linking or copying

Re: Download file

2009-10-14 Thread mikea_59
I haven't tried the servlet route yet. I've been doing something like this: Window.open(GWT.getHostPageBaseURL() + reports/ + (String) csvFile, _blank, ); where GWT.getHostPageBaseURL() + reports/ + (String) csvFile gives me the URL of a .csv file that I want the user to be able

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

2009-10-14 Thread RSN
I am kind of new with GWT, and I was hoping someone could clarify my following questions, or at least point me out to some light. Thanks for any help. The setting is as follows: - Eclipse 3.4.2 , GWT 1.7.1 and plugin. - Created two basic GWT modules with GWT Plugin under Eclipse. Both are just

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

2009-10-14 Thread Ian Bambury
I think you need to (or, anyway, I need you to) take a step back and explain what you are trying to achieve here. Why do you need two projects? The usual reason is that you need to reuse code and widgets from the included project in two or more others (e.g. you are building a framework of some

[gwt-contrib] [google-web-toolkit] r6369 committed - Rearrange ant test targets....

2009-10-14 Thread codesite-noreply
Revision: 6369 Author: j...@google.com Date: Tue Oct 13 23:49:20 2009 Log: Rearrange ant test targets. The continuous build systems need to have gwt.hosts.dev.remote and gwt.hosts.dev.selenium set to those hosts which have the devmode plugin installed for devmode tests to be run at all, until

[gwt-contrib] [google-web-toolkit] r6370 committed - Rearrange ant test targets....

2009-10-14 Thread codesite-noreply
Revision: 6370 Author: j...@google.com Date: Wed Oct 14 00:44:30 2009 Log: Rearrange ant test targets. The continuous build systems need to have gwt.hosts.dev.remote and gwt.hosts.dev.selenium set to those hosts which have the devmode plugin installed for devmode tests to be run at all, until

[gwt-contrib] Refactored DisclosurePanel and better DisclosurePanelParser

2009-10-14 Thread rjrjr
Reviewers: jgw, Message: Thanks in advance, Joel. Please review this at http://gwt-code-reviews.appspot.com/78817 Affected files: M user/src/com/google/gwt/uibinder/parsers/DisclosurePanelParser.java M user/src/com/google/gwt/uibinder/rebind/XMLElement.java M

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

2009-10-14 Thread t . broyer
My 2 c€nts http://gwt-code-reviews.appspot.com/78817/diff/15/1029 File user/src/com/google/gwt/user/client/ui/DisclosurePanel.java (right): http://gwt-code-reviews.appspot.com/78817/diff/15/1029#newcode62 Line 62: super(DOM.createAnchor()); Couldn't you use a FocusImpl instead, and therefore

[gwt-contrib] Re: RR : Add lightweight Scheduler API

2009-10-14 Thread bobv
http://gwt-code-reviews.appspot.com/77820/diff/1004/1005#newcode23 Line 23: public class Scheduler { The public Scheduler class is now abstract. http://gwt-code-reviews.appspot.com/77820/diff/1004/1005#newcode123 Line 123: public static void schedulePause() { schedulePause has been

[gwt-contrib] Re: maximal sharding of builds and linkers

2009-10-14 Thread spoon
IMPLEMENTATION NOTES This patch updates the Linker API to be shardable. It updates the compiler to deal with this new API, and it updates the built-in linkers to support it. The main API change is that Linker.link has an extra boolean argument. That method is to be called once per permutation

[gwt-contrib] Re: RR : Add lightweight Scheduler API

2009-10-14 Thread bruce
Assuming you've tested the RESCUE SSW behavior and that Joel likes it, this LGTM. http://gwt-code-reviews.appspot.com/77820 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

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

2009-10-14 Thread jgw
Broadly, I'm not entirely sure what we're trying to achieve by promoting DisclosurePanelHeader to a public top-level class. It's pretty complex, for a seemingly simple problem. If you were to replace it wholesale within an application, you will pretty much be replacing the entire widget. It

[gwt-contrib] Re: Allows multiple sources on a ui:style

2009-10-14 Thread jgw
On 2009/10/13 21:00:25, Ray Ryan wrote: Another one for you, Joel. This allows multiple source files to be specified for a ui:style, just like any other CssResource. It also allows you to put body text on a ui:style that has sources. The body becomes just one more source file, the last

[gwt-contrib] RR : GWT 2.0 Bugfix when rewriting static calls with JMultiExpr qualifiers

2009-10-14 Thread bobv
Reviewers: scottb, Message: Review requested. The explanation is longer than the bugfix. Description: This fixes a problem where a statically-initialized field could be referred to before it has been initialized by its clinit. I found this pattern would result in invalid code generation;

[gwt-contrib] Re: RR : Make StyleInjector use Scheduler.scheduleFinally() API

2009-10-14 Thread jgw
On 2009/10/14 04:58:42, bruce wrote: LGTM with a typo fix. An idea for an incredibly trivial improvement if you just want to change something more for the heck of it. http://gwt-code-reviews.appspot.com/78816/diff/1/2 File user/src/com/google/gwt/dom/client/StyleInjector.java (right):

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

2009-10-14 Thread codesite-noreply
Comment by benzheren: I am following example on wiki: http://code.google.com/p/google-web-toolkit/wiki/UiBinderI18n to try out UiBinderi18n in the latest 2.0 MS 1 release. I wrote a sample ui.xml file like this: {{{ ?xml version=1.0 encoding=UTF-8? ui:UiBinder

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

2009-10-14 Thread Ray Ryan
First, sorry to throw something like this at you at the last second. What was that Bruce said about getting enough sleep and making good decisions? The other goal, which I realize know I didn't hit, was to be able to put the stock header in one spot and the panel it opens or closes in another

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

2009-10-14 Thread t . broyer
On 2009/10/14 15:43:38, jgw wrote: Broadly, I'm not entirely sure what we're trying to achieve by promoting DisclosurePanelHeader to a public top-level class. It's pretty complex, for a seemingly simple problem. If you were to replace it wholesale within an application, you will pretty much be

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

2009-10-14 Thread Ray Ryan
Thomas, this all makes sense but I don't think we can make it happen for 2.0. Certainly not MS2, and probably not for the RC (though it's tempting, DisclosurePanel is so close to being so much more useful). Do you mind creating an issue on the public tracker capturing this? On Wed, Oct 14, 2009

[gwt-contrib] Re: RR : Add lightweight Scheduler API

2009-10-14 Thread Ray Ryan
Yes, please, please, please make this instance based. Every serious app I've seen winds up creating its own interface to wrap around our static calls to make them testable (and the ones on commands in particular), and it's generally a painful retrofit. It also becomes a real difficultly for those

[gwt-contrib] Re: RR : Add lightweight Scheduler API

2009-10-14 Thread BobV
On Wed, Oct 14, 2009 at 1:03 PM, Ray Ryan rj...@google.com wrote: Yes, please, please, please make this instance based. Every serious app I've seen winds up creating its own interface to wrap around our static calls to make them testable (and the ones on commands in particular), and it's

[gwt-contrib] Re: RR : Add lightweight Scheduler API

2009-10-14 Thread Ray Ryan
On Wed, Oct 14, 2009 at 10:04 AM, BobV b...@google.com wrote: On Wed, Oct 14, 2009 at 1:03 PM, Ray Ryan rj...@google.com wrote: Yes, please, please, please make this instance based. Every serious app I've seen winds up creating its own interface to wrap around our static calls to make

[gwt-contrib] Re: RR : Add lightweight Scheduler API

2009-10-14 Thread Ray Ryan
LGTM On Wed, Oct 14, 2009 at 10:06 AM, Ray Ryan rj...@google.com wrote: On Wed, Oct 14, 2009 at 10:04 AM, BobV b...@google.com wrote: On Wed, Oct 14, 2009 at 1:03 PM, Ray Ryan rj...@google.com wrote: Yes, please, please, please make this instance based. Every serious app I've seen

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

2009-10-14 Thread Joel Webber
How's this sound for a proposal to wrap all this up, then:- Drop the public DisclosureHeader class, as Ray suggested earlier. - Implement the g:header/g:body/ version of the parser (I agree it's probably clearer). - Create a separate issue (possibly eclipsing issue 1449, possibly simply clarifying

[gwt-contrib] [google-web-toolkit] r6372 committed - Clean up formatting and ant -p output in ant build files....

2009-10-14 Thread codesite-noreply
Revision: 6372 Author: j...@google.com Date: Wed Oct 14 11:08:29 2009 Log: Clean up formatting and ant -p output in ant build files. Patch by: jat Review by: jlabanca (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=6372 Modified: /trunk/common.ant.xml

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

2009-10-14 Thread jgw
On 2009/10/14 16:45:38, t.broyer wrote: On 2009/10/14 15:43:38, jgw wrote: Broadly, I'm not entirely sure what we're trying to achieve by promoting DisclosurePanelHeader to a public top-level class. It's pretty complex, for a seemingly simple problem. If you were to replace it wholesale

[gwt-contrib] Re: RR : GWT 2.0 Bugfix when rewriting static calls with JMultiExpr qualifiers

2009-10-14 Thread scottb
Bob, this patch looks good. But I have to admit I can't understand why it's currently broken. Explain to me again why this transformation breaks? (a, b).foo() -- foo((a,b)) I didn't completely follow the pattern you showed. http://gwt-code-reviews.appspot.com/78818/diff/1/2 File

[gwt-contrib] Re: RR : GWT 2.0 Bugfix when rewriting static calls with JMultiExpr qualifiers

2009-10-14 Thread scottb
Also: test case por favor? http://gwt-code-reviews.appspot.com/78818 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

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

2009-10-14 Thread codesite-noreply
Revision: 6373 Author: tamplinjohn Date: Wed Oct 14 12:02:28 2009 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=6373 Modified: /wiki/UsingOOPHM.wiki === --- /wiki/UsingOOPHM.wiki Tue Oct

[gwt-contrib] Add a HelpInfo link for old plugins

2009-10-14 Thread jat
Reviewers: amitmanjhi, Description: A warning is printed when a really old plugin connects to the code server. This adds a HelpInfo link, which points at the UsingOOPHM web page for now, giving users information about getting a later plugin. In the future, this will be changed to a better

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

2009-10-14 Thread Pascal Muetschard
I've uploaded another patch set, which merges in the latest changes from the trunk. On Mon, Oct 12, 2009 at 2:34 AM, John Tamplin j...@google.com wrote: On Mon, Oct 12, 2009 at 12:03 AM, John LaBanca jlaba...@google.comwrote: @jat - When do you think we'll merge the htmlunit branch into

[gwt-contrib] Re: Add a HelpInfo link for old plugins

2009-10-14 Thread Amit Manjhi
LGTM On Wed, Oct 14, 2009 at 12:05 PM, j...@google.com wrote: Reviewers: amitmanjhi, Description: A warning is printed when a really old plugin connects to the code server. This adds a HelpInfo link, which points at the UsingOOPHM web page for now, giving users information about getting a

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

2009-10-14 Thread Bruce Johnson
@John L: You taking this one? On Wed, Oct 14, 2009 at 12:08 PM, Pascal Muetschard pmuetsch...@google.comwrote: I've uploaded another patch set, which merges in the latest changes from the trunk. On Mon, Oct 12, 2009 at 2:34 AM, John Tamplin j...@google.com wrote: On Mon, Oct 12, 2009 at

[gwt-contrib] [google-web-toolkit] r6374 committed - Removing a statement from CoverageTest that triggers a javac bug....

2009-10-14 Thread codesite-noreply
Revision: 6374 Author: jlaba...@google.com Date: Wed Oct 14 12:38:52 2009 Log: Removing a statement from CoverageTest that triggers a javac bug. Patch by: jabanca Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6374 Modified:

[gwt-contrib] [google-web-toolkit] r6375 committed - Removing emma exclusions from build file now that we removed the line ...

2009-10-14 Thread codesite-noreply
Revision: 6375 Author: jlaba...@google.com Date: Wed Oct 14 12:48:54 2009 Log: Removing emma exclusions from build file now that we removed the line that triggers a javac bug in CoverageTest. Patch by: jlabanca Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6375

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

2009-10-14 Thread John LaBanca
Yes, as soon as we get the build stabilized, I'll commit this. Thanks, John LaBanca jlaba...@google.com On Wed, Oct 14, 2009 at 3:20 PM, Bruce Johnson br...@google.com wrote: @John L: You taking this one? On Wed, Oct 14, 2009 at 12:08 PM, Pascal Muetschard pmuetsch...@google.com wrote:

[gwt-contrib] Initial implementation of TabLayoutPanel.

2009-10-14 Thread jgw
Reviewers: rjrj_google.com, jlabanca, Please review this at http://gwt-code-reviews.appspot.com/78820 Affected files: A user/javadoc/com/google/gwt/examples/TabLayoutPanelExample.java M user/src/com/google/gwt/user/client/ui/LayoutPanel.java A

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

2009-10-14 Thread rjrjr
Okay Joel, ready for another look. The only big changes to DisclosurePanel are that it is now ImageResource based, and I've ruthlessly deprecated its convenience constructors. http://gwt-code-reviews.appspot.com/78817 --~--~-~--~~~---~--~~

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

2009-10-14 Thread rjrjr
Uploaded a tweak to tidy up image initialization. http://gwt-code-reviews.appspot.com/78817 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Initial implementation of TabLayoutPanel.

2009-10-14 Thread rjrjr
Reviewing this now. Tag, I'm it. http://gwt-code-reviews.appspot.com/78820 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit] r6376 committed - The test target in user now runs sequentially because browser manager ...

2009-10-14 Thread codesite-noreply
Revision: 6376 Author: jlaba...@google.com Date: Wed Oct 14 13:51:57 2009 Log: The test target in user now runs sequentially because browser manager queues up too many requests in parallel. Patch by: jlabanca Review by: jgw http://code.google.com/p/google-web-toolkit/source/detail?r=6376

[gwt-contrib] Re: Initial implementation of TabLayoutPanel.

2009-10-14 Thread rjrjr
http://gwt-code-reviews.appspot.com/78820/diff/1/2 File user/javadoc/com/google/gwt/examples/TabLayoutPanelExample.java (right): http://gwt-code-reviews.appspot.com/78820/diff/1/2#newcode41 Line 41: rp.layout(); I wonder if we could tie into the FinallyCommand mechanism to automate and batch

[gwt-contrib] Re: Initial implementation of TabLayoutPanel.

2009-10-14 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/78820/diff/1/4 File user/src/com/google/gwt/user/client/ui/TabLayoutPanel.java (right): http://gwt-code-reviews.appspot.com/78820/diff/1/4#newcode61 Line 61: */ That customizability is my main concern. If the widget is actually master of its own events,

[gwt-contrib] Re: Initial implementation of TabLayoutPanel.

2009-10-14 Thread jgw
LGTY for now? http://gwt-code-reviews.appspot.com/78820/diff/1/2 File user/javadoc/com/google/gwt/examples/TabLayoutPanelExample.java (right): http://gwt-code-reviews.appspot.com/78820/diff/1/2#newcode41 Line 41: rp.layout(); On 2009/10/14 21:06:03, Ray Ryan wrote: I wonder if we could tie

[gwt-contrib] Re: Initial implementation of TabLayoutPanel.

2009-10-14 Thread amirkashani
If I could chime in... http://gwt-code-reviews.appspot.com/78820/diff/1/4 File user/src/com/google/gwt/user/client/ui/TabLayoutPanel.java (right): http://gwt-code-reviews.appspot.com/78820/diff/1/4#newcode365 Line 365: SelectionEvent.fire(this, index); Any chance this could be gated on a

[gwt-contrib] [google-web-toolkit] r6377 committed - Creating a branch for the Remote UI Communication implementation....

2009-10-14 Thread codesite-noreply
Revision: 6377 Author: rda...@google.com Date: Wed Oct 14 14:33:21 2009 Log: Creating a branch for the Remote UI Communication implementation. svn copy https://google-web-toolkit.googlecode.com/svn/tr...@6376 https://google-web-toolkit.googlecode.com/svn/branches/remote-ui-communication After

[gwt-contrib] Log a deprecation warning for CellPanelParsers

2009-10-14 Thread rjrjr
Reviewers: jgw, Message: Here's an easy one. It logs lines like this: [WARN] gwt:DockPanel is deprecated. Use the appropriate LayoutPanel instead. Please review this at http://gwt-code-reviews.appspot.com/78821 Affected files: M

[gwt-contrib] [google-web-toolkit] r6378 committed - Updated branch-info.txt to match this branch.

2009-10-14 Thread codesite-noreply
Revision: 6378 Author: rda...@google.com Date: Wed Oct 14 16:15:18 2009 Log: Updated branch-info.txt to match this branch. http://code.google.com/p/google-web-toolkit/source/detail?r=6378 Modified: /branches/remote-ui-communication/branch-info.txt === ---

[gwt-contrib] [google-web-toolkit] r6379 committed - Removed two unnecessary lines that were re-defining a property...

2009-10-14 Thread codesite-noreply
Revision: 6379 Author: amitman...@google.com Date: Wed Oct 14 17:59:39 2009 Log: Removed two unnecessary lines that were re-defining a property Patch by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=6379 Modified: /trunk/user/build.xml

[gwt-contrib] [google-web-toolkit] r6380 committed - Ignoring the testNoOverrideInheritedSharedCssClasses for the time bein...

2009-10-14 Thread codesite-noreply
Revision: 6380 Author: amitman...@google.com Date: Wed Oct 14 18:26:27 2009 Log: Ignoring the testNoOverrideInheritedSharedCssClasses for the time being, while I debug it. It is failing in hosted mode consistently. Patch by: amitmanjhi

  1   2   >