Re: Listing multiple Panel horizontally in FlowPanel

2011-01-26 Thread Y2i
it's because SimplePanel has its display style set to block. You can try setting to inline, it may work, but I don't think it's recommended. http://www.w3.org/TR/2008/REC-CSS2-20080411/visuren.html#propdef-display -- You received this message because you are subscribed to the Google Groups

Re: RF InvocationTargetException

2011-01-26 Thread Thomas Lefort
Hi Thanks for your reply and the links. I agree and I do not check the User on each invocation. In fact I could do it otherwise, but I would like to make sure I understand RF properly. I was under the assumption that I could use whatever type I needed in my beans as long as I don't expose them

Re: GWT Development Mode - Safari and Opera

2011-01-26 Thread Thomas Broyer
On Thursday, January 27, 2011 12:26:00 AM UTC+1, Chris Conroy wrote: We don't support Opera, but we do have a Safari plugin: http://gwt.google.com/missing-plugin/MissingPlugin.html Sorry, there is currently no GWT Developer Plugin for Safari on Windows -- You received this message

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread PhilBeaudoin
On Jan 26, 3:48 pm, PhilBeaudoin philippe.beaud...@gmail.com wrote: Same issue here. I verified this behavior on: Chrome 9.0.597.83 beta and Chrome 8.0.552.237 The plugin version is: GWT DMP Plugin - Version: 0.9.0 -- You received this message because you are subscribed to the Google Groups

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Eric Blanchette
It's working in my Mac env. On Jan 26, 6:47 pm, Chris Conroy con...@google.com wrote: Is anyone seeing this issue on Linux or Mac? From the posters so far, it sounds as if there is an issue with the Windows version. In the meantime, you can download the old version at

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Eric Blanchette
Thanks! It's working again with this version On Jan 26, 6:47 pm, Chris Conroy con...@google.com wrote: Is anyone seeing this issue on Linux or Mac? From the posters so far, it sounds as if there is an issue with the Windows version. In the meantime, you can download the old version at

Re: Must getters and setters in an EntityProxy be a matched set?

2011-01-26 Thread Eric Andresen
I guess a better wording for my question is, are either of the following flows allowed? The goal is to create an object on the server side without persisting it, display its default values and edit them on the client side, and then persist it back to the server side. 1) Create Request

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Jack Krooss
What version is it working? I just tried again to reinstall Chrome 9.0.597.83 beta and Chrome 8.0.552.237 and it does not work. On Jan 26, 4:22 pm, Eric Blanchette eric.blanche...@digitalmatrices.com wrote: Thanks!  It's working again with this version On Jan 26, 6:47 pm, Chris Conroy

GWT 2.1 richtextarea not working in safari

2011-01-26 Thread jonbbbb
Hi, The problem is that RichTextArea does not work in Safari (on iphone). It is impossible to click on the area and type in any text. I don't get up the keyboard. This can be seen in the showcase example: http://gwt.google.com/samples/Showcase/Showcase.html#!CwRichText The basic text widgets in

Re: selection questions

2011-01-26 Thread Y2i
It's strange that it loses selection. Anyway, you can always get the selected object in onSelectionChange() method and fire an event through an event bus or directly call a method on the second panel to pass the selected object. Or you can even keep the selection model itself in the second

Re: RequestFactory can not support embedded class and owned 1-to-many in one Entity

2011-01-26 Thread QkQk
Hi David, Yes, i am trying request like findUrlMd5Req.with(pTagSet, pTagOwnedSet).fire, where pTagSet and pTagOwnedSet are defined in an entity class. @Persistent (defaultFetchGroup=true) @Embedded private PTag pTagSet; .. @Persistent(mappedBy=bookPTag, defaultFetchGroup=true)

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Craig Mitchell
Downgrading the plugin gets it working again: 1: Uninstall the current plugin (Tools - Extensions) 2. Install the older plugin https://dl-ssl.google.com/gwt/plugins/chrome/1.0.9521/gwt-dev-plugin.crx On Jan 27, 12:25 pm, Jack Krooss jackkro...@gmail.com wrote: What version is it working?

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Jack Krooss
Confirmed. That works. Thank you! On Wed, Jan 26, 2011 at 6:28 PM, Craig Mitchell craig...@gmail.com wrote: Downgrading the plugin gets it working again: 1: Uninstall the current plugin (Tools - Extensions) 2. Install the older plugin

