Re: Problems with 1.7.1 -noserver hosted mode on Linux

2009-11-16 Thread bysse
I've managed to replicate the problem in a small project. As soon as i add the richfaces filter to web.xml it stops working from the hosted mode browser. It still works in FF though... On Nov 5, 1:22 pm, bysse erik.byst...@gmail.com wrote: Thanks for the suggestions, i didn't receive any

Re: Too much is happening (the events are crowding the bus)?

2009-11-16 Thread Thomas Broyer
On Nov 15, 3:19 am, slind...@gmail.com slind...@gmail.com wrote: I am attempting to implement the EventBus pattern and I find myself creating a LOT of Events (extending GwtEvent). I'll try to illustrate what I mean with my Car object. I have a list of cars and a button called Add Car. This

Re: GWT Chat

2009-11-16 Thread gwtfanb0y
I would recommend Comet, with this technology you can push serialized messages from the Server to each registered Client. Here is an other fine project: http://code.google.com/p/gwt-comet-streamhub/ On 15 Nov., 14:01, Jim jimmy.verhee...@gmail.com wrote: hi, I'd like  make a chat using GWT  

Re: How to handle the returned response from the server

2009-11-16 Thread gwtfanb0y
You can use a HTMLPanel to show your (HTML)result: HTMLPanel(event.getResults()) http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/FormSubmitCompleteEvent.html

Re: Does public path=X / still work in GWT 1.6/7 ?

2009-11-16 Thread Thomas Broyer
On Nov 14, 6:36 pm, Steve C st...@steveclaflin.com wrote: I'm having trouble getting the above to work in a gwt.xml file, as in:   source path=entrypoint /   public path=webresources / where my file structure is: src/com/xyz/gwt/myapp/ --  -- entrypoint/ --  -- -- MyApp.java  --

How to create user web pages

2009-11-16 Thread Sanjeev Kulkarni
Hi all, Don't know whether my post will be appropriate to this forum! but I have become helpless so I am posting here.Please excuse me if not appropriate. I want to make a user web pages for all the users who registers into my application. The user can view his web page with a link like below:

Re: GWT Chat

2009-11-16 Thread Jimmy Verheecke
Thx ! Have a good day 2009/11/16 gwtfanb0y siegfried.b...@googlemail.com I would recommend Comet, with this technology you can push serialized messages from the Server to each registered Client. Here is an other fine project: http://code.google.com/p/gwt-comet-streamhub/ On 15 Nov.,

Re: how large of your GWT compiled code? My one is 850K

2009-11-16 Thread luisfpg
Our app is still 60-70% complete and already has 2.1MiB of obfuscated code. Pretty code is 14+MiB. However we've developed several components and widgets, and we have a lot of RemoteServices wich several (and sometimes complex) model classes, which are transmitted over the wire. We will still

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-16 Thread shahid
Thanks misterln2 @Ranjeev yes I am using the current build On Nov 13, 10:19 am, misterln2 mister...@googlemail.com wrote: the changes happened from rev 6641 to 6642 a bunch of registerHandler(..) statements got removed i just tried it: copying those statements back to the current

Re: GWT Chat

2009-11-16 Thread Lúcio Camilo
If u are using App Engine, so you can´t open sockets. Pay attention to this. 2009/11/16 Jimmy Verheecke jimmy.verhee...@gmail.com Thx ! Have a good day 2009/11/16 gwtfanb0y siegfried.b...@googlemail.com I would recommend Comet, with this technology you can push serialized messages from the

Re: Problem in AsyncCallback call, returned with success

2009-11-16 Thread Ricardo Cardoso / Gmr
Hello Sri, It was a great example. I changed my code to a real asynchronous call and it worked. I just moved certain code lines to the success method of the asynchronous call. Before, I was trying to run that lines before the call was finished, as you must know! :) Thanks for your good help.

Re: How to create user web pages

2009-11-16 Thread gwtfanb0y
A solution - without modifying the server redirects - is to use one url with a parameter like this: http://example.com/login?user=sanjeev The servlet extracts the username, load the modeldata from the database for it and sent it back to the client. On 16 Nov., 11:40, Sanjeev Kulkarni

Re: How to create user web pages

