Re: Wiping application memory on the broser after user logout or window/tab close

2009-10-07 Thread alex.d
You can't trigger browser's garbage collector. On Oct 7, 7:23 am, francescoNemesi nem...@yahoo.com wrote: Hi, my application has a logout button. When the user logs out the application invalidates and cleans up the HttpSession on the server side. I would like to do the same on the client,

Re: Suggestions for non-java programmer

2009-10-07 Thread monk3y
http://examples.roughian.com/#Home usually a good noobie starting point, ;). On Oct 6, 7:17 pm, Christopher Merry ch...@diggindata.com wrote: I have looked through the docs, including the Getting Started Guide and Tutorials.  Those resources are very useful; however, I have limited

Re: onModuleLoad not called

2009-10-07 Thread Anni
Yep, I think the GWT general conventions asks one to put the gwt.xml to the module root directory, and all java under 'client' or 'server', although it is not compulsory. I'm playing around with different renaming schemes, and building modules with those 'non-working' names from scratch. So far I

Re: Suggestions for non-java programmer

2009-10-07 Thread Christopher Merry
I have a good understanding of PHP, and I I have been working with Flex for the past several months. I am comfortable with OO principles, but I find the vast number of Java classes intimidating. On Oct 6, 2:05 pm, Daniel Jue teamp...@gmail.com wrote: What non-Java programming experience do

Re: Suggestions for non-java programmer

2009-10-07 Thread Christopher Merry
Thanks, I'll give that a try On Oct 7, 12:21 am, monk3y darkside...@hotmail.com wrote: http://examples.roughian.com/#Home usually a good noobie starting point, ;). On Oct 6, 7:17 pm, Christopher Merry ch...@diggindata.com wrote: I have looked through the docs, including the Getting

Re: Sending long parameter via cross-site JSON

