Re: GWT plugin for eclipse install problem

2010-04-21 Thread xwise
I tried running it with admin privileges and it still doesn't work. When you say fresh Eclipse, do you mean reinstall it and then reapply the plugin as admin? Thanks. On Apr 19, 9:21 am, Jason Parekh jasonpar...@gmail.com wrote: Hey, Could you try starting with a fresh Eclipse for Java EE and

Re: How to tell GWT compiler to compile for only one specific browser

2010-04-21 Thread Bonor
set-property name=user.agent value=gecko / value can be: ie6,gecko,gecko1_8,safari,opera On 21 apr, 09:05, Blessed Geek blessedg...@gmail.com wrote: You can specify in the gwt.xml to restrict compilation to a certain/ list of browser(s). I would do it to restrict to firefox because I

disable previous dates in DateField

2010-04-21 Thread GWT Groups
Hello Friends, Friends i got stuck in another problem. I want to disable previous dates form current date in the DateField of the GWT. I don't know how to do this. Please Help me. ##My code is DateField lastdate = new DateField(Answer

Re: How to see my posts

2010-04-21 Thread Sidharsh P
Hi Thomas, Thanks to your information. I am now able to see recent activity against my login. It seems that I will have to re-post my issue. Regards On Tue, Apr 20, 2010 at 8:06 AM, Sidharsh P sidhar...@gmail.com wrote: Hello Thomas, Here is the post I had posted a few days back. Regards

GWT ...geting 2 elements in one row and how to link to several html files instead on of only one

2010-04-21 Thread Sidharsh P
Hello, I am new to GWT I am trying to create a simple login page which is linked to a login.html and login.css file I have a vertical panel and have created a Label for Username and a textfield for entering the userid. However when I say vPanel.add() to both of them...they go to different rows.

Re: Blank Page with simple DockLayoutPanel Application

2010-04-21 Thread malibubu
Works fine! Thank You :) On 21 Apr., 03:05, kozura koz...@gmail.com wrote: Yes, change the first line to just !DOCTYPE html to force standard mode. On Apr 20, 3:43 pm, malibubu webmas...@mailball.de wrote: Sorry, I've forgotten to copy the line from the MainView.html: !DOCTYPE HTML

How to change style of a selected row in PagingScroll table?

2010-04-21 Thread crojay78
Hi, can somebody tell me how I can change the style of a selected row in a PagingScollTable?? I want to show the user which table row is actual selected, therefore I need to change the style of this row. Thanks for your help -- You received this message because you are subscribed to the Google

Re: Best way for launching html/jsp to communicate with GWT

2010-04-21 Thread Sripathi Krishnan
Just store the variables in a JSON object in your HTML, and access it via the Dictionary ( http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/i18n/client/Dictionary.html) class. You don't have to write JSNI code to access the variables. --Sri On 21 April 2010 12:24,

Re: How to tell GWT compiler to compile for only one specific browser

2010-04-21 Thread Sripathi Krishnan
The trick is to have two module.xmls. One of them is the production mode and compiles for all browsers, the other is for dev mode that inherits from your production mode Something like this - - com/mycompany/example/module.gwt.xml - This is your regular gwt.xml without the user.agent hack

How to retrieve the current row in CellHighlightEvent?

2010-04-21 Thread crojay78
Hi, I discovered that there is an event for highlighting a row pagingScrollTable.getDataTable().addCellHighlightHandler(new CellHighlightHandler() { public void onCellHighlight(CellHighlightEvent event) { GWT.log(highlight);

Re: Json cross-domain examle (JS error on IE 8.0 - Object doesn't support this action)

2010-04-21 Thread nasionalem
Hello Eggsy84, I am still getting same JavaScript error. I didnt see any changes in the turorial, but I did all the steps again but I got same error. http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html#design -- You received this message because you are subscribed to the Google

GWTUpload : problem with servlet

2010-04-21 Thread laurent
When i click on send button for a file with 15kb size , i've a error. I've not an idea where are the problem from. In the servlet , i provoke an IllegalArgumentException but when i go to the log , i see nothing. On the screen , i've two dialog box.First print 'null' and the second : 'Timeout

Re: Json cross-domain examle (JS error on IE 8.0 - Object doesn't support this action)

2010-04-21 Thread nasionalem
I am also looking JsonpRequestBuilder class which you send me.. :) I will let you know If I can do it. I am looking forward your reply Thanks all for your helping -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Design of a GWT project

2010-04-21 Thread Jan Ehrhardt
In your host page add something like this: script type=text/javascript var modules = {start:module-name}; /script You can use it as a Dictionary http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/i18n/client/Dictionary.htmlfrom your GWT code. From my point of view, I

Re: Facing problem tackling browser refresh

2010-04-21 Thread chill_hus
thanks Danny for the reply i'll try out ur suggestion but had one doubt In my project with my current implementation I always get onFailure for the rpc in FF. However sometimes the corr. server function is executed and sometimes not. I get StatusCodeException in FF with status code as 0. Also it

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-21 Thread keyboard_samurai
After i remove the dependency on Google App Engine i.e after unchecking Use Google App Engine How do i configure the GWT plugin to use tomcat ? is that possible ? or should i be building a war and deploy the code on tomcat and then check ? Thanks for your patience ... On Apr 20, 11:06 pm, kozura

History

2010-04-21 Thread raj
Hi every one! I'm working on project based on GWT2.0 and i found it has more feature than the earlier version. But something has been a mystery to me,that how can really maintain history? it's not that we simply use history listener and onHistoryChanged() or addValueChangeHandler(). I need to

Re: GWT presentation/workshop

2010-04-21 Thread Ed Bras
No, I do all with Maven (and some pieces with ANT inside Maven)... I have a scalable Spring/Hibernate backend and several GWT front ends that connect to the same backend. That's why I use my own SerializationPolicy solution as the GWT *.gwt.rpc file solution works very poor in these kind of

Floating label

2010-04-21 Thread Yogesh
Hi, I want to display a message Loading.. Please wait... when user clicks on any button. I have a label at the top-center of the page. But, when user scolls down on the page, that label is not displayed Hence, I want to implement a floating label that will be displayed at the top of the page

Re: History

2010-04-21 Thread Jan Ehrhardt
In a GWT application, moving to the next part of a form should not be a move to a different page. Instead, you should just change the UI and put the already entered values into some data object. The missing part is to use some kind of pattern, how the values, you add to the history stack, are

Re: History

2010-04-21 Thread raj
thanks Jan! thank you for your inputs.Hope that will help me to move further.. Regards, Raj -- 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 unsubscribe from this

Connecting to embedded Jetty from other host than localhost

2010-04-21 Thread Viliam Durina
If I run my application in the embedded Jetty container, I'm not able to connect to it from any other host than localhost. Even if I use my own IP address on localhost, the connection is refused. If I any other application on the same port, it works. I could not find any setting disabling this,

History.newItem() -- Documentation Suggestion

2010-04-21 Thread euzuro
Hi Team, Just ran into a quirk today with the History class. I was assuming that calling History.newItem(x) or History.newItem(x, true) would *force* a com.google.gwt.event.logical.shared.ValueChangeEvent to be fired. As it turns out, though, if you pass the same token as the current history

Re: How to override pseudo gwt standars styles using ClientBundle

2010-04-21 Thread Vaibhav
Were you able to figure out workaround for this issue? On Feb 24, 5:47 am, shahid shahidza...@gmail.com wrote: Is there a way to override gwt standard styles for build-in widgets. For example if I wanted to override .gwt-ToggleButton-down-hovering and .gwt-ToggleButton-down styles, how do I do

Problem: Hosted mode [WARN] 404 - GET /gwt/standard/standard.css (127.0.0.1) 1411 bytes

2010-04-21 Thread Oliver Uvman
Hello! After not using GWT for a while, I return to my projects. None of them working. At first I spent some time looking around for the possible cause, thought my web.xml was bad and replaced it with a known working copy, but to no avail. After this I tried simply starting a new web app project,

File Download does not work

2010-04-21 Thread AndreAgosto
I tried in every way and with following any example that i find, but i can't do this work. I can invoke a my httpServlet, but every time i can't see the file and the browser show me: HTTP ERROR: 405 HTTP method POST (but also get) is not supported by this URL RequestURI=/print.do please.. someone

Re: Transferring an image over an PRC call

2010-04-21 Thread KK
Hi, Can you please show a sample code how you guys solved this? please! On Apr 19, 5:53 am, ahmet terzioglu ahmet.terzio...@gmail.com wrote: Yes, that is exactly what I did and it works now, thank you. On Sun, Apr 18, 2010 at 10:51 PM, Trevis trevistho...@gmail.com wrote: Is your goal

How can I override gwt standard stylesheet with ClientBundle

2010-04-21 Thread Vaibhav
If I want to change DatePicker object look and feel with ClientBundle how can I do this? How can I override gwt standard stylesheet of other gwt objects using ClientBundle? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Transferring an image over an PRC call

2010-04-21 Thread KK
Can you please show an example code .. how you made this work? Thanks! -- 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 unsubscribe from this group, send email to

Re: How to retrieve the current row in CellHighlightEvent?

2010-04-21 Thread crojay78
Hi, I found it, but now I need to know how I can change the styleclass?? Here is my solution how to change the style in the CellHighlightEvent int rowIndex = event.getValue().getRowIndex(); GWT.log(highlight + event.getSource() + row + rowIndex);

Re: Compilation Error

2010-04-21 Thread rxm0203
Here is the update. I removed the mentioned jar file from Drools- Guvnor's dependent projects class path. Now, I am able to compile successfully. Thanks for your help. On Apr 20, 6:51 pm, rxm0203 rxm0...@gmail.com wrote: I removed the mentioned jar file. I am still getting samecompilationerror.

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-21 Thread kozura
Do you have a properly configured web.xml? You can check through the documentation of everything you need to have at: http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html I would also strongly recommend you create and try running a brand new project using the plugin or

CssResource warnings?

2010-04-21 Thread Ed
Hi all, I am using a CssResource bundle, and the injected css contains this: .frame-panel { opacity: .0; filter: alpha(opacity =0); } And the GWT compiler is complaining about this = char. But I needed for IE user agents. I tried the CSS @if but without luck. What should I do

Re: Floating label

2010-04-21 Thread kozura
Maybe use a PopupPanel and call .center() to display it over your page? You can set it modal to disallow user from scrolling the page. Otherwise you can set up a handler for scrolling with Window.addWindowScrollHandler(handler) to reposition things when the user scrolls the window. On Apr 21,

Re: Visual CMS with GWT

2010-04-21 Thread kozura
If you use the RichTextEditor to allow text editing, the content is just a plain HTML string. Easy! On Apr 21, 6:10 am, graham.col...@gmail.com graham.col...@gmail.com wrote: Thanks for the reply. I am having difficulty understanding how i could load html into the page that could be edited.

Re: Eclipse hanging on Loading com.google.gdt.Suite

2010-04-21 Thread kozura
Plugins are all in the eclipse directory, plugins/com.google*. You can just delete them and restart eclipse. On Apr 20, 11:01 am, DharmaDog888 dharmadog...@gmail.com wrote: Hello all,  I just updated the GWT plugin from Eclipse (Galileo) and now Eclipse hangs and will not load at all.  This is

Re: Connecting to embedded Jetty from other host than localhost

2010-04-21 Thread kozura
Add -bindAddress 0.0.0.0 to your startup arguments. Not obviously documented, but there are some threads about this. On Apr 21, 6:55 am, Viliam Durina viliam.dur...@gmail.com wrote: If I run my application in the embedded Jetty container, I'm not able to connect to it from any other host than

Re: GWT plugin for eclipse install problem

2010-04-21 Thread Jason Parekh
Yup, I meant install a new Eclipse (as an administrator) and then install the plugin (as an administrator also). jason On Wed, Apr 21, 2010 at 2:07 AM, xwise srobo...@gmail.com wrote: I tried running it with admin privileges and it still doesn't work. When you say fresh Eclipse, do you mean

Re: CssResource warnings?

2010-04-21 Thread Thomas Broyer
On Apr 21, 3:48 pm, Ed post2edb...@hotmail.com wrote: Hi all, I am using a CssResource bundle, and the injected css contains this: .frame-panel {         opacity: .0;         filter: alpha(opacity =    0); } And the GWT compiler is complaining about this = char. But I needed for IE

Re: GWT application parameters

2010-04-21 Thread kozura
You might consider deferred binding, which would automatically compile two separate flavors of your app, a demo and a regular. Basically you'd have pieces of code that would do nothing in regular mode, but in demo mode would add all those extras. Can then use various mechanisms to pick which one

Using ClientBundle to bundle images for a custom widget

2010-04-21 Thread San
Hi I am trying to bundle all my images required for a widget in a ClientBundle as follows. public interface HeaderWidgetImageResource extends ClientBundle { @Source(images/logo.png) ImageResource logo(); @Source(images/spacer.png) ImageResource spacer(); } I am

Re: Visual CMS with GWT

2010-04-21 Thread Peter Simun
exactly ... HTML is represented as String and stored into a database, for example like blob Peter On 21. Apr, 15:51 h., kozura koz...@gmail.com wrote: If you use the RichTextEditor to allow text editing, the content is just a plain HTML string.  Easy! On Apr 21, 6:10 am,

Re: Using ClientBundle to bundle images for a custom widget

2010-04-21 Thread kozura
I think the image path is relative to where the ClientBundle is, so your images directory should be put in the same directory. On Apr 21, 8:10 am, San sandip.pati...@gmail.com wrote: Hi I am trying to bundle all my images required for a widget in a ClientBundle as follows. public interface

Re: servlet : problem

2010-04-21 Thread Manuel Carrasco Moñino
This timeout normally happens when there is not communication with the server, normally because the servlet is incorrectly configured in the web.xml or because the doGet() doesnt answers with a correct xml ajax response. On Wed, Apr 21, 2010 at 10:48 AM, laurent bagno_laur...@hotmail.com

Re: Floating label

2010-04-21 Thread mram
you could put the label into a div and then using the CSS put a style to the div, such as: position: fixed; On 21 abr, 13:37, Yogesh yogeshrn...@gmail.com wrote: Hi, I want to display a message Loading.. Please wait... when user clicks on any button. I have a label at the top-center of

excel generation client code

2010-04-21 Thread bhanu
Hi, I am doing a excel reporting on gwt. Here I am using HttpServelet as server code. output stream of the servlet I am filling the content. But dont know how to receive the content from the server to client. The following is the client code current I am using.. requestCallback=new

Re: Compilation Error

2010-04-21 Thread Rajeev Dayal
Great, glad it is working. On Wed, Apr 21, 2010 at 9:41 AM, rxm0203 rxm0...@gmail.com wrote: Here is the update. I removed the mentioned jar file from Drools- Guvnor's dependent projects class path. Now, I am able to compile successfully. Thanks for your help. On Apr 20, 6:51 pm, rxm0203

Re: GWT ...geting 2 elements in one row and how to link to several html files instead on of only one

2010-04-21 Thread kozura
VerticalPanel will place each added widget below the previous, so you need to add a HorizontalPanel containing all widgets to be laid out in one row. You might find something like Grid to be better for what you are laying out, for instance to keep the label and text fields all lined up. As for

Re: CssResource warnings?

2010-04-21 Thread Ed
He Thomas, Thanks for the tip. I am migrating to CssResource bundle, so still learning. One more thing: I am still using the Non-Strict mode so I have paths like for example: background-image: url(resources/images/alert-logo.gif); However, this stylesheet is used by different gwt app's,

Re: CssResource warnings?

2010-04-21 Thread Ed
I solved it by using the @sprit annotation. Didn't want to use it yet, but that was the best solution at the moment ... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Visual CMS with GWT

2010-04-21 Thread graham.col...@gmail.com
Thanks for the replies. If you check the CMS mentioned by Peter above http://admin.demo.synapso.sk/ (demo/demo) . How is this system loading elements onto the page and adding rollover/ click events to every element ? I cant imagine it's all placed in an RTE ? Thanks again. On Apr 21, 4:12 pm,

Re: excel generation client code

2010-04-21 Thread Sripathi Krishnan
You cannot use a Request Builder to download binary content. You should just construct a url to your servlet and insert it into the DOM using Anchor or regular a href=/path/to/servlet. The user will have to explicitly click on the link to download the spreadsheet. --Sri On 21 April 2010 20:00,

UiBinder internationalization using regular Constants?

2010-04-21 Thread Toni
Hi there, I've been trying to use one single file to internationalize my whole application with no luck. I've been reading this http://code.google.com/p/google-web-toolkit/issues/detail?id=4355 and seems that the current system is a bit controversial at the time. The issue is that some of the

Re: Visual CMS with GWT

2010-04-21 Thread Peter Simun
Hi, the principles are easy: each HTML element (heading, paragraph, image, ...) is represented by one Content (which is stored in DB) and each content is added to the DOM. Now you have fully loaded page with all the HTML contents from the database. Details are described here:

RemoteLogger

2010-04-21 Thread brianw
I want to send to the server client-side error messges and write them out to an error file. but there is no doc on setting up the RemoteLogger; I've implemented the changes required in web.xml and gwt.xml files but do I write my own servlet and remote logger or extend RemoteLogger or ? any

launching in a new tab/broswer

2010-04-21 Thread Vik
Hie I am using menu like: MenuBar aboutMenu = new MenuBar(true); aboutMenu.addItem(Dreamweavers..., new Command(){ @Override public void execute() { Window.Location.replace(http://sakshum.blogspot.com;); } }); But this opens the link at the same place. how to open in a new tab? Also do i

Re: UiBinder internationalization using regular Constants?

2010-04-21 Thread Thomas Broyer
On 21 avr, 18:19, Toni tonin...@gmail.com wrote: Hi there, I've been trying to use one single file to internationalize my whole application with no luck. I've been reading this http://code.google.com/p/google-web-toolkit/issues/detail?id=4355 and seems that the current system is a bit

Re: Connecting to embedded Jetty from other host than localhost

2010-04-21 Thread Tercio
add -bindAddress YOUR_IP to the application arguments when running it from eclipse. More info: http://code.google.com/p/google-web-toolkit/issues/detail?id=4322 Regards, Tercio On Apr 21, 9:55 am, Viliam Durina viliam.dur...@gmail.com wrote: If I run my application in the embedded Jetty

Re: GWT application parameters

2010-04-21 Thread Stefan Bachert
Hi, you can use deferred binding to compile different instances for your webapp. Help facility behaves like an other browser or locale More on http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideCodingBasicsDeferred.html Stefan Bachert http://gwtworld.de On 21 Apr., 14:32,

Re: How can I override gwt standard stylesheet with ClientBundle

2010-04-21 Thread lineman78
Use the @external annotations in your css. On Apr 20, 3:52 pm, Vaibhav vkaka...@gmail.com wrote: If I want to change DatePicker object look and feel with ClientBundle how can I do this? How can I override gwt standard stylesheet of other gwt objects using ClientBundle? -- You received this

Re: Issue with deferred binding

2010-04-21 Thread lineman78
The underlying class is not using deferred binding, therefore your replace-with is never considered. In order for deferred binding to work, you must use GWT.create(); What I would suggest you do is do your own request builder implementation. There are many ways you can do this, but to do

Re: GWT Login/ Logout/ Remember Me (with concern in preventing Cross-Site Request Forgeries) Example

2010-04-21 Thread lineman78
I suggest using container managed security so that you don't have to deal with most of this. I have implemented a GWT-based form login, but it required some hackery because of the way tomcat/glassfish handle redirecting for form login using request dispatching, therefore causing your

Re: Who wants to get involved in a gwt project?

2010-04-21 Thread 4F2E4A2E
i am in -- 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 unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Layouting pages based on tables vs CSS layouts

2010-04-21 Thread Sven
Dear all, if I got it right, layouts based on GWT widgets normally end up in huge table structures. While it works pretty fine for me, I see many people arguing that nowdays you should avoid the use of tables for layouting but build your layouts based on css formatting, such as on

Re: Layouting pages based on tables vs CSS layouts

2010-04-21 Thread kozura
Ideological concerns aside, you should use what works for you. Most reasons against using tables for layout are relevant for static html pages, not so much AJAX/GWT applications. It's generally not worth artificially breaking up your application unless there is an actual particular concern you

Re: GWT presentation/workshop

2010-04-21 Thread sridhar vennela
Thanks a lot... On Wed, Apr 21, 2010 at 3:54 AM, Ed Bras post2edb...@gmail.com wrote: No, I do all with Maven (and some pieces with ANT inside Maven)... I have a scalable Spring/Hibernate backend and several GWT front ends that connect to the same backend. That's why I use my own

Re: GWT application parameters

2010-04-21 Thread sunny...@gmail.com
Thanks for the reply. Having read through the deferred binding I can see how it can be useful on the client side to determine whether the normal/demo is loaded. However, whats bothering me more is how to determine this on the server side. I guess this is not exactly specific to GWT. Say I have my

Re: Layouting pages based on tables vs CSS layouts

2010-04-21 Thread Gal Dolber
Here is a new approach implemented with divs: code.google.com/p/google-web-toolkit/issues/detail?id=4844can=4 http://code.google.com/p/google-web-toolkit/issues/detail?id=4844can=4It is a linearLayoutPanel and you can use as horizontal or vertical. If you combine it with the docklayoutpanel and

Re: GWT application parameters

2010-04-21 Thread sunny...@gmail.com
hmm...I guess I'm not being clear enough. Say in your run of the mill Java CLI programs. If I would like this program to start in demo mode to show certain messages, then I would do: java programName demo The program would see the 'demo' argument in the main method. In the GWT case, I would like

Re: GWT application parameters

2010-04-21 Thread kozura
I think the point we're missing is who is I in If I would like this program to start in demo mode. You're saying that you want a setup where you fire up the server in one mode or the other, and everyone who accesses the page gets the one same mode depending on how you start the server? Well

GWT Module not loaded on app engine

2010-04-21 Thread Vik
Hie In my app i have two modules. Module one shows a login popup and module 2 shows a admindashboard build using GWT and embedded into AdminDashBoard.jsp using div. After sucessful login it navigates to module to using: Window.Location.replace(/ui/page/AdminDashBoard.jsp); When i run it from

Defining a global function in JSNI?

2010-04-21 Thread markww
Hi, I'm using the youtube player api. The youtube player object lets you add an event listener callback function, by name. I'm running into a problem with this because I don't think I'm defining a global function correctly or GWT is mangling the name or something along those lines. Example:

[gwt-contrib] [google-web-toolkit] r7958 committed - Fix missing flush in sending a SwitchTransport message....

2010-04-21 Thread codesite-noreply
Revision: 7958 Author: gwt.mirror...@gmail.com Date: Wed Apr 21 06:42:47 2010 Log: Fix missing flush in sending a SwitchTransport message. Public review at: http://gwt-code-reviews.appspot.com/350803/show Patch by: jat Review by: rice

[gwt-contrib] [google-web-toolkit] r7959 committed - Merge trunk r7958 into this branch...

2010-04-21 Thread codesite-noreply
Revision: 7959 Author: j...@google.com Date: Wed Apr 21 07:26:28 2010 Log: Merge trunk r7958 into this branch Add missing flush when sending SwitchTransportMessage. svn merge -c7958 --ignore-ancestry \ https://google-web-toolkit.googlecode.com/svn/trunk

[gwt-contrib] Add LocaleInfo.hasAnyRTL() which returns true if the application was (issue378801)

2010-04-21 Thread jat
Reviewers: Dan Rice, Tomer, Description: Add LocaleInfo.hasAnyRTL() which returns true if the application was built with support for any RTL locales. This will be used in improving Bidi support in GWT widgets. Patch by: jat Review by: tomerigo Please review this at

[gwt-contrib] Re: Add LocaleInfo.hasAnyRTL() which returns true if the application was (issue378801)

2010-04-21 Thread jat
http://gwt-code-reviews.appspot.com/378801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Beginnings of GWT implementation of java.util.logging (issue341803)

2010-04-21 Thread rice
Looking very nice, just a few nitpicks. http://gwt-code-reviews.appspot.com/341803/diff/1/10 File user/src/com/google/gwt/logging/client/BasicLoggingPopup.java (right): http://gwt-code-reviews.appspot.com/341803/diff/1/10#newcode1

[gwt-contrib] Re: Add LocaleInfo.hasAnyRTL() which returns true if the application was (issue378801)

2010-04-21 Thread rice
LGTM http://gwt-code-reviews.appspot.com/378801/diff/1/4 File user/src/com/google/gwt/i18n/rebind/LocaleInfoGenerator.java (right): http://gwt-code-reviews.appspot.com/378801/diff/1/4#newcode150 user/src/com/google/gwt/i18n/rebind/LocaleInfoGenerator.java:150: writer.println(@Override); Is it

[gwt-contrib] Re: Add LocaleInfo.hasAnyRTL() which returns true if the application was (issue378801)

2010-04-21 Thread jat
Thanks for the review. http://gwt-code-reviews.appspot.com/378801/diff/1/4 File user/src/com/google/gwt/i18n/rebind/LocaleInfoGenerator.java (right): http://gwt-code-reviews.appspot.com/378801/diff/1/4#newcode150 user/src/com/google/gwt/i18n/rebind/LocaleInfoGenerator.java:150:

[gwt-contrib] [google-web-toolkit] r7960 committed - Rolling back the recent change to JUnitShell pending discussion...

2010-04-21 Thread codesite-noreply
Revision: 7960 Author: sp...@google.com Date: Wed Apr 21 07:39:53 2010 Log: Rolling back the recent change to JUnitShell pending discussion about backward compatibility. http://code.google.com/p/google-web-toolkit/source/detail?r=7960 Deleted:

[gwt-contrib] [google-web-toolkit] r7961 committed - Fix paging in PagingTableListView, allow setPageSize after constructio...

2010-04-21 Thread codesite-noreply
Revision: 7961 Author: r...@google.com Date: Wed Apr 21 09:07:02 2010 Log: Fix paging in PagingTableListView, allow setPageSize after construction Review at http://gwt-code-reviews.appspot.com/381801 http://code.google.com/p/google-web-toolkit/source/detail?r=7961 Modified:

[gwt-contrib] [google-web-toolkit] r7963 committed - Update Jetty 7.0.2 packaging files after feedback....

2010-04-21 Thread codesite-noreply
Revision: 7963 Author: j...@google.com Date: Wed Apr 21 14:21:08 2010 Log: Update Jetty 7.0.2 packaging files after feedback. Patch by: jat Review by: fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=7963 Modified: /tools/lib/jetty/jetty-7.0.2.v20100331/README-google.txt