GPolyline not properly removed from map upon removeOverlay

2008-11-18 Thread Axel
I'm trying to dynamically highlight a section of a polyline by adding and removing another one on top, depending on the mouse position. The effect I'm getting is that some of the polylines seem to stack up on top of each other. See http://www.moto-maps.de/shot.jpg. I thought I may not be

how to work with xs-linker in gwt

2008-11-18 Thread Manish Kumar
Hi, While working to make a call to GWT from a eternal HTML using JSNI method , I am trying to compile our code using xs-linker. I don't understand why this does not work. I made an entry in for xs-linker in -gwt.xml then compile the our code in hosted browser. Can anybody please hint me what

Re: how to work with xs-linker in gwt

2008-11-18 Thread eggsy84
Hi there To compile the application for Cross site you simply add add-linker name=xs / to your gwt.xml file. In GWT 1.5 this now doesn't create xs-nocache.js it simply creates the javascript as normal but it will be the xs version. (Took me a while to realise this as well) I had to do the

Re: how to work with xs-linker in gwt

2008-11-18 Thread eggsy84
Also I don't think (at the time of writing) that GWT hosted mode browser has Cross Site mode functionality so you may have to keep compiling your widget and testing within a browser. Or simply set up a test environment (tomcat locally or something) on your local machine. Eggsy On Nov 18,

Re: Best way to customize nocache logic...?

2008-11-18 Thread Thomas Broyer
On 18 nov, 01:44, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'd like to add some of my own logic to the nocache file in order to implement a custom localization scheme.  I'm aware of the kinds of things you can do with generators and linkers, but it's not clear to me if there is some simple

Re: Body Background disappear

2008-11-18 Thread KevinF
Hi Michi, I've been trying to solve this same exact problems for days! If anyone can shine some light on why the background images for the BODY tag isn't working, please let us know. Thanks! On Nov 16, 2:41 am, Michi_de [EMAIL PROTECTED] wrote: Hi! I've a strange bug when using the GWT:

Hello~. How about this realtime chatting program by using GWT 1.5 ?

2008-11-18 Thread Macula
AKA Tost Chatting Programming. a href=http://tost.rontab.com; target=_blankHttp://tost.rontab.com /abr / p iframe src=http://tost.rontab.com/com.rontab.tost.chat.Tost/tost.html? room=Bake width=600 height=500 frameborder=0/iframe --~--~-~--~~~---~--~~ You

Can't figure saving out.

2008-11-18 Thread Loki
Perhaps my brain is just fried-- the longer I code, the less sense coding seems to make to me, so maybe I just need a break, but I'll list my problem just in case I'm wrong. Okay, so I have a setup where a user enters data into a bunch of various textboxes, and there's a button labeled Save

java.lang.ref.* in GoogleWebToolkit ?

2008-11-18 Thread Garo.Garabedyan
http://garabedyan.wordpress.com/2008/11/18/javalangref-in-googlewebtoolkit/ Is java.lang.ref.* functioning in GWT? I come to an idea that java.lang.ref.* is necessary to enable proper garbage collection while implementing the Observer pattern in Model View Controller.

Re: auto expand till selected TreeItem in Tree

2008-11-18 Thread yongwei
i got the same issue. you can use gwt-ext to have this feature On Nov 17, 1:29 pm, ArunDhaJ [EMAIL PROTECTED] wrote: Hi All, I've a tree with some set of TreeItems within it. When I programmatically set a TreeItem as selected, the Tree is not expanding its view till the selected TreeItem.

Re: Observer pattern on this design, yes or no/how and why?

2008-11-18 Thread francescoNemesi
You use GWTx http://code.google.com/p/gwtx to use PropertyChangeSupport events. If used cleverly this allows event handling among various modules, i.e. a module could send a PropertyChangeEvent of a given named property and another module could listen for it and execute accordingly. Just an

Re: Cookies in hosted mode won't go away

2008-11-18 Thread Eros
On Nov 17, 7:21 pm, yunhui song [EMAIL PROTECTED] wrote: Cookies.removeCookie(userId) doesn't work  here too. I use expire time to remove it, it works. Great, thanks for the tip! E --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: auto expand till selected TreeItem in Tree