2009-11-16 Thread Sanjeev Kulkarni
Thanks for the answer. This solution I already did and is working fine, but know I want to get the user web page by explicit URL like http://example.com/sanjeev.html Any idea??? On Nov 16, 5:09 pm, gwtfanb0y siegfried.b...@googlemail.com wrote: A solution - without modifying the server

exception while running rpc procedure

2009-11-16 Thread HDayi
hi there, iam getting the following exception while trying to run the rpc procedure. running code is following the stack trace: The server is running at http://localhost:8080/ 16.Kas.2009 13:29:51 com.google.appengine.tools.development.ApiProxyLocalImpl log SEVERE: [1258378191128000]

Re: General question about project architecture.

2009-11-16 Thread Davis Ford
I'm doing this now. I set the project up this way several months ago and it works great for me. The only real con is double compile-time, but I don't care about that. I even have a feature where I can show a view of one application inside another, which is very cool. Here's how I set it up --

Re: GWT Chat

2009-11-16 Thread Prempena
I've tried to find a solution with App Engine for weeks without any success. Server push is not only useful for Chat. It can be used to inform users of some events coming from the Server. This is issue is referenced at a good place in the issue list:

Re: GWTTestCase + Spring

2009-11-16 Thread Davis Ford
Hi, I personally wouldn't write too many test cases like this unless you are just trying to ensure that everything is wired together. Even then, I'd probably use something like Selenium to record the test from the UI and play it back. Alternatively, you might consider employing the MVP pattern.

Re: embedding into another site

2009-11-16 Thread Davis Ford
What exactly is the problem you encountered? I just embedded an app I made with GWT into another site on another domain in an IFRAME. It worked fine for me. If your app calls remote services, they have to hit the same server that served the HTML/Js/CSS. On Fri, Nov 13, 2009 at 2:45 PM,

Comet and GWT

2009-11-16 Thread iaio81
Hi all, I need implementing comet with my GWT application and I was reading about Rocket-GWT. Can I decide when send updates to client ? And if so, how? How can Rocket GWT avoid too many connections opened at the same time? Thanks all -- You received this message because you are subscribed to

Re: Too much is happening (the events are crowding the bus)?

2009-11-16 Thread Ian Bambury
As Thomas says, only introduce an event when needed. Also, remember that there is no point to an event if nothing else is interested. If you only have one list of cars, then a CarAdded event is not needed since the list can deal with the server response directly. The same is true of the other

Re: How to create user web pages

2009-11-16 Thread Davis Ford
You can do this with the fantastic UrlRewrite filter. I set my site up this way to make RESTful style URLs. There's an example how to do this here: http://zenoconsulting.wikidot.com/blog:16 On Mon, Nov 16, 2009 at 7:52 AM, Sanjeev Kulkarni sanjeev...@gmail.comwrote: Thanks for the answer.

Re: embedding into another site

2009-11-16 Thread Davidj2k
Well, embedding using an IFRAME does work for getting the site embedded into another but having access to objects to update that page is where my problem is, lets say I have a simple function that sends an alert like this import org.timepedia.exporter.client.Export; import

Re: GWT Chat

2009-11-16 Thread Blaze(tu)
Actually you can use socket via Flash or Java Applet. try http://code.google.com/p/gwt-socket/ or the component in GWT Summer of Code http://code.google.com/p/gwt-soc/wiki/SocketsForGWT_Report On Nov 15, 9:01 pm, Jim jimmy.verhee...@gmail.com wrote: hi, I'd like  make a chat using GWT  1.7

Re: how large of your GWT compiled code? My one is 850K

2009-11-16 Thread Bakul
Hi, Our app, 50 -55 % done so far, for one browser is nearly 1.6 MB without gzip. And it has nearly 70 -80 RPC calls. Luis, Question for you: As you said your app is 2.1 MB of obfuscated, how is the preformance and does it has any issue? Question to all: What is the max size that of GWT one

Re: Problems with 1.7.1 -noserver hosted mode on Linux

2009-11-16 Thread Jeff Chimene
The general trend seems to be that GWT no longer works reliably with the xulrunner (which provides hosted mode support on Linux) in recent versions ot Ubuntu. If possible, please try GWT 2.0 MS2. It's quite stable, and has lots of Shiny. Dropping xulrunner in place of OOPHM is really the way you

