Re: Custom Post Linker and Super Dev Mode

2020-01-28 Thread Geoffrey Wiseman
On Tuesday, January 28, 2020 at 4:48:32 AM UTC-5, Thomas Broyer wrote: > > Those methods are to be called from the client code, not the linker itself. > Ok -- makes sense. If I modify the client code that makes those requests to use getModuleBaseForStaticFiles(), it looks like it's now trying to

Re: Custom Post Linker and Super Dev Mode

2020-01-27 Thread Geoffrey Wiseman
On Wednesday, January 15, 2020 at 3:49:34 AM UTC-5, Thomas Broyer wrote: > > IIRC, with Super Dev Mode, public artifacts aren't generated in the > launcher dir; you need to build your path relative to > GWT.getModuleBaseForStaticFiles() >

Re: Custom Post Linker and Super Dev Mode

2020-01-14 Thread Geoffrey Wiseman
I know this is a while back -- did you ever make any headway on this? I've seen this on a project and it wasn't a pressing concern, but if anyone has a fix for this, I'd be happy to hear it. On Tuesday, February 20, 2018 at 11:55:59 AM UTC-5, MCMicS wrote: > > Hi, > I have written an own linker

Re: [gwt-contrib] Re: Maven-ization Status

2013-10-02 Thread Geoffrey Wiseman
On Sunday, September 29, 2013 8:51:47 PM UTC-4, Matthew Dempsky wrote: Anyway, I'm of the same opinion here as Thomas: I want to make it easy for developers to use GWT in their projects and to contribute to GWT itself. I supported switching to Maven as a means to this end, but I'm no fan of

Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread Geoffrey Wiseman
through a sequence in my app) and voila, the problem resurfaced as always. So -- if there is a JIT bug, it either doesn't cause the problem I'm experiencing, or turning off those four flags is insufficient to stop it from recurring. - Geoffrey -- Geoffrey Wiseman geoffrey.wise...@gmail.com http

Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread Geoffrey Wiseman
might have been found. - Geoffrey -- Geoffrey Wiseman geoffrey.wise...@gmail.com http://www.geoffreywiseman.ca -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: GWT App -- Firefox 20 regression?