2008-11-18 Thread gregor
see: http://code.google.com/p/google-web-toolkit/issues/detail?id=1783can=1q=ensureSelectedItemVisible the answer is supposed to be: myTree.ensureSelecteditemVisisble(); but it doesn't always work - see bug report work around for how to solve that. regards gregor On Nov 18, 7:16 am, yongwei

Re: java.lang.ref.* in GoogleWebToolkit ?

2008-11-18 Thread Jason Morris
You can't use java.lang.ref on the client side, because JavaScript has no notion of weak, soft, or phantom references. You can however use the java.lang.ref package on the server. If you need to release objects on the client side, it is best to do so by hand when they are no longer in use.

Re: authentication in GWT

2008-11-18 Thread olivier nouguier
Hi Litty, I've played with Spring security GWT at http://code.google.com/p/net-orcades-spring/ If you're confident with Spring (Security) GWT the lack of documentation won't block you :-/ On Tue, Nov 18, 2008 at 12:52 PM, Litty Preeth [EMAIL PROTECTED] wrote: Hi All, What should be the

Re: Observer pattern on this design, yes or no/how and why?

2008-11-18 Thread gregor
The issue is not having a separate page or a pop up dialog box - it's having an actual separate browser window or browser tab within the same application that causes the trouble. There are a number of ways to achieve the same objective that are more web style, e.g. 1) Use a DialogBox. There are

Re: missing images in IE

2008-11-18 Thread [EMAIL PROTECTED]
Hi Manik, in Firefox I can see the picture. On Nov 18, 5:20 am, Manik Chand [EMAIL PROTECTED] wrote: Sorry mon3y,  this reply is for Rehek.michal On Tue, Nov 18, 2008 at 9:48 AM, Manik Chand [EMAIL PROTECTED] wrote: Hi mon3y, try to open in Firefox and write us the differences you

Re: authentication in GWT

2008-11-18 Thread Schimki86
Is there an example how to start up with Spring (ACEGI / Spring Security) GWT? What and where I have to configure Spring? I want to implement a User- Login too. Can someone attach an example here in Google Groups? 2008/11/18 olivier nouguier [EMAIL PROTECTED] Hi Litty, I've played with

Re: authentication in GWT

2008-11-18 Thread Litty Preeth
But I am not using Spring... :( So any other ideas??? On Tue, Nov 18, 2008 at 5:29 PM, olivier nouguier [EMAIL PROTECTED] wrote: Hi Litty, I've played with Spring security GWT at http://code.google.com/p/net-orcades-spring/ If you're confident with Spring (Security) GWT the lack of

Re: Can't figure saving out.

2008-11-18 Thread alex.d
If all those various textboxes are in the same class then you just have to make them PRIVATE - not global. If they are in other Classes then you have to make them PUBLIC(bad style) or provide a bunch of public GET/SET Methods(good style). Another way is to declare them (all those various

Re: Paths Problems? RPC Serialization? HostPageBaseURL?

2008-11-18 Thread Evan Ruff
Oh hey, sorry to mention my environment. I'm running Eclipse 3.1 with Cypal Studio. I've got GWT 1.5.2. The application has always been on 1.5.0 or better, so I don't think I have any outstanding annotation issues or such. Thanks! On Nov 17, 12:47 pm, Evan Ruff [EMAIL PROTECTED] wrote: Hey

Re: authentication in GWT

2008-11-18 Thread Lothar Kimmeringer
Litty Preeth schrieb: But this method has the following weak points: * Some developer may forget to call the checkSession method. So any of you have any better ideas? You can overwrite public String processCall(String payload) throws SerializationException and do the following:

Re: Body Background disappear

2008-11-18 Thread Schimki86
Possibly you can use a div with ID (in your HTML) with width height 100% which has a background- image (as a form of Workaround, but assumedly you have done this long ago ^^) 2008/11/18 KevinF [EMAIL PROTECTED] Hi Michi, I've been trying to solve this same exact problems for days! If

Re: Can't figure saving out.

2008-11-18 Thread Reinier Zwitserloot
Loki, like the compiler error says: make them final. e.g.: final textArea text = new TextArea(); final Button save = new Button(whatever); On Nov 18, 5:29 am, Loki [EMAIL PROTECTED] wrote: Perhaps my brain is just fried-- the longer I code, the less sense coding seems to make to me, so

Re: Body Background disappear

2008-11-18 Thread Reinier Zwitserloot
Try using CSS: body { background-image: url(images/backgrnd.jpg); } On Nov 16, 11:41 am, Michi_de [EMAIL PROTECTED] wrote: Hi! I've a strange bug when using the GWT: my body background=images/backgrnd.jpg seems not to work anymore! I see the background image for a second and when the

Re: Hosted Browser Issue

2008-11-18 Thread Matt Bishop
Try clearing your cookies for localhost. Surprisingly, this has fixed a problem like this in the past for me. If your cookies are too large, Tomcat (in GWT) will not display any content at all. On Nov 17, 10:29 pm, jagadesh [EMAIL PROTECTED] wrote: iam Using Internet Explorer 6. is there any

Re: Body Background disappear

2008-11-18 Thread Ian Bambury
My guess is that you are using a theme. 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

[ANN] SmartGWT 1.0 Released

2008-11-18 Thread Sanjiv Jivan
Hi all,I have just released SmartGWT 1.0. Here is the release announcement : http://www.jroller.com/sjivan/entry/smartgwt_1_0_released Google Code Project Page : http://code.google.com/p/smartgwt/ Showcase Demo : http://www.smartclient.com/smartgwt/showcase/ Javadocs :

Text floats out of TextBox (serious issue!?)

2008-11-18 Thread Schimki86
If I resize my application in compiled mode (Firefox) the TextBox-text floats out of the edit. It occurs when controls e.g. the TextBox change its position (gliding down) because a label with very long text above that control breaks if it is to long. I still can edit the TextBox but the text is

Using GWT to draw line

2008-11-18 Thread Pete Kay
Hi, I wouls like to use GWT to make a very simple drag and drop flow chart object. Is it possible? The part that I can't figure out is how to use GWT to create a LINE that I can use to connect two rectangular images. Any suggestion will be greatly appreciated. Thanks, Pete

Re: Using GWT to draw line

2008-11-18 Thread mok sara
Hello, You can find it out in this link. http://code.google.com/p/gwt-diagrams/ Hope that will help you. Regards, Mok On Tue, Nov 18, 2008 at 10:58 PM, Pete Kay [EMAIL PROTECTED] wrote: Hi, I wouls like to use GWT to make a very simple drag and drop flow chart object. Is it possible? The

Re: Pagination Widget?

2008-11-18 Thread Suri
Hey Isaac, Or could you explain a little more about how to use the TableModel? Thanks Suri On Nov 17, 1:25 pm, Suri [EMAIL PROTECTED] wrote: Hey Isaac, Thanks for that information. Based on that let me know what I have below is correct public class TestTableModel extends TableModelMyBean {

Re: authentication in GWT

2008-11-18 Thread olivier nouguier
I agree with walden in most case ... if classic HTTP auth is enough let HTTP do the job !! But there is IMHO somes points hard to deal with only HTTP (and GWT component of course): * session expiration, because the GWT RPC will fail soon (401). * forbiden because the GWT RPC will fail soon

Re: Pagination Widget?

2008-11-18 Thread Isaac Truett
What do you want to know? The code you posted yesterday won't even compile, so I imagine you haven't actually implemented anything yet. Why don't you at least get to the point where you have some compilable code and then post questions about that code if you can't get it to work the way you want?

Re: authentication in GWT

2008-11-18 Thread olivier nouguier
You could use basic HTTP authentication with a Jaas Module, but it's much much pain then integrating Spring :) On Tue, Nov 18, 2008 at 4:40 PM, Litty Preeth [EMAIL PROTECTED] wrote: Actually my applications authentication is done by a third party. I need to call their API to authenticate. So

Re: Pagination Widget?

2008-11-18 Thread Suri
Hi Isaac, What I want to know is, 1) Where and how does the data actually get loaded into the table. Where is the call that does this? Looking through the PagingScrollDemo code I can't seem to isolate that point from where the data is retrieved remotely and loaded up into a table. i.e what call

Re: Pagination Widget?

2008-11-18 Thread Suri
Right, and that's exactly what I thought. However, looking at the code, I can't see anywhere where the requestRows belonging to the DataSourceTableModel is called. I tried to do a reference hierarchy on it in eclipse and didn't get any results. So that's really where my question is I guess. So if

Re: Pagination Widget?

2008-11-18 Thread Suri
Thanks Isaac. I'm going to try this first and see how it goes. Appreciate the help again. I was aware of the places its called. I think I did the wrong thing by thinking the reference-hierarchy meant its going to show overall calls in the project but for that i'd probably have to choose

Re: Pagination Widget?

2008-11-18 Thread Isaac Truett
You wouldn't call requestRows(). Ever. PagingScrollTable requests rows from the TableModel to display the current page. You don't even need to set the current page yourself, because it defaults to page 1. So just create the table and add it to your page. If you've written your TableModel properly,

Re: Pagination Widget?

2008-11-18 Thread Isaac Truett
DataSourceTableModel lines 114-124 (starting with the Send RPC request for data comment) is where the request for data is sent. When that call returns successfully, the TableModel callback's onRowsReady() method is called. On Tue, Nov 18, 2008 at 11:02 AM, Suri [EMAIL PROTECTED] wrote: Hi

Gwt issue of history token on IE6

2008-11-18 Thread urmila
hi all I use Gwt 1.4.62, eclipse3.3, hibernate,mysql5.5 I am quite new to this. I am doing mail verification code in this I sent an Url to user mail id with history token and userToken. After clicking in this URl user should go to Login page of my application. It works fine in mozilla

'odd' error when DISPLAY not set.

2008-11-18 Thread Ian P. Christian
I suggest this error is a little misleading. I'm not sure if this could be considered a bug, and if so - where the bug actaully lies. export DISPLAY=:0 fixes the problem (the var became unset as I was working in a chroot'ed 32bit env within a 64bit platform) [EMAIL

Re: authentication in GWT

2008-11-18 Thread Ian P. Christian
2008/11/18 Ian P. Christian [EMAIL PROTECTED]: Yes there is a war sample and the project that generate that war (net.orcades.spring-gwt-sample). All is provided in the checkout. It's maven driven. This sample doesn't appear to work correctly 'out of the box'. Sorry, perhaps this would

Re: authentication in GWT

2008-11-18 Thread walden
Let's hear a bit more about that third party API for authentication. Can you post the interface? Is it used for managing the login form, or does it just handle the mapping of usernames to passwords and roles? Depending on your answer, this may not preclude using HTTP authentication *protocol*,

Make RPC call from server?

2008-11-18 Thread str16star
Hi, I'm just getting started with gwt and java, so this is probably quite a simple question. I am building an app that has an RPC service called UserManagement so the server side code is in UserManagementImpl I also have an RPC service called Chat. The ChatImpl class needs to call methods from

Re: authentication in GWT

2008-11-18 Thread walden
Olivier,  * session expiration, because the GWT RPC will fail soon (401).  * forbiden because the GWT RPC will fail soon (403).  * activation of widget when authority is granted. I'm scratching my head wondering what those mean. In my app, RPC's are secure and they don't fail. As for

Re: authentication in GWT

2008-11-18 Thread Ian P. Christian
2008/11/18 olivier nouguier [EMAIL PROTECTED]: Yes there is a war sample and the project that generate that war (net.orcades.spring-gwt-sample). All is provided in the checkout. It's maven driven. This sample doesn't appear to work correctly 'out of the box'. I did a 'source:jar install'

sequence of asynchronous calls

2008-11-18 Thread [EMAIL PROTECTED]
Hi, I've got an application that offers some search capabilities. When you search something, you can click on a Button and this will lead you to open a Tree in the location where the item you searched is. I can make an asynchronous call to a service who gives me the child names of a given node,

Re: Text floats out of TextBox (serious issue!?)

2008-11-18 Thread walden
Can you post a small *plain HTML* sample that reproduces the effect? On Nov 18, 9:54 am, Schimki86 [EMAIL PROTECTED] wrote: If I resize my application in compiled mode (Firefox) the TextBox-text floats out of the edit. It occurs when controls e.g. the TextBox change its position (gliding

Re: Make RPC call from server?

2008-11-18 Thread walden
Factor your server code. Service Impls are Servlets; you don't instantiate them. So take the parts that are needed by Chat (which are probably data access methods, right?), factor those out into a DAO object (not a Servlet), and call that from both impls. On Nov 18, 7:46 am, str16star [EMAIL

Re: sequence of asynchronous calls

2008-11-18 Thread walden
If I were you I'd handle the recursive tree traversal on the server and return a (pruned?) subtree as a response, instead of node-at-a- time. Not only does it simplify async callback management on the client, it also uses the network a lot more efficiently. Walden On Nov 18, 11:26 am, [EMAIL

Re: GXT vs GWT-EXT ?

2008-11-18 Thread Arthur Kalmenson
Ext GWT or GXT as it's called, is GPL v3. Therefore, if you're using GXT version 1.3, then you are using GPL v3 code and you cannot run your web application without releasing the source code to it, or getting a proprietary license. Otherwise you would be violating the GPL license and are opening

Re: authentication in GWT

2008-11-18 Thread Reinier Zwitserloot
HTTP Authentication? Don't make me laugh - it's ridiculous design, and more importantly, users don't get it. at all. They think your app is broken and try to browse away (only they can't, that authentication dialog box is modal). There's also no better security there than what you can do with

Re: [ANN] SmartGWT 1.0 Released

2008-11-18 Thread Tulio Ornelas
I certainly will test! congratulations! 2008/11/18 Sanjiv Jivan [EMAIL PROTECTED] Hi all,I have just released SmartGWT 1.0. Here is the release announcement : http://www.jroller.com/sjivan/entry/smartgwt_1_0_released Google Code Project Page : http://code.google.com/p/smartgwt/ Showcase

Re: Paths Problems? RPC Serialization? HostPageBaseURL?

2008-11-18 Thread Evan Ruff
Hey guys, sorry to be such a bother, but does anyone have any idea how to fix this problem? I'm starting to get Serialization errors and I'm not sure if they're legit or if it is a symptom of my bigger problem. Thanks for any tips! E On Nov 18, 7:59 am, Evan Ruff [EMAIL PROTECTED] wrote: Oh

Caching RPC calls with Servlet Filters

2008-11-18 Thread marcelstoer
In thread http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/7824fc19faeecc32/37e0c085d3c0ccfb?lnk=gstq=rpc+caching#37e0c085d3c0ccfb some of you already discussed certain aspects of RPC caching. I intend to implement caching using a Servlet Filter. However, before even

Re: [ANN] SmartGWT 1.0 Released

2008-11-18 Thread Pavel Byles
This is very nice.Good work. 2008/11/18 Sanjiv Jivan [EMAIL PROTECTED] Hi all,I have just released SmartGWT 1.0. Here is the release announcement : http://www.jroller.com/sjivan/entry/smartgwt_1_0_released Google Code Project Page : http://code.google.com/p/smartgwt/ Showcase Demo :

Re: authentication in GWT

2008-11-18 Thread Rick
To logout from HTTP authentication use: public void logout() { HttpSession session = this.getThreadLocalRequest().getSession(); session.invalidate(); } You can do this in your ServiceImpl class. I kind of agree with Reinier, but might have used language that was less strong.

Re: authentication in GWT

2008-11-18 Thread Johan Lundberg
http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ /johan On 18 Nov, 12:52, Litty Preeth [EMAIL PROTECTED] wrote: Hi All, What should be the best authentication ans session management in GWT apps? Currently I am having this idea:    - Have a method checkSession()

Re: Make RPC call from server?

2008-11-18 Thread str16star
Thanks, your advise helped me solve the problem in 5 min. The code I was trying to call returns information about the user by searching a database for a row with an id number that is set in the session information and returning the data on that row. I've now put the search method in a class

GWT Gadget, running in hosted mode with -noserver option

2008-11-18 Thread [EMAIL PROTECTED]
I am trying to run a GWT Gadget in hosted mode with the -noserver option, but when I run I keep getting the following error: [ERROR] Failure to load module 'com.chordiant.gwt.helloworld.HelloWorldGadget' java.lang.RuntimeException: No such property __gwt_module_id at

I have a requirement ,how to implement?

2008-11-18 Thread jvincent
in my project ,the function menu can add by user,and in menu vo have execute class name. when system started,load function menu and when click the menu,open a new dialog. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

EditableLabel

2008-11-18 Thread Mark
Hello Everyone, I recently moved from GWT Library 0.1.5 to 0.2.0 and it appears I can no longer import org.gwtwidgets.client.ui.EditableLabel; Is there any documentation why this Widget is no longer used? I haven't been able to search for anything indicating that this has even been deprecated,

Re: Using Selenium for GWT tests.

2008-11-18 Thread rex
Thnx much Arthur. I have started automating tests with Selenium now. But, do you know of any reporting tools that we can integrate with selenium for test report generation. Thnx, Rex On Nov 13, 5:38 am, Arthur Kalmenson [EMAIL PROTECTED] wrote: Hi Rex, Selenium is a web UI testing framework

Re: Observer pattern on this design, yes or no/how and why?

2008-11-18 Thread mives29
To gregor, 1)We dont want to use dialogbox because it overlays the display. 2)Actually I've thought about using hidden panels, but our team's designer seems fixated with using a separate window. If I could only convince him.. 3)We dont want to use the back/forward way because a)its not

Re: Separate client server help

2008-11-18 Thread Sumit Chandel
Hi kibibyte, Developing your server-side and client-side code should have no impact on getting the application deployed and working on your web server. However, if you are using GWT RPC, make sure that you are using the same version of the gwt-servlet.jar file for both projects as well as for

Re: SmartGWT 1.0 Released

2008-11-18 Thread rlaferla
That's awesome. Is it native Java/GWT or a JavaScript wrapper? --~--~-~--~~~---~--~~ 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: My Hack to Get The Browser Scrollbars Useable

2008-11-18 Thread Sumit Chandel
Hi Scott, As far as I know, if your GWT application is overflows the size of the browser window, the browser scroll bars should always appear unless you're explicit doing something to prevent them from showing up. Do you have any simple reproducible code to see the case you've come across on

Re: authentication in GWT

2008-11-18 Thread Litty Preeth
Actually my app is a web interface to another backend app. So while logging into my app you are actually authenticating with the other backend app. The username/password, roles etc are maintained by the other app. On Tue, Nov 18, 2008 at 11:56 PM, walden [EMAIL PROTECTED]wrote: Let's hear a

History token Problem in IE6

2008-11-18 Thread Prashant
Hi All, I am developing registration functionality in GWT 1.4.62. After user registration a mail is sent to the user to verify user email Id. A link containing user name and verification code as url parameters is sent in the mail as follows:

Re: how to work with xs-linker in gwt

2008-11-18 Thread Manish Kumar
Hi, I have just taken a look on the link content, this seems quite useful.I will go through in details now. Thanks for much needed stuffs floated on the web. Do you mean that we can not do xs-compile in hosted mode.We understand that we would have to test on different browser. The way i want

Re: History list problem in IE6 - Do I really need to patch GWT's jar

2008-11-18 Thread Ganesh
Hello Friends Can anyone confirm if I am doing right for managing history or is there any other alternate for avoiding this patch ? Regards Ganesh Bansal On Nov 18, 9:29 am, Ganesh [EMAIL PROTECTED] wrote: I am using GWT 1.5 and want to manage history. Whenever I call

Re: Text floats out of TextBox (serious issue!?)

2008-11-18 Thread Schimki86
I can't reproduce it in a plain HTML or small (new) GWT-application... Somehow seems something in our application is responsible for that effect. But I try to reproduce it out of the application / find the reason... (occurs only in FF3 not FF2 or IE) 2008/11/18 walden [EMAIL PROTECTED] Can you

Re: authentication in GWT

2008-11-18 Thread Reinier Zwitserloot
@Rick: Ahh, that makes sense. However, its not logging out of HTTP Basic. Its just invalidating a session ID. I also doubt that it'll work properly if done in one browser session - the browser will keep re-sending the Authorization header regardless of your invalidated session. The browser