Re: ie8 and spacing....

2009-11-16 Thread Davis Ford
Try to set up as little of this as possible in GWT/Java and do as much as possible in CSS. Browsers have CSS quirks...GWT won't help with that. This tool is very helpful for working out IE css issues: http://www.my-debugbar.com/wiki/ On Sun, Nov 15, 2009 at 11:03 PM, golfdude

GWT 2.0 Javascript IE Crash

2009-11-16 Thread Charlie M
Hi All, I have been recently testing out GWT 2.0 currently from the 2.0 branch of the SVN although I have also tried Milestone 2. My app works fine in Chrome and Firefox in both development and hosted modes. When I try and run it in IE 6, 7 or 8 it complains of Javascript errors. It complains of

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

2009-11-16 Thread Rajeev Dayal
@Stephen: What platform are you on? @Rodrigo: That sounds like a GXT-specific bug. Have you tried posting on their forum? 2009/11/15 Stephen Graham sggraha...@gmail.com I am getting a similar error: Nov 15, 2009 7:24:24 PM com.google.apphosting.utils.jetty.JettyLogger info INFO: jetty-6.1.x

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-16 Thread Rajeev Dayal
Hi, As an FYI, we're going to release a version of the plugin that fixes this issue shortly. However, with the issue that you're experiencing, I wonder if you did not revert your version of DevMode* back far enough. What version did you revert to? Rajeev On Mon, Nov 16, 2009 at 6:08 AM,

Ant test

2009-11-16 Thread Andrey
Hello! Is it normal that SVN build doesn't pass tests? Every time I build GWT from SVN I get errors while executing ant test. -- 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: Redistributing GWT apps in a commercial software

2009-11-16 Thread Parag Thakur
thanks for the reply. No, we don't ship gwt-dev.jar. However it's not very clear if any of the code in gwt-dev.jar gets translated into javascript (like they mention happens for the BrowserDetect code).. --parag On Nov 12, 11:27 pm, Yozons Support on Gmail yoz...@gmail.com wrote: I'm not an

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-16 Thread Danny
Hi, Is there also a fix available for GWT 1.6+ ? My Eclipse project gives an error saying that the when using the WAR layout you must use the GWT 1.6 or later. Thkx, D. On Nov 14, 4:10 pm, hugues huguespisa...@gmail.com wrote: On 12 nov, 18:39, hugues huguespisa...@gmail.com wrote: On 12

How to differentiate between singleClick and doubleClick on the Grid cell?

2009-11-16 Thread Taufeeq
Hi, I am create an component where in on singleClick of the grid cell I have to show an alert message displaying metadata of image. And, on doubleClick have to display the image in new window. For that I had created a class MyHandler which implements clickHandler and DoubleClickHandler and added

Re: how to use a server class in client code

2009-11-16 Thread Ray
Hello, I have my DTO (domain model) classes - which are serializeable POJOs without annotations - inside jar files on the server, as i want to use them not only in GWT applications. Is there no other solution of reusing them on my GWT-client-side without copying the source code to the client.

Re: GWT Chat

2009-11-16 Thread ArmanGal
Look at this project, i've used it a year ago to build chat (like skype) in gwt, very nice implementation but requires to install XMPP server (free). http://code.google.com/p/emite/ On Nov 15, 3:01 pm, Jim jimmy.verhee...@gmail.com wrote: hi, I'd like  make a chat using GWT  1.7 but gwt

Re: how to use a server class in client code

2009-11-16 Thread Ray
Hello, I have my model classes inside an library on the server-side which I want user for different applications (not only GWT) Copying my domain classes to the client side of the GWT-Client-App doesn't seem to be very convienient, as I have to maintain the same code in two different locations.

Re: Too much is happening (the events are crowding the bus)?

2009-11-16 Thread ArmanGal
I use Operation enum inside the action that tells my presenter how to handle the action. + I create number of constructors for this event to support every operation, while the event it self has all needed properties for all operations. ;) On Nov 15, 4:19 am, slind...@gmail.com slind...@gmail.com

Re: GWT Chat