Re: GWT 2.1 richtextarea not working in safari

2011-01-26 Thread Jim Douglas
If the problem seems to be specific to Mobile Safari, you might want to add a note here, along with any details that you can isolate: http://code.google.com/p/google-web-toolkit/issues/detail?id=5539 On Jan 26, 5:26 pm, jon jon.b...@gmail.com wrote: Hi, The problem is that RichTextArea

when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread zixzigma
Hello Everyone, do you know when we need to use AsyncDataProvider instead of CellTable.setRowData ? what is difference between the two, and when to use one over the other ? I have looked at the documentation, and have experimented with both in code, but still do not understand when and why I

Re: Announcing GPE/GWT 2.2M1

2011-01-26 Thread Y2i
Thanks Eric! I got an error when a Gin injector is created. Is there a Gin jar that works with this GWT version? Caused by: java.lang.IncompatibleClassChangeError: Found interface com.google.gwt.core.ext.typeinfo.JClassType, but class was expected at

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread Y2i
If there are multiple displays, a single data provider can manage all of them in one place. When setRowData() is called on a data provider, the provider calls setRowData() on every attached display. -- You received this message because you are subscribed to the Google Groups Google Web

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread zixzigma
If there are multiple displays, a* single data provider* can manage all of them in one place. do you mean a single* AsyncDataProvider* ? When setRowData() is called on a data provider, the provider calls setRowData() on every attached display. I think setRowData is called on CellTable not

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread Y2i
On Wednesday, January 26, 2011 7:10:57 PM UTC-8, zixzigma wrote: If there are multiple displays, a* single data provider* can manage all of them in one place. do you mean a single* AsyncDataProvider* ? yes, AsyncDataProvider or AbstractDataProvider When setRowData() is called on a

Re: Smart GWT 2.4 Released

2011-01-26 Thread Nivid Dholakia
HI CAN I KNOW HOW DO YOU USE IN JAVA R U USING WEB APPLICATION OR DESKTOP OR LIVE SITE LIKE WHERE WE CAN USE IT ?? -- 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.

Re: Cell Table Pager not showing rows in the table.

2011-01-26 Thread suersh babu
Any idea of this ? On Mon, Jan 24, 2011 at 5:26 PM, suersh babu sureshgbab...@gmail.comwrote: Hi, I have a Cell table with Simple Pager, This Simple Pager it display only first page, when I click on the next page it is not showing up rows in this Cell Table. This is my Entrypoint

Re: Workaround for Embedded objects

2011-01-26 Thread Daghan
David, This has driven me nuts. Any update on the sample app? -- 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

Re: No Textbox can take the focus by mouse clicking in IE8

2011-01-26 Thread Jim Douglas
Alex, do you have a standalone sample that can be attached to a new bug report? http://code.google.com/p/google-web-toolkit/issues/entry On Jan 25, 12:56 am, AlexF alexander.fomin...@googlemail.com wrote: I have a problem in GWT 2.0.4 that I can reproduce only with IE8 (Windows XP). I use a

Re: GWT with Hibernate and Oracle

2011-01-26 Thread Nagin Kothari
Hi, Can you point to some link that provide sample code or utility to clean the Hibernate POJO (Hibernate Cleaner class) as you have mentioned in this mail. It would greately help me too. Thanks in advance, Nagin 2011/1/26 Néstor Boscán nesto...@gmail.com This is very tipical in Hibernate

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread Y2i
DataProvider also has setRowData(). After attaching CellTable (a display) to the provider, the provider will delegate the call the attached display Sorry, this was just wrong... When a data provider manages multiple displays, it'll receive onRangeChange() call from any display that

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread Tolwi
I'm using AsyncDataProvider when I need *async* page loading (for a huge amount of data) and ListDataProvider for small amount of data when I can load all the data at once. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

dilemma in identifying correct Activities, Presenters and Views in New Google Group-like app