[gwt-contrib] Re: RR: Adding .project to gwt-incubator root directory

2008-11-18 Thread dflorey
+1 !! Daniel On 17 Nov., 22:28, BobV [EMAIL PROTECTED] wrote: What exactly is the reason we can't do the same here? subclipse won't handle linked resources. Even if it is an issue, why would we not leave the files in an eclipse subdirectory and have interested users simply copy them

[gwt-contrib] Re: Event handlers committed to 1.6, event listeners deprecated

2008-11-18 Thread Eric Ayers
Congratulations! Does this mean you will no longer need the 1.6_events branch CC build? On Tue, Nov 18, 2008 at 12:03 AM, Ray Ryan [EMAIL PROTECTED] wrote: With r4092, the new event handlers have been committed to the 1.6 branch. rjrjr -- Eric Z. Ayers - GWT Team - Atlanta, GA USA

[gwt-contrib] Re: Event handlers committed to 1.6, event listeners deprecated

2008-11-18 Thread Emily Crutcher
Yes! Woot! On Tue, Nov 18, 2008 at 6:56 AM, Eric Ayers [EMAIL PROTECTED] wrote: Congratulations! Does this mean you will no longer need the 1.6_events branch CC build? On Tue, Nov 18, 2008 at 12:03 AM, Ray Ryan [EMAIL PROTECTED] wrote: With r4092, the new event handlers have been