2013-04-08 Thread Geoffrey Wiseman
On Friday, April 5, 2013 4:49:20 PM UTC-4, Geoffrey Wiseman wrote: I hit an issue this afternoon where I have an unexplained issue with a select where I can't select any of the options in it, and it seems like the handler isn't even being called (or isn't triggering the debugger in Eclipse

GWT App -- Firefox 20 regression?

2013-04-05 Thread Geoffrey Wiseman
I hit an issue this afternoon where I have an unexplained issue with a select where I can't select any of the options in it, and it seems like the handler isn't even being called (or isn't triggering the debugger in Eclipse, anyway), in either dev mode or after deployment in regular browser

Re: GWT Multi-Module Server Classpath Problem

2012-08-14 Thread Geoffrey Wiseman
with it too. - Geoffrey-- Geoffrey Wiseman http://www.geoffreywiseman.ca/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/xZ4Ve-ZuQdAJ

GWT Multi-Module Server Classpath Problem

2012-08-09 Thread Geoffrey Wiseman
I have a 2yo GWT project that's getting a little big for a single module, and we're bringing in a new project and we'd like to share some code. Accordingly, I've split the project into a 'common' codebase and a project-specific codebase. That split isn't perfect yet, but I can't seem to get

GWT_CONTAINER will not be exported or published

2012-04-25 Thread Geoffrey Wiseman
When I use M2E and GWT together in Eclipse these days, I get this warning: Classpath entry com.google.gwt.eclipse.core.GWT_CONTAINER will not be exported or published. Runtime ClassNotFoundExceptions may result. It's not a big deal, but I'd rather get rid of it -- any suggestions? - Geoffrey

Re: GWT_CONTAINER will not be exported or published

2012-04-25 Thread Geoffrey Wiseman
the GWT_CONTAINER entry from the build path, and/or possibly use Maven → Update Project Configuration… I'd done the latter, but I hadn't considered the idea of removing the container, so I hadn't tried that manually. Worked like a charm, and makes sense to boot. Thanks. - Geoffrey -- Geoffrey

Exporting Instance Methods to Hand-Written Javascript

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

Re: Aspect Security / Sonatype Study - GWT Vunlerabilities

2012-03-29 Thread Geoffrey Wiseman
On Thursday, March 29, 2012 4:23:17 PM UTC-4, Joseph Lust wrote: They appear to be companies using antiquated software and GWT being called out is a bit of sensationalist cry by the authors. For example, they place in their chart GWT at the top, not GWT 1.6/7. That is to say that not all

Aspect Security / Sonatype Study - GWT Vunlerabilities

2012-03-28 Thread Geoffrey Wiseman
This study by Aspect Security and Sonatype is making the rounds, and implies that GWT is the most-downloaded component in Maven central with security vulnerabilities: http://www.sonatype.com/Products/Sonatype-Insight/Why-Insight/Mitigate-Security-Risks/Security-Brief I've asked, but I'm curious

Re: Aspect Security / Sonatype Study - GWT Vunlerabilities

2012-03-28 Thread Geoffrey Wiseman
On Wednesday, March 28, 2012 11:10:44 AM UTC-4, Geoffrey Wiseman wrote: This study by Aspect Security and Sonatype is making the rounds, and implies that GWT is the most-downloaded component in Maven central with security vulnerabilities: http://www.sonatype.com/Products/Sonatype-Insight

Re: Re : Re: UiBinder and child HTML 'widgets'

2011-05-13 Thread Geoffrey Wiseman
On May 12, 4:13 pm, Thomas Broyer t.bro...@gmail.com wrote: It's not HTML vs. Widget, it's innerHTML vs. DOM's document.createElement/appendChild. So in GWT, as soon as you start making reusable components, you're breaking the innerHTML layer and have to introduce a Widget. From what I've

Re: UiBinder and child HTML 'widgets'

2011-05-13 Thread Geoffrey Wiseman
On May 12, 3:19 pm, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: On May 12, 1:22 pm, Gal Dolber gal.dol...@gmail.com wrote: In real its ok what you are doing(in theory Widget should be used only when you need events), but the truth is that gwt's panels don't have any support

Re: UiBinder and child HTML 'widgets'

2011-05-13 Thread Geoffrey Wiseman
On May 13, 11:12 am, Thomas Broyer t.bro...@gmail.com wrote: ...when you need an UIObject ;-) Thanks! Helpful food for thought. It definitely sounds like I was trying to make an optimization I don't need based on advice I didn't fully understand. ;) -- You received this message because you

UiBinder and child HTML 'widgets'

2011-05-12 Thread Geoffrey Wiseman
Just to give a little background, I've been doing GWT for a while, but I'm pretty new to UiBinder. I'm starting to fold it in to some of the GWT work I'm doing, and I certainly like some aspects of it. I'm building a page with a lot of repeating display elements that don't require any events (a

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Geoffrey Wiseman
On May 12, 1:07 pm, Thomas Broyer t.bro...@gmail.com wrote: What I don't understand is why Stat is not a Widget if you want to use it like a Widget. [nod] I've changed it to being a widget in the meantime. Basically, I need a reusable piece of display content, but it doesn't need any events,

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Geoffrey Wiseman
On May 12, 1:22 pm, Gal Dolber gal.dol...@gmail.com wrote: In real its ok what you are doing(in theory Widget should be used only when you need events), but the truth is that gwt's panels don't have any support for UiObjects so you need to use Widget. So even HTMLPanel can't easily absorb HTML

View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-01 Thread Geoffrey Wiseman
If you're using Model-View-Presenter with GWT (or you're thinking about it), there are a number of different patterns you can use to co- ordinate between your view and the corresponding presenter. Ray Ryan's Best Practices for Architecting your GWT App at I/O 2009 showed off one pattern, Daniel

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-01 Thread Geoffrey Wiseman
On Mar 1, 3:14 pm, Brian Reilly brian.irei...@gmail.com wrote: It looks to me like Guit leans toward the Abstracted Control View approach, as indicated by the @ViewField annotations on the HasText fields. That would have been my reading too, although it seems as if the abstracted controls are

Building Testable Applications in Google Web Toolkit (GWT)

2011-01-17 Thread Geoffrey Wiseman
I've been polishing my thoughts on testing and GWT for a while, but I've finally posted them to the Codiform blog: http://blog.codiform.com/2011/01/building-testable-applications-with.html Those of you who've been using GWT for a while and come from a developer-test-automation (TDD or otherwise)

Re: Debug problem since GWT 2.1.0, gwt-maven-plugin 2.1.0, Maven 3.0

2010-12-08 Thread Geoffrey Wiseman
On Dec 2, 3:53 pm, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: I'm guessing this is caused by this filed issue?http://code.google.com/p/google-web-toolkit/issues/detail?id=4853 Repeating what I said there on that issue: Near as I can tell, these INDEX.LIST are in gwt-servlet.jar

Re: NullPointerException in PassthroughParser

2010-12-07 Thread Geoffrey Wiseman
On Dec 7, 11:32 pm, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: Unfortunately, I have no idea how it gets in that state, since I'm unable to reproduce it in a simple GWT Test Case, nor find a hole in the GWT code that clearly identifies how a null could get in there. setText() seems

NullPointerException in PassthroughParser

2010-12-06 Thread Geoffrey Wiseman
I'm seeing some NPEs in PassthroughParser when using TextBox, particularly if you touch getValue(), setValue(). getValueOrThrow() seems to pass a null right up to PassthroughParser.parse(), which calls toString() without checking. It happend once, we switched to setText(), problem went away.

Re: Debug problem since GWT 2.1.0, gwt-maven-plugin 2.1.0, Maven 3.0

2010-12-02 Thread Geoffrey Wiseman
I'm guessing this is caused by this filed issue? http://code.google.com/p/google-web-toolkit/issues/detail?id=4853 -- 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-tool...@googlegroups.com. To

Re: Safari 5.0 with GWT 1.7.x?