2011-01-26 Thread zixzigma
I am facing a dilemma best explained using a concrete example. Look at the *New* Google Group application. (taking gwt group as an example) when we are in the main place: #!forum/google-web-toolkit there is a display region/activity to the left, which holds Home/Favorite a display

scroll to node in CellTree

2011-01-26 Thread Torgeir
It seems there's no way to ask for an item in a cellTree to scroll into view. Am wondering if it's possible to work around that by somehow getting the dom element that makes out the tree node's Cell instance, and scroll to that. Does any know any way to do this, or have any ideas how to do it

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-26 Thread zixzigma
Thank You, I understand the difference between AsyncdataProvider and ListDataProvider. my question was about AsyncDataProvider vs CellTable.setRowData. I believe CellTable.setRowData can also load data Asynchronously. I think Y2i is correct, this is my understanding of Y2i comment, I might be

Re: scroll to node in CellTree

2011-01-26 Thread zixzigma
I would also like to know the solution to this. -- 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

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Neil Halelamien
This solution fixed the problem for me as well. I'm on a 64-bit Windows machine and experienced the problem in both stable and canary. On Wed, Jan 26, 2011 at 6:34 PM, Jack Krooss jackkro...@gmail.com wrote: Confirmed. That works. Thank you! On Wed, Jan 26, 2011 at 6:28 PM, Craig Mitchell

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread jd
Thanks Craig! Fixed it for me On Jan 27, 9:28 am, Craig Mitchell craig...@gmail.com wrote: Downgrading theplugingets it working again: 1:  Uninstall the currentplugin(Tools - Extensions) 2.  Install the olderplugin https://dl-ssl.google.com/gwt/plugins/chrome/1.0.9521/gwt-dev-plugin.crx

[gwt-contrib] Re: At application startup, assert that the specified user.agent selection property value indeed mat... (issue1278801)

2011-01-26 Thread jat
http://gwt-code-reviews.appspot.com/1278801/diff/6001/7003 File user/src/com/google/gwt/user/client/UserAgentAsserter.java (right): http://gwt-code-reviews.appspot.com/1278801/diff/6001/7003#newcode36 user/src/com/google/gwt/user/client/UserAgentAsserter.java:36: * TODO(fredsa): Replace with a

[gwt-contrib] Re: Fixing a bug in CellBrowser where the user must click on an element twice to focus on it and ena... (issue1290803)

2011-01-26 Thread rchandia
LGTM On 2011/01/25 22:20:56, jlabanca wrote: http://gwt-code-reviews.appspot.com/1290803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add more TCK tests (issue1298802)

2011-01-26 Thread rchandia
LGTM On 2011/01/26 06:42:12, Nick Chalko wrote: http://gwt-code-reviews.appspot.com/1298802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix NPE in samples/expenses (issue1326801)

2011-01-26 Thread rchandia
LGTM On 2011/01/26 05:55:35, drfibonacci wrote: LGTM http://gwt-code-reviews.appspot.com/1326801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix NPE in samples/expenses (issue1326801)

2011-01-26 Thread rchandia
LGTM On 2011/01/26 16:50:26, rjrjr wrote: http://gwt-code-reviews.appspot.com/1326801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9620 committed - Fixing a bug in CellBrowser where the user must click on an element tw...

2011-01-26 Thread codesite-noreply
Revision: 9620 Author: gwt.mirror...@gmail.com Date: Wed Jan 26 09:27:21 2011 Log: Fixing a bug in CellBrowser where the user must click on an element twice to focus on it and enable keyboard support. The problem is that Element.getTabIndex() returns 0 for non-focusable divs, which causes us

[gwt-contrib] [google-web-toolkit] r9622 committed - Add option to use JSONP in ExternalTextResource...

2011-01-26 Thread codesite-noreply
Revision: 9622 Author: unn...@google.com Date: Wed Jan 26 06:01:10 2011 Log: Add option to use JSONP in ExternalTextResource Review at http://gwt-code-reviews.appspot.com/1310801 Review by: robertvaw...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9622 Added:

[gwt-contrib] [google-web-toolkit] r9621 committed - Add more TCK tests...

