Re: Source maps

2012-04-02 Thread Dan Cojocar
Yes, some bits are still missing, but using trunk and following the instructions from here: http://code.google.com/p/google-web-toolkit/wiki/SourceMaps (with few additional steps, mentioned in the comments) I was able to debug the Mail application, using the java sources in Development tools. On M

Re: Source maps

2012-04-02 Thread Honza Rameš
Thanks cool, this way it works just fine, I also had to symlink my java sources so the browser could access them, you can do this by creating a symlink to you com (org or whatever package you use as base) in you war/ folder (where the cache.htmls are generated and where you copy source maps to). It

Re: GWT history handling library - give it a try

2012-04-02 Thread Kostya Kulagin
So, for me to resume (my opinion): 1) Using components state for bookmarks is a bad idea - URL should contain only 'Place' information. If you need to have an ability to bookmark state different then initial page state - use different Place. As an example - if in a gmail I want to have a shortcut

Re: Source maps

2012-04-02 Thread Thomas Broyer
On Monday, April 2, 2012 10:17:15 AM UTC+2, Honza Rames wrote: > > Thanks cool, this way it works just fine, I also had to symlink my java > sources so the browser could access them, you can do this by creating a > symlink to you com (org or whatever package you use as base) in you > war/ folde

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-02 Thread GWTter
Hi Deepak, This looks good to me. What style are you using for the vertical scrollbar? And thanks for the repost. -Seth On Sunday, April 1, 2012 3:50:12 PM UTC-4, Deepak Singh wrote: > > Hi Seth, > > I am posting my code here: > > myScrollPanel.css > @CHARSET "ISO-8859-1"; > > .customScrollPane

Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-02 Thread Joshua Kappon
With the rise of the new developers.google.com, and with Google trying to rally up developers using Google technologies and products, and the rise of Dart and unclear future of GWT, I think it's about time that Google will rethink the all "We don't and won't have a road map, and there are no re

Re: GWT history handling library - give it a try

2012-04-02 Thread l.denardo
--3) If an application does not use Places and Activities - I should think what to do in that case. I just stepped into reworking an application that used a custom history mapper (developed before places were available) to a Places design, so here's what I found. If you don't use Places, you'll go

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-02 Thread Alan Chaney
On 04/02/2012 08:19 AM, Joshua Kappon wrote: With the rise of the new developers.google.com, and with Google trying to rally up developers using Google technologies and products, and the rise of Dart and unclear future of GWT, I think it's about time that Google will rethink the all "We don't a

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-02 Thread Deepak Singh
Nothing more than what i sent you. I have just myScrollPanel.css as mention above. Could you pls guide me with css if i need to apply some css over vertical scrollbar? Thanks in advance Deepak On Mon, Apr 2, 2012 at 8:19 PM, GWTter wrote: > Hi Deepak, > > This looks good to me. What style are

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-02 Thread GWTter
Hi Deepak, Yes, you would need to apply some style to your scrollbar so that it at least has width (or height if you were using the horizontal scrollbar). If you look at the MyVerticalScrollBar constructor, the line 'this.setStyleName("verticalScrollBar")' sets the style for the scrollbar. Thi

Touch4j 2.0 Official GA Release

2012-04-02 Thread Alfredo Quiroga-Villamil
Our official GA release for Touch4j has arrived! Want to see it in action before reading further and see how simple it is to use it? Go to: http://touch4j.appspot.com/ and if you want to see how the code would look, simply click on Source. In this new package you will find support for: - Maps -

capture image from mysql

2012-04-02 Thread Leonardo Terrão
Hello people! I'm trying to retrieve an image of the mysql database, I am trying to restore the image using servlet but I'm not very skilled with it ... I code returns the following error: java.lang.IllegalStateException: Committed at org.mortbay.jetty.Response.resetBuffer(Response.java:9

Exporting Instance Methods to Hand-Written Javascript

2012-04-02 Thread Geoffrey Wiseman
I have a piece of GWT code that I wanted to invoke from outside handwritten JavaScript. There's an example shown here under "Calling a Java method from Handwritten JavaScript": https://developers.google.com/web-toolkit/doc/latest/DevGuideCodingBasicsJSNI That example uses a static method; I can

GWT Compiler as a stand-alone javascript compiler?

2012-04-02 Thread Transplant
Is there a way to use the GWT Compiler as a stand-alone javascript compiler to optimize/minimize pure javascript? If so, how does it stack up to other javascript compilers? Thanks, -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Re: GWT Compiler as a stand-alone javascript compiler?

2012-04-02 Thread KevMo
I don't know if you can use GWT, but check out Google Closure for javascript optimization/minification. https://developers.google.com/closure/compiler/ -Kevin On Monday, April 2, 2012 3:03:42 PM UTC-7, Transplant wrote: > > > Is there a way to use the GWT Compiler as a stand-alone javascript >

Re: GWT Compiler as a stand-alone javascript compiler?

2012-04-02 Thread Alan Leung
GWT does a very good job at optimizing Java into Javascript. However, the Closure Compiler team focus a lot of just pure Javascript optimization / minifications. In fact, the GWT team has been looking into use Closure Compiler a backend. I have done some surveys on different Javascript compression

Re: Create autobean as RF does it

2012-04-02 Thread JoseM
Is there a way to a ValueProxy from the same type of object that RF would use to make a ValueProxy but outside of a web server. I'm looking to use ProxySerializer to get a string of a ValueProxy and send it via some other means to the browser where I can then serialize it back into a ValueProxy

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-02 Thread Joshua Kappon
Dear Alen. In my opinion, if Google would stop working on it, then GWT's future is unclear. It might be adopted by the contributors and it also might be droped after sometime. The problem is you never know. I personally think it won't be droped any time soon, since Google is heavly vested in it.

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-02 Thread Joshua Kappon
On Monday, April 2, 2012 6:30:14 PM UTC+3, Alan Chaney wrote: > On 04/02/2012 08:19 AM, Joshua Kappon wrote: > > With the rise of the new developers.google.com, and with Google trying > > to rally up developers using Google technologies and products, and the > > rise of Dart and unclear future of

Re: Exporting Instance Methods to Hand-Written Javascript

2012-04-02 Thread Alfredo Quiroga-Villamil
At first glance it seems like: "PreviewPane::imageSelected(Ljava/lang/String;Ljava/lang/String;))" takes two arguments, in this case two Strings. The JSNI error seems to indicate that you are not passing the two arguments as per the method signature. I would think that you would end up with somet