Re: Collator support

2009-06-22 Thread nicolas.deloof

For information I made some test on using the javascript
String.localeCompare() method to handle this.
My need is that as a French guy I need "état" to be sorted before
"civil". java.text.Collator is needed to do this in Java but I don't
need all this class features.
I've used this :

public class Collator {

public static final Collator getInstance()  {
return instance;
}

private static final Collator instance = new Collator();

public native int compare( String source, String target ); /*-{
   return source.localeCompare( target );
   }-*/
}

This works on IE (I don't need multi-browser support for my current
app), but this method also exists on Firefox > 2 and Webkit AFAIK. Not
sure it behaves the same way on other browsers.

Hope this helps

On 22 juin, 12:30, "nicolas.deloof"  wrote:
> I've searched an Apache compatible implementation to add such support
> in gwtx, but didn't find one. Apache Harmony is delegating to icu4j
> that requires many more classes to be ported.
>
> On 8 juin, 16:59, Akiim  wrote:
>
>
>
> > I hope anyone will find a solution !
> > Collator equivalent in GWT is missing !
>
> > Thanks,
> > Cheers
--~--~-~--~~~---~--~~
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 to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Collator support

2009-06-22 Thread nicolas.deloof

I've searched an Apache compatible implementation to add such support
in gwtx, but didn't find one. Apache Harmony is delegating to icu4j
that requires many more classes to be ported.

On 8 juin, 16:59, Akiim  wrote:
> I hope anyone will find a solution !
> Collator equivalent in GWT is missing !
>
> Thanks,
> Cheers
--~--~-~--~~~---~--~~
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 to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: auto-deploy GWT artifacts on googlecode maven repository ?

2008-11-12 Thread nicolas.deloof

I also added a comment to 
http://code.google.com/p/google-web-toolkit/issues/detail?id=1609&q=maven
that relates to this requirement for maven users.

On 12 nov, 10:19, "nicolas.deloof" <[EMAIL PROTECTED]> wrote:
> Hi
>
> Maven guys helped Gregory Kick from Google to setup a maven repository
> (http://code.google.com/p/google-maven-repository/) for google
> artifacts. The idea is to have all google projects available to maven
> user without requirement for a third-party to publish them on maven
> plublic repo.
>
> I'm another apache maven developper and published previous versions of
> GWT :http://repo2.maven.org/maven2/com/google/gwt/
>
> Those artifacts are the same GWT guys publish using googlecode, just
> with some tweak on names to match maven naming/versionning
> conventions.
>
> There is also 3 other artifact in ZIP format to package all necessary
> native libs. It is used by both mojo [1] and googlecode [2] GWT
> plugins. This one is not yet built by the GWT ant script, but could
> also be easily created.
>
> Could you please support this artifact publication process as part of
> the GWT build process ? I could contribute the maven-side if you like
> - please note this DOESN'T require to replace the existing ant script
> or to create a maven-based build script, only publication process is
> in discution here.
>
> [1]http://mojo.codehaus.org/gwt-maven-plugin/(my own plugin :)
> [2]http://code.google.com/p/gwt-maven/
--~--~-~--~~~---~--~~
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 to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



auto-deploy GWT artifacts on googlecode maven repository ?

2008-11-12 Thread nicolas.deloof

Hi

Maven guys helped Gregory Kick from Google to setup a maven repository
(http://code.google.com/p/google-maven-repository/) for google
artifacts. The idea is to have all google projects available to maven
user without requirement for a third-party to publish them on maven
plublic repo.

I'm another apache maven developper and published previous versions of
GWT :
http://repo2.maven.org/maven2/com/google/gwt/

Those artifacts are the same GWT guys publish using googlecode, just
with some tweak on names to match maven naming/versionning
conventions.

There is also 3 other artifact in ZIP format to package all necessary
native libs. It is used by both mojo [1] and googlecode [2] GWT
plugins. This one is not yet built by the GWT ant script, but could
also be easily created.

Could you please support this artifact publication process as part of
the GWT build process ? I could contribute the maven-side if you like
- please note this DOESN'T require to replace the existing ant script
or to create a maven-based build script, only publication process is
in discution here.


[1] http://mojo.codehaus.org/gwt-maven-plugin/ (my own plugin :)
[2] http://code.google.com/p/gwt-maven/
--~--~-~--~~~---~--~~
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 to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Announcing GWT 1.5.3

2008-10-20 Thread nicolas.deloof

Hi,

for maven users, this release will be available via maven central
repository in few hours (after rsync does its job).

Nicolas

On 18 oct, 00:22, Ray Ryan <[EMAIL PROTECTED]> wrote:
> Hi, all.
>
> We have just deprecated GWT 1.5.2, and replaced it with GWT 1.5.3.
> This new release has a small handful of patches, mainly aimed at
> fixing RPC problems with Android. You can download the update from the
> usual location:
>
>  http://code.google.com/webtoolkit/download.html
>
> You may find that this pretty page hasn't updated yet in your neck of
> the woods. If so, try going straight to the download 
> server:http://code.google.com/p/google-web-toolkit/downloads/list.
>
> Enjoy,
> rjrjr
>
> Release Notes for 1.5.3
>
> Fixed Issues
>
>  - RPC requests no longer fail on the embedded Android web browser
>
>  - Leaf TreeItems now line up with their non-leaf siblings
>
>  - Removing the last child node from a TreeItem no longer creates
> extra margins on the left
>
>  - HTTPRequest no longer uses POST instead of GET on some IE installs
> because of incorrect XHR selection
>
>  - Compiler now uses a more reliable check to prevent methods with
> local variables from being inlined
> getAbsoluteTop()/Left() can no longer return non-integral values
>
>  - Time.valueOf() no longer fails to parse "08:00:00" or incorrectly
> accepts "0xC:0xB:0xA".
--~--~-~--~~~---~--~~
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 to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



How to select the active tab based on requested URI ?

2008-10-06 Thread nicolas.deloof

Hello,

My GWT app uses a tabbedPannel layout, and I'd like to select the
default active one based on requested URL, so that I can create links
to the desired URL from traditional HTML (http://
myModule.html#someTab).

I can"t find how to get the requested URL from EntryPoint

Nicolas
--~--~-~--~~~---~--~~
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 to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---