2011-01-26 Thread codesite-noreply
Revision: 9621 Author: gwt.mirror...@gmail.com Date: Wed Jan 26 09:30:56 2011 Log: Add more TCK tests [JSR 303 TCK Result] 90 of 257 (35.02%) Pass with 29 Failures and 12 Errors. Review at http://gwt-code-reviews.appspot.com/1298802 Review by: rchan...@google.com

[gwt-contrib] [google-web-toolkit] r9623 committed - Bump pom.xml version, and fix NPE in samples/expenses...

2011-01-26 Thread codesite-noreply
Revision: 9623 Author: rj...@google.com Date: Wed Jan 26 09:24:30 2011 Log: Bump pom.xml version, and fix NPE in samples/expenses Review at http://gwt-code-reviews.appspot.com/1326801 http://code.google.com/p/google-web-toolkit/source/detail?r=9623 Modified: /trunk/samples/expenses/pom.xml

[gwt-contrib] Re: Fix NPE in samples/expenses (issue1326801)

2011-01-26 Thread rjrjr
r9623 On 2011/01/26 16:53:55, rchandia wrote: LGTM On 2011/01/26 16:50:26, rjrjr wrote: http://gwt-code-reviews.appspot.com/1326801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9624 committed - Cherry picking r9623 into releases/2.2, Bump pom.xml version, and fix ...

2011-01-26 Thread codesite-noreply
Revision: 9624 Author: rj...@google.com Date: Wed Jan 26 07:25:18 2011 Log: Cherry picking r9623 into releases/2.2, Bump pom.xml version, and fix NPE in samples/expenses http://code.google.com/p/google-web-toolkit/source/detail?r=9624 Modified: /releases/2.2/samples/expenses/pom.xml

[gwt-contrib] Turn off test that is failing in IE (issue1285802)

2011-01-26 Thread nchalko
Reviewers: rchandia, Description: Turn off test that is failing in IE Please review this at http://gwt-code-reviews.appspot.com/1285802/show Affected files: M user/test/org/hibernate/jsr303/tck/tests/validation/ValidateGwtTest.java Index:

[gwt-contrib] Re: Turn off test that is failing in IE (issue1285802)

2011-01-26 Thread rchandia
LGTM On 2011/01/26 18:51:16, Nick Chalko wrote: http://gwt-code-reviews.appspot.com/1285802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9625 committed - Cherry picking r9614 and r9620 into releases/2.2 5917 and 5916.

2011-01-26 Thread codesite-noreply
Revision: 9625 Author: gwt.mirror...@gmail.com Date: Wed Jan 26 11:03:00 2011 Log: Cherry picking r9614 and r9620 into releases/2.2 5917 and 5916. http://code.google.com/p/google-web-toolkit/source/detail?r=9625 Modified:

[gwt-contrib] [google-web-toolkit] r9626 committed - Turn off test that is failing in IE...

2011-01-26 Thread codesite-noreply
Revision: 9626 Author: ncha...@google.com Date: Wed Jan 26 08:11:36 2011 Log: Turn off test that is failing in IE Review at http://gwt-code-reviews.appspot.com/1285802 Review by: rchan...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9626 Modified:

[gwt-contrib] Add JREIndex optimization to JdtCompiler (issue1318802)

2011-01-26 Thread scottb
Reviewers: tobyr, Message: Remember when you did this for the web mode compiler? I want to do this for JdtCompiler as well. Please review this at http://gwt-code-reviews.appspot.com/1318802/show Affected files: M dev/core/src/com/google/gwt/dev/javac/JdtCompiler.java Index:

[gwt-contrib] Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread scottb
Reviewers: zundel, jbrosenberg, Description: Also: - Some cleanup from decentralizing JNonNullType - An easier JDT test for the two different kinds of for-each loops Please review this at http://gwt-code-reviews.appspot.com/1304802/show Affected files: M

[gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread zundel
I see what you did with the accessibility but not why. Can you illuminate us? http://gwt-code-reviews.appspot.com/1304802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread scottb
Oh right, sorry! This is so you can build a partial AST without a JProgram, the main change I'm still working on. http://gwt-code-reviews.appspot.com/1304802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread jbrosenberg
LGTM http://gwt-code-reviews.appspot.com/1304802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread Grzegorz Kossakowski
It looks like you are working on something that might be interesting to me. Is there any place I can find more information on this change? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread Scott Blum
I don't have anything great written up, but here's the gist of it: Currently, when you do a web mode compile, JDT actually runs twice. First, it runs from CompilationStateBuilder and compiles all the source code in your project. The output of this is used to build TypeOracle, which is a

[gwt-contrib] Re: Add JREIndex optimization to JdtCompiler (issue1318802)

2011-01-26 Thread tobyr
SG, but why not extract it to a shared class instead of copying? The index is immutable, and you'll end up building it twice (non-trivial cost) with this change as it's currently written - once for AbstractCompiler and once for JdtCompiler (right?).

[gwt-contrib] Re: Generator Result Caching implementation for ClientBundle (issue1236801)

2011-01-26 Thread tobyr
LGTM now. I'll let you and Bob sort out the rest. http://gwt-code-reviews.appspot.com/1236801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread Grzegorz Kossakowski
Thanks Scott for this. It's enough for me to understand motivation and (at least some) implications of this change. This is something which is certainly within my interest. Actually, what you described is exactly what I wanted to see for a long time. I parse jribble nodes twice for exactly the

[gwt-contrib] Add validation jars to the expenses sample build.xml (issue1309802)

2011-01-26 Thread nchalko
Reviewers: bobv, Description: Add validation jars to the expenses sample build.xml Please review this at http://gwt-code-reviews.appspot.com/1309802/show Affected files: M samples/expenses/build.xml Index: samples/expenses/build.xml

[gwt-contrib] Re: Add validation jars to the expenses sample build.xml (issue1309802)

2011-01-26 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/1309802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add validation jars to the expenses sample build.xml (issue1309802)

2011-01-26 Thread Nick Chalko
I need a g4 approve -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9627 committed - Add validation jars to the expenses sample build.xml...

2011-01-26 Thread codesite-noreply
Revision: 9627 Author: gwt.mirror...@gmail.com Date: Wed Jan 26 13:34:27 2011 Log: Add validation jars to the expenses sample build.xml Review at http://gwt-code-reviews.appspot.com/1309802 Review by: b...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9627 Modified:

[gwt-contrib] [google-web-toolkit] r9628 committed - Add SSL support to DevMode....

2011-01-26 Thread codesite-noreply
Revision: 9628 Author: gwt.mirror...@gmail.com Date: Wed Jan 26 10:35:35 2011 Log: Add SSL support to DevMode. Issue: 1806 Patch by: jat Review by: conroy, tobyr Review at http://gwt-code-reviews.appspot.com/1324801 http://code.google.com/p/google-web-toolkit/source/detail?r=9628 Added:

[gwt-contrib] Re: Generator Result Caching implementation for ClientBundle (issue1236801)

2011-01-26 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1236801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add mnemonics for DevMode swing UI. (issue1328801)

2011-01-26 Thread jat
Reviewers: conroy, alexander.orlov, Description: Add mnemonics for DevMode swing UI. Issue: 5150 Patch by: alexander.orlov, jat Review by: jat, conroy Please review this at http://gwt-code-reviews.appspot.com/1328801/show Affected files: M

[gwt-contrib] Re: Add Mnemonics/Shortcuts for frequently used buttons on the Dev Shell (Swing UI) (issue708801)

2011-01-26 Thread jat
Minor update (Alt+R for Restart Server) at http://gwt-code-reviews.appspot.com/1328801 since I can't edit this issue. http://gwt-code-reviews.appspot.com/708801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add JREIndex optimization to JdtCompiler (issue1318802)

2011-01-26 Thread Scott Blum
I plan to kill AbstractCompiler soon :D -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Adds accessibility to certain GWT AST nodes (issue1304802)

2011-01-26 Thread Scott Blum
No hard commitments, but I'm looking on the order of a month or thereabout. On Wed, Jan 26, 2011 at 3:25 PM, Grzegorz Kossakowski grzegorz.kossakow...@gmail.com wrote: Thanks Scott for this. It's enough for me to understand motivation and (at least some) implications of this change. This is

[gwt-contrib] Re: Issue 4916: optgroups in select elements cause issue in WebKit-based browsers (issue1313801)

2011-01-26 Thread rjrjr
LGTM , submitting On 2011/01/21 11:11:51, tbroyer wrote: http://gwt-code-reviews.appspot.com/1313801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add JREIndex optimization to JdtCompiler (issue1318802)

2011-01-26 Thread tobyr
On 2011/01/26 23:15:56, scottb wrote: I plan to kill AbstractCompiler soon :D Ok, it's up to you then. I feel squirrely about committing something in that state unless the next change is literally just hours out. http://gwt-code-reviews.appspot.com/1318802/show --

[gwt-contrib] Re: Generator Result Caching implementation for ClientBundle (issue1236801)

2011-01-26 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1236801/diff/39001/40020 File user/src/com/google/gwt/resources/rg/ExternalTextResourceGenerator.java (right): http://gwt-code-reviews.appspot.com/1236801/diff/39001/40020#newcode43 user/src/com/google/gwt/resources/rg/ExternalTextResourceGenerator.java:43:

[gwt-contrib] Re: Add JREIndex optimization to JdtCompiler (issue1318802)

2011-01-26 Thread Scott Blum
Point taken; I killed the old one and made it reference the new one. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Update YEAR_MONTH_WEEKDAY_DAY formats, which were affected by an (issue1329801)

2011-01-26 Thread jat
Reviewers: roubert_google.com, staudacher_google.com, Description: Update YEAR_MONTH_WEEKDAY_DAY formats, which were affected by an ICU/CLDR bug. This was manually created looking specfically at y+M{1,3}E{1,3}d patterns in CLDR data and using that where the ICU4J computed value differed. A

[gwt-contrib] [google-web-toolkit] r9629 committed - Add JREIndex optimization to JdtCompiler....

2011-01-26 Thread codesite-noreply
Revision: 9629 Author: sco...@google.com Date: Wed Jan 26 13:03:02 2011 Log: Add JREIndex optimization to JdtCompiler. http://gwt-code-reviews.appspot.com/1318802/show Review by: to...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9629 Modified:

[gwt-contrib] [google-web-toolkit] r9630 committed - Fix bad gwt-servlet dep problem described in http://code.google.com/p/...

2011-01-26 Thread codesite-noreply
Revision: 9630 Author: rj...@google.com Date: Wed Jan 26 13:12:30 2011 Log: Fix bad gwt-servlet dep problem described in http://code.google.com/p/google-web-toolkit/issues/detail?id=5918 http://code.google.com/p/google-web-toolkit/source/detail?r=9630 Modified:

[gwt-contrib] [google-web-toolkit] r9631 committed - Cherry picking r9618 into releases/2.2, DateTimeFormat javadoc fix

2011-01-26 Thread codesite-noreply
Revision: 9631 Author: gwt.mirror...@gmail.com Date: Wed Jan 26 16:32:37 2011 Log: Cherry picking r9618 into releases/2.2, DateTimeFormat javadoc fix http://code.google.com/p/google-web-toolkit/source/detail?r=9631 Modified: /releases/2.2/user/src/com/google/gwt/i18n/client/DateTimeFormat.java

[gwt-contrib] [google-web-toolkit] r9632 committed - Cherry picking r9594, r9630 into releases/2.2, fix gwt-servlet dep in ...

2011-01-26 Thread codesite-noreply
Revision: 9632 Author: rj...@google.com Date: Wed Jan 26 13:28:57 2011 Log: Cherry picking r9594, r9630 into releases/2.2, fix gwt-servlet dep in samples/expenses/pom.xml http://code.google.com/p/google-web-toolkit/source/detail?r=9632 Modified: /releases/2.2/samples/expenses/pom.xml

[gwt-contrib] Warn users of JRE 1.5 that their days are numbered (issue1328802)

2011-01-26 Thread rjrjr
Reviewers: rchandia, Description: Warn users of JRE 1.5 that their days are numbered Addresses http://code.google.com/p/google-web-toolkit/issues/detail?id=5884 Please review this at http://gwt-code-reviews.appspot.com/1328802/show Affected files: M

[gwt-contrib] Re: Warn users of JRE 1.5 that their days are numbered (issue1328802)

2011-01-26 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/1328802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors