Re: same-origin security restriction

2009-03-03 Thread vladimir.chernis...@gmail.com
I think I found the solution! !Please somebody check this! Steps: 1. run InternetExplorer Tools = Internet Options = Security = Trusted Sites add http://localhost or so to trusted sites (uncheck add only https or so) works only with Windows XP. best regards, Vladimir Chernishov

RE: Div in GWT?

2009-03-03 Thread Joakim Sjöberg
Hi! After some research I have realized that panels are always used J But there is different kinds of panels and some uses TABLES and some uses DIVs am I right about this? We want to make our application more independent from the layout so that we can make different layouts for different

Re: Deploying to a Shared TOMCAT

2009-03-03 Thread Shawn Brown
I want to know if I am understanding this correctly. I outputted GWT.getModuleBaseURL()+/Foo and I get: http://www.celticlock.com//Foo Now if I understand this correctly, the /Foo at the end should be picked up because of the url-pattern/Foo/url-pattern to map to the Servlet-name. And the

Re: gwt development in team

2009-03-03 Thread gops
is there any jit for gwt ? On Mar 3, 11:53 am, gops patelgo...@gmail.com wrote: hi , i have a small team of 7 developers working on gwt. what should be the set up of the project ? .. i.e. version control system , testing etc. Thanks. --~--~-~--~~~---~--~~

Re: Div in GWT?

