GWT Tomcat redirect rules

2013-03-15 Thread sachin sreenivasan
Hi All, I wanted to write a redirect rule which would redirect from a slash / to a hash #. Is it possible? If the user types in www.example.com/abc, I want the page to get redirected to www.example.com#abc. Just wanted to know if such a thing is possible? And I am looking at a solution

Re: GWT Tomcat redirect rules

2013-03-15 Thread Jens
For Tomcat many people are using https://code.google.com/p/urlrewritefilter/ or just put an ordinary web server that directly supports URL rewriting (apache, nginx) in front of Tomcat. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Adding GWT-EXT Button on toolbar displayed differently than to add it on a panel

2013-03-15 Thread strut
I want to know that when i add a GWT-EXT button to the toolbar it appears as if it were a link or Simply text,the border is not visible and it just got blended with the toolbar . However when we add the same button to the panel it viewed properly. I just want the button when it is added to to

How can I inherit a UiBinder class, or supplying a widget for a placeholder?

2013-03-15 Thread membersound
Hi, hopefully you can help me getting some inheritance done with Ui-Binder. My goal is to create a basic EditPanel. I want to define all styles, some fixed text, and some buttons there. It should also have an area do display some errors. And also a placeholder where I could later place a

Re: How can I inherit a UiBinder class, or supplying a widget for a placeholder?

2013-03-15 Thread Jesse Hutton
I don't think you can use inheritance with UiBinder like that. But you can achieve more or less what you're looking for, I think. Basically, you create a layout view that you can use in your primary view uibinders the same way the standard widgets are used there: public interface MyBaseView {

internal compiler exception with GWT 2.5.1

2013-03-15 Thread Thad
I just swapped in GWT 2.5.1 for 2.5.0 and tried to build my current projects. In the gwtc target, both fail with gwtc: [java] Compiling module com.optix.cold.Cold [java][ERROR] An internal compiler exception occurred [java] com.google.gwt.dev.jjs.InternalCompilerException:

Re: internal compiler exception with GWT 2.5.1

2013-03-15 Thread Jens
Please try deleting your gwt-unitCache directory between swapping GWT versions. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: GWT WebApp and iOS 6 Safari

2013-03-15 Thread Mike Brock
We have found that using -XdisableClassCastChecking in GWT 2.5 appears to fix the problem on iOS 6 Safari. On Tuesday, March 12, 2013 5:35:46 AM UTC-4, Jens wrote: This is a bit old, but in the interest of linking information here's a blog post I found on this issue with another workaround:

Why does BaseEditorDriver.flush() use ErrorCollector to call HasEditorErrors.showErrors? Not mentioned in JavaDoc

2013-03-15 Thread salk31
Sorry if I'm being thick but this doesn't seem that useful? We are doing background validation of the form as the user works. At the moment the errors flicker as I do driver.flush() and wait for the response from the server. If it is sensible then maybe mention in the JavaDoc? Many thanks

Re: Why does BaseEditorDriver.flush() use ErrorCollector to call HasEditorErrors.showErrors? Not mentioned in JavaDoc

2013-03-15 Thread Thomas Broyer
On Friday, March 15, 2013 4:56:43 PM UTC+1, salk31 wrote: Sorry if I'm being thick but this doesn't seem that useful? We are doing background validation of the form as the user works. At the moment the errors flicker as I do driver.flush() and wait for the response from the server. If

Re: internal compiler exception with GWT 2.5.1

2013-03-15 Thread Thad
Bingo! That was it. Thanks, Jens. (You'd think that after passing through every GWT release since the fall of 2006 I recall seeing this before, but I don't. Live and learn.) Awesome product, guys. I can't tell you how much I appreciate GWT and the support I get from this list. On Friday,

tip: GWT integration with intercom.io

2013-03-15 Thread Addy
Hi All, I recently integrated my GWT app with intercom.io and I thought I would share the details with the community. 1. Add the following to your root HTML file script type=text/javascript src= https://api.intercom.io/api/js/library.js;/script 2. create a function and call it each time the

Chrome GWT plugin 1.0.11357

2013-03-15 Thread Igor Zubchenok
Hi! Where can I download the plugin .crx file for manual installation? https://chrome.google.com/webstore/detail/gwt-developer-plugin/jpjpnpmbddbjkfaccnmhnkdgjideieim?hl=en-US Chome Web Store does not allow to install the plugin and shows the error: This application is not supported on this

AnnotatedTimeLine date selection

2013-03-15 Thread Radhouene Gniwa
Hello, is it possible to get the date value when user click on the graph? if yes, How do that? Thanks in Advance. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an

Question about LeafValueEditor

2013-03-15 Thread John Jackson
Hello, I'm new to editors in GWT. What I would like to achieve is the following: user selects the salutation for a person (e.g. Dr., Mr., Ms., etc.); when selected if the salutation is Mr. I would like to update the Gender ListBox automatically to Male, if the salutation is Ms. or Mrs. gender

RequestFactoryEditorDriver (or any type of Editor) and ValueChangedEvent

2013-03-15 Thread Jonathan Jones
Hi all, I am new to GWT 2.5 so please forgive me. I have successfully managed to bind my Editor (RequestFactoryEditorDriver) to my Proxy objects and am saving away etc all very well. However, I would really like to listen for change events (on the proxy or any of the fields in my delegate).

Label show when Run but not in compiled.

2013-03-15 Thread the_transltr
I am using Eclipse 4.2 and GWT 2.5. I ran a sample application that just show a label. Its working properly when i click Run but when i compiled it and drag the html from war directory it shows nothing. According to what i understands GWT will compile the java source into HTML and javascript.

Re: Question about LeafValueEditor

2013-03-15 Thread Jesse Hutton
Using basic MVP, what you'd do here is have a SalutationSelectView and a SalutationSelectPresenter (the presenter is set on the view). In the view, you have a change handler on the select element that calls, eg. presenter.onSelectionChanged(selectedValue). Then if your SalutationSelectPresenter is

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

2013-03-15 Thread Michael Prentice
I ran into this sort of a problem today. I followed the steps from TONS of articles, tutorials, guides, and posts. But none worked! Here was the final solution after hours of banging my head: I was using the source path tag wrong in gwt.xml in my external jar: *WRONG:* source path='auto.dto'/

How to use Character.isJavaIdentifierStart() in GWT?

2013-03-15 Thread membersound
Hi, why can't I validate a simple String: String value = test; Character.isJavaIdentifierStart(value.codePointAt(0)); //The method isJavaIdentifierStart(int) is undefined for the type Character Character.isJavaIdentifierStart(value.charAt(0)); //The method

Re: How to use Character.isJavaIdentifierStart() in GWT?

2013-03-15 Thread Jens
https://developers.google.com/web-toolkit/doc/latest/RefJreEmulation This method is not emulated by GWT, so you cant use it in client code. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Google Cloud Storage IOException

2013-03-15 Thread Sevak Asadorian
I am getting an ExpectedException trying to read from Google Cloud Storage. Please help! This is the function that I am using to read my file. public String importData() { String result = Done reading file.; boolean lockForRead = false; String filename = /gs/maple/save.txt; try { // Get the

Re: Google Cloud Storage IOException

2013-03-15 Thread Sevak Asadorian
SEVERE: javax.servlet.ServletContext log: Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract java.lang.String com.maple.main.client.GreetingService.importData() throws java.io.IOException' threw an unexpected

Re: Google Cloud Storage IOException

2013-03-15 Thread Sevak Asadorian
Trying to access my file through the browser: http://storage.googleapis.com/BUCKETNAME/FILENAME I get the following: Error CodeAccessDenied/Code MessageAccess denied./Message /Error On Friday, March 15, 2013 5:26:03 PM UTC-7, Sevak Asadorian wrote: SEVERE: javax.servlet.ServletContext log:

Re: Google Cloud Storage IOException

2013-03-15 Thread Sevak Asadorian
Latest error in Eclipse: Caused by: com.google.apphosting.api.ApiProxy$ApplicationException: ApplicationError: 7: ...war\WEB-INF\appengine-generated\encoded_gs_key:L2dzL21hcGxlL3NhdmUudHh0 (The system cannot find the file specified) On Friday, March 15, 2013 5:25:23 PM UTC-7, Sevak Asadorian

Re: Code Coverage

2013-03-15 Thread Colin Alworth
I haven't been using maven to run my tests in the past (because I don't want them package into the war and increasing the size of the war) now I'm struggling to get maven to build and run my tests at all. They're in a separate folder outside of src. I guess I don't understand this part - if

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-15 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Avoid running JsInliner on the full JavaScript tree. .. Patch Set 9: (1 comment) File

[gwt-contrib] gwt rebranding

2013-03-15 Thread Daniel Kurka
Crosspost from gwt-steering: https://groups.google.com/d/msg/gwt-steering/q9bSOldSBFU/ki5nQk39fJ8J Hi everyone, a few days back an interesting thought was raised on the GWT Google+ Group ( https://plus.google.com/u/0/106897772465935627996/posts/MRfCM6GxS6n): GWT should rebrand It was

[gwt-contrib] Re: gwt rebranding

2013-03-15 Thread Jens
I am also thinking about a new logo. Is there any timeframe and a central place/email to upload/mail logo submissions to? -- J. -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web

[gwt-contrib] Re: gwt rebranding

2013-03-15 Thread James Nelson
Here is an extremely crude mockup of an idea I had... For those talking about how it is pronounced Gwit, but still spelled GWT, I suggest some play on words using the T on the G. https://lh4.googleusercontent.com/-Zb4YtUAo39k/UULrfkz_5MI/Ans/a8LSWrgh1UM/s1600/gwt.png Also, I hope it's

Re: [gwt-contrib] Re: gwt rebranding

2013-03-15 Thread Kerry Wilson
I actually like the current logo. However, I do believe an update would be good. My idea is to flatten it and replace g with gwt. Something like the quick draft I have attached. This is just a toolbox icon I found on the internet, if I had better graphic design skillz I would make one that

Re: [gwt-contrib] Re: gwt rebranding

2013-03-15 Thread Jens
I actually like the current logo. However, I do believe an update would be good. Thats what I think too. It should be modernized a bit but overall still contain a toolbox and GWT in a nifty, modern type face. Maybe its possible to reduce most of the details of the toolbox and convert the

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Ray Cromwell
Ray Cromwell has uploaded a new patch set (#3). Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: add Class.getSimpleName to gwt emulation

2013-03-15 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: add Class.getSimpleName to gwt emulation .. Patch Set 1: Code-Review+1 It won't work with obfuscation on but it seems no worse than Class.getName(). --

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Ray Cromwell
Hello Roberto Lublinerman, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2230 to look at the new patch set (#4). Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-15 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Issue # 3520: More Flexible DatePicker

2013-03-15 Thread Nick Harrington
Hello all, I've submitted a patch for this issue: http://gwt-code-reviews.appspot.com/1894803/ I was wondering if anyone has looked at it since I haven't had any feedback in a while. Thanks, Nick -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this

Re: [gwt-contrib] Re: gwt rebranding

2013-03-15 Thread Rob
Hi, I think that you should consider asking for some input from someone with a branding background. And, take a look at Google Trends to get an idea of what people are searching for. And, what your call to action should be. And, maybe you consider bumping the version number to 5 -

[gwt-contrib] GWT in Google Summer of Code 2013

2013-03-15 Thread Sergey Tselovalnikov
Does GWT participates in GSoC 2013http://www.google-melange.com/gsoc/homepage/google/gsoc2013 ? I am very interested in participating in the developing of GWT and would be glad to participate as a student in the development of GWT in GSoC. I found the last discussion of the GWT in GSoC 2007

Re: [gwt-contrib] Re: gwt rebranding

2013-03-15 Thread GraÅžvydas Valeika
Hi, Very messed up. Letters without order - only knowing people will recognize what it is about. I like very much PostgreSQL or MySQL logos - recognizable animal (or other thing) with clearly written name. I looked for animals whose names start from G:

Re: [gwt-contrib] Re: gwt rebranding

2013-03-15 Thread James Nelson
Thanks @ Rob for notifying branding experts. The consensus from most of the steering committee is that they like the logo as well, and I for one, pretty much agree. Going way out there on a new logo would lose all built up brand identity and is not likely wise. I only posted that messed up

[gwt-contrib] Change in gwt[master]: add Class.getSimpleName to gwt emulation

2013-03-15 Thread James Nelson
James Nelson has posted comments on this change. Change subject: add Class.getSimpleName to gwt emulation .. Patch Set 1: If we're going to include simple name, how about throwing in Package as well; when obfuscation is on,