2010-06-10 Thread Geoffrey Wiseman
On Jun 8, 10:47 am, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: Anyone tried Safari 5.0 with GWT 1.7.x to see if it solves the crash issue? (http://code.google.com/p/google-web-toolkit/issues/detail?id=4220) Got bored of waiting. Tried it myself. Seems to work so far; pleasing

Safari 5.0 with GWT 1.7.x?

2010-06-08 Thread Geoffrey Wiseman
Anyone tried Safari 5.0 with GWT 1.7.x to see if it solves the crash issue? (http://code.google.com/p/google-web-toolkit/issues/detail?id=4220) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Invalid Memory Access - GWT 1.7.1 and OS X 10.6.3?

2010-04-02 Thread Geoffrey Wiseman
Anyone tried this combination? I took down some software updates this morning including 10.6.3, and voila, Invalid memory access when I try to launch hosted mode: http://emberapp.com/geoffrey.wiseman/images/gwt-hosted-mode-in-10-6-3 Either way, I'd like to know what's happening, but I'd also be

Re: Invalid Memory Access - GWT 1.7.1 and OS X 10.6.3?

2010-04-02 Thread Geoffrey Wiseman
On Apr 2, 11:41 am, kozura koz...@gmail.com wrote: Wouldn't happen to be this one, I ran into it to due to Safari upgrading past 4.0.3: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220 There's a workaround in comment 22 that worked. Aw, hell. I explicitly didn't take

Safari 4.0.5 GWT 1.x?

2010-03-12 Thread Geoffrey Wiseman
Anyone tried Safari 4.0.5 with GWT 1.x Hosted Mode? The latest comment on the bug implies the issue hasn't been resolved, but thought I'd check to see if there were more data points with people here: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220 -- You received this message

Making a Custom GWT Theme

2010-02-26 Thread Geoffrey Wiseman
IE uses a significantly larger font for font-size: small than most of the other browsers. I've been able to override the theme defaults for much of the text in the GWT UI, but for some reason, IE7 doesn't seem to want me to fix the font-size: small on the SELECT. No matter what I do in the CSS,

Re: Download, IE7 Download Blocker

2010-02-26 Thread Geoffrey Wiseman
On Feb 18, 10:15 pm, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: I have a GWT application that uses GWT-RPC to send data back and forth to the server.  I've got a button that downloads a PDF based on that data from the server.  PDF Generation works fine, and the download worked fine

Download, IE7 Download Blocker

2010-02-18 Thread Geoffrey Wiseman
I have a GWT application that uses GWT-RPC to send data back and forth to the server. I've got a button that downloads a PDF based on that data from the server. PDF Generation works fine, and the download worked fine using Window.open(). However, as it stood, the download would not include any

Bug in Browsers that's Not in Hosted Mode

2010-02-08 Thread Geoffrey Wiseman
I'm just encountering my first piece of code that works fine in hosted mode (GWT 1.7.1) but totally fails on every browser I try it in. I guess that means I'm going to have to debug the Javascript that I didn't write, since I can't debug in hosted mode. If someone's been through this already and

Re: Bug in Browsers that's Not in Hosted Mode

2010-02-08 Thread Geoffrey Wiseman
On Feb 8, 5:04 pm, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: Just looking for general feedback, although I'm happy to return with more information once I've tracked down the problem. Ah, this is less surprising than I anticipated; I think it boils down to a regular expression issue

Re: Installing GWT Eclipse plugin, version 1.1.0

2009-12-14 Thread Geoffrey Wiseman
On Dec 12, 1:08 am, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: On Dec 11, 2:14 pm, Rajeev Dayal rda...@google.com wrote: We did not opt for this approach for simplicity's sake. Since we were planning on maintaining backwards compatibility with previous SDK versions

Re: Installing GWT Eclipse plugin, version 1.1.0

2009-12-11 Thread Geoffrey Wiseman
On Dec 11, 2:14 pm, Rajeev Dayal rda...@google.com wrote: We did not opt for this approach for simplicity's sake. Since we were planning on maintaining backwards compatibility with previous SDK versions, there was no good reason to provide older versions of the plugin for installation. That

Hibernate, DTOs and Moo

2009-10-19 Thread Geoffrey Wiseman
If you're using Hibernate with GWT, there's a solid writeup on your available choices: http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html If you're not entirely happy with any of those choices, do feel free to take a quick peek at Moo: http://github.com/geoffreywiseman/Moo

Re: SerializationException is lost

2009-10-08 Thread Geoffrey Wiseman
On Sep 12, 7:39 am, Sripathi Krishnan sripathi.krish...@gmail.com wrote: No - GWT doesn't propagate that exception/message to the client. Is this a bug, tracked somewhere, or a deliberate decision that doesn't currently make sense to me? :) --~--~-~--~~~---~--~~

Re: SerializationException is lost

2009-10-08 Thread Geoffrey Wiseman
On Oct 8, 6:56 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: Deliberate decision .. Few reasons that I know of -- I buy the not transmitting the errors to the client part; what I don't understand is why the server log doesn't seem to show anything useful in this case, at least,

History in Hosted Mode on OS X

2009-10-05 Thread Geoffrey Wiseman
I've been doing some development of the project instrastructure to support the GWT history mechanism, and in hosted mode on OS X as launched from the latest 'Google Eclipse Plugin', the history tokens don't show up (as in the URL doesn't change). On friday they were showing up some of the time,

Hosted Mode - Keyboard Shortcuts?

2009-09-08 Thread Geoffrey Wiseman
Are there keyboard shortcuts in the hosted mode browser? In particular, for 'Refresh'? ⌘R doesn't do the trick in OS X. I haven't had a lot of luck searching for GWT hosted mode browser keyboard shortcuts in general. There's nothing obvious in the menus.