2009-03-03 Thread Joe Cole
We ended up creating our own classes for more html-like widgets. Div (see the HTML widget implementation to get started, it's actually a div), Span, OL/UL, Heading etc and combinations as needed. I do believe it is the best approach for styling. If you understand html and css you can work around

Re: Google Chrome + KeyboardListener

2009-03-03 Thread Txang
Sorry, i forgot to tell that only fails in Chrome, in IE and FF works well. --~--~-~--~~~---~--~~ 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: How to use SuggestionHandler

2009-03-03 Thread Thomas Broyer
On 2 mar, 18:13, donnysp donn...@googlemail.com wrote: Can anyone tell me if this javadoc is correct?: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g...) yes it is, and it says addEventHandler, not addEventListener.         suggestBox.addEventListener(new

Re: Google Chrome + KeyboardListener

2009-03-03 Thread Thomas Broyer
On 3 mar, 08:40, Txang david.dominguez.marti...@gmail.com wrote:     public void onKeyPress(Widget sender, char keyCode, int modifiers) {         Log.debug(pressed: + keyCode);         if (keyCode == KEY_ENTER) {                     parseCard(...);             }         }         else

Re: Deploying to a Shared TOMCAT

2009-03-03 Thread Thomas Broyer
On 3 mar, 00:54, Sean slough...@gmail.com wrote: I want to know if I am understanding this correctly. I outputted GWT.getModuleBaseURL()+/Foo and I get:http://www.celticlock.com//Foo How about GWT.getModuleBaseURL()+Foo (without the slash, which is already in moduleBaseURL) ?

RE: Div in GWT?

2009-03-03 Thread Joakim Sjöberg
Hi Joe! Thanks for your answer, I have some questions you might be able to answer. 1. Is there any link to this HTML widget Implementation, I have looked but I cannot find it. 2. Could there be a possibility to create site templates that consist of DIVs instead, and manipulate the Content

Re: How to use SuggestionHandler

2009-03-03 Thread donnysp
On 3 Mar, 09:37, Thomas Broyer t.bro...@gmail.com wrote: yes it is, and it says addEventHandler, not addEventListener. Oh no! That's embarrassing. I spent a good hour looking at that :( I'm going to give up programming on a Sunday afternoon. (In fact I should probably give up altogether.) If

Problem in running JUnit testcases in GWT

2009-03-03 Thread Ajay Garg
Hi all. I am wanting to write testcases for code, that is purely client side (i.e. the code is converted into javascript, and there are no RPC calls), using JUnit. I have visited the link

Re: Google Chrome + KeyboardListener

2009-03-03 Thread Txang
Thanks Thomas, using onKeyDown worked perfectly! --~--~-~--~~~---~--~~ 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

Re: Openfire and gwt

2009-03-03 Thread sutarsa giri
i tought you will not able to solve this problem about chat just with GWT. please consider to use commet to solve problem about chat regards, gede sutarsa 2009/3/2 frankCostello smar...@gmail.com Hi, In openfire I have registred 2 user : user1 and user2 When the users connect to openfire

Re: how to resize window to so that embedded Frame has no scrollbars?

2009-03-03 Thread sutarsa giri
i prefer to let iframe have scrollbar, while main window scrollbar hiden. to achieve this you need to put windows resize handler, so size of the frame always match with and the height of main window. if you want to use main window scrollbar it's a bit trouble some.you need to set the height of

Re: Jsni Help

2009-03-03 Thread mP
Your snippet to create a New Person instance in jsni will not work. Whilst the compiler will not report a compile time error,your code will fail whenver some java code attempts to do anything with that instance. There are many wrong assumptions wwirh your advice... @ Properties and method names

Re: Jsni Help

2009-03-03 Thread Thomas Broyer
On 3 mar, 14:07, mP miroslav.poko...@gmail.com wrote: Your snippet to create a New Person instance in jsni will not work. Whilst the compiler will not report a compile time error,your code will fail whenver some java code attempts to do anything with that instance. There are many wrong

Re: Setting up GWT on Websphere Development Studio Client for iSeries

2009-03-03 Thread TerriLyn
That's not a solution that'll work for me, given that I have to do it all free-ware. My company has frozen purchasing and other things due to the economic climate. Any other ideas? On Mar 2, 7:05 pm, TBirch tjfbi...@bellsouth.net wrote: I use gwt designer and just included wdsc as one of the

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread Arthur Kalmenson
Hmm, have you checked the classpath you use for your GWTCompile and hosted mode launching in Ant? Make sure they're the same. Hosted mode works fine with JPA annotations here (although we do use Maven). It looks like it might be a classpath issue. -- Arthur Kalmenson On Mon, Mar 2, 2009 at

Re: How to remove a GWT widget from the Dom using native javascript?

2009-03-03 Thread Darkflame
perfect! mywidg...@com.darkflame.client.mywidgetclass::hide()(); Did the trick nicely. On Mar 1, 1:45 pm, Daniel Kurka kurka.dan...@googlemail.com wrote: read up on calling java code from javascript:http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=goog... 2009/3/1 Darkflame

Re: gwt development in team

2009-03-03 Thread Arthur Kalmenson
This is the same question that you would need to answer for any Java project. In our particular case we use Subversion, Eclipse, TestNG/JUnit, Spring, Hibernate, Maven, and so forth. There are many different stacks out there to consider. -- Arthur Kalmenson On Tue, Mar 3, 2009 at 1:53 AM,

Re: Take Offine : Why Gears When Save As... works fine (on Chome/Firefox) ??

2009-03-03 Thread combi
Thanks for your answer ! 1) You missed the point. The proposed approches DOES allow to take offline and persist offline-made changes. The approach is based on the fact that when making save as in Firefox or Chrome, the content of the DOM **at the time of saving** is persisted, not the DOM

Re: Deploying to a Shared TOMCAT

2009-03-03 Thread John Ivens
This is my web.xml file... this might help you out. See if you can map your call to like parameters in my call... ?xml version=1.0 encoding=ISO-8859-1? web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

How can I combine 2 projects into one with gwt 1.6+?

2009-03-03 Thread branflake2267
Could anybody help me figure out how to combine 2 project into one with gwt 1.6+ and build them in the War folder using the ant system that is already configured? 1. I figured out how to add the included project into the class path in ecplise to work in hosted mode. - Buildpath classpath

Re: Models not added to Serialization Policy

2009-03-03 Thread CMB
What version of GWT are you using? I seem to have the same problem with 1.6.1 I've tried both IsSerializable and Serializable, added the default constructor and tried do simplify as much as I can my serializable object. (though I didn't try source path=server/model/, what is that for and where

Re: Need fix for GWT 1.6 Jars in Maven Repo

2009-03-03 Thread Garey
I am also having this issue. The workaround isn't hard, but it's annoying and I would rather not do it for every release. Thanks, g On Feb 26, 10:49 am, Will wgomes.ku...@gmail.com wrote: Not sure who is reposponsible for the jars deployed to maven, but I am having issues with the versions

DOM.eventGetCurrentEvent() does not work on Chrome and Safari

2009-03-03 Thread maszuari
What I want to do is, whenever user pressed left click mouse the browser will go to different page. If user pressed right click mouse, it won't go anywhere or do anything. I use MouseListener to get mouse events and DOM.eventGetCurrentEvent(). Below are snippet of my code: public void

No source code is available for type java.io.File; did you forget to inherit a required module?

2009-03-03 Thread raghu prashanth k b
Hi...I am new to GWT and i'm trying to develop a small application...but here i need to open a directory and count the no.of files in it...I'm doing it as follows: File dir = new File(file); String[] pages = dir.list(); int count =

Re: No source code is available for type java.io.File; did you forget to inherit a required module?

2009-03-03 Thread Shawn Brown
I have imported java.io.File but the GWT compiler gives me the following error.plz help               No source code is available for type java.io.File; did you forget to inherit a required module? How are you compiling? shell script or ant build? In either case, your .java file

Re: No source code is available for type java.io.File; did you forget to inherit a required module?

2009-03-03 Thread Isaac Truett
Doesn't matter. You won't be able to use java.io.File on the client. You can't access the client's file system without using an Applet, Flash, ActiveX, or other component to which the user has granted permission. On Tue, Mar 3, 2009 at 11:57 AM, Shawn Brown big.coffee.lo...@gmail.com wrote: I

Re: No source code is available for type java.io.File; did you forget to inherit a required module?

2009-03-03 Thread Lothar Kimmeringer
raghu prashanth k b schrieb: Hi...I am new to GWT and i'm trying to develop a small application...but here i need to open a directory and count the no.of files in it...I'm doing it as follows: File dir = new File(file); String[] pages = dir.list();

Call A external server

2009-03-03 Thread frankCostello
Hi, I want to make an application that call an external Server. how do I call an external server with Http? It's possible to use a Socket? I see the google socket (Sockets.jar) but I don't know how do I comunicate with the server! --~--~-~--~~~---~--~~ You

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread noon
Some more precisions, since this is a recurrent issue related in Gilead forum : - The offending annotation is *always* CascadeType. The code source is the same as regular JPA annotation. - Not a classpath issue : I repoduced the issue with the JAR on classpath, and no way to tell Hosted

onLoad() never invoked using Opera

2009-03-03 Thread Salman Hemani
This is a strange one. I am using GWT 1.5.3 and Opera 9.6 and onLoad() is never actually invoked. Works in all other browsers (IE6 and 7 8, Safari, Chrome). Any suggestions? Please let me know if someone has come across this. --~--~-~--~~~---~--~~ You received

How to create a GWT Module

2009-03-03 Thread Techer
Hi All, I'm doing 2 different projects which share some functionality. So I want to separate the common functionality and develop it as a module and use that module in both the projects. So the steps are 1) Develop the module and package it as jar file 2) Place it in classpath of the required

Re: GWT project creation indefinetly creates folder recursively

2009-03-03 Thread quinn.rob...@gmail.com
I have recently experienced the same problem, and have filed an issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3429q=recursive This is very frustrating for people like me who are evaluating the possible use of this technology and yet cannot even get started due to some bug

Re: Models not added to Serialization Policy

2009-03-03 Thread CMB
I'll include the error logs although I think they are more or less the same as examples on the net connected with ex [java] 2009-03-03 18:01:38.271:/:WARN: Exception while dispatching incoming RPC call [java] com.google.gwt.user.client.rpc.SerializationException:

Re: Call A external server

2009-03-03 Thread Jason Essington
The first and easiest to explain is to proxy through the server you loaded the host page from. this prevents you from violating the Same Origin Policy. The second, and more complicated method is to inject a script tag that loads some sort of javascript object from the target server. This

Re: GWT project creation indefinetly creates folder recursively

2009-03-03 Thread Eric Ayers
Thanks for reporting the details around the bug - that's a huge help. On Tue, Mar 3, 2009 at 12:29 PM, quinn.rob...@gmail.com quinn.rob...@gmail.com wrote: I have recently experienced the same problem, and have filed an issue:

Re: How to create a GWT Module

2009-03-03 Thread Ian Bambury
In Eclipse - right click in the package explorer - Export... - Java - JAR Make sure you export source (third checkbox in my version) Make sure you Add directory entries (6th cb in my version) That should be it. Ian http://examples.roughian.com 2009/3/3 Techer forums.soluti...@gmail.com Hi

Re: Announcing GWT 1.6 Milestone 2

2009-03-03 Thread Sumit Chandel
Hi Ian, Thanks for bringing this back up on the radar. I've updated Issue #1937 so that the team can take another look at the issue and consider it for inclusion for 1.6. Given that the HTMLPanel solution no longer works, this should probably be fixed for 1.6. The issue log should be seeing some

Re: Announcing GWT 1.6 Milestone 2

2009-03-03 Thread Sumit Chandel
Hello Ian, Agreed, this doesn't sound like a showstopper, but still should be investigated for a fix in a future release if not in 1.6. I couldn't find this issue reported on the Issue Tracker. Feel free to add this to the tracker - the details provided in the message below should be enough for

Re: How to structure complier generated resources in customized directories

2009-03-03 Thread Sumit Chandel
Hi tapas, The technique Rosh described above should help you get where you need to go. One last thing that I thought would be useful to mention is that you can place images or CSS files or any other static resources in paths that will be respected in the compile output directory by placing these

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-03 Thread Matt Bishop
This is pretty cool. You should try converting the data in GWT instead of JSNI. It could go straight to bytes, or at least it could take advantage of GWT's StringBuilder speed. On Mar 1, 4:57 pm, Kevin Tarn kevn.t...@gmail.com wrote: Forgot to tell: getImageData method convert raw data to a

Re: Portable project structure?

2009-03-03 Thread Sumit Chandel
Hi Dimitris, I would strongly recommend looking into Ant or Maven for setting up your project build system. These build tools have been created to explicitly handle cases like the one you describe above, as well as to simplify the build process in general. You can get familiar with either of

exception handling

2009-03-03 Thread seven.reeds
Hi, I'm still a java newbie. I have an exception handling question. Is there a generic exception handler? By generic I mean if an exception is thrown somewhere deep in the code it can be caught higher-up in the code as a last ditch measure?

Error Gwt Sockets

2009-03-03 Thread frankCostello
Hi, I try to use Sockets.jar, but when I compile, give me an error: [ERROR] Line 653: Type 'long' may not be returned from a JSNI method For additional info see: file:/Users/smartsr/Downloads/gwt- mac-1.5.3/doc/helpInfo/longJsniRestriction.html [ERROR] Line 714: Parameter 'value':

Help : Android and gwt!

2009-03-03 Thread frankCostello
Hi, How do I communicate with between Android and gwt? for example I want send a String from gwt's apps to android's applications!! How do I do?? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: Portable project structure?

2009-03-03 Thread Ben Tilford
The GWT plugin for Maven makes things like the location of the GWT compiler standard, it downloads the assembly to a local repository where Maven stores everything. Since you need Maven to build the project and it already knows where it put the GWT assembly it makes things easy, you could even

How to draw a network map in a GWT app

2009-03-03 Thread JoeB
Hi all, Does anybody have suggestions for drawing a network map in a GWT app? The requirement I'm trying to satisfy is to visually depict the relationships between physical and logical elements in the network. This means I need to show icons for the elements and connect them with lines and

Re: GWT 1.6 works on 64 bits?

