Learning RequestFactory but DynaTableRf fails

2010-10-26 Thread Rud
Working to understand the RequestFactory with the DynaTableRf sample. Problem is the @ProxyFor ad @Service annotations all have errors about not finding the associated classes, e.g. Address, Person, SchoolCalendarService. Error is: com.google.gwt.sample.dynatablerf.domain.Address can not be found

Re: how to extends class with UiBinder

2010-10-26 Thread Tamer Sezgin
Did you specify where to look for the classes in the *my* namespace? There should be a line at the top of your new xml.ui file, which says something like: xmlns:*my*='urn:import:com.example.project.client' You can check the GWT mail example, in the following file it uses Mailboxes, Tasks, and

Currency Symbol in NumberFormat

2010-10-26 Thread PARAG
Hi, I want to use custom number format which may contain currency symbol for perticular locale. I found that with the com.google.gwt.i18n.client.NumberFormat class we can achieve this but the symbol for the currency is ¤ instead of ¤ in java. Note that the unicode used is same as that of the

Re: Route animation in google maps with GWT

2010-10-26 Thread Jan
Hi Chad, thanks for your answers. You pretty much got me out of trouble.. :-) But there are still one or two questions: - Your marker (arrow) change his angle adjustement. How did you do that? Because i didn't found a possibility to set the angle.. - What kind of Elements are used in your Tim

Re: Currency Symbol in NumberFormat

2010-10-26 Thread Jim Douglas
I think you're getting thrown by a small character encoding error on that documentation page: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/i18n/client/NumberFormat.html The page will display correctly if you force it to display in UTF-8. To do that, select something

Re: Idea of RequestFactory

2010-10-26 Thread Rafi
AFAICT, actually, when doing your second request (find(personId).with(address)), the previous entity proxy will be updated; i.e. for each proxy there's a canonical, immutable instance that's being updated in place when a response comes back from the server, and there are editable instances

GWT and CSS - Style Problem

