[gwt-contrib] incubator and gwt 2.1

2010-09-02 Thread Cameron Braid
What is the plan to bring incubator into compatability with gwt 2.1 ? Cheers Cameron -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] gwt-incubator version compatible with GWT 2.1

2010-07-12 Thread Cameron Braid
Just curious when the gwt-incubator will become compatible with GWT 2.1? Cameron -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Prettier GWT version names for upcoming 2.0 releases

2009-08-29 Thread Cameron Braid
JBoss use a naming scheme that sorts alphabetically, maybe it is worth considering http://www.jboss.org/jbossas/downloads/ Applied to the names in the original email 1) gwt-2.0.0-m1.zip 2) gwt-2.0.0-m2.zip 3) gwt-2.0.0-rc1.zip 4) gwt-2.0.0.zip They could be : 1) gwt-2.0.0-Beta1.zip (or could

[gwt-contrib] Re: Inlining nocache.js

2009-08-07 Thread Cameron Braid
I'd be keen to see this land in trunk ! Cam 2009/8/7 John Tamplin j...@google.com On Fri, Aug 7, 2009 at 3:51 AM, George Georgovassilis g.georgovassi...@gmail.com wrote: I'd like to save first time visitors that roundtrip to fetch nocache.js. Instead I've declared the module HTML page as

[gwt-contrib] Re: naming runAsync calls

2009-06-24 Thread Cameron Braid
Each of these different libraries would be enclosed within a unique GWT module therefore when you refer to the split point name, can't you just use the module name + split point name ? in module ThirdParty : GWT.runAsync(one, new RunAsyncCallback() { ... }); in MyModule : GWT.runAsync(one, new

[gwt-contrib] Re: naming runAsync calls

2009-06-24 Thread Cameron Braid
) { ... } public void onSucess() { new EmailCompositionView().activate(); } }); } On Wed, Jun 24, 2009 at 6:50 PM, Cameron Braid came...@braid.com.auwrote: Each of these different libraries would be enclosed within a unique GWT module therefore when you refer to the split point

[gwt-contrib] Re: naming runAsync calls