2009-03-03 Thread Arend van der Veen
Hi, I currently am running 1.5.3 on 32-bit on Ubuntu but need to upgrade to 64-bit Ubuntu. When I install java Ubintu now installs a 64-bit version. I have found that I can compile to JS in 64-bit but am not able to run hosted. I have read that I should install a 32-bit version of java but

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread grishag
It's strange but I'm not running with the embedded Tomcat. I used the noserver option and deployed my code to a standalone server (Tomcat 6.0.18). So according to your last comment it should be working. Could you please post a link to the Gilead forum you've mentioned? I just tried to find it

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread grishag
It's strange but I'm not running with the embedded Tomcat. I used the noserver option and deployed my code to a standalone server (Tomcat 6.0.18). So according to your last comment it should be working. Could you please post a link to the Gilead forum you've mentioned? I just tried to find it

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-03 Thread Thomas Broyer
On 3 mar, 23:47, Kevin Tarn kevn.t...@gmail.com wrote: Yes. That's what I like to do. Could you give an example of retreiving canvas raw data by GWT instead of JSNI? Get our JSNI methods the shorter you can. Here, just make it get oData.data and return it as a JsArrayNumber; then do all the

Re: exception handling

2009-03-03 Thread Thomas Broyer
On 3 mar, 22:40, seven.reeds seven.re...@gmail.com wrote: Hi, I'm still a java newbie.  I have an exception handling question.  Is there a generic exception handler?  By generic I mean if an exception is thrown somewhere deep in the code it can be caught higher-up in the code as a last

Re: Help : Android and gwt!

2009-03-03 Thread Lothar Kimmeringer
frankCostello schrieb: How do I communicate with between Android and gwt? The Android-SDK is a Plugin for Eclipse and the programming language used for implementing applications is Java. So to communicate between an Android Application and a server you don't need GWT, a simple servlet should

DeckPanel causes Widget to disappear

2009-03-03 Thread rjcarr
I have a complicated widget that I'm trying to add to a DeckPanel. When the DeckPanel is rendered the widget is not shown, there's just a thin line a pixel or two high of where it is supposed to be. Other widgets added to the deck are displayed fine. Taking away the deck the widget displays

Re: DeckPanel causes Widget to disappear

2009-03-03 Thread Robert J. Carr
Hi Ian ... thanks for the response. Let me put it in code then: Widget w = new MyCompilicatedWidget(); DeckPanel deck = new DeckPanel(); deck.add(w); deck.showWidget(0); RootPanel.get(main).add(deck); // This doesn't work ... shows up as a single black line, however: Widget w = new

Re: DeckPanel causes Widget to disappear

2009-03-03 Thread Ian Bambury
Try adding the deck to the rootpanel before you add the widget to it. I'm not saying this is definitely it, but as a general rule, I try to build up widgets as I nest them, from the outside in, adding them to the DOM as soon as possible. The reason being that if it is not connected, then 100% of

How can I use gwt for my project

2009-03-03 Thread seawave
My project has completed a few days ago,but I don't satisfied about the web pages.So I want to use gwt to let the pages more beautiful.But I find I just can use in one page,GWT just have one Entry-point.I hava a lot of pages,I want to let every page have one Entry-point,what should I do?

Re: DeckPanel causes Widget to disappear

2009-03-03 Thread Robert J. Carr
Great suggestion, but unfortunately it didn't help. The item I add to the deck is still hidden. Thanks though. Robert On Tue, Mar 3, 2009 at 5:01 PM, Ian Bambury ianbamb...@gmail.com wrote: Try adding the deck to the rootpanel before you add the widget to it. I'm not saying this is

Re: DeckPanel causes Widget to disappear

2009-03-03 Thread Ian Bambury
Do you have a (non-)working example you could post (or send privately)? Ian http://examples.roughian.com 2009/3/4 Robert J. Carr rjc...@gmail.com Great suggestion, but unfortunately it didn't help. The item I add to the deck is still hidden. Thanks though. Robert On Tue, Mar 3, 2009

Re: Models not added to Serialization Policy

2009-03-03 Thread CMB
Also, does the class necessarily have to stay in the same jar? Also what if it references a (Serializable) class but in a different jar that's on the classpath? On Mar 4, 3:36 am, CMB schrepf...@gmail.com wrote: I've figured what my problem was, I've put the DTO into another package parallel

How do you remove a handler?

2009-03-03 Thread Ian Bambury
History lets you add one, but how do I get rid of it? Ta, Ian http://examples.roughian.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: How do you remove a handler?