2009-11-16 Thread Roy
App Engine supports XMPP On Nov 16, 1:38 pm, Prempena pascal.rempena...@gmail.com wrote: I've tried to find a solution with App Engine for weeks without any success. Server push is not only useful for Chat. It can be used to inform users of some events coming from the Server. This is issue

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Evan Ruff
Hey Duong, We're preparing to roll out our PCI compliance solution. I was wondering which gateway you are using to process your payments. Thanks! Evan On Fri, Oct 2, 2009 at 9:29 AM, Duong BaTien duong.bat...@gmail.com wrote: Please announce your release and put me duong.bat...@gmail.com in

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-16 Thread Chris Ramsdale
I second Rajeev's comments. We definitely value feedback, and we'll make sure the tutorial is updated to reflect that the test folder must be added manually as a source folder. With regards to the larger picture, we'll be looking to revamp some of the existing documentation once we get 2.0 and

ComboBox ??

2009-11-16 Thread salvador.ce
Hi !! I created a Forms with several fields, I'm doing a query a database, the data is being selected without problem, some difficulties I'm having is that this a Forms ComboBox and I the value that returns is an ID database, the question is: How do I bring the description in the combobox? These

Re: How to differentiate between singleClick and doubleClick on the Grid cell?

2009-11-16 Thread Lothar Kimmeringer
Taufeeq schrieb: I am create an component where in on singleClick of the grid cell I have to show an alert message displaying metadata of image. And, on doubleClick have to display the image in new window. For that I had created a class MyHandler which implements clickHandler and

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Duong BaTien
We are still in development mode and have not fully committed to any yet. Please keep in touch. Duong BaTien DBGROUPS and BudhNet On Mon, 2009-11-16 at 11:17 -0500, Evan Ruff wrote: Hey Duong, We're preparing to roll out our PCI compliance solution. I was wondering which gateway you are

Re: GWT Chat

2009-11-16 Thread ben fenster
how can the comet gwt lib keep a live connection On 16 נובמבר, 16:01, Roy roy.smith@googlemail.com wrote: App Engine supports XMPP On Nov 16, 1:38 pm, Prempena pascal.rempena...@gmail.com wrote: I've tried to find a solution with App Engine for weeks without any success. Server

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-16 Thread Angel Marquez
Fantastic. In the meantime I'm going through the GWT AE developer guides in tandem with the fielding dissertation and a java pub on their REST api, very interesting. It would be nice to have the completed tutorial source files readily available as well. Specifically for the JUnit AE sections of

GWT hosted mode crashing after update

2009-11-16 Thread Rob Tanner
Hi, I was running along last week just perfectly with the GWT Eclipse plugin v1.7.1 and Eclipse 3.5.1 on an Mac running Snow Leopard. This morning I installed an update bring Safari to v4.0.4 and the OS to 10.6.2. Now hosted mode crashes with the error: Invalid memory access of location 0010

Re: GWT hosted mode crashing after update

2009-11-16 Thread Kyle Hayes
Hey Rob, A lot of us have been having issues with Safari 4.0.4 release since they updated JavaScriptCore. Check out this thread as well as the last reply in it: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/386df3f9d5cab7d0/cecf81ab8c9b7fde?#cecf81ab8c9b7fde On Nov 16,

Re: GWT hosted mode crashing after update

2009-11-16 Thread Jim Douglas
My MacBook Pro is my main GWT development system, so I'm dead in the water here too. Kelly mentions a possible workaround in comment #16, but I haven't seen the details: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c15 Apparently this Apple bug will be fixed in Safari

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Yozons Support on Gmail
Isn't most PCI compliance related to the server? GWT only holds the information a short time to make a payment and shouldn't normally hold on to the data after submitting it for processing. How does your GWT help with PCI compliance since this would also require your server and server code to be

Re: Gwt 2.0 trunk and Eclipse

2009-11-16 Thread Mark Renouf
Has there been any updates on fixing this? I confirmed I have the latest GAE plugin and still have the problem. I'm hoping once the RC comes out there will be an updated. If it was open source I would patch the Eclipse plugin instead of GWT, but oh well. On Nov 9, 10:07 am, misterln2

Module Creation from Eclipse

2009-11-16 Thread Kyle Hayes
I'm starting a fairly large project with GWT and would like to take advantage of the modularity of GWT. There are some grey areas for me in creating a new GWT module through Eclipse from scratch to be included in a GWT application. I was hoping someone could provide a set of steps to do so. Assume