2009-06-19 Thread Cameron Braid
You could always change the signiture of GWT.runAsync to include a String parameter as the first parameter. I must be a literal in code, and would be optimized out / ignored by the compiler : GWT.runAsync(foo, new RunAsyncCallback() { Cam 2009/6/20 Lex Spoon sp...@google.com There are

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-16 Thread Cameron Braid
. Cheers Cameron 2009/6/17 Ray Cromwell cromwell...@gmail.com Cameron, were you at Google I/O or did you sign up for the sandbox? I can ask a Googler to invite you if not. -Ray On Mon, Jun 15, 2009 at 6:21 PM, Cameron Braid came...@braid.com.auwrote: 2009/6/16 Bruce Johnson br

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-15 Thread Cameron Braid
2009/6/16 Bruce Johnson br...@google.com I'm starting to make a bit o' progress on this. I'll send out a design doc real soon now. BTW, anyone on the Contributors list here have Wave sandbox accounts? Sure would be easier to discuss this in a wave... No :( But if you are offering invites,

[gwt-contrib] Re: gwt TRUNK seems to be to restrictive for what GWT.create can return

2009-05-17 Thread Cameron Braid
-matched browers to SelectorEngineImplJS. But John could be right, it could be that the fall-thru isn't working and IE8 is resolving to no binding. -Ray On Sat, May 16, 2009 at 7:41 PM, Cameron Braid came...@braid.com.au wrote: I am tryng gwt trunk r5406 and have run into issues with GWT's

[gwt-contrib] Re: gwt TRUNK seems to be to restrictive for what GWT.create can return

2009-05-17 Thread Cameron Braid
Thanks for the fast reply, and the explanation. Kind Regards Cameron 2009/5/17 John Tamplin j...@google.com On Sat, May 16, 2009 at 10:41 PM, Cameron Braid came...@braid.com.auwrote: I am tryng gwt trunk r5406 and have run into issues with GWT's rebinding. here are some errors from my

[gwt-contrib] gwt TRUNK seems to be to restrictive for what GWT.create can return

2009-05-16 Thread Cameron Braid
I am tryng gwt trunk r5406 and have run into issues with GWT's rebinding. here are some errors from my different modules : [java][ERROR] Errors in 'jar:file:/media/home/cameronbraid/.m2/repository/gwtquery/gwtquery/0.3-a/gwtquery-0.3-a.jar!/gwtquery/client/SelectorEngine.java'

[gwt-contrib] Re: Getting oophm working

2009-03-20 Thread Cameron Braid
BTW, OOPHM in trunk (as of earlier this week) supports HostedMode and the war format, and webAppCreator will produce a oophm target in the ant build file, so you can run it with just ant oophm. It does not yet create eclipse launch configs for OOPHM, but it shouldn't be hard to figure out --

[gwt-contrib] Please expose moveSelectionUp/Down methods in FastTree

2009-03-17 Thread Cameron Braid
in gwt incubator's FastTree, moveSelectionUp and moveSelectionDown are both private. Please either make these methods protected, so that I can subclass FastTree and make my own public api to call them, or provide a public API to controll navigation. It coudld be as simple as adding these two

[gwt-contrib] build issue in trunk with 'ant clean buildonly'

2009-02-18 Thread Cameron Braid
I use ant clean buildonly to quickly build gwt without the examples. However it fails due to missing folders. I have created an issue to track it, and attached a patch that fixes it. http://code.google.com/p/google-web-toolkit/issues/detail?id=3370 Cheers Cameron

[gwt-contrib] Re: branches oophm does not compile

2009-02-11 Thread Cameron Braid
On Wed, Feb 11, 2009 at 11:46 PM, Sebastien chassa...@gmail.com wrote: Hi, Oooh it's great ! It works well. Now I can debug and use firebug in the same time ! Can you confirm me that the trunk will be used for the 1.6 M2 ? (It seems the 1.6 M1 does not contains the gwt-*oophm jar). As

[gwt-contrib] Re: OOPHM in gwt trunk doesn't like ExtGWT's Viewport class

2009-02-04 Thread Cameron Braid
AM, Cameron Braid came...@braid.com.auwrote: Using ExtGWT 1.2.1, with this simple entry point public void onModuleLoad() { Viewport vp = new Viewport(); RootPanel.get().add(vp); } causes the module to immediately unload with this message in the firebug console

[gwt-contrib] Re: strange compiler error in trunk

2009-02-04 Thread Cameron Braid
and should be released in a future version. Cheers Cameron On Fri, Jan 16, 2009 at 7:27 PM, Cameron Braid came...@braid.com.au wrote: using gwt r4486 from trunk The following compiler error only occurs in my gwt modules that depend on ExtGWT. I don't know why it is looking

[gwt-contrib] gwt 1.6 PushButton - please add constructor

2009-01-25 Thread Cameron Braid
Please add the PushButton(Image,Image,ClickHandler) constructor that parities the PushButton(Image,Image,ClickListener) of the deprecated listener based event system. Thanks, Cameron ### Eclipse Workspace Patch 1.0 #P gwt-1.6 Index: user/src/com/google/gwt/user/client/ui/PushButton.java

[gwt-contrib] Re: gwt 1.6 PushButton - please add constructor

2009-01-25 Thread Cameron Braid
Issue created http://code.google.com/p/google-web-toolkit/issues/detail?id=3314 On Jan 26, 12:20 pm, Cameron Braid came...@braid.com.au wrote: Please add the PushButton(Image,Image,ClickHandler) constructor that parities the PushButton(Image,Image,ClickListener) of the deprecated listener

[gwt-contrib] Re: OOPHM development branches

2009-01-19 Thread Cameron Braid
On Mon, Dec 15, 2008 at 9:45 AM, Cameron Braid came...@braid.com.au wrote: b) bug in hosted.html - see overlay-hosted.html.patch The patch for hosted.html is required because I need gwt to support a url encoded gwt.hosted value My webapp re-writes urls to pass along some query string

[gwt-contrib] Re: OOPHM development branches

2009-01-19 Thread Cameron Braid
It looks to be more serious than a warning. Immediately after this warning is printed, the module is unloaded and the oophm plugin is disconnected from the hosted mode server. Could it be something to do with my module serializing ArrayList ? Cam On Tue, Dec 16, 2008 at 8:40 AM, BobV

[gwt-contrib] strange compiler error in trunk

2009-01-16 Thread Cameron Braid
using gwt r4486 from trunk The following compiler error only occurs in my gwt modules that depend on ExtGWT. I don't know why it is looking for an implementation of the method on * Object* ? Any clues on why this is happening ? Is it a bug ? [java][ERROR] An internal compiler

[gwt-contrib] Re: strange compiler error in trunk

2009-01-16 Thread Cameron Braid
I am using version 1.2.1 I created a new module that triggers the compiler error : module inherits name=com.extjs.gxt.ui.GXT / entry-point class='error.client.GwtCompilerErrorEntryPoint' / set-property name=locale value=default/ /module package error.client; import

Re: Displaying a dynamic SSL site seal

2009-01-08 Thread Cameron Braid
One easy workaround is to use an IFRAME in GWT which shows a URL on your server that includes that script code. All you have to do is match up the frame's width and height to the seal's dimensions. example : http://yourserver/siteSeal.html script language=JavaScript

[gwt-contrib] Re: OOPHM development branches

2008-12-14 Thread Cameron Braid
I've been giving OOPHM a try and have run into a couple of issues a) bug in compiler - see attached oophm-stacktrace.txt b) bug in hosted.html - see overlay-hosted.html.patch The patch for hosted.html is required because I need gwt to support a url encoded gwt.hosted value My webapp re-writes

[gwt-contrib] Re: RR: runAsync merge to trunk

2008-10-21 Thread Cameron Braid
Are there any design docs for runAsync ? Cheers Cameron On Sat, Oct 18, 2008 at 2:24 AM, Lex Spoon [EMAIL PROTECTED] wrote: Hi, Bob, Can you be the main reviewer for the merge of the runAsync branch to the trunk? The attached patch is the outstanding difference between trunk and branch,