2009-10-07 Thread Gintare Ragaisiene
Here I am with the code. 1) Client side GWT code: /** * Saving long content of e-mail. If it shorter than NewMessgeContentPanel.CHARS_COUNT_IN_FRAGMENT, no results will be generated. * @param communicationEventId - ID needed for operations in DB * @param messageText - long

Re: How can I reference files under war/ in a RemoteServiceServlet?

2009-10-07 Thread Nathan Wells
is this what you're looking for? http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String) On Oct 6, 3:19 am, Andreas Kahl andreas_k...@gmx.net wrote: Hello everyone, I wrote a RemoteServiceServlet fetching XML from a remote Service,

Re: using ExtJS (not GXT) with GWT

2009-10-07 Thread Olivier Gérardin
Only if you release your application in binary form. You are always free to use/modify a GPL'd library privately and not release anything (see http://www.gnu.org/licenses/gpl-faq.html#GPLRequireSourcePostedPublic) On Oct 6, 8:10 pm, Martin Kraus martin.krau...@gmail.com wrote: if you use a GPL

Re: using ExtJS (not GXT) with GWT

2009-10-07 Thread Olivier Gérardin
Are you referring to gwt-ext ? http://code.google.com/p/gwt-ext/ I can't find any extjs-gwt. On Oct 6, 5:23 pm, charlie charlie.f...@gmail.com wrote: Have you seen the  unofficial extjs-gwt ?  I would go that route. --~--~-~--~~~---~--~~ You received this

Re: Suggestions for non-java programmer

2009-10-07 Thread Olivier Gérardin
The number of Java classes you actually in everyday programming is very small, even more so if you use GWT because you are limited by GWT's JRE emulation library, which only emulates a subset of the full JRE class library. You might want to check the complete list of emulated classes there:

HistoryHandler GWT 1.7.1 doubleclick

2009-10-07 Thread vokke
Hello Newsgroup, I try to keep my database in the right state using the HistoryHandler or the deprecated HistoryListener. It's kind of undo/redo-function. My problem is, if you press the back or forward-button very quickly (doubleclick), it seems that the HistoryHandler does not get all the

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Parvez Shah
why is the link showing it as deprecated. GWT 2.0 Milestone 1 (for all platforms) http://code.google.com/p/google-web-toolkit/downloads/detail?name=gwt-2.0.0-ms1.zipcan=1q=2.. Deprecatedhttp://code.google.com/p/google-web-toolkit/downloads/list?q=label:Deprecated On Wed, Oct 7, 2009 at 10:21

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Paul Robinson
because it's only a milestone and not a full release. Parvez Shah wrote: why is the link showing it as deprecated. GWT 2.0 Milestone 1 (for all platforms) http://code.google.com/p/google-web-toolkit/downloads/detail?name=gwt-2.0.0-ms1.zipcan=1q=2.. Deprecated

changing DOM element properties after onModuleLoad

2009-10-07 Thread Sampath Kumar
Hi All, I am trying to reset certain attributes of some of the elements on specific mouse/keyboard events; yes ofcourse, these events occur after onModuleLoad. For example, I am trying to do a DOM.getElementById(tabPanelContainer).setAttribute(selectedTab, cr) on a particular mouse click

Re: Wiping application memory on the broser after user logout or window/tab close

2009-10-07 Thread francescoNemesi
Thanks, I knew that... I ìm looking for workarounds. Thanks again On Oct 7, 9:07 am, alex.d alex.dukhov...@googlemail.com wrote: You can't trigger browser's garbage collector. On Oct 7, 7:23 am, francescoNemesi nem...@yahoo.com wrote: Hi, my application has a logout button. When the

Re: changing DOM element properties after onModuleLoad

2009-10-07 Thread Sampath Kumar
Hi Folks, More findings. The DOM variable attribute here is getting reset properly. The problem infact boils down to deferred binding. The class when gets bound corresponds to the variable which was bound earlier viz. before I did a reset. So I think the problem is again to do with

gwtcompiler mac os 10.5

2009-10-07 Thread Sampath Kumar
Hi, I am on eclipse on Mac OS 10.5. Deferred binding works absolutely fine in hosted mode. I am able to compile the code and all those 18* combinations of java scripts are generated. When I try to access the url from firefox or safari on Mac OS, nothing comes up. No scripts, no widgets;

Re: Wiping application memory on the broser after user logout or window/tab close

2009-10-07 Thread Marcelo Emanoel B. Diniz
as said earlier there's no way to trigger the browser's garbage collector but you could help him and set to null some references... unregister any handlers you have... and so on :) this should point to the garbage collector that it should free that memory hope it helped you On Oct 7, 8:32 am,

User selectable themes

2009-10-07 Thread Trevis
I need to implement user selectable themes for my gwt app. Any one know of a best practices way to do this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: RichTextArea+MSWORDJunkData

2009-10-07 Thread John Yesberg
I had the same problem. I found some .Net code that people were using in a related situation, and adapted it to this. It would be better if it did case-insensitive regex matching, but this seems to work at the moment. public static String deWordify(String in) { String out

Launch Window in onModuleLoad()

2009-10-07 Thread plopez7
Hi all. I've three month working with GWT and it's amazing. But I have a problem with a thing, and I hope someone could help me: I've a proyect and everything goes fine. I've a menu whit items and all this ones launch a modal window for user's works. The problem is that i want to launch one of

Different behavior when GWT is behind a proxy

2009-10-07 Thread donbranson
All, I'm trying to solve this issue, which I've also posted to SO: http://stackoverflow.com/questions/1517290/problem-with-gwt-behind-a-reverse-proxy-either-nginx-or-apache The problem is not a serialization issue, but a difference in behavior when GWT is sitting behind a proxy. Is it possible

Re: rpc serialization problem

2009-10-07 Thread Lubomir
Hi, I was experimenting with it a bit as well and it seems to me that even the most simple Entity bean cannot be passed through RPC call. I had a simple class: @Entity public class Tournament implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY)

hosted mode debugging with -noserver in eclipse

2009-10-07 Thread mike_mac
Hi ... I'm trying to get hosted mode debugging running using Jboss as the server instead of tomcat and I can't get it working ... I've followed the instructions here ...

Re: Starting a project

2009-10-07 Thread Andreas
Hello anjan, using GWT results in the well known security risks of JavaScript. You can find a good overview here: http://groups.google.com/group/Google-Web-Toolkit/web/security-for-gwt-applications Hope that helps, Andreas On 6 Okt., 14:20, anjan rockan...@gmail.com wrote: Hi, I am trying

GWT 1.7 Hosted mode Wont create GWT widgets

2009-10-07 Thread Patrick Corbett
Hello, I am having a problem that started just out of the blue. my project has been working fine for months however today all of a sudden it stopped running in hosted mode. I can still compile the project and when run on my tomcat it worked fine. I have determined that it is not contained to

Re: using ExtJS (not GXT) with GWT

2009-10-07 Thread David Durham
Other issues are whether or not what you're doing constitutes a derivative work: http://en.wikipedia.org/wiki/Derivative_work Of course, if you do need to make some changes, why don't you bounce those ideas off of me and maybe the fit in the framework. Thanks, Dave 2009/10/7 Olivier

PushButton with css sliding doors

2009-10-07 Thread davis
I'm looking to do something like this: http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html Just curious if anyone has an example of using the sliding doors technique for spanning wide text for button images, and also using on/ off images. PushButton has style names

Re: GWT Performance issue in IE browser.

2009-10-07 Thread Dominik Steiner
pal, you could try using IE8 and the profiler it is shipping with to determine which methods are being called (compiling your code first with -pretty) and which one take more time than others. In our project we thus found out that IE was behaving bad on equals() and equalsIgnoreCase() methods

Re: OOPHM GWT 2.0 Milestone 1 on Mac

2009-10-07 Thread Dominik Steiner
Hi Christian, I moved to the ms1 yesterday but had been playing around with OOPHM with a version that i built from the trunk before and also got into problems when FF 3.5 came out and broke the OOPHM mode that i was using. Now yesterday with the ms1 release and the plugin already installed i

Re: GWT PHP HTML 5 interaction

2009-10-07 Thread Dominik Steiner
on our project our GWT frontend (running on tomcat) was talking with the php backend (on another server) via hessian protocol and it was working good. HTH Dominik On Oct 6, 11:26 am, Takalov Rustem takalov.rus...@gmail.com wrote: Hey Guys, I have been researching on GWT and PHP integration a

Re: Maven + GWT 1.7.1

2009-10-07 Thread Caleb
Well, it's been a week, and still no jar. Is this really that hard to fix? On Sep 30, 3:47 pm, javier jasand...@gmail.com wrote: It seems that the 1.7.1 release has been published to theMaven central repo.  Unfortunately, the jar gwt-dev-1.7.1-mac.jar was left out, so if you're on aMacyour

Re: Google Plugin for Eclipse: Use Eclipse Classpath and Libraries

2009-10-07 Thread arnoldhau
Hallo Rajeev, Thank you for your answer. I am affraid that I would prefer the exact opposite - for me deployment and developent are quite different, and the Hosted Mode is part of the development environment. The deployment is done seperately by a maven build and has no dependencies on the

Re: hosted mode debugging with -noserver in eclipse

2009-10-07 Thread mike_mac
Just to follow up on this ... this seems to be the eclipse plugin, I've managed to get host mode running from the command line and it works. The weird thing is, it DOES work with a small war project that I built, deployed on jboss and ran the hosted mode -noserver option from eclipse via the

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread ThomasWrobel
Their should be a unprecated term :P On Oct 7, 1:07 pm, Paul Robinson ukcue...@gmail.com wrote: because it's only a milestone and not a full release. Parvez Shah wrote: why is the link showing it as deprecated.    GWT 2.0 Milestone 1 (for all platforms)

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Joseph Arceneaux
May we presume that the Snow Leopard issue is now history? Thanks, Joe On Mon, Oct 5, 2009 at 4:43 PM, Amit Manjhi amitman...@google.com wrote: Hi everyone, We are excited to release the first milestone build for GWT 2.0 today. This milestone provides early access (read: known to still be

Re: Need to use GWT to make a program similar to Google Calendar, How would you do it?

2009-10-07 Thread spierce7
@Chris, The first link you gave was actually the link that I originally linked. I'd love to see Ray Ryan's talk on Model View Presenter design though. Also, that DND library is pretty awesome though! That is definitely useful! Thank you for that! @Paul, That calendar is much better made than the

Re: GWT 1.7 Hosted mode Wont create GWT widgets

2009-10-07 Thread mike_mac
Well I've just opened another thread with what sounds like a similar (but different) problem ... http://groups.google.com/group/google-web-toolkit/browse_thread/thread/34b7bbcf6057a23d Try running the app in hosted mode from the command line ... if it works you can simply launch it from inside

Adding request parameters to all async calls to servlets

2009-10-07 Thread Henrique Viecili
Hi fellows... I am faced with this difficult situation: I have a GWT application built in the RPC style for async calls (1 Async interface, 1 RemoteService interface and 1 RemoteServiceServlet implementation) and now there is a requirement of sending some request parameters to each async call

HELP NEEDED getting GWT working with EJB3 and JPA

2009-10-07 Thread Toine
Hello I'm trying to get gwt application to work with EJB3 and JPA via a servlet it works fine but when i use a factory with a servicelocator within my public class ProxyServiceImpl extends RemoteServiceServlet implements ProxyService, ServiceTemplateInterface { //@EJB EJBBWBean

Re: Maven + GWT 1.7.1

2009-10-07 Thread Mida
Hi all, I'm working with GWT+osx since january 2009. I've used a lot of trick, fix, bricks... for work on osx machine, Please fix this. Cheers Mida On Oct 7, 5:32 pm, Caleb caleb.har...@gmail.com wrote: Well, it's been a week, and still no jar.  Is this really that hard to fix? On Sep 30,

Element.getStyle() getProperty from css external file

2009-10-07 Thread iwo.di...@gmail.com
Hello, I have a webpage with external css file, I must parse this page and read css property for any tag. I use Element.getStyle().getProperty, but this not read the css property from external file, but only inline style. how can I do? best regards Ivan

Re: using ExtJS (not GXT) with GWT

2009-10-07 Thread charlie
We should probably take this to another forum, but I'd like to see the ability to specify number of columns, which column each field goes into etc. Also support for the DualListField, I've been toying with the code, do you want to take this to the google code forums ? On Wed, Oct 7, 2009 at 9:21

Deploying GWT RPC servlet as a separate WAR

2009-10-07 Thread Uros Trebec
Hi there! I was wondering if there is in any way possible to package and deploy GWT-RPC servlet as a stand-alone WAR application, without client side JS resources? Basically what I want to do is have a client-side JS resurces deployable separately from the servlet, so the servlet application

Re: using ExtJS (not GXT) with GWT

2009-10-07 Thread David Durham
On Wed, Oct 7, 2009 at 12:22 PM, charlie charlie.f...@gmail.com wrote: We should probably take this to another forum, but I'd like to see the ability to specify number of columns, which column each field goes into etc.  Also support for the DualListField, I've been toying with the code, do

How to open and edit a library in Eclipse?

2009-10-07 Thread spierce7
Hey, I've been wondering the best way to do this for a while. Now it's something I need to do. I need to be able to get at the source code, and specifically edit this: http://code.google.com/p/ftr-gwt-library/ What is the best way to go about editing it with eclipse? Ideally I'd like to have the

Re: Embedding GWT into Eclipse/OSGi and accessing other Plugins/Bundles

2009-10-07 Thread jastram
Hello Jason, Sounds like a neat idea, kudos to getting the Hello World to work!  I'm curious how it's set up--I assume the Eclipse view showing the GWT app a browser-backed view? Yes, that was actually fairly easy. Here is the central code from the ViewPart: public void

Re: Embedding GWT into Eclipse/OSGi and accessing other Plugins/Bundles

2009-10-07 Thread Jason Parekh
On Wed, Oct 7, 2009 at 2:34 PM, jastram jast...@gmail.com wrote: Hello Jason, Sounds like a neat idea, kudos to getting the Hello World to work! I'm curious how it's set up--I assume the Eclipse view showing the GWT app a browser-backed view? Yes, that was actually fairly easy. Here

Google Webmasters: A proposal for making AJAX crawlable

2009-10-07 Thread Peter Ondruska
This is interesting as this topic has been discussed many times in the past: http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: OOPHM GWT 2.0 Milestone 1 on Mac

2009-10-07 Thread Christian Goudreau
Thanks, but It wasn't saying that for me. It's saying that I need to re-compile my module and even when I do it, I still get that message ! I tryed you trick, but even when the plugin isnt even there, I get the message to re-compile.. Thanks anyway, Christian On Wed, Oct 7, 2009 at 11:24 AM,

Re: Listening for browser window close or unload events

2009-10-07 Thread Brian Blain
Maybe Window.addWindowClosingHandler or Window.addCloseHandler On Oct 7, 11:35 am, francescoNemesi nem...@yahoo.com wrote: Hi, is there a way to listen to a browser window or unload event? I want to force a logout (to clean up session memory on the server as well as much as I can on the

Re: Embedding GWT into Eclipse/OSGi and accessing other Plugins/Bundles

2009-10-07 Thread jastram
Gotcha, thanks for the explanation.  I worry that even if we can resolve all the dependencies, you'll probably run into one of your dependencies relying on some classes that GWT does not provide (for example, some of java.io).  I can't think of an easy way to avoid this except make your GWT

DOM.previewEvent does not call UncaughtExceptionHandler.onUncaughtException(e)

2009-10-07 Thread tieTYT
I've noticed that the method DOM.previewEvent does not call UncaughtExceptionHandler.onUncaughtException(e) if an exception is thrown. Is this intentional? As a result, exceptions don't get reported to me. Specifically, I don't see exceptions that occur in GXT's DND code. I was thinking of

Re: onModuleLoad not called

2009-10-07 Thread Chris Ramsdale
Anni, Are you using Eclipse to build/alter your projects and components? - Chris On Wed, Oct 7, 2009 at 3:33 AM, Anni anni.ahonenbish...@gmail.com wrote: Yep, I think the GWT general conventions asks one to put the gwt.xml to the module root directory, and all java under 'client' or

Re: Extension / Widget project officially supported by Google

2009-10-07 Thread Chris Ramsdale
Rico, There have been many developers using GWT compatible libraries with success and you can find related information in their posts within the GWT Group forum. If these libraries have widgets that you would like to use for your project, it might be a good idea to read through the posts to

Re: GWT 1.7.1 with tomcat 5.5

2009-10-07 Thread Chris Ramsdale
Muhannad (and Bobby), I am trying to better understand the potential issue here. You mention that you are attempting to run your application in hosted within Tomcat. Typically applications are run within the embedded Jetty server when running in hosted mode. Would you mind elaborating on the

Re: Image/Absolute panel...how to make the clickhandlers fire on the abs, ignoreing the image?

2009-10-07 Thread Chris Ramsdale
Thomas W, While I am able to reproduce the stuck behavior that you describe above, I would like to put together a smaller code sample to further pinpoint what is going on under the hood. From a high level it appears that at the heart of the issue is a FocusPanel that contains one or more

Re: GWT PHP HTML 5 interaction

2009-10-07 Thread Takalov Rustem
Thank you, Dominik for your prompt reply. It is sounds great to me. I have a feeling I could provide connection through the hessian web service to PHP application to get some of the services from the PHP/Apache application. Also I have researched in the web and found the Hessian PHP

Using enum and serializationexception during rpc...

2009-10-07 Thread padysr...@gmail.com
gwt 1.7, jdk 6. I have a java enum in an object which I send to the client. This works fine in hosted mode. When I deployed the war in tomcat, i get the type was not included in the set of types which can be serialized exception. My enum is defined as... public interface AttributeConstantsIfc

Need a Google Web Toolkit instructor

2009-10-07 Thread Rooz
Hi All, I am looking for a GWT Google Web Toolkit instructor to teach a few classes. Prefer someone in the SF Bay Area, but am open to other ideas. Please email me if you know anyone: Rooz (at) Marakana (dot) com thanks rooz --~--~-~--~~~---~--~~ You received

Uploading to a Web Server

2009-10-07 Thread ejs
I’m having trouble running a sample GWT app on a web server. If I run it as a Web Application in Eclipse, using the Google toolkit in “hosted” mode (http://localhost:8080/MyApplication.html) it works fine. Also, when I deploy it to Google Apps, it works fine. However, when I run it on a prod

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Sky
I set GWT 2.0 as the SDK for my project and it changed to the new Development Swing UI In-browser mode instead of the old hosted mode. I placed the given URL in both FF3.5 and IE8 and neither auto installed the required plugin. Since my app is already compiled it renders fine but I cannot debug.

Re: GWT 1.7.1 with tomcat 5.5

2009-10-07 Thread golfdude
Did you try http://server:port/webapp/GwtApp.html Thx ps --~--~-~--~~~---~--~~ 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: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Joseph Arceneaux
There does not appear to be a nice URL I can point Eclipse 3.5 at in order to install GWT 2.0 in the usual fashion. Nor, apparently, any instructions about an alternate procedure. It appears unclear on just where / how to merge the contents of the zip file into an existing Eclipse integration;

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Dominik Steiner
Hi Jospeh, did you consider to install the Google Plugin for eclipse? You will even then run into problems, but reading through this post http://groups.google.com/group/google-web-toolkit/browse_thread/thread/527518f17e7a484e/28e2bbd2786143f3 you should be up and running pretty soon. HTH

.cache and .rpc files...ship with war ?

2009-10-07 Thread golfdude
These files seem to be generated in hosted mode only when rpc calls are made etc. Should these be shipped when deployed in another app server ( like tomcat ) ? gd --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: .cache and .rpc files...ship with war ?

2009-10-07 Thread golfdude
Ignore my previous post. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com To unsubscribe from this group, send email

Re: GWT PHP HTML 5 interaction

2009-10-07 Thread Dominik Steiner
Hi, to be honest I'm no php guy, so I'm not sure about the implementation details of the hessian control on php side. on gwt side you simply implement an interface, for example like this public interface HelpHessianService { public ListString getHelpTopics(String search);

History with MenuBar

2009-10-07 Thread YoeZ
can anyone tell me how to create history with menubar? i've seen sample in showcase, that's not menubar, but treeitem which support onselectionhandler. in menubar, only support anclosedhander hmm.. please help me.. thanks --~--~-~--~~~---~--~~ You received this

Re: DOM over RPC

2009-10-07 Thread Parmeet Kohli
Makes sense .. Appreciate the help !! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com To unsubscribe from this

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

2009-10-07 Thread codesite-noreply
Comment by dygger: Could someone tell if UiBinder supports DialogBox? - I tried it but got compilation errors in generated UiBinderImpl class... Moreover, it passes all dialog's content (including GWT widgets as a string in setHTML method: f_DialogBox1.setHTML(gwt:VerticalPanel

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread BobV
On Wed, Oct 7, 2009 at 12:22 AM, rj...@google.com wrote: Bob, is this going in? When it does, should I retool UiBinder to use it for ui:style? It didn't occur to me until now that you would have to have code like this in UiBinder to generate the synthetic interfaces. Would it be easier to

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

2009-10-07 Thread codesite-noreply
Comment by j...@google.com: While it doesn't make a great deal of sense to put a DialogBox in a .ui.xml file, because it's intended to be displayed via its own show() method, we should be giving a better (and earlier) error than this. Note that you *can* still create a dialog box's

[gwt-contrib] Re: Can't build trunk

2009-10-07 Thread Joel Webber
Ok, that makes sense, and sounds like my fault. I'll have a look at it later today.Thanks for catching this. On Tue, Oct 6, 2009 at 1:31 PM, bond raul.pel...@mail.ee wrote: I have same problem with Mail sample. Could it be because of my locale - decimal symbol is comma? Generated BinderImpl

[gwt-contrib] Re: Can't build trunk

2009-10-07 Thread Joel Webber
Just added an issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4111 On Wed, Oct 7, 2009 at 9:30 AM, Joel Webber j...@google.com wrote: Ok, that makes sense, and sounds like my fault. I'll have a look at it later today.Thanks for catching this. On Tue, Oct 6, 2009 at 1:31

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread Ray Ryan
I can review today. The redundant code is in com.google.gwt.uibinder.rebind.CssResourceWriter. Perhaps I'm wrong to be dismissive of Keith's concerns--we're aiming at different audiences. He's' generating source that people will work with directly, I'm generating source that will only be accessed

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread BobV
For that matter, given the existence of ui:style, is the need for this utility still clear? Not saying it isn't, just unclear on its expected use. The purpose of this tool is to give developers an easy upgrade to @Strict mode, which is mostly just the grunt work of creating the Java interface.

[gwt-contrib] [google-web-toolkit] r6310 committed - Patch to enable upgrade to latest HtmlUnit snapshots. Created a tempor...

2009-10-07 Thread codesite-noreply
Revision: 6310 Author: amitman...@google.com Date: Tue Oct 6 19:22:44 2009 Log: Patch to enable upgrade to latest HtmlUnit snapshots. Created a temporary dir where various HtmlUnit snapshots could be tried without polluting GWT_TOOLS. IMPORTANT: 1. To test bug-fixes for Gwt 2.0 MS1, this

[gwt-contrib] [google-web-toolkit] r6311 committed - Creating a snapshot branch.

2009-10-07 Thread codesite-noreply
Revision: 6311 Author: sp...@google.com Date: Wed Oct 7 07:58:15 2009 Log: Creating a snapshot branch. http://code.google.com/p/google-web-toolkit/source/detail?r=6311 Added: /branches/snapshot-2009.10.06-r6307 --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit] r6312 committed - adding a branch-info.txt

2009-10-07 Thread codesite-noreply
Revision: 6312 Author: sp...@google.com Date: Wed Oct 7 08:02:09 2009 Log: adding a branch-info.txt http://code.google.com/p/google-web-toolkit/source/detail?r=6312 Added: /branches/snapshot-2009.10.06-r6307/branch-info.txt === --- /dev/null +++

[gwt-contrib] Re: Invalid version number 2.0 passed to external.gwtOnLoad()

2009-10-07 Thread Miguel Méndez
Here is some more information. I ran into this problem while testing the plugin against GWT 1.7, trunk, and 2.0 MS1. It looks like whenever we generate the hosted.html we use the timestamp of that file as it was inside of the gwt-dev-PLAT.jar. It would seem to me that we want to touch that file

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread Keith Platfoot
Perhaps I'm wrong to be dismissive of Keith's concerns--we're aiming at different audiences. He's' generating source that people will work with directly, I'm generating source that will only be accessed via attribute settings in a ui.xml file. @Keith, what do you do when you see

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread Ray Ryan
Do you have similar handling of dashes? On Wed, Oct 7, 2009 at 8:39 AM, Keith Platfoot kplatf...@google.com wrote: Perhaps I'm wrong to be dismissive of Keith's concerns--we're aiming at different audiences. He's' generating source that people will work with directly, I'm generating source

[gwt-contrib] Re: Invalid version number 2.0 passed to external.gwtOnLoad()

2009-10-07 Thread alexandrupop
Had the same problem on Mac. I fixed it by removing Safari cache from / Library/Caches. On Sep 18, 3:37 pm, Marko Vuksanovic markovuksano...@gmail.com wrote: I had the same problem.. After struggling for 2 days I figured out that the embedded jetty loads the hosted.html file form cache (C:

[gwt-contrib] Re: Invalid version number 2.0 passed to external.gwtOnLoad()

2009-10-07 Thread Sky
I get this error when I switch from the GWT compiled from Trunk back to 1.7.1 or any previous versions. I only know two ways to solve it: 1) Open up war\projectname\hosted.html and edit line 16 from var $hostedHtmlVersion=2.0; to var $hostedHtmlVersion=1.6; (which I think

[gwt-contrib] Re: Invalid version number 2.0 passed to external.gwtOnLoad()

2009-10-07 Thread Miguel Méndez
I entered the issue 4112http://code.google.com/p/google-web-toolkit/issues/detail?id=4112, to track this problem. 2009/10/7 Miguel Méndez mmen...@google.com Here is some more information. I ran into this problem while testing the plugin against GWT 1.7, trunk, and 2.0 MS1. It looks like

[gwt-contrib] Re: Invalid version number 2.0 passed to external.gwtOnLoad()

2009-10-07 Thread Miguel Méndez
This is definitely a bug and you should be able to switch between the two versions. As a work around try the following: 1) Delete the current war/MODULE/hosted.html file 2) Re-run hosted mode and see the failure and stop hosted mode (this causes a new hosted.html file with the right version to be

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

2009-10-07 Thread codesite-noreply
Comment by myonceinalifetime: I have already made 2 comments on my issue (check so I don't have to repeat some stuff). I still cannot get oophm to debug. I have tried using the compiled version of GWT from trunk (retrieved from SVN only yesterday Oct 6th) as well as the latest plugin for

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

2009-10-07 Thread codesite-noreply
Comment by tamplinjohn: If it is behaving the same in GWT 1.7.1, it has nothing to do with OOPHM. I would suggest posting on the GWT mailing list for assistance. For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread rjrjr
LGTM I'm not sure if it's worth the bother of trying to share this with UiBinder land. The interesting stuff is all shared already, via GenerateCssAst. (Maybe that'll be less true when we get around to addressing http://code.google.com/p/google-web-toolkit/issues/detail?id=4052, but I'm not

[gwt-contrib] [google-web-toolkit] r6315 committed - Tagging the source to release 1.7.1

2009-10-07 Thread codesite-noreply
Revision: 6315 Author: rj...@google.com Date: Wed Oct 7 12:41:48 2009 Log: Tagging the source to release 1.7.1 http://code.google.com/p/google-web-toolkit/source/detail?r=6315 Added: /tags/1.7.1 --~--~-~--~~~---~--~~

[gwt-contrib] Fix for issue 4111 (UiBinder emitting comma as decimal separator on non-US locales).

2009-10-07 Thread jgw
Reviewers: Ray Ryan, Please review this at http://gwt-code-reviews.appspot.com/77802 Affected files: M user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java Index: user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java diff --git

[gwt-contrib] [google-web-toolkit] r6316 committed - Adds UiBinderUtilTest....

2009-10-07 Thread codesite-noreply
Revision: 6316 Author: rj...@google.com Date: Wed Oct 7 13:03:24 2009 Log: Adds UiBinderUtilTest. Created this while failing to reproduce a bug. Might as well hold on to it. Reviewed by: jgw http://code.google.com/p/google-web-toolkit/source/detail?r=6316 Added:

[gwt-contrib] Re: Adds UiBinderUtilTest

2009-10-07 Thread rjrjr
Committed r6316 http://gwt-code-reviews.appspot.com/77801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Fix for issue 4111 (UiBinder emitting comma as decimal separator on non-US locales).

2009-10-07 Thread rjrjr
LGTM And here I was hoping it wasn't me. Thanks! http://gwt-code-reviews.appspot.com/77802 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Fix for issue 4111 (UiBinder emitting comma as decimal separator on non-US locales).

2009-10-07 Thread Joel Webber
FWIW, I'm pretty sure I wrote that code myself a long time ago... On Wed, Oct 7, 2009 at 4:05 PM, rj...@google.com wrote: LGTM And here I was hoping it wasn't me. Thanks! http://gwt-code-reviews.appspot.com/77802 --~--~-~--~~~---~--~~

[gwt-contrib] Re: Fix for issue 4111 (UiBinder emitting comma as decimal separator on non-US locales).

2009-10-07 Thread jgw
On 2009/10/07 20:05:36, Ray Ryan wrote: LGTM And here I was hoping it wasn't me. Thanks! Committed at r6317. http://gwt-code-reviews.appspot.com/77802 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6317 committed - Fix for issue 4111 (comma-decimal-separator bug)....

2009-10-07 Thread codesite-noreply
Revision: 6317 Author: j...@google.com Date: Wed Oct 7 13:08:06 2009 Log: Fix for issue 4111 (comma-decimal-separator bug). Review: http://gwt-code-reviews.appspot.com/77802 http://code.google.com/p/google-web-toolkit/source/detail?r=6317 Modified:

[gwt-contrib] Re: Add a CssResource interface generator

2009-10-07 Thread Amir Kashani
If any work is going to be done in consideration to 4052, it's probably worth keeping http://code.google.com/p/google-web-toolkit/issues/detail?id=4053 in mind, as they're likely related. - Amir On Wed, Oct 7, 2009 at 11:49 AM, rj...@google.com wrote: LGTM I'm not sure if it's worth the

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

2009-10-07 Thread codesite-noreply
Comment by myonceinalifetime: In my previous posts I said that when I put gwt-dev-oophm.jar to the top of classpath the swing UI changes from doing hosted mode to the new mode where it depends on a plugin in the browser to connect the javascript to the java code. So no, its not running the

  1   2   >