[gwt-contrib] [google-web-toolkit commit] r4094 - branches/1_6_datepicker

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 06:46:29 2008 New Revision: 4094 Added: branches/1_6_datepicker/ - copied from r4093, /releases/1.6/ Log: --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fwd: [gwt-contrib] [google-web-toolkit commit] r4094 - branches/1_6_datepicker

2008-11-18 Thread Emily Crutcher
John, Could you review the initial setup of the datepicker branch? I'll try to keep each commit small, so the hope is that we will be able to directly merge back into trunk as soon as all the individual submits have been reviewed. -- Forwarded message -- From: [EMAIL

[gwt-contrib] [google-web-toolkit commit] r4095 - in branches/1_6_datepicker: . user

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 07:05:03 2008 New Revision: 4095 Modified: branches/1_6_datepicker/branch-info.txt branches/1_6_datepicker/user/ (props changed) Log: Updating branch info and svn ignore for datepicker branch. Modified:

[gwt-contrib] [google-web-toolkit commit] r4097 - releases/1.6/user/test/com/google/gwt/user/server/rpc

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 07:36:59 2008 New Revision: 4097 Added: releases/1.6/user/test/com/google/gwt/user/server/rpc/RPCRequestTest.java (contents, props changed) Log: Commit missing file for r4096. Added:

[gwt-contrib] [google-web-toolkit commit] r4098 - branches/1_6_datepicker/user/src/com/google/gwt/event/dom/client

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 07:38:40 2008 New Revision: 4098 Modified: branches/1_6_datepicker/user/src/com/google/gwt/event/dom/client/KeyEvent.java Log: Adding utility method to KeyEvent needed by datepicker. Incubator source was KeyboardSupportImpl.hasModifiers.

[gwt-contrib] Code Review: Issue 206 in gwt-google-apis - allow 3rd party extensions to be wrapped

2008-11-18 Thread Eric Ayers
Hello Uwe, and Daniel and Miguel, Could you please review this update to the Maps API at: http://galgwt-reviews.appspot.com/803 It should be the last one before the release of the final 1.0 for Maps. -Eric. -- Eric Z. Ayers - GWT Team - Atlanta, GA USA http://code.google.com/webtoolkit/

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4098.

