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

2009-05-17 Thread Ray Cromwell

Ok, i'll check out the patch. I suspect after Google I/O that the # of
users/contributors will go up a lot, and things will be supported a
lot better,

-Ray


On Sun, May 17, 2009 at 2:28 AM, Cameron Braid  wrote:
> I am checking out the new gwt query code now.
>
> I was using a custom patched version of gwtquery 0.3
> http://code.google.com/p/gwtquery/issues/detail?id=5&can=4
>
> So I will just have to re-do this patch before I can continue.
>
> Kind Regards
>
> Cameron
>
> 2009/5/17 Ray Cromwell 
>>
>> Cameron,
>>   Did you check out a recent version of GQuery? I've been checking in
>> a lot of changes recently because I've revamped it for Google I/O
>> re-release. It now implements about 98% of all jQuery functions.  I've
>> haven't looked at the older rebind rules, but there should be a
>> fall-thru for non-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 
>> wrote:
>> > 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'
>> >  [java]   [ERROR] Line 20:  Rebind result
>> > 'gwtquery.client.impl.SelectorEngineImpl' cannot be abstract
>> >
>> >  [java]    [ERROR] Errors in
>> >
>> > 'jar:file:/media/home/cameronbraid/.m2/repository/com/google/gwt/incubator/gwt-incubator/r1539/gwt-incubator-r1539.jar!/com/google/gwt/gen2/logging/impl/client/ClientConsoleLogHandlerImpl.java'
>> >  [java]   [ERROR] Line 206:  Rebind result
>> >
>> > 'com.google.gwt.gen2.logging.impl.client.ClientConsoleLogHandlerImpl.Impl'
>> > must be a class
>> >
>> >  [java]    [ERROR] Errors in
>> >
>> > 'jar:file:/media/home/cameronbraid/.m2/repository/com/extjs/gxt/1.2.2-r1236/gxt-1.2.2-r1236.jar!/com/extjs/gxt/ui/client/widget/form/NumberPropertyEditor.java'
>> >  [java]   [ERROR] Line 29:  Rebind result
>> > 'com.google.gwt.i18n.client.constants.NumberConstants' must be a class
>> >
>> > These errors didn't occur using an older GWT trunk version r4619
>> >
>> > Cheers
>> >
>> > Cameron
>> >
>> > >
>> >
>>
>>
>
>
> >
>

--~--~-~--~~~---~--~~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~--~~~~--~~--~--~---



[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 

> On Sat, May 16, 2009 at 10:41 PM, Cameron Braid wrote:
>
>> 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'
>>  [java]   [ERROR] Line 20:  Rebind result
>> 'gwtquery.client.impl.SelectorEngineImpl' cannot be abstract
>>
>>  [java][ERROR] Errors in
>> 'jar:file:/media/home/cameronbraid/.m2/repository/com/google/gwt/incubator/gwt-incubator/r1539/gwt-incubator-r1539.jar!/com/google/gwt/gen2/logging/impl/client/ClientConsoleLogHandlerImpl.java'
>>  [java]   [ERROR] Line 206:  Rebind result
>> 'com.google.gwt.gen2.logging.impl.client.ClientConsoleLogHandlerImpl.Impl'
>> must be a class
>>
>>  [java][ERROR] Errors in
>> 'jar:file:/media/home/cameronbraid/.m2/repository/com/extjs/gxt/1.2.2-r1236/gxt-1.2.2-r1236.jar!/com/extjs/gxt/ui/client/widget/form/NumberPropertyEditor.java'
>>  [java]   [ERROR] Line 29:  Rebind result
>> 'com.google.gwt.i18n.client.constants.NumberConstants' must be a class
>>
>> These errors didn't occur using an older GWT trunk version r4619
>>
>
> The first two are probably running into the IE8 changes (where you need the
> ie8 deferred binding rules for user.agent-sensitive bindings).
>
> The NumberConstants change was due to adding runtime locales support, and
> you should no longer be GWT.create'ing it, but instead use
> LocaleInfo.getCurrentLocale().getNumberConstants().  If you really must do
> GWT.create, you can use NumberConstantsImpl but that is an implementation
> class and may change, and you will lose the ability to use runtime locales.
>
> --
> John A. Tamplin
> Software Engineer (GWT), Google
>
> >
>

--~--~-~--~~~---~--~~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~--~~~~--~~--~--~---



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

2009-05-17 Thread Cameron Braid
I am checking out the new gwt query code now.

I was using a custom patched version of gwtquery 0.3
http://code.google.com/p/gwtquery/issues/detail?id=5&can=4

So I will just have to re-do this patch before I can continue.

Kind Regards

Cameron

2009/5/17 Ray Cromwell 

>
> Cameron,
>   Did you check out a recent version of GQuery? I've been checking in
> a lot of changes recently because I've revamped it for Google I/O
> re-release. It now implements about 98% of all jQuery functions.  I've
> haven't looked at the older rebind rules, but there should be a
> fall-thru for non-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 
> wrote:
> > 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'
> >  [java]   [ERROR] Line 20:  Rebind result
> > 'gwtquery.client.impl.SelectorEngineImpl' cannot be abstract
> >
> >  [java][ERROR] Errors in
> >
> 'jar:file:/media/home/cameronbraid/.m2/repository/com/google/gwt/incubator/gwt-incubator/r1539/gwt-incubator-r1539.jar!/com/google/gwt/gen2/logging/impl/client/ClientConsoleLogHandlerImpl.java'
> >  [java]   [ERROR] Line 206:  Rebind result
> >
> 'com.google.gwt.gen2.logging.impl.client.ClientConsoleLogHandlerImpl.Impl'
> > must be a class
> >
> >  [java][ERROR] Errors in
> >
> 'jar:file:/media/home/cameronbraid/.m2/repository/com/extjs/gxt/1.2.2-r1236/gxt-1.2.2-r1236.jar!/com/extjs/gxt/ui/client/widget/form/NumberPropertyEditor.java'
> >  [java]   [ERROR] Line 29:  Rebind result
> > 'com.google.gwt.i18n.client.constants.NumberConstants' must be a class
> >
> > These errors didn't occur using an older GWT trunk version r4619
> >
> > Cheers
> >
> > Cameron
> >
> > >
> >
>
> >
>

--~--~-~--~~~---~--~~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~--~~~~--~~--~--~---