Re: GWT best Practices - JS Library Wrappers Overlay Types

2009-05-29 Thread Bobby
Thanks that was it. Bobby On May 26, 9:01 am, Thomas Broyer t.bro...@gmail.com wrote: On 26 mai, 14:56, Eric Ayers zun...@google.com wrote: The read-only link starts with http, but there may be an error in the URL: http://gwt-google-apis.googlecode.com/svn/trunk/ajaxloader/ajaxloader...

Re: Out of memory; to increase the amount of memory, use the -Xmx flag at startup (java -Xmx128M)

2009-05-29 Thread Sagar
Thanks a lot Alex, There was some memory leak problem with the Java collections I used.. its working fine now. We should use parameterized collection as far as possible.. Regards, Sagar On May 28, 11:31 am, alex.d alex.dukhov...@googlemail.com wrote: You should also increase the heap size

Re: SuggestBox with Facebook-style Autocomplete?

2009-05-29 Thread Joe Cole
Hi Matt, We have one a similar thing for one of our applications, so it's definitely possible. The left hand section of the suggest box provides your highlighted search terms, and the right hand side provides detailed preview information about the selected item, and is heavily customised through

Re: Cannot iterate HashSet

2009-05-29 Thread Yulia
The interesting thing is that there is no nulls in output. If it were null I probably could see this error in GWT Shell, but in hosted browser everyting was ok. The following code also gives me same error: @Override public String toString() { //return + getValue(); return

Re: Geting a stack trace?

2009-05-29 Thread dduck
Thanks to all for your replies. I see that it is indeed mentioned in the docs that one should not (yet) expect a useful response from the StackTraceElement related functions. Good to know, and nice to know that I have improvements to look forward to. Regards. Anders

Re: Frame.setURL in IE6/7 always cause's refresh of contents? (even if just the #token changed)

2009-05-29 Thread twdarkflame
Ah, yes the second solution looks best. No SOP issues here, as I'm writting both the inner and outer stuff. That should work quite nearly. Cheers :) *also stars both topics* On May 29, 1:06 am, Thomas Broyer t.bro...@gmail.com wrote: On 28 mai, 13:51, twdarkflame darkfl...@gmail.com wrote:

Re: IE error can't debug!

2009-05-29 Thread jorge
Hi all, As Thomas says, it's a known bug for which there has not been solution for a long time (I had the same problem). The hack is simple but as the GWT team doesn't know why this is happening (it shouldn't) they have not solved it yet. The bug doesn't appear in firefox, only in ie, but it's

Re: Embed PHP code into host HTML page?

2009-05-29 Thread bencoder
Hi twdarkflame, Thank you for your feedback. I tried your php script, but there is nothing to appear on the page. I also test your php script with application in web mode on my local web server, the situation is the same. Do you have any idea? On 5月28日, 下午7時49分, twdarkflame darkfl...@gmail.com

Re: Embed PHP code into host HTML page?

2009-05-29 Thread bencoder
Hi Broyer, I tested the php code with my application both in -noserver Hosted mode and web mode. The situation is the same between two modes. The server seems not execute php code properly. What you see is how a browser parses the PHP code (? starts a bogus comment, which ends at the first

Re: JSF with GWT

2009-05-29 Thread mikedshaffer
Yes it is. GWT is simply a different way to do AJAX, and my understanding of JSF is that they are extremely compatible. That being said, whenever I'm asked Can GWT work with $PRODUCT where $PRODUCT is Struts, PHP, JSF, ASPX, whatever, I ask what are you trying to accomplish?. Are you doing a

Re: How to use java.lang.Thread in GWT

2009-05-29 Thread Donald.W.Long
If you need to make something occur sequential that is happening in events, I did the following. This is the issue I had. In loading my screen up with I needed to build part of the screen (buttons and the like) from data received from the server. Thus, until this data was received some init

We can not access gwt blog in China?

2009-05-29 Thread Alex Luya
I do not why,I can not access website:http://googlewebtoolkit.blogspot.com/. --~--~-~--~~~---~--~~ 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: Google Wave in GWT

2009-05-29 Thread denis56
The Google Wave product (available as a developer preview) is the web application people will use to access and edit waves. It's an HTML 5 app, built on Google Web Toolkit. It includes a rich text editor and other functions like desktop drag-and-drop (which, for example, lets you drag a set of

Re: GWT and backend technology

2009-05-29 Thread ahhat...@gmail.com
Thanks Thomas, I was banned of this group and I really have no idea why... Anyway, I followed your advice and it worked nicely. Now, I can run both of them with no problems but I can't debug gwt... I doesn't stop in the breakpoints in eclipse. Do you have any ideas why may that happen? Thank

Breaking monolithic module into small modules

2009-05-29 Thread bbhang...@gmail.com
I am exploring GWT for my next project. I have managed to setup GWT- EXT, Eclipse, Maven, Spring and Hibernate project. I understand the entry point to GWT is via a call to the module html. As of now I have created only one module which gets loaded via index.html so you can its the default

GWT RPC Encryption

2009-05-29 Thread Deep Blue
Hi all, Is it possible to create an encyption / decryption layer around GWT rpc mechanism? The problem is currently in GWT rpc, all the data are sent / received from server in JSON text (although SSL can help protect middle-man attack, but launching firefox with firebug can see all the post

Problems with $doc.readyState and app sometimes failing to load/run in IE

2009-05-29 Thread DaveS
We have a fairly big GWT app, and we are experiencing some issues when running it in IE. Sometimes (and there's no rhyme or reason to it) the app simply fails to start up. The HTML file is loaded by the browser, and the my.app.nocache.js file is loaded, but it then gets stuck. After a *lot* of

Re: Embed PHP code into host HTML page?

2009-05-29 Thread Saurabh Agarwal
Hi All, I am entirely new to GWT just got aware of it 20 min back. I have a website in PHP and want to update its UI ( make it ajax based ). Can i used GWT for client side only. I will want to continue with the hosting provider ( lunarpages ) , do i have to change anything wrt provider for

Re: Embed PHP code into host HTML page?

2009-05-29 Thread Thomas Broyer
On May 29, 1:11 pm, bencoder zwj...@gmail.com wrote: Hi Broyer, I tested the php code with my application both in -noserver Hosted mode and web mode. The situation is the same between two modes. The server seems not execute php code properly. ...so this is a problem with your server, and

Re: How to use java.lang.Thread in GWT

2009-05-29 Thread Jason Essington
Use the GWT timer for that -jason On May 28, 2009, at 11:05 AM, Adil BENHAMID wrote: as an example I want to display a button then wait two seconds before displaying the next one. 2009/5/28 Adil BENHAMID enst.de.breta...@gmail.com I would like to to make a temporization between two calls.

Want to move to GWT for UI part of my site - Will it be SEO optimized

2009-05-29 Thread Saurabh Agarwal
Hi , I am new to GWT and it looks promising but I read that SEO is a big issue with GWT , This seems a big irony. can anybody highlight more on this issue, is this issue resolved or there is no other way the keeping two copies of your site. Please help -- Successful people make more

Re: How to use java.lang.Thread in GWT

2009-05-29 Thread Jason Essington
In reality, if the second button depends upon the response of some XHR triggered by a click of the first button, even a timer is a poor choice. You would want to use callbacks. have a look at the short explanation here:

Re: GWT RPC Encryption

2009-05-29 Thread Vitali Lovich
On Fri, May 29, 2009 at 3:29 AM, Deep Blue deep.blue...@gmail.com wrote: Hi all, Is it possible to create an encyption / decryption layer around GWT rpc mechanism? The problem is currently in GWT rpc, all the data are sent / received from server in JSON text (although SSL can help protect

Re: Embed PHP code into host HTML page?

2009-05-29 Thread Thomas Broyer
On May 29, 1:09 pm, Saurabh Agarwal sagarwal1...@gmail.com wrote: Hi All, I am entirely new to GWT just got aware of it 20 min back. I have a website in PHP and want to update its UI ( make it ajax based ). Can i used GWT for client side only. Yes of course, GWT is all but for

Re: GWT RPC Encryption

2009-05-29 Thread Jason Essington
You cannot keep data encrypted on the client if you expect to allow the client to use it. Anything that you want to protect from the user should never leave the server. for instance DVD and HD-DVD and BlueRay all attempt to keep their formats encrypted from the user, but the user is

Re: Want to move to GWT for UI part of my site - Will it be SEO optimized

2009-05-29 Thread Jim
I recommend Pro Web 2.0 Application Development with GWT that covers SEO. Jim http://www.gwtorm.com - GWT ORM On May 29, 10:43 am, Saurabh Agarwal sagarwal1...@gmail.com wrote: Hi , I am new to GWT and it looks promising but  I read that SEO is a big issue with GWT , This seems a big irony.

Re: GWT RPC Encryption

2009-05-29 Thread Daniel Jue
On Fri, May 29, 2009 at 10:56 AM, Jason Essington jason.essing...@gmail.com wrote: simply use HTTPS and protect the data while in transit, and don't send anything to the client that you don't want the client to have access to. -jason On that note, use lightweight display models (not your

Re: IE error can't debug!

2009-05-29 Thread Thomas Broyer
On May 29, 11:26 am, jorge jorgelopezma...@googlemail.com wrote: Hi all, As Thomas says, it's a known bug for which there has not been solution for a long time (I had the same problem). The hack is simple but as the GWT team doesn't know why this is happening (it shouldn't) they have not

Whats wrong with this database connection method?

2009-05-29 Thread barclay allen
I want to make a gwt app with large number of concurrent users. Users will run many queries. Shouldn't I keep the connection open in this servlet so it can execute the queries faster like below? In the code below, for every user accessing this servlet does it create a new connection to the

Re: data binding

2009-05-29 Thread abby
Gwittir will do what you need. --~--~-~--~~~---~--~~ 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

Whats wrong with this database connection method?

2009-05-29 Thread barclay allen
I want to make a gwt app with large number of concurrent users. Users will run many queries. Shouldn't I keep the connection open in this servlet so it can execute the queries faster like below? In the code below, for every user accessing this servlet does it create a new connection to the

Re: Whats wrong with this database connection method?

2009-05-29 Thread Jim
The code you listed creates one connection per instance (per thread in web container). You should use connetion pooling to make sure that one method invocation has one open connection. You can find an example in http://www.gwtorm.com/mail/Mail.html. Jim http://code.google.com/p/dreamsource-orm

Re: Want to move to GWT for UI part of my site - Will it be SEO optimized

2009-05-29 Thread mikedshaffer
2nd the recommendation of the Dwyer book, it's about the only printed info you can find specifically about SEO and GWT. This is a big AJAX issue and GWT, being an AJAX solution is saddled with the same issues in regards to SEO that all AJAX based solutions are. On May 29, 9:01 am, Jim

Re: Whats wrong with this database connection method?

2009-05-29 Thread barclayal...@gmail.com
Thank you for your help On May 29, 8:37 am, Jim jim.p...@gmail.com wrote: The code you listed creates one connection per instance (per thread in web container). You should use connetion pooling to make sure that one method invocation has one open connection. You can find an example

Re: Want to move to GWT for UI part of my site - Will it be SEO optimized

2009-05-29 Thread Saurabh Agarwal
Thanks a lot all for your inputs. Regards Saurabh On Fri, May 29, 2009 at 9:21 PM, mikedshaffer mikedshaf...@gmail.com wrote: 2nd the recommendation of the Dwyer book, it's about the only printed info you can find specifically about SEO and GWT.  This is a big AJAX issue and GWT, being an

Re: Embed PHP code into host HTML page?

2009-05-29 Thread Saurabh Agarwal
Thanks a lot for your inputs. Regards Saurabh On Fri, May 29, 2009 at 8:24 PM, Thomas Broyer t.bro...@gmail.com wrote: On May 29, 1:09 pm, Saurabh Agarwal sagarwal1...@gmail.com wrote: Hi All, I am entirely new to GWT just got aware of it 20 min back. I have a website in PHP and want

Re: RequestBuilder and native XSL stylesheet processing

2009-05-29 Thread Jeff Chimene
Well, You're not going to like this answer very much but: It seems unnecessarily cruel to burden your users with the wait time of downloading an XSLT transform engine when you could do such processing on your server. I know it's cool to do XSLT processing on the client, but this app doesn't

DatePicker and setting the time

2009-05-29 Thread Thad
The incubator's DateTimePicker (now deprecated) allowed for setting hour, minute, and AM/PM, a feature my application requires. I don't see this feature in GWT 1.6's DatePicker. Am I missing something? Is this capability coming and when? --~--~-~--~~~---~--~~

Re: DatePicker and setting the time

2009-05-29 Thread Kwame
Hi Thad, Have you tried datePicker.setValue(new Date(year, month, date)) or to format the output, maybe something like: String dateString = DateTimeFormat.getMediumDateFormat().format (datePicker.getValue()); I have a similar problem. I think the 1.6 DateBox/DatePicker lets you format the Date

No source code is available for type..., did you forget to inherit a required module?

2009-05-29 Thread Linda
Hi all, I created a web application from gwt and an algorithm project which is outside of the gwt web project. Now I try to use my algorithm object inside my client code, I got the following error like: No source code is available for type myAlgorithms.myObject; did you forget to inherit a

Re: Tutorial Code Simplification

2009-05-29 Thread Sumit Chandel
Hi Hosam, Thanks for the catch. I've added this to Issue #3626 which documents other mistakes and simplifications that should be fixed in the tutorial docs shortly. Issue #3626: http://code.google.com/p/google-web-toolkit/issues/detail?id=3626 Cheers, -Sumit Chandel On Mon, May 25, 2009 at 5:53

Re: No source code is available for type..., did you forget to inherit a required module?

2009-05-29 Thread Isaac Truett
Linda, Did you create a module definition (*.gwt.xml file) for your algorithm project? You need to inherit that module in your application and make sure you have the source code for that module on your classpath. - Isaac On Fri, May 29, 2009 at 11:35 AM, Linda linda.ctr.c...@faa.gov wrote:

Re: No source code is available for type..., did you forget to inherit a required module?

2009-05-29 Thread Linda
Yes, Isaac. I fixed it by adding gwt.xml file(s) to my algorithm project. Thank you much! I am new to Java and Very new to gwt. - Linda On May 29, 2:28 pm, Isaac Truett itru...@gmail.com wrote: Linda, Did you create a module definition (*.gwt.xml file) for your algorithm project? You need

MarkerManager - any plans to include?

2009-05-29 Thread markww
Hi, This is a follow up to the following discussion: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/84a78456056ff61c/07f2539bfecc64bc?fwc=1 (however my messages are not appearing there). In the current GWT maps API, there is no MarkerManager class, we add markers

Re: Bookmarklets and GWT

2009-05-29 Thread chickenlives
Anyone have anything on this? I'm trying to do the same (with 1.5) and having no luck. So far I've enabled cross site scripting for my GWT app: add-linker name=xs/ My bookmarklet looks like this: var = function() { var m = document.createElement('meta'); m.setAttribute('http-equiv',

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-05-29 Thread Rajeev Dayal
Hi Abby, No, I don't think that an RFE has been filed for this. Would you mind filing one? Yes, the best workaround right now would be to place the images in the same package as the Bundle interface (or the Bundle interface in the same package as the images). Rajeev On Wed, May 27, 2009 at

How do I cancel closing a window

2009-05-29 Thread Rob Tanner
Hi, I want to capture a window close event and if the user is still logged in, present a confirmation box and then abort the close if the user hits the cancel button. What I don't know how to do is abort the close. Window.addCloseHandler(new CloseHandler() { public void

Re: How do I cancel closing a window

2009-05-29 Thread Rob Tanner
Solved my own problem. I want to add a closingHandlr and not a closedHandler and if event.setMessage() is set to a non-null value, a confirmation box is displayed and hitting the CANCEL button cancels the close. My if statement to checked logged in status controls whether I set a message or not

RPC Serialization Issue - Enumerated Types (GWT 1.5.3)

2009-05-29 Thread JD
I recently added an attribute to a class (model) that gets serialized as part of an RPC call. The attribute I added (with setters and getters) is a java.util.List containing my enum type. The List gets put into a Map similar to myMap.put(SomeKey, ListMyEnumType); When I make the RPC call I get

Typo @ Product Overview

2009-05-29 Thread Murilo Juchem
edit - ***refesh*** - view @ How Google Web Toolkit works With Google Web Toolkit (GWT), you write your AJAX front-end in the Java programming language which GWT then cross-compiles into optimized JavaScript that automatically works across all major browsers. During development, you can

Re: GWT RPC Encryption

2009-05-29 Thread Deep Blue
Hi, Thanks all for the comments / opinions. I agreed with Daniel and Jason that we shouldn't send any extra info. to client and protect from server side. However, some of my clients are paranoid about the data is being exposed to users as clear text and they are able to forge the request to

Re: GWT RPC Encryption

2009-05-29 Thread Peter Ondruška
You may be interested in data signing not encryption. On Sat, May 30, 2009 at 5:09 AM, Deep Blue deep.blue...@gmail.com wrote: Hi, Thanks all for the comments / opinions. I agreed with Daniel and Jason that we shouldn't send any extra info. to client and protect from server side.

[gwt-contrib] Re: Feature idea - reference Java methods as Javascript functions

2009-05-29 Thread John Tamplin
On Thu, May 28, 2009 at 8:18 PM, Vitali Lovich vlov...@gmail.com wrote: It would be nice if there was a way to wrap Java methods with an opaque Javascript function object so that you could pass them around in the native code (obviously there are issues with compiler optimizations in this

[gwt-contrib] Re: Feature idea - reference Java methods as Javascript functions

2009-05-29 Thread Vitali Lovich
On Fri, May 29, 2009 at 9:42 AM, John Tamplin j...@google.com wrote: On Thu, May 28, 2009 at 8:18 PM, Vitali Lovich vlov...@gmail.com wrote: It would be nice if there was a way to wrap Java methods with an opaque Javascript function object so that you could pass them around in the native

[gwt-contrib] Re: Feature idea - reference Java methods as Javascript functions

2009-05-29 Thread John Tamplin
On Fri, May 29, 2009 at 10:42 AM, Vitali Lovich vlov...@gmail.com wrote: I was thinking more along the lines of JavascriptFunction foo = MyClass.bar.method or something like that. That way, you could do dynamic function invocation without ever needing JSNI. It's also a lot easier to write

[gwt-contrib] Re: Feature idea - reference Java methods as Javascript functions

2009-05-29 Thread John Tamplin
On Fri, May 29, 2009 at 11:31 AM, Vitali Lovich vlov...@gmail.com wrote: The way you get a method reference in pure Java is via reflection, which in general is not feasible though there have been some discussions of allowing it when everything can be evaluated at compile time (ie, all

[gwt-contrib] Make Class.getName() useful when class metadata is disabled

2009-05-29 Thread scottb
Mostly nits. http://gwt-code-reviews.appspot.com/34822/diff/1/2 File dev/core/src/com/google/gwt/dev/jjs/ast/JClassLiteral.java (right): http://gwt-code-reviews.appspot.com/34822/diff/1/2#newcode68 Line 68: if (type instanceof JClassType !(type instanceof JArrayType)) { JArrayType no longer

[gwt-contrib] Cleaning up the FastTree deprecations

2009-05-29 Thread nwolf
Reviewers: jlabanca, Description: Getting rid of some deprecations so that the FastTree demo will actually run. Please review this at http://gwt-code-reviews.appspot.com/33832 Affected files: src-demo/com/google/gwt/gen2/demo/fasttree/FastTreeDemo.gwt.xml

[gwt-contrib] Re: Cleaning up the FastTree deprecations

2009-05-29 Thread jlabanca
LGTM I just think you should remove the ScrollTable from the FastTreeDemo so it isn't overly complicated. http://gwt-code-reviews.appspot.com/33832/diff/1/6 File src-demo/com/google/gwt/gen2/demo/fasttree/FastTreeDemo.gwt.xml (right):

[gwt-contrib] Re: Cleaning up the FastTree deprecations

2009-05-29 Thread nwolf
http://gwt-code-reviews.appspot.com/33832/diff/1/6 File src-demo/com/google/gwt/gen2/demo/fasttree/FastTreeDemo.gwt.xml (right): http://gwt-code-reviews.appspot.com/33832/diff/1/6#newcode5 Line 5: inherits name='com.google.gwt.user.theme.standard.Standard'/ On 2009/05/29 18:17:47, jlabanca

[gwt-contrib] RR : Begin migration of CssResource to strict-by-default behavior

2009-05-29 Thread bobv
Reviewers: rjrjr, Message: Take 2 at sending email message. Description: Add a @NotStrict annotation. Warn unless one of @Strict or @NotStrict annotation is present or the CssResource.strictAccessors module property is set. Update tests to compile without warnings. Please review this at

[gwt-contrib] one-liner for SoycDashboard to pay more attention to -out

2009-05-29 Thread spoon
Reviewers: kprobst, Description: I missed a case when adding -out to SoycDashboard, so one of the files goes to the current directory rather than to the -out directory. Please review this at http://gwt-code-reviews.appspot.com/33834 Affected files:

[gwt-contrib] Re: RR : Begin migration of CssResource to strict-by-default behavior

2009-05-29 Thread rjrjr
http://gwt-code-reviews.appspot.com/34824/diff/1/3 File user/src/com/google/gwt/resources/rg/CssResourceGenerator.java (right): http://gwt-code-reviews.appspot.com/34824/diff/1/3#newcode221 Line 221: + using an @external declaration for unobfuscated classes.); ...for obfuscated classes, or

[gwt-contrib] [google-web-toolkit commit] r5476 - Fix typo in r5450 (period rather than comma in LOCLAIZED_COMMA_EQUIVALENTS)

2009-05-29 Thread codesite-noreply
Author: j...@google.com Date: Fri May 29 12:15:37 2009 New Revision: 5476 Modified: trunk/user/src/com/google/gwt/i18n/client/NumberFormat.java trunk/user/test/com/google/gwt/i18n/client/NumberFormat_en_Test.java trunk/user/test/com/google/gwt/i18n/client/NumberFormat_fr_Test.java

[gwt-contrib] Re: one-liner for SoycDashboard to pay more attention to -out

2009-05-29 Thread spoon
Thanks, Kathrin! It's in at r5478. http://gwt-code-reviews.appspot.com/33834 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5478 - One-line fix to SoycDashboard to put an additonal file

2009-05-29 Thread codesite-noreply
Author: sp...@google.com Date: Fri May 29 13:09:16 2009 New Revision: 5478 Modified: trunk/tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java Log: One-line fix to SoycDashboard to put an additonal file in the directory specified by -out. Review by: kprobst Modified:

[gwt-contrib] Re: Make Class.getName() useful when class metadata is disabled

2009-05-29 Thread bobv
Reviewers: scottb, Message: Incorporated your comments. http://gwt-code-reviews.appspot.com/34822/diff/1/2 File dev/core/src/com/google/gwt/dev/jjs/ast/JClassLiteral.java (right): http://gwt-code-reviews.appspot.com/34822/diff/1/2#newcode68 Line 68: if (type instanceof JClassType !(type

[gwt-contrib] Re: Make Class.getName() useful when class metadata is disabled

2009-05-29 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/34822/diff/33/1003 File dev/core/src/com/google/gwt/dev/jjs/ast/JClassLiteral.java (right): http://gwt-code-reviews.appspot.com/34822/diff/33/1003#newcode60 Line 60: // There's only one seed function for all arrays *shrug* BTW: this type should be an

[gwt-contrib] Moving FastTree into trunk

2009-05-29 Thread nwolf
Reviewers: jlabanca, Description: This is the first stab at moving FastTree into trunk (from incubator) and merging some commonalities with Tree into a new base class called TreeBase.java Please review this at http://gwt-code-reviews.appspot.com/33836 Affected files: build.xml

[gwt-contrib] Re: Speedups for -soyc compilation

2009-05-29 Thread spoon
LGTM, with a few things needed: 1. There should be a test case for writeUtf8. 2. It's worth double checking that locally caching the StringBuilder helps. 3. Please double check the output if that hasn't been done already; for example, run the SOYC dashboard, or compare auto-formatted versions of

[gwt-contrib] Re: Change Date to use JSO field rather than expando, add null checks

2009-05-29 Thread amitmanjhi
Hi John, Besides Scott's suggestion, I have one more thing to add. For any method that mutates the Date, wouldn't it be more useful to call th...@java.util.date::checkJsDate()(); both when entering and exiting the method? Then, we can get a stack trace of the problem code immediately. After

[gwt-contrib] [google-web-toolkit commit] r5479 - Make Class.getName() behave in a useful manner when class metadata is disabled.

2009-05-29 Thread codesite-noreply
Author: b...@google.com Date: Fri May 29 15:31:48 2009 New Revision: 5479 Added: trunk/dev/core/src/com/google/gwt/dev/jjs/ast/JNameOf.java trunk/dev/core/src/com/google/gwt/dev/js/ast/JsNameOf.java Modified: trunk/dev/core/src/com/google/gwt/dev/jjs/ast/JClassLiteral.java

[gwt-contrib] Re: RR : Begin migration of CssResource to strict-by-default behavior

2009-05-29 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/34824 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Speedups for -soyc compilation

2009-05-29 Thread Katharina Probst
Thanks, Lex, for picking up the slack on this. kathrin On Fri, May 29, 2009 at 6:09 PM, sp...@google.com wrote: LGTM, with a few things needed: 1. There should be a test case for writeUtf8. 2. It's worth double checking that locally caching the StringBuilder helps. 3. Please double check

[gwt-contrib] Re: Feature idea - reference Java methods as Javascript functions

2009-05-29 Thread Vitali Lovich
On Fri, May 29, 2009 at 11:59 AM, John Tamplin j...@google.com wrote: On Fri, May 29, 2009 at 11:31 AM, Vitali Lovich vlov...@gmail.com wrote: The way you get a method reference in pure Java is via reflection, which in general is not feasible though there have been some discussions of