2009-03-03 Thread Jason Morris
Hi Ian All of the add*Handler methods return a HandlerRegistration object, you keep a reference to it, and then invoke HandlerRegistration.removeHandler() when you want to remove it. I wasn't to sure of whether I liked it or not at first, but it does make automated removal of Handlers on

Please help with GWT 1.6 oophm

2009-03-03 Thread beelzabub
I'm trying to get OOPHM working with GWT 1.6. I've downloaded built the code. I use webAppCreator I have my eclipse project set up, the plugin installed in firefox. I removed the platform specific jar with gwt-dev-oophm.jar changed the startup class from HostedMode back to GWTShell. When

which tools you have used for development of GWT?

2009-03-03 Thread shiren1118
which tools you have used for development of GWT? I'm puzzled --~--~-~--~~~---~--~~ 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

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-03 Thread Kevin Tarn
Unfortunately, using JsArrayInteger is very slow: public byte[] getBitmap() { //String str = getImageData(0, 0, width, height); //byte[] ar = new byte[str.length()]; //for (int i=0; iar.length; i++) //ar[i] = (byte)((int)str.charAt(i) 0xff); //

Re: Please help with GWT 1.6 oophm

2009-03-03 Thread beelzabub
I think I got it working. I'll explain below what I did to get it working, but now I have another problem, I was hoping someone could help guide me through. When I hit the tomcat server with firefox, I get: 00:00:23.136 [ERROR] Unable to find 'Hospital/html.gwt.xml' on your classpath; could be

gmane.org.google.gwt

2009-03-03 Thread Thufir
I don't see anything at: http://gmane.org/info.php?group=gmane.org.google.gwt indicating why a post would bounce. However, the address below seems screwy, maybe a setting is off? I think it's: You might have spelled or formatted the group name incorrectly. Hello

Re: DeckPanel causes Widget to disappear

2009-03-03 Thread Joe Cole
I think the problem may be that you are not using the deckpanel add methods: DeckPanel.add(String text, Widget widget, boolean asHTML) Can you try that? On Mar 4, 1:44 pm, Robert J. Carr rjc...@gmail.com wrote: Hi Ian ... thanks for the response. Let me put it in code then: Widget w = new

Re: DeckPanel causes Widget to disappear

2009-03-03 Thread Robert J. Carr
Hi Joe- What API are you looking at? I only see one DeckPanel.add() method: void add(Widget w) Adds the specified widget to the deck. I've checked both 1.5.2 and 1.5.3. There's an inherited add() method, but it still doesn't match your signature. Are you thinking of TabPanel? On Tue,

EntryPoint onModuleLoad called multiple times over course of application lifetime

2009-03-03 Thread Brian Ferris
I have a relatively complex GWT application composed of my main application EntryPoint and a number of library modules. I had some printlns in the EntryPoint for my application and the libraries and I noticed that they are called multiple times over the course of the application lifetime in

[gwt-contrib] Re: Code Review: Updated SliderBar to use the new event handling

2009-03-03 Thread Uwe Maurer
I submitted this patch: http://code.google.com/p/google-web-toolkit-incubator/source/detail?r=1553 Uwe On Mar 2, 3:14 pm, Emily Crutcher e...@google.com wrote: LGTM On Mon, Mar 2, 2009 at 7:49 AM, Uwe Maurer uwe.mau...@google.com wrote: Hi, I moved the SliderBar to

[gwt-contrib] Re: Code Review: ValueSpinner, inject style only once

2009-03-03 Thread dflorey
lgtm As I'm not working on the incubator trunk it may take some time for me to commit the patch. Anybody else? Daniel On 2 Mrz., 14:35, Uwe Maurer uwe.mau...@google.com wrote: Hi, I noticed that the ValueSpinner has code in the constructor which injects the style (default or user

[gwt-contrib] Re: Code Review: ValueSpinner, inject style only once

2009-03-03 Thread Uwe Maurer
Thanks for review. I submitted it: http://code.google.com/p/google-web-toolkit-incubator/source/detail?r=1554 Thanks, Uwe On Mar 3, 11:55 am, dflorey daniel.flo...@gmail.com wrote: lgtm As I'm not working on the incubator trunk it may take some time for me to commit the patch. Anybody

[gwt-contrib] [google-web-toolkit commit] r4907 - trunk/tools/api-checker/config

2009-03-03 Thread codesite-noreply
Author: amitman...@google.com Date: Tue Mar 3 07:49:29 2009 New Revision: 4907 Modified: trunk/tools/api-checker/config/gwt15_16userApi.conf Log: The file has to be excluded from the new Api. Completes the fix in c4906 to c4905. Modified:

[gwt-contrib] [google-web-toolkit commit] r4906 - trunk/tools/api-checker/config

2009-03-03 Thread codesite-noreply
Author: amitman...@google.com Date: Tue Mar 3 07:43:14 2009 New Revision: 4906 Modified: trunk/tools/api-checker/config/gwt15_16userApi.conf Log: Update to the config file due to John's Runtime locales stuff (r4905) Modified: trunk/tools/api-checker/config/gwt15_16userApi.conf

[gwt-contrib] gen2 logging : No source code is available for typeServerBindingsImpl

2009-03-03 Thread nicolas.deloof
Hi I plan to migrate from gwt-log to gen2 logging API I get a compilation issue : [ERROR] Errors in 'file:/D:/projets/bios/bios-relation-client/gwt- incubator/target/classes/com/google/gwt/gen2/logging/impl/shared/ ProxyServerBindingsImpl.java' [ERROR] Line 27: No source code is available for

[gwt-contrib] [google-web-toolkit commit] r4909 - trunk/tools/api-checker/config

2009-03-03 Thread codesite-noreply
Author: amitman...@google.com Date: Tue Mar 3 08:40:09 2009 New Revision: 4909 Modified: trunk/tools/api-checker/config/gwt15_16userApi.conf Log: Added some Api changes to the whitelist after confirming with John. Patch by: amitmanjhi Modified:

[gwt-contrib] RR: GWTCanvas bug fixes and cleanup.

2009-03-03 Thread Jaime Yap
I have a patch up on gwt-code-reviews against Incubator trunk at r1551 that needs review. This patch addresses issues 237, 238. http://code.google.com/p/google-web-toolkit-incubator/issues/detail?id=237 http://code.google.com/p/google-web-toolkit-incubator/issues/detail?id=238 As well as adds

[gwt-contrib] Re: gen2 logging : No source code is available for typeServerBindingsImpl

2009-03-03 Thread nicolas de loof
Please ignore, I just discovered http://google-web-toolkit-incubator.googlecode.com/svn/trunk/super/com/google/gwt/gen2/logging/translatable/ Cheers, Nicolas On Tue, Mar 3, 2009 at 5:15 PM, nicolas.deloof nicolas.del...@gmail.comwrote: Hi I plan to migrate from gwt-log to gen2 logging API I

[gwt-contrib] [google-web-toolkit commit] r4910 - in releases/1.6/user: src/com/google/gwt/user/client/impl test/com/google/gwt/user/client

2009-03-03 Thread codesite-noreply
Author: jlaba...@google.com Date: Tue Mar 3 11:51:52 2009 New Revision: 4910 Modified: releases/1.6/user/src/com/google/gwt/user/client/impl/DOMImplIE6.java releases/1.6/user/test/com/google/gwt/user/client/EventTest.java Log: Fixed a bug where IE would synthesize extra click events on

[gwt-contrib] Re: code review requested for 1.6 -- add LocaleInfo methods for forward compatibility with trunk

2009-03-03 Thread Scott Blum
LGTM. On Tue, Mar 3, 2009 at 3:05 PM, John Tamplin j...@google.com wrote: Support for runtime locales was recently added to trunk, which requires user code to not call GWT.create on NumberConstants/DateTimeConstants in order to get the additional functionality. The existence of these

[gwt-contrib] [google-web-toolkit commit] r4911 - releases/1.6/user/test/com/google/gwt/user/client

2009-03-03 Thread codesite-noreply
Author: jlaba...@google.com Date: Tue Mar 3 11:53:44 2009 New Revision: 4911 Modified: releases/1.6/user/test/com/google/gwt/user/client/EventTest.java Log: Added comments to EventTest.testDoubleClickEvent() to explain why IE behavior is expected to be different. Patch by: jlabanca

[gwt-contrib] [google-web-toolkit commit] r4912 - releases/1.6/user/src/com/google/gwt/i18n/client

2009-03-03 Thread codesite-noreply
Author: j...@google.com Date: Tue Mar 3 13:18:28 2009 New Revision: 4912 Modified: releases/1.6/user/src/com/google/gwt/i18n/client/LocaleInfo.java Log: Add methods to LocaleInfo for forwards compatibility with trunk changes. These should be used instead of directly GWT.create'ing

[gwt-contrib] Re: code review requested for 1.6 -- add LocaleInfo methods for forward compatibility with trunk

2009-03-03 Thread John Tamplin
On Tue, Mar 3, 2009 at 4:00 PM, Scott Blum sco...@google.com wrote: LGTM. Thanks, committed at r4912. -- John A. Tamplin Software Engineer (GWT), Google --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2009-03-03 Thread codesite-noreply
Comment by mar...@myd0.de: I just played a bit with the gwt-maven-plugins from the Codehaus Mojo. Hosted Mode works after running `mvn war:inplace`, but that's not a very elegant solution. It would be better if there was a command line option to pass extra classpath folders to Jetty. The

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

2009-03-03 Thread codesite-noreply
Comment by mar...@myd0.de: The extraClasspath is configurable with web-jetty.xml. But the file isn't loaded. Is this a limitation of GWT or a bug? For more information: http://code.google.com/p/google-web-toolkit/wiki/WAR_Design_1_6 --~--~-~--~~~---~--~~

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

2009-03-03 Thread codesite-noreply
Comment by mar...@myd0.de: Got web-jetty.xml working. Hosted Mode still misses to classes ... :-/ With an external jetty everything works fine... For more information: http://code.google.com/p/google-web-toolkit/wiki/WAR_Design_1_6 --~--~-~--~~~---~--~~

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

2009-03-03 Thread codesite-noreply
Comment by mar...@myd0.de: Just tested with Spring: ClassNotFoundException Then I moved the classes in the GWT samples into a external target folder and copied my web-jetty.xml into war/WEB-INF. Started the Hosted mode with Ant: Everything works fine. Seems like a classpath problem with

[gwt-contrib] [google-web-toolkit commit] r4914 - releases/1.6/user/src/com/google/gwt/user/tools

2009-03-03 Thread codesite-noreply
Author: sco...@google.com Date: Tue Mar 3 15:38:02 2009 New Revision: 4914 Added: releases/1.6/user/src/com/google/gwt/user/tools/README.txtsrc (contents, props changed) Modified: releases/1.6/user/src/com/google/gwt/user/tools/WebAppCreator.java Log: Adds a README file to

[gwt-contrib] [google-web-toolkit commit] r4915 - releases/1.6/user/src/com/google/gwt/user/tools

2009-03-03 Thread codesite-noreply
Author: sco...@google.com Date: Tue Mar 3 15:40:05 2009 New Revision: 4915 Modified: releases/1.6/user/src/com/google/gwt/user/tools/WebAppCreator.java Log: Try to open the source file BEFORE opening the output file, otherwise a failure leaves an empty 0-length output file, which is a

[gwt-contrib] Fix serializability of StackTraceElement

2009-03-03 Thread rjrjr
Reviewers: robertvawter, Description: When StackTraceElement became emulated and therefore useful, it stopped being serializable. This patch introduces a custom field serializer for it, and extends existing tests to cover it. Please review this at http://gwt-code-reviews.appspot.com/9802

[gwt-contrib] Re: Fix serializability of StackTraceElement

2009-03-03 Thread bobv
Otherwise, LGTM. http://gwt-code-reviews.appspot.com/9802 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r4916 - in releases/1.6: eclipse/tools/benchmark-viewer tools/benchmark-viewer/src/com/google/gwt...

2009-03-03 Thread codesite-noreply
Author: sco...@google.com Date: Tue Mar 3 21:04:17 2009 New Revision: 4916 Added: releases/1.6/eclipse/tools/benchmark-viewer/.checkstyle Modified: releases/1.6/eclipse/tools/benchmark-viewer/.project