Re: Gwt 2.0 trunk and Eclipse

2009-11-16 Thread Chris Ramsdale
We've confirmed that this issue has been resolved in the RC bits that we are currently testing. The RC should be available very soon. In the meantime you can switch back to MS2 or use your own custom Java launch config. Let us know if you go down the custom launch config path and need some help.

Re: ComboBox ??

2009-11-16 Thread Chris Ramsdale
Are you returning description text along with the ID? On Mon, Nov 16, 2009 at 11:20 AM, salvador.ce salvador...@gmail.com wrote: Hi !! I created a Forms with several fields, I'm doing a query a database, the data is being selected without problem, some difficulties I'm having is that this a

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Evan Ruff
Yozons, You're running into one of the most common PCI Compliance misconceptions: just because you don't store the card data does not mean you're compliant. If the application touches the card data IN ANY WAY, even just to immediately transmit to the gateway, you must have your application served

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread Dazza
On Nov 16, 3:27 pm, Davis Ford davisf...@zenoconsulting.biz wrote: Hi, here's a blog post I made that shows how I'm using the widget.  It may help if you are still looking for a solution. http://zenoconsulting.wikidot.com/blog:17 http://zenoconsulting.wikidot.com/blog:17Regards, Davis

Tomcat RPC Failure on Lost Client Connections.

2009-11-16 Thread Danny
I get a Exception while dispatching incoming RPC call exception in Tomcat after, what I believe is caused by an RPC response not finding the client that made the request. The stack print out is included below. I say that I believe this is the problem, but I have not been able to reproduce the

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread Davis Ford
Yes, I have done this in some cases. You can do this with the methods from AbstractColumnDefinitionhttp://collectionofdemos.appspot.com/javadoc/com/google/gwt/gen2/table/client/AbstractColumnDefinition.html

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Yozons Support on Gmail
This has gone off-topic, so I won't belabor my point, but the PCI principles clearly show it's more geared towards the server-side, as the browser itself never had to be PCI compliant or any such rubbish. And no GWT interface tool can ensure PCI compliance either. A server that has gone through

Re: Redistributing GWT apps in a commercial software

2009-11-16 Thread Thomas Broyer
On Nov 16, 8:06 am, Parag Thakur para...@gmail.com wrote: thanks for the reply. No, we don't ship gwt-dev.jar. However it's not very clear if any of the code in gwt-dev.jar gets translated into javascript (like they mention happens for the BrowserDetect code).. Of the libs listed here:

How to create a development/debug and production setup

2009-11-16 Thread Supercobra Thatbytes
Hello there, I recently deployed inadvertently a debug version of our game typrX (typing races at www.typrx.com - try it it's fun). It was quickly corrected but I know it may happen again. After digging on Google I found some info how to create 2 different profiles, one for development mode that

Re: Help! Displaying helpful data on a form. SOLVED

2009-11-16 Thread David C. Hicks
Nevermind. I figured out that I could update my label on kind of an asyncronous basis, as well. David C. Hicks wrote: I'm sure I must be making this harder than it needs to be, but I'm having zero success doing it. Entering a new form, I'd like to display the name of an entity that was

Javascript onload called before Java onModuleLoad

2009-11-16 Thread Davidj2k
I am needing the onModuleLoad event to fire before the window onload event, in Firefox and Chrome it does it correctly but in Internet Explorer 7 and 8 it happens second, is there anything I can do to make the onload event of the web page happen after the onModuleLoad? -- You received this

Re: ComboBox ??

2009-11-16 Thread salvador.ce
Hi Chris, When I am accessing the database, do the query ID and description, the two columns are placed in the Store (SimpleStore), after this the User can query the data, I'm stating that when the User makes the consultation brings the description and not ID. Is there any way to browse the

Re: Help! Displaying helpful data on a form.

2009-11-16 Thread Davis Ford
Are you using GWT-RPC? I'm not sure I understand your problem completely. So if I have a service like: public interface MyService extends RemoteService { public Entity fetchEntity(String id); } public interface MyServiceAsync { void fetchEntity(String id, AsyncCallbackEntity callback);

Re: Disabling inline images (data URIs)

2009-11-16 Thread frostw
Thanks for the reply Thomas. This fixed my IE tree issue. However, I now find that attempting to use a GWT application with Firefox (3.5.3) through the Firepass server fails completely. This is even with the simplest GWT application e.g. package det.networks.derboard.client; import

Re: How to create a development/debug and production setup

2009-11-16 Thread Sripathi Krishnan
Can someone explains how to run this? Read about deferred binding in the GWT documentation. It will explain the underlying concepts. Here is what you have to do - 1. Your debug class and production class must inherit from a common class. 2. Based on the property (app.config in this

Re: Help! Displaying helpful data on a form.

2009-11-16 Thread David C. Hicks
Hi Davis, Yes, using GWT-RPC. My problem was that I forgot that I'm dealing with an asynchronous call. I was trying to populate the field on my form with data before the call had successfully returned. So, I was getting a Null Pointer Exception from the object I was fetching. Once I realized

Re: Disabling inline images (data URIs)

2009-11-16 Thread frostw
I should add that I realise this is more of an F5 issue, but since their troubleshooting documentation boils down to techniques to avoid when writing Firepass compatible applications (http://www.f5.com/pdf/ deployment-guides/firepass-rproxy-dg.pdf), it's a bit out of my control as it's all GWT

instanceof Element check fails in FF

2009-11-16 Thread bhomass
I have this statement NodeListNode childNodes = tdElement.getChildNodes(); for (int i=0; ichildNodes.getLength(); i++){ Node childNode = childNodes.getItem(i); if (childNode instanceof Element !#text.equals

Re: Tomcat RPC Failure on Lost Client Connections.

2009-11-16 Thread t.dave
there's a bit of content on the web about this problem. if memory serves it was at least partly blamed on the RPCServletUtils.readContentAsUtf8() method - that sometimes the request doesn't make it to the server. this was blamed on the vagaries of the internet. i have it all the time in my web

Re: GWT History Interacts Badly With Non-History iFrame

2009-11-16 Thread Carl
Brian, I appreciate your response and apologize for not having noticed it until now. I've moved on from this issue for the moment and will probably revisit it once I get my initial deployment out the door. Your suggestion is reasonable but, as I mentioned, I have some doubts as to whether it

Re: Redistributing GWT apps in a commercial software

2009-11-16 Thread Parag Thakur
Thomas, Thanks! That's exactly what I was looking for. regards, Parag On Nov 17, 3:02 am, Thomas Broyer t.bro...@gmail.com wrote: On Nov 16, 8:06 am, Parag  Thakur para...@gmail.com wrote: thanks for the reply. No, we don't ship gwt-dev.jar. However it's not very clear if any of the

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread shloka
Davis, thanks for the post ... In your example Are you using the pagination also? How do you maintain sorted data between the pages?? I have implemented sorting almost like what you have done but i am facing problem in maintaining the sorted data with the pagination. say i have 10 rows and i

GWT 2.0 RC1

2009-11-16 Thread Allahbaksh
Hi GWT Team, I noticed that Bruce has created a page GWT 2.0 RC. But I am not able to find GWT 2.0 RC1. Is is due on 17th early morning? Bruce one more request if Google guys can open Google Wave UI Source code then it would great. That is amazingly fast application with all functionality which

[gwt-contrib] RR : GWT 2.0 : Fix XHR memory leak in IE

2009-11-16 Thread bobv
Reviewers: jgw, Message: Review requested. Description: XMLHttpRequest.clearOnReadyStateChange() uses the wrong this object and doesn't actually clear the handler. http://code.google.com/p/google-web-toolkit/issues/detail?id=4133 Please review this at http://gwt-code-reviews.appspot.com/100813

[gwt-contrib] Re: Inconsistent behavior between DevMode and ProdMode for runtime exception handling with deRPC

2009-11-16 Thread BobV
-In Prod Mode Error 500 The call failed on the server; see server log for details StatusCodeException  (this exception should be InvocationException, right?) That's a bug. It shouldn't be returning a 500 status code. Please file a bug. -- Bob Vawter Google Web Toolkit Team --

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

2009-11-16 Thread codesite-noreply
Revision: 6905 Author: tamplinjohn Date: Mon Nov 16 07:06:05 2009 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=6905 Modified: /wiki/UsingOOPHM.wiki === --- /wiki/UsingOOPHM.wiki Wed Nov

[gwt-contrib] [google-web-toolkit] r6906 committed - tr...@6895 was merged into this branch...

2009-11-16 Thread codesite-noreply
Revision: 6906 Author: jlaba...@google.com Date: Mon Nov 16 07:56:07 2009 Log: tr...@6895 was merged into this branch Updating the Gwt Developer Plugin for IE to use the latest terminology svn merge --ignore-ancestry -c6895 http://google-web-toolkit.googlecode.com/svn/trunk/ . Patch

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

2009-11-16 Thread codesite-noreply
Comment by alex.dob...@gmail.com: I'd like to use a Css file from which I'm not using ALL the stylesnames initially. However, I've noticed the generated CssResource does not include unused stylenames. Is there a way to solve this solution (somewhere in the code to use addStyleName) ? For

[gwt-contrib] [google-web-toolkit] r6908 committed - tr...@6907 was merged into this branch...

2009-11-16 Thread codesite-noreply
Revision: 6908 Author: jlaba...@google.com Date: Mon Nov 16 08:25:35 2009 Log: tr...@6907 was merged into this branch Add registry keys to IE plugin installer svn merge --ignore-ancestry -c6907 http://google-web-toolkit.googlecode.com/svn/trunk/ . Patch by: jlabanca

[gwt-contrib] [google-web-toolkit] r6909 committed - Work around JSNI uses of JSOs as maps on Chrome in DevMode (where the ...

2009-11-16 Thread codesite-noreply
Revision: 6909 Author: j...@google.com Date: Mon Nov 16 08:32:42 2009 Log: Work around JSNI uses of JSOs as maps on Chrome in DevMode (where the plugin adds __gwt_ObjectId to any JS object passed to Java to preserve object identity). We fix it by overriding Object.prototype.hasOwnProperty and

[gwt-contrib] [google-web-toolkit] r6910 committed - Merge trunk r6909 into this branch...

2009-11-16 Thread codesite-noreply
Revision: 6910 Author: j...@google.com Date: Mon Nov 16 08:35:40 2009 Log: Merge trunk r6909 into this branch Fixes JSNI uses of JSOs as maps in Chrome DevMode. svn merge --ignore-ancestry -c6909 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .

[gwt-contrib] Re: Fix a nasty attribute parsing bug in UiBinder

2009-11-16 Thread rjrjr
Lex, can you take this? I think Joel is on the road. http://gwt-code-reviews.appspot.com/102818 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix a nasty attribute parsing bug in UiBinder

2009-11-16 Thread spoon
Sure thing, looking now. And here I'd hoped never to have to think too much about XML namespaces. http://gwt-code-reviews.appspot.com/102818 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6912 committed - Restore behavior where hosted mode linking will not overwrite a newer ...

2009-11-16 Thread codesite-noreply
Revision: 6912 Author: sco...@google.com Date: Mon Nov 16 09:48:58 2009 Log: Restore behavior where hosted mode linking will not overwrite a newer compiled selection script. And generally, older resources won't overwrite newer ones. Review by: spoon (desk)

[gwt-contrib] Re: Fix a nasty attribute parsing bug in UiBinder

2009-11-16 Thread spoon
LGTM. http://gwt-code-reviews.appspot.com/102818 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6913 committed - AttributeParsing was pretty much working by accident, and not at all f...

2009-11-16 Thread codesite-noreply
Revision: 6913 Author: rj...@google.com Date: Mon Nov 16 10:04:26 2009 Log: AttributeParsing was pretty much working by accident, and not at all for the deprecated urn:with mechanism. I'm not 100% certain there weren't non-deprecated paths that were broken too. Attribute parsing is still too

Re: [gwt-contrib] TaskEngine sample patched for GWT 2.0 MS 2

2009-11-16 Thread Jaime Yap
Thanks for the patch :). I have been planning on updating the sample for some time now but just never got around to doing it. In addition to porting it to use ClientBundle, I was planning on adding appcache support and implementing an offline mode. Maybe ill block off an afternoon and finish

[gwt-contrib] [google-web-toolkit] r6914 committed - tr...@6911 was merged into this branch...

2009-11-16 Thread codesite-noreply
Revision: 6914 Author: sco...@google.com Date: Mon Nov 16 10:54:36 2009 Log: tr...@6911 was merged into this branch gwt-user should not reference the dev collections, this causes server failures. svn merge --ignore-ancestry -c6911 https://google-web-toolkit.googlecode.com/svn/trunk/ .

[gwt-contrib] Re: Fix a nasty attribute parsing bug in UiBinder

2009-11-16 Thread rjrjr
tr...@6913 http://gwt-code-reviews.appspot.com/102818 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2009-11-16 Thread codesite-noreply
Comment by mark.renouf: This patch will make GAE/Eclipse happy for now, seems to work with no side effects. Patch and build with 'ant dist-dev'. Index: dev/core/src/com/google/gwt/dev/DevModeBase.java === ---

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

2009-11-16 Thread codesite-noreply
Comment by mark.renouf: This patch will make GAE/Eclipse happy for now, seems to work with no side effects. Patch and build with 'ant dist-dev'. {{{ Index: dev/core/src/com/google/gwt/dev/DevModeBase.java === ---

[gwt-contrib] [google-web-toolkit] r6915 committed - Merges tr...@6913 into releases/2.0...

2009-11-16 Thread codesite-noreply
Revision: 6915 Author: rj...@google.com Date: Mon Nov 16 11:27:22 2009 Log: Merges tr...@6913 into releases/2.0 UiBinder attribute parsing was pretty much working by accident svn merge --ignore-ancestry -c 6913 https://google-web-toolkit.googlecode.com/svn/trunk .

[gwt-contrib] Re: Fix a nasty attribute parsing bug in UiBinder

2009-11-16 Thread rjrjr
releases/2...@6915 http://gwt-code-reviews.appspot.com/102818 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6916 committed - SOYC artifacts should be private....

2009-11-16 Thread codesite-noreply
Revision: 6916 Author: sco...@google.com Date: Mon Nov 16 11:29:17 2009 Log: SOYC artifacts should be private. Review by: spoon http://code.google.com/p/google-web-toolkit/source/detail?r=6916 Modified: /trunk/dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java

[gwt-contrib] [google-web-toolkit] r6917 committed - Fixes a race condition creating StandardGeneratorContext's diskCache....

2009-11-16 Thread codesite-noreply
Revision: 6917 Author: sco...@google.com Date: Mon Nov 16 11:37:20 2009 Log: Fixes a race condition creating StandardGeneratorContext's diskCache. Review by: bob (virtual) http://code.google.com/p/google-web-toolkit/source/detail?r=6917 Modified:

[gwt-contrib] Fix bug formatting milliseconds for pre-1970 dates

2009-11-16 Thread rice
Reviewers: jat, Description: From external GWT issue 4216: - System.out.println(DateTimeFormat.getFormat(SS).format(new Date(-631151998945))) displays 0-93 instead of the expected 05 or 06. That time is 1.055 seconds after midnight January 1, 1950. - Please review this at

[gwt-contrib] [google-web-toolkit] r6918 committed - Remove unused method from ModuleSpace....

2009-11-16 Thread codesite-noreply
Revision: 6918 Author: sco...@google.com Date: Mon Nov 16 11:37:29 2009 Log: Remove unused method from ModuleSpace. Review by: jat (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=6918 Modified: /trunk/dev/core/src/com/google/gwt/dev/shell/ModuleSpace.java

[gwt-contrib] [google-web-toolkit] r6919 committed - Fixes workDir directory contention between multiple concurrent hosted ...

2009-11-16 Thread codesite-noreply
Revision: 6919 Author: sco...@google.com Date: Mon Nov 16 11:37:40 2009 Log: Fixes workDir directory contention between multiple concurrent hosted mode sessions. - each StandardLinkerContext gets a unique directory in the workDir - each session gets its own linker stack - outputing files into

[gwt-contrib] [google-web-toolkit] r6920 committed - trunk c6917-c6919 were merged into this branch...

2009-11-16 Thread codesite-noreply
Revision: 6920 Author: sco...@google.com Date: Mon Nov 16 11:48:59 2009 Log: trunk c6917-c6919 were merged into this branch Fixes a race condition creating StandardGeneratorContext's diskCache. Remove unused method from ModuleSpace. Fixes workDir directory contention between multiple

  1   2   >