2010-10-26 Thread alexoffspring
Try to definite your CSS style for a generic Decorated Stack Panel like following: .gwt-DecoratedStackPanel .gwt-StackPanelItem { background-color: #00; color: #00; border-color: #00; } .gwt-DecoratedStackPanel { background-color:

Re: problem with background position

2010-10-26 Thread Thomas Broyer
On 26 oct, 05:41, ailinykh ailin...@gmail.com wrote: Hello, everybody! I try to manipulate with background image and background position. I need to change background image and background position on the fly. What I have is a couple of images: @sprite .i1 {                        

Re: Learning RequestFactory but DynaTableRf fails

2010-10-26 Thread Thomas Broyer
On 26 oct, 08:18, Rud rudmerr...@gmail.com wrote: Working to understand the RequestFactory with the DynaTableRf sample. Problem is the @ProxyFor ad @Service annotations all have errors about not finding the associated classes, e.g. Address, Person, SchoolCalendarService. Error is:

Re: gwt-maven-plugin from Google and Codehaus

2010-10-26 Thread Thomas Broyer
On 26 oct, 07:28, hezjing hezj...@gmail.com wrote: Hi GWT 2.1 is using gwt-maven-plugin 1.3.2.google, and it is maintain in GWT's plugin repository. What is the difference between this plugin and the gwt-maven-plugin 1.2 fromhttp://mojo.codehaus.org/gwt-maven-plugin/ Where can I find the

Re: Question that i don't found in yours FAQ's

2010-10-26 Thread Thomas Broyer
On 26 oct, 07:37, Daniel Kurka kurka.dan...@googlemail.com wrote: If you have some restrictions on your code on the server side (beeing able to run in a 1.4 java enviroment) you can still use java 6 to run gwt. (and you should) just make sure to set your javac to compile with java 1.4 as

Re: how to extends class with UiBinder

2010-10-26 Thread Thomas Broyer
On 25 oct, 19:41, mars marsg...@gmail.com wrote: hi, I need to create a class, myBox,  to extends HTMLPanel so that i can add content to it. here is my code: ui.xml: ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder      xmlns:g=urn:import:com.google.gwt.user.client.ui    

Re: Question that i don't found in yours FAQ's

2010-10-26 Thread ep
you could compile your CLIENT classes with whatever java version you want, at the end javascript comes out. for the server part you have to compile binaries compatible to your server environment, you'd better write compilation script in ant so you can choose different targets for compilation

Re: How do I send program generated Images to my users?

2010-10-26 Thread ep
if your servlet generates an image, why do you want to get it saved on the disk? I'd also do it the way Daniel suggested, so just keep your image generating servlet as standalone, better yet allow extensions so you can inquire an image not only like /imageGenerator but / imageGenerator.jpg, then

RPC and session timeout

2010-10-26 Thread andreas
Hi everyone, what is a reasonable setup/realization for enabling restoring RPCs after a session timeout, server restart/disconnect and re-login? Take the following scenario: - GWT application on standard Tomcat - container managed authentication via login.jsp (simply redirects to GWT html upon

Re: Gwt maps

2010-10-26 Thread Blagoja Chavkoski
Hi Didier, Tnx for the replay! Yes I know this, but mine question was is there a way to create something like this... (this is what i dont understand) They give about what 3000 request per day...but if you like to do more in a same time some of them are discarded so exp. for 40 locations

Re: GWT and CSS - Style Problem

2010-10-26 Thread alexoffspring
Obviously, the Style name of decoratedStackPanel is gwt-DecoratedStackPanel On 26 Ott, 10:39, alexoffspring alessales...@gmail.com wrote: Try to definite your CSS style for a generic Decorated Stack Panel like following: .gwt-DecoratedStackPanel .gwt-StackPanelItem {    

Re: GWT and CSS - Style Problem

2010-10-26 Thread alexoffspring
If i do delete any occurence of the .gwt-DecoratedStackPanel style in the CSS file, i ALWAYS see the panel with its DEFAULT STYLE (!?) If the style is not present in my Main.CSS, where is it defined Is it because this widget uses others CSS styles, like: .gwt-StackPanel ...?? .gwt-TabBar

Re: gwt 2.1 - what is correct DAO architecture while using RequestFactory?

2010-10-26 Thread David Chandler
Ramon, Here's the GWT issue for the requested change: http://code.google.com/p/google-web-toolkit/issues/detail?id=5482 /dmc On Mon, Oct 25, 2010 at 8:53 AM, Ramon Buckland ra...@thebuckland.com wrote: Though there are shortcomings in the RC1 release; which includes the findXxx static method

Re: Dev plugin for firefox 3.7

2010-10-26 Thread slowpoison
On Sep 14, 8:21 am, John Tamplin j...@google.com wrote: I am working on it right now.  I have it working on FF40, but I am still trying to get it where one XPI will work on both FF3 and FF4. Any update about this, John? -- You received this message because you are subscribed to the Google

Re: What Major Companies Use GWT???

2010-10-26 Thread alab
A lot of companies do, but internally. I know Goldman Sachs used it internally..a few years back. I am not sure if they still do. On Oct 25, 11:06 am, Sir Codealot blacat...@comcast.net wrote: What major companies are already using GWT?  I'm a little surprised that this sort of info is not

How can I het a URL link to open up my web app passing an argument?

2010-10-26 Thread novarse
Hi all, Lets say I have a twitter message containing an URL link which has an event Id as an argument somewhere as part of the URL e.g. Next event is tuesday. http://myapp.appspot.com?eventId=678; or Next event is tuesday. http://myapp.appspot.com/myservlet?eventId=678; or some other composition??

using two DefaultStringMapValue in the same constants file

2010-10-26 Thread Zemer
Quite sute this is a gwt bug - in one constants file i have two DefaultStringMapValue annotations: @DefaultStringMapValue( { w,Week, m,Month, d,Day }) MapString,String periods(); and

Facing issue in IE while using DecoratorPanel with DockLayout

2010-10-26 Thread jack smith
I want to show round corners in my application using DecoratorPanel. But DecoratorPanel doesn't work well with DockLayoutPanel. I made some changes in CSS to use DecoratorPanel with DockLayoutPanel. It works fine in firefox and chrome but have problem in IE8. It cuts the bottom border in IE8. I

Re: How to get list of objects from JSON ??

2010-10-26 Thread Santosh kumar
Hi , Moitra and Thomas Thanks for your reply.. !! Anyways i got a solution.. *use this code in the servlet* --- - get the list of products (productList) and use it in the servlet: - This is JSON format to form a array of objects // Open the script tag writer.append(script

Re: What Major Companies Use GWT???

2010-10-26 Thread Stefan Bachert
Hi, On 25 Okt., 11:06, Sir Codealot blacat...@comcast.net wrote: What major companies are already using GWT?  I'm a little surprised that this sort of info is not available and obvious, front and center, on the GWT FAQs, but I can't find it.   I agree the business position of GWT is to weak

Re: How to get list of objects from JSON ??

2010-10-26 Thread Subhrajyoti Moitra
IMHO Overlay types are so much better than this round about solution. WHy cant your servlet just output JSON data instead of some script? What you are doing manually, would have been done automatically if u used Overlay types. Anyways, good you were able to sort this problem out. Thanks,

Re: GWT and CSS - Style Problem

2010-10-26 Thread Jeff Larsen
The default styles are being pulled in via this line in your *.gwt.xml inherits name='com.google.gwt.user.theme.standard.Standard'/ On Oct 26, 6:35 am, alexoffspring alessales...@gmail.com wrote: If i do delete any occurence of the .gwt-DecoratedStackPanel style in the CSS file, i ALWAYS

Re: How do I send program generated Images to my users?

2010-10-26 Thread Greg Dougherty
- Generate the image with a servlet on the fly (return the appropriate mime type and the image) or (if the images are small) Great idea. HOW DO I DO THAT? Sorry for the shouting, but I'm already generating the things on the fly. If I knew how to return them other than as a file, I'd already

Re: How to get list of objects from JSON ??

2010-10-26 Thread Jeff Schwartz
If the servlet is returning json then wouldn't just calling eval(jsonString) in your client create the javascript objects? On Tue, Oct 26, 2010 at 9:42 AM, Subhrajyoti Moitra subhrajyo...@gmail.comwrote: IMHO Overlay types are so much better than this round about solution. WHy cant your

Re: GWT-Platform spring integration

2010-10-26 Thread PhilBeaudoin
Hi Travis, The feature has been contributed only recently and has not even compiled in the default jar. Some people have successfully compiled and used the feature and are working on a sample and it will make it in the soon to be released 0.5. You can star and follow this issue to be notified of

Re: What Major Companies Use GWT???

2010-10-26 Thread PhilBeaudoin
VMWare uses it in its new Code2Cloud project: http://tasktop.com/blog/tasktop/springsource-vmware-code2cloud Google do use it in many products, in particular adwords. There is a question on the topic in Quora, might be a good place to add some answers:

Flashing/collapsing CellTable

2010-10-26 Thread Sebastian Beigel
Hi, I'm looking at the new data presentation widgets in GWT 2.1 and I mostly like what I see :) I have one problem with the workflow updating/paging a cell table though. I'm using a (heavily) customized version of AbstractProxyListActivity from the Expenses example and I just don't understand

SEO Question.

2010-10-26 Thread Subhrajyoti Moitra
Hello, I have to build an application which has a PHP backend and GWT client. How do we make it crawlable? The urls follows Google, ajax url format of #!. How do we take HTMLsnapshots using PHP or GWT? I know HTMLUnit does the job, but the backend is PHP and not java. Please help. Thanks,

Re: client code from external directory

2010-10-26 Thread Alex Shabanov
Thank you so much for your advice. I've created a small proof-of-concept project (available for svn, revision 291: svn co http://webkit-jspf.googlecode.com/svn/trunk/tmp/maven/gwt-external-lib gwt-external-lib) Basically it's structure follows the one I described above, there is a generic

Re: How to get list of objects from JSON ??

2010-10-26 Thread Thomas Broyer
On 26 oct, 15:38, Santosh kumar kopp@gmail.com wrote: Hi , Moitra and Thomas Thanks for your reply.. !! Anyways i got a solution.. *use this code in the servlet* --- - get the list of products (productList) and use it in the servlet: - This is JSON format to form a array of

Re: How to get list of objects from JSON ??

2010-10-26 Thread Thomas Broyer
On 26 oct, 16:27, Jeff Schwartz jefftschwa...@gmail.com wrote: If the servlet is returning json then wouldn't just calling eval(jsonString) in your client create the javascript objects? The servlet isn't returning JSON, it's outputting a script to go right in the dynamic HTML host page:

GWT 2.1 cell table paging bug?

2010-10-26 Thread Sebastian Beigel
AbstractPager uses HasRows#getVisibleRange()#getLength() to obtain the page size. This doesn't seem to be a good idea as you can see in the Showcase exmpale (Cell Widgets/Cell Table [1]). This table gets populated with 250 entries and shows 15 per page. Now click on the next page button. You go

Re: How do I send program generated Images to my users?

2010-10-26 Thread Thomas Broyer
On 26 oct, 16:18, Greg Dougherty dougherty.greg...@mayo.edu wrote: - Generate the image with a servlet on the fly (return the appropriate mime type and the image) or (if the images are small) Great idea.  HOW DO I DO THAT? Sorry for the shouting, but I'm already generating the things on

Re: How to get list of objects from JSON ??

2010-10-26 Thread Sebastian Beigel
Hi Thomas, Of course, if your really want Product as a real bean, and a List? instead of a JsArray?, you can copy things around (see below); but really I believe overlay types are much more readable than anything using com.google.gwt.json.* classes. I used to use overlay type heavily

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-26 Thread nacho
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/History.html On 26 oct, 07:59, novarse stephenmwi...@gmail.com wrote: Hi all, Lets say I have a twitter message containing an URL link which has an event Id as an argument somewhere as part of the URL e.g.

Re: Learning RequestFactory but DynaTableRf fails

2010-10-26 Thread Rud
I am using Eclipse Helios with automatic build so I assumed everything is being compiled. But I did a GWT compile which didn't change anything. Then I tried adding source path=domain/ to the gwt.xml and that fixed all but SchoolCalendarService which is in 'server'. Surely don't want to add

Re: SEO Question.

2010-10-26 Thread András Csányi
On 26 October 2010 18:10, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: Hello, I have to build an application which has a PHP backend and GWT client. How do we make it crawlable? The urls follows Google, ajax url format of #!. You can give click events the particular elements for example

Re: SEO Question.

2010-10-26 Thread András Csányi
Guys, I'm sorry! I thought this is the Selenium list. :) Please ignore my letter! :D On 26 October 2010 19:58, András Csányi sayusi.a...@gmail.com wrote: On 26 October 2010 18:10, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: Hello, I have to build an application which has a PHP backend and

Remote Unit Testing with JUnit and Guice Servlet

2010-10-26 Thread Nooonika
My project is using guice servlet instead of standart web.xml file. Has anyone any good examples how to configure Guice servlet to use with GWT Remote Testing Mechanism -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Navigation between pages.

2010-10-26 Thread Caram
How can I open a Java that makes a page by another page? Assuming that I have a page that have only a button and the event is only open another page that is made by Java code, how can I do that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Regular Expression Extractor for HTTPS

2010-10-26 Thread Tirumala k
Hi, Can anyone give me the solution for the below issue. I am trying to extract the business entity in the below URL which is S385175. for this I have used the below regular expressions parent.selectBusinessEntity\((.+?)\) The above expression is looks good for HTTP but not for HTTPS.

Re: How to get list of objects from JSON ??

2010-10-26 Thread Subhrajyoti Moitra
All this led me to write a Generator which inspects my models (real beans) and emits JSON mapping code handling simple properties, object graphs and collections.= This is very interesting. Can u give some hints as how to go about writing this Generator? Thanks, Subhro. On Tue, Oct 26, 2010 at

Re: How to get list of objects from JSON ??

2010-10-26 Thread Harald Pehl
Feel free to take a look at Piriti (http://code.google.com/p/piriti/). It's a JSON / XML mapper for GWT using annotations and defered binding. Using Piriti you can have real POJOs on the client side. References and inheritance is supported. I'm about to release version 0.6 soon which will add

Re: Currency Symbol in NumberFormat

2010-10-26 Thread Chris Conroy
Jim, Thanks for pointing out this problem. jat has just committed a fix: http://code.google.com/p/google-web-toolkit/source/detail?r=9150 On Tue, Oct 26, 2010 at 3:47 AM, Jim Douglas jdou...@basis.com wrote: I think you're getting thrown by a small character encoding error on that

Re: How to get list of objects from JSON ??

2010-10-26 Thread Subhrajyoti Moitra
Thanks Harald for reminding me. I actually used priti for some xml work. Not JSON. Yes, i think this also is a good alternative. Thanks, Subhro. On Wed, Oct 27, 2010 at 1:48 AM, Harald Pehl harald.p...@googlemail.comwrote: Feel free to take a look at Piriti (http://code.google.com/p/piriti/).

Re: [appengine-java] Re: Please anyone from google on this

2010-10-26 Thread Katharina Probst
Hi Gal, I've looked into this and it appears that your page is indeed getting indexed properly -- so from Googlebot's perspective, all is good (although we are looking at modifying Fetch as Googlebot to give you the proper answer in the future). Hope this helps! kathrin On Fri, Oct 22, 2010

Re: How do I send program generated Images to my users?

2010-10-26 Thread Greg Dougherty
Thank you Thomas. Given what I'm trying to do, I need to have the Image created via a GWT RPC call. However, nothing keeps me from implementing doGet () within my servlet, so I did that, and now I can serve up the images cleanly, and I can even cache them! :-) Greg On Oct 26, 11:26 am, Thomas

Servlet mappings in GWT development mode

2010-10-26 Thread Constantin Tanno
My GWT host page happens to be a JSP page called hostpage.jsp and I have a bunch of different URLs all mapped to it through web.xml: servlet servlet-namehostPageServlet/servlet-name jsp-filehostPage.jsp/jsp-file /servlet servlet-mapping

Re: How to get list of objects from JSON ??

2010-10-26 Thread Thomas Broyer
On 26 oct, 18:33, Sebastian Beigel sebast...@beigel.de wrote: Hi Thomas, Of course, if your really want Product as a real bean, and a List? instead of a JsArray?, you can copy things around (see below); but really I believe overlay types are much more readable than anything using

onScroll() is called twice in IE (tried with 8), while only called once in FF

2010-10-26 Thread divStar
Hi there, I have a ScrollPanel wrapped around a FlexTable. When the end of the FlexTable is reached, new Items are loaded from the server. My Problem: when the end of the currently available list is reached, onScroll() triggers a RPC-request, which calls a Servlet, which returns more results

Re: Currency Symbol in NumberFormat

2010-10-26 Thread PARAG
Hi Jim, Thanks for looking into it. But still I have a problem, when in the custom format I use just ¤ then in the output I am getting ? and when I use ¤ then I get US$. Note that I do have UTF-8 encoding in the browser. On Oct 27, 1:23 am, Chris Conroy con...@google.com wrote: Jim, Thanks

[gwt-contrib] Re: Enum Ordinalization Optimization (issue1015801)

2010-10-26 Thread cromwellian
Very nice, great unit tests! I have questions over the need to blacklist static functions just because they're enclosed by an Enum (is Enum.staticMethod() any different than UtilClass.staticMethod()?) and a slight edge case with multidimensional enum arrays.

[gwt-contrib] Re: Add support for touch events for supported mobile webkit platforms. (issue867801)

2010-10-26 Thread jgw
On 2010/09/14 00:49:29, fredsa wrote: Looks good. That weird sink-all-events stuff in Image is unfortunate, but it looks trickier to deal with than is appropriate with this patch. http://gwt-code-reviews.appspot.com/867801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add support for touch events for supported mobile webkit platforms. (issue867801)

2010-10-26 Thread pdr
On 2010/09/14 00:49:29, fredsa wrote: I don't think this supports multi-touch events (i.e., the touches array), which I think needs to be in this. http://gwt-code-reviews.appspot.com/867801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fix RequestFactoryInterfaceValidator when analyzing interfaces with static initializers. (issue1056801)

2010-10-26 Thread bobv
Reviewers: rjrjr, Description: Fix RequestFactoryInterfaceValidator when analyzing interfaces with static initializers. Resolves GWT issue 5481. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/1056801/show Affected files: M

[gwt-contrib] Re: Fix RequestFactoryInterfaceValidator when analyzing interfaces with static initializers. (issue1056801)

2010-10-26 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1056801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add support for touch events for supported mobile webkit platforms. (issue867801)

2010-10-26 Thread Fred Sauer
Philip, Do you think this could go in as is, as a first step? And then later add multi-touch, which I agree needs to ultimately be there? Or, do you think that the patch as it stands would put us in a corner that we don't want to be in? On Tue, Oct 26, 2010 at 5:54 AM, p...@google.com wrote:

[gwt-contrib] [google-web-toolkit] r9149 committed - Fix RequestFactoryInterfaceValidator when analyzing interfaces with st...

2010-10-26 Thread codesite-noreply
Revision: 9149 Author: b...@google.com Date: Tue Oct 26 04:49:22 2010 Log: Fix RequestFactoryInterfaceValidator when analyzing interfaces with static initializers. Resolves GWT issue 5481. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/1056801

[gwt-contrib] Re: Adds an -XcompilerMetrics flag to the compiler. This will (issue1045801)

2010-10-26 Thread zundel
http://gwt-code-reviews.appspot.com/1045801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix RequestFactoryInterfaceValidator when analyzing interfaces with static initializers. (issue1056801)

2010-10-26 Thread cromwellian
fyi http://gwt-code-reviews.appspot.com/1056801/diff/1/3 File user/test/com/google/gwt/requestfactory/server/RequestFactoryInterfaceValidatorTest.java (right): http://gwt-code-reviews.appspot.com/1056801/diff/1/3#newcode149

[gwt-contrib] Re: Adds an -XcompilerMetrics flag to the compiler. This will (issue1045801)

2010-10-26 Thread Scott Blum
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9150 committed - Set character set to UTF8....

2010-10-26 Thread codesite-noreply
Revision: 9150 Author: j...@google.com Date: Tue Oct 26 09:49:01 2010 Log: Set character set to UTF8. Patch by: jat Unreviewed http://code.google.com/p/google-web-toolkit/source/detail?r=9150 Modified: /javadoc/2.1/com/google/gwt/i18n/client/NumberFormat.html --

[gwt-contrib] [google-web-toolkit] r9151 committed - Fix change of HTML-Text when changing charset....

2010-10-26 Thread codesite-noreply
Revision: 9151 Author: j...@google.com Date: Tue Oct 26 09:55:54 2010 Log: Fix change of HTML-Text when changing charset. Patch by: jat Unreviewed http://code.google.com/p/google-web-toolkit/source/detail?r=9151 Modified: /javadoc/2.1/com/google/gwt/i18n/client/NumberFormat.html --

[gwt-contrib] [google-web-toolkit] r9152 committed - Cherry picking changes from trunk into release branch: 1056801

2010-10-26 Thread codesite-noreply
Revision: 9152 Author: p...@google.com Date: Tue Oct 26 08:27:01 2010 Log: Cherry picking changes from trunk into release branch: 1056801 http://code.google.com/p/google-web-toolkit/source/detail?r=9152 Modified:

[gwt-contrib] Re: Enum Ordinalization Optimization (issue1015801)

2010-10-26 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1015801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Enum Ordinalization Optimization (issue1015801)

2010-10-26 Thread jbrosenberg
Updated to handle casting between multi-dimensional arrays where one of them is of an enum type. http://gwt-code-reviews.appspot.com/1015801/diff/13001/14004 File dev/core/src/com/google/gwt/dev/jjs/impl/EnumOrdinalizer.java (right):

[gwt-contrib] [google-web-toolkit] r9154 committed - Adding 2.1.0 tag

2010-10-26 Thread codesite-noreply
Revision: 9154 Author: p...@google.com Date: Tue Oct 26 12:36:45 2010 Log: Adding 2.1.0 tag http://code.google.com/p/google-web-toolkit/source/detail?r=9154 Added: /tags/2.1.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: RPC using getCause instead of getTarget

2010-10-26 Thread Sebastian
I am sorry. I have been staring at my debugger which showed the internal values of the InvocationTarget exception. Therfore the field cause was indicated with null. But the getCause method points to the target field instead. So everything is fine. Thank you for your feedback Scott. Best Regards

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

2010-10-26 Thread codesite-noreply
Comment by guadalup...@gmail.com: The only thing I want to know is how to remove apps that I don't want and that they r conect with google r I'M r the ones you can't remove your self and they say to go to something.something but I don't know what the heck r they r talking about r what the

[gwt-contrib] Fix some issues in the xsiframe linker (issue1057801)

2010-10-26 Thread unnurg
Reviewers: jgw, Description: Fix some issues in the xsiframe linker - Add support for including stylesheet tags - Fix a bug in computeScriptBase.js Please review this at http://gwt-code-reviews.appspot.com/1057801/show Affected files: M

[gwt-contrib] [google-web-toolkit] r9156 committed - Update Maven artifacts at r9154.

2010-10-26 Thread codesite-noreply
Revision: 9156 Author: rda...@google.com Date: Tue Oct 26 15:25:14 2010 Log: Update Maven artifacts at r9154. http://code.google.com/p/google-web-toolkit/source/detail?r=9156 Modified: /2.1.0/gwt/maven/com/google/gwt/gwt/maven-metadata.xml

[gwt-contrib] Adds a new artifact visibility Deploy (in addition to existing (issue1055802)

2010-10-26 Thread jat
Reviewers: unnurg, Description: Adds a new artifact visibility Deploy (in addition to existing Public and Private), for artifacts that should be deployed to the server but not ever served to a client. Patch by: jat Review by: unnurg Please review this at

[gwt-contrib] Re: Adds a new artifact visibility Deploy (in addition to existing (issue1055802)

2010-10-26 Thread unnurg
LGTM On 2010/10/27 00:28:51, jat wrote: http://gwt-code-reviews.appspot.com/1055802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Public: Create seperate top level interfaces for (issue1058801)

2010-10-26 Thread nchalko
Reviewers: bobv, Description: Public: Create seperate top level interfaces for GwtSpecificValidators. Please review this at http://gwt-code-reviews.appspot.com/1058801/show Affected files: M user/src/com/google/gwt/validation/rebind/BeanHelper.java M