2008-11-18 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4098. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4098 Score: Positive General Comment: LGTM Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4098 -- You

[gwt-contrib] [google-web-toolkit commit] r4099 - changes/bobv/soyc-reports-r4098

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 08:26:52 2008 New Revision: 4099 Added: changes/bobv/soyc-reports-r4098/ - copied from r4098, /trunk/ Log: Create change branch for merging SOYC into newer trunk. --~--~-~--~~~---~--~~

[gwt-contrib] Fwd: [gwt-contrib] [google-web-toolkit commit] r4094 - branches/1_6_datepicker

2008-11-18 Thread Emily Crutcher
Ray, re-routing this to you as John is otherwise occupied with chatter. As you are, I believe, about to get on a plane, will not continue to send individual notifications, rather whenever you get to the point you can review, please let me know, and if any of the commits on the branch are

[gwt-contrib] [google-web-toolkit commit] r4100 - in branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker: . client

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 09:08:58 2008 New Revision: 4100 Added: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/ branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/

[gwt-contrib] [google-web-toolkit commit] r4101 - in trunk: dev/core/src/com/google/gwt/core/linker user/test/com/google/gwt/core/ext user/...

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 10:54:35 2008 New Revision: 4101 Added: trunk/user/test/com/google/gwt/core/ext/ trunk/user/test/com/google/gwt/core/ext/IFrameLinkerTest.gwt.xml (contents, props changed) trunk/user/test/com/google/gwt/core/ext/LinkerSuite.java

[gwt-contrib] [google-web-toolkit commit] r4102 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 12:07:39 2008 New Revision: 4102 Added: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/CalendarModel.java Log: Adding a calendar model from incubator to date picker branch. Added:

[gwt-contrib] [google-web-toolkit commit] r4107 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 13:01:20 2008 New Revision: 4107 Added: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/ElementMapper.java Log: Adding element mapper utility class, used to figure out what cell the user is covering/clicking on. Added:

[gwt-contrib] [google-web-toolkit commit] r4108 - trunk/user/src/com/google/gwt/junit

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 13:16:03 2008 New Revision: 4108 Modified: trunk/user/src/com/google/gwt/junit/JUnitMessageQueue.java trunk/user/src/com/google/gwt/junit/JUnitShell.java Log: Added method-level timeouts to GWTTestCases, triggered by the need for handling

[gwt-contrib] [google-web-toolkit commit] r4112 - in branches/1_6_datepicker/user: . src/com/google/gwt/user src/com/google/gwt/user/datepi...

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 15:09:43 2008 New Revision: 4112 Added: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/DatePicker.gwt.xml Modified: branches/1_6_datepicker/user/ (props changed)

[gwt-contrib] [google-web-toolkit commit] r4113 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 15:10:40 2008 New Revision: 4113 Added: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/StandardCssImpl.java Log: Helper class from incubator, will probably be merged into the DatePicker impl class. Added:

[gwt-contrib] [google-web-toolkit commit] r4109 - trunk/user/test/com/google/gwt/core/ext

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 14:46:54 2008 New Revision: 4109 Modified: trunk/user/test/com/google/gwt/core/ext/LinkerSuite.java Log: Disables SingleScriptLinkerTest by default, because it only works if the testing context results in a single-permutation compile. Review by:

[gwt-contrib] [google-web-toolkit commit] r4110 - branches/1_6_datepicker/reference/code-museum/src/com/google/gwt/museum

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 14:56:29 2008 New Revision: 4110 Modified: branches/1_6_datepicker/reference/code-museum/src/com/google/gwt/museum/SingleIssue.gwt.xml Log: SingleIssue got slightly munged by the 1.6 merge, restoring it here. Modified:

[gwt-contrib] [google-web-toolkit commit] r4116 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-18 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Nov 18 15:28:14 2008 New Revision: 4116 Added: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/DatePickerComponent.java Log: Last commit should have included DatePickerComponent, so it needs to come along for the ride. Added: