Re: gwt-log-3.0.4 available for download

2010-10-20 Thread Harald Pehl
Is this version part of GWT 2.1, as described in http://code.google.com/intl/de-DE/webtoolkit/doc/trunk/DevGuideLogging.html? - Harald On Oct 19, 10:50 pm, Fred Sauer fre...@google.com wrote: Hi, There's a new version of gwt-log for your to try out. Downloads:  

Re: java.lang.ClassCastException .. but why?

2010-10-20 Thread ep
since MyMenuBar is-a MenuBar there is an implicit typecast, so you can do MenuBar myBar = new MyMenuBar(..) you can of course downcast the MenuBar to MyMenuBar, if you're sure it is a MyMenuBar @alexoffspring i'm wondering how you initialize the *root* with your MyMenuBar, if doing this way:

Re: DnD Idea - management tool

2010-10-20 Thread agi
maybe you could use this: http://code.google.com/p/gwt-dnd/ hth, agi On Oct 19, 4:37 pm, Dawid Dziewulski jel...@gmail.com wrote: Hi all I'm looking for idea how to build something like palette (like dnd interface builders). For instance I have on the right, some boxes and on the left

Re: communication between two frames

2010-10-20 Thread ep
oh yes, I forgot to mention that innerframes behave like window and have own javascript namespace so if you're using the default GWT linker, which loads the application in innerframes and your hosted page provides your sharedCodeBase.js file, then you should interop via the top window which

Re: Avoid Use of Browser Detect

2010-10-20 Thread ep
look for BrowserInfo.java in google, the top second entry (BrowserInfo.java - google-web-toolkit.googlecode.com) or find the class in repository: com.google.gwt.dev.util.BrowserInfo, that is under apache 2.0 license, I guess you can modify it to get it working for detection On 19 Okt., 22:08,

Re: Simulate low bandwith

2010-10-20 Thread ep
you can also implement a special servlet which derives from RemoteServiceSevlet and delays execution, it would be pretty easy for high latency simulation but a bit tricky for lowering bandwith On 20 Okt., 00:11, Fernando Barbat fbar...@gmail.com wrote: Are there any tools which allow us to test

Re: java.lang.ClassCastException .. but why?

2010-10-20 Thread alexoffspring
Yep now i got the error. Well, finally the solution i'm adopting now is the ep-like suggestion: MenuBar root = new MenuItem(MyMenuBar, new MyMenuBar(false)); MyMenuBar myMenuBar = (MyMenubar)root.getSubMenu(); Thanks to all On 20 Ott, 09:21, ep eplisc...@googlemail.com wrote: since

SplitLayoutPanel: How to get North,West .. panels' size?

2010-10-20 Thread alexoffspring
I got a GWT SplitLayoutPanel full-window sized: ... public void onModuleLoad() { RootPanel rootPanel = RootPanel.get(); rootPanel.setPixelSize(Window.getClientWidth(), Window.getClientHeight()); SplitLayoutPanel splitLayoutPanel = new MySplitLayoutPanel(); rootPanel.add(splitLayoutPanel,

Re: Client Vs Server and Google app engine

2010-10-20 Thread Didier DURAND
Hi, I would also advise you to give a try to Objectify: I abandonned jdo for it. Very efficient and much simpler! Concerning your issue, Objectify works great: its annotations go through via GWT and you can use same class on client and server. See

GWT 2.1 hellomvp using GIN

2010-10-20 Thread Sebastian Beigel
Hi, I'm looking at 2.1 (RC1) for the first time right now and I try to refactor the hellomvp sample to use GIN. Unfortunately, I have some problems with the places - activities mapping. The doc says A better way to implement the chain of nested ifs would be with a GIN module. and the code is

Re: GWT 2.1 hellomvp using GIN

2010-10-20 Thread Marcin Misiewicz
Well I'm also very interested in some guidelines of how to use gin with activities and places. On Oct 20, 11:42 am, Sebastian Beigel sebast...@beigel.de wrote: Hi, I'm looking at 2.1 (RC1) for the first time right now and I try to refactor the hellomvp sample to use GIN. Unfortunately, I

Re: GWT 2.1 hellomvp using GIN

2010-10-20 Thread Fernando Barbat
I had the exactly same doubt. And I thought about it, but couldn't find out how you can do that mapping with GIN. In fact, Roo's generated projects don't use a GIN-based mapping although they use GIN in other parts. So I'm interested to know the answer to this question too. :P On 20 oct, 07:42,

how to dim background while showing a DialogBox?

2010-10-20 Thread marius.andreiana
Hi, Do you have any suggestions on how to dim background while showing a modal DialogBox? When DialogBox is hidden, the background should come back to normal. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: how to dim background while showing a DialogBox?

2010-10-20 Thread Lothar Kimmeringer
Am 20.10.2010 12:51, schrieb marius.andreiana: Do you have any suggestions on how to dim background while showing a modal DialogBox? When DialogBox is hidden, the background should come back to normal. When working with GWT 2.0, call setGlassEnabled(true) in your DialogBox-class (e.g. in the

GWT 2.1R1 CellWidgets + MVP

2010-10-20 Thread Tobias
I recently tried out the new cell-widgets in GWT2.1 and I'm planning to replace my homegrown solutions with these. However I came across a problem: All the examples, e.g. the Expenses-App, that use these widgets use them within a Composite which at the same time implements Activity, apparently

Change default browser in dev mode

2010-10-20 Thread tombs
Is there any way to change the default web browser used when running a GWT web app in dev mode? My researches so far have failed to find any way. Currently dev mode runs the browser I have set as default on my system (Windows XP) which is a reasonable thing to do, but I need GWT to run a

Re: EntityProxy + JDO enum handling

2010-10-20 Thread David Chandler (Google)
I filed this http://code.google.com/p/google-web-toolkit/issues/detail?id=5448 /dmc On Oct 19, 3:53 pm, David Chandler (Google) drfibona...@google.com wrote: Hi BB, This is the correct way to define an enum type as of 2.1 RC (in the EntityProxy, not the entity), and I am able to reproduce

Re: how to dim background while showing a DialogBox?

2010-10-20 Thread marius.andreiana
On Oct 20, 1:58 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: Am 20.10.2010 12:51, schrieb marius.andreiana: Do you have any suggestions on how to dim background while showing a modal DialogBox? When DialogBox is hidden, the background should come back to normal. When working with

Re: Does GWT designer currently work with UIBinder?

2010-10-20 Thread WillSpecht
Is there a zip of that somewhere? I can not install through the eclipse install manager. On Oct 19, 9:33 am, Eric Clayberg - Instantiations clayb...@gmail.com wrote: Yes. UiBinder works with GWT Designer. Make sure that you are using the latest GWT Designer build...

Re: downloading file from servlet

2010-10-20 Thread mike b
Thank you! Thank you! Thank you! That worked on the first try!! Much Appreciated!!! On Oct 20, 12:28 am, Jim Douglas jdou...@basis.com wrote: This is what I'm doing.  YMMV and assorted disclaimers; it's quite likely that this can be improved upon. (1) I generate this place-holder for the

Re: downloading file from servlet

2010-10-20 Thread mike b
I should state for the benefit of others that what really worked in this case was added the div id=__gwt_downloadFrame tabIndex='-1'/ div) to my HTML page and then adding the Frame to the results of the the RootPanel.get(__gwt_downloadFrame);. This put my IFRAME on the base of the page. So, the

Re: Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-10-20 Thread wolfgang
solved the problem. I changed the order in java build path (order and export), so that GWT SDK is now on Top. everything compiles without exception. On 15 Okt., 12:02, wolfgang wor@gmail.com wrote: Sorry for posting this twice - haven't found the first post so I assumed it got lost

GWT SEO problem.

2010-10-20 Thread Subhrajyoti Moitra
Hello, I am building a website with SEO requirements using GWT 2.1M3. I have followed the steps listed in Google's proposal for Ajax Crawling (#!) I have also been able to generate html snapshots of my page using HTMLUnit. My server is apache/php, with GWT code as the client using

Re: help:Serialize/Deserialize a gwt gui to/from an XML (template)

2010-10-20 Thread MAM
Please, i need some ideas , don't know how to start my project On 19 oct, 16:46, MAM mersni.am...@gmail.com wrote: Hi, briefly, the tool will be able to serialize a GUI written in GWT (in input) into XML/JSON (preferably XML) file , and perform the reverse: read the created XML file

Re: help:Serialize/Deserialize a gwt gui to/from an XML (template)

2010-10-20 Thread David Chandler
Hi MAM, You can use GWT's UiBinder capability to create a view from an XML template; however, there is no way I know of to do this at runtime because GWT generates the corresponding Javascript at compile time. HTH, On Wed, Oct 20, 2010 at 11:09 AM, MAM mersni.am...@gmail.com wrote: Please, i

Re: importing 3rd party class on client side - RPC implementation

2010-10-20 Thread David Chandler (Google)
Specify the path for each package that should be visible to the GWT compiler in a source tag, like !-- Specify the paths for translatable code-- source path='client'/ source path='shared'/ The path is relative to the dir which contains the .gwt.xml file. HTH, -- David

Please anyone from google on this

2010-10-20 Thread Gal Dolber
http://www.google.com/support/forum/p/Web+Search/thread?tid=47496ffe5ea01d39hl=en I notice that it works ok on gwt's showcase. Thanks -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are

Custom Editor/RequestFactory for CellTable

2010-10-20 Thread Mark Howard
Hi, I'm looking into possibilities for creating a mapping application using GWT and the openlayers javascript library (http:// openlayers.org/). I would like to use openlayers to read data from a web feature service (WFS) and then display the results as both a map and in a table. I'm particularly

Re: Custom Editor/RequestFactory for CellTable

2010-10-20 Thread David Chandler
Hi Mark, Documentation is still scant, but this may help... http://code.google.com/p/google-web-toolkit/wiki/Editors On Wed, Oct 20, 2010 at 11:26 AM, Mark Howard mailma...@gmail.com wrote: Hi, I'm looking into possibilities for creating a mapping application using GWT and the openlayers

How to override CellTree's resources in UiBinder?

2010-10-20 Thread Blackberet
This is not working; ui:style @external .cellTreeWidget, .cellTreeEmptyMessage, .cellTreeItem, .cellTreeItemImage, .cellTreeItemImageValue, .cellTreeItemValue, .cellTreeOpenItem, .cellTreeClosedItem, .cellTreeTopItem, .cellTreeTopItemImage, .cellTreeTopItemImageValue,

GWT Validator

2010-10-20 Thread Benjamin Papez
Hello, I saw the recent ongoing work on GWT validation ( http://gwt-code-reviews.appspot.com/863801 ). I am currently in the process of evaluating how to best implement validations into our CMS product ( http://www.jahia.org ) as we offer content editing via GWT panels. The only problem is that

Re: GWT 2.1 hellomvp using GIN

2010-10-20 Thread moejo
I don't know if this will help, but i recreated the Contact Details app which is under the Large scale application development article at http://code.google.com/webtoolkit/articles/mvp-architecture.html using just a clientFactory to allow a more thorough working example using GWT 2.1 Activities

Re: GWT + App Engine + JSP (Eclipse IDE)

2010-10-20 Thread Sky
Thanks so much for the help. That's exactly what I need. Cheers! On Oct 18, 11:21 am, David Chandler (Google) drfibona...@google.com wrote: Sky, You need the Java EE edition of Eclipse to edit JSPs:http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-develop... There is an

Re: Change default browser in dev mode

2010-10-20 Thread A. Stevko
Not sure which IDE you are using but, using elicpse, the development mode box that lists the urls states: For your convenience, here are some URLs that you may wish to view in development mode. Simply copy/paste a url below into any supported browser. Also, in eclipse, under the menu Window |

Re: GWT 2.1 hellomvp using GIN

2010-10-20 Thread Thomas Broyer
On 20 oct, 11:42, Sebastian Beigel sebast...@beigel.de wrote: Hi, I'm looking at 2.1 (RC1) for the first time right now and I try to refactor the hellomvp sample to use GIN. Unfortunately, I have some problems with the places - activities mapping. The doc says A better way to implement the

Re: Change default browser in dev mode

2010-10-20 Thread Chris Conroy
Even the old school GWTShell Swing GUI has a Copy URL button. So I really can't make sense of the OP's post. On Wed, Oct 20, 2010 at 5:22 PM, A. Stevko andy.ste...@gmail.com wrote: Not sure which IDE you are using but, using elicpse, the development mode box that lists the urls states: For

Re: GWT 2.1R1 CellWidgets + MVP

2010-10-20 Thread Thomas Broyer
On 20 oct, 14:02, Tobias thaberm...@gmail.com wrote: I recently tried out the new cell-widgets in GWT2.1 and I'm planning to replace my homegrown solutions with these. However I came across a problem: All the examples, e.g. the Expenses-App, that use these widgets use them within a Composite

Re: Avoid Use of Browser Detect

2010-10-20 Thread Thomas Broyer
On 19 oct, 22:08, Fredsome aaron@gmail.com wrote: After readinghttp://groups.google.com/group/google-web-toolkit/browse_thread/threa..., I understand that the Browser Detect code is output into the JavaScript code GWT compiles for you. Unfortunately, Browser Detect's license is not

Re: how to dim background while showing a DialogBox?

2010-10-20 Thread nacho
I didn't knew about this. So, so, so nice. That's why i love gwt :) On 20 oct, 09:57, marius.andreiana marius.andrei...@gmail.com wrote: On Oct 20, 1:58 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: Am 20.10.2010 12:51, schrieb marius.andreiana: Do you have any suggestions on how to

GWT spring scaffolding

2010-10-20 Thread Patrick
Is there any kind of good documentation on the scaffolding that roo creates. I am just having a hard time finding where to jump in and edit stuff. In my code I have accounts, contacts, and cases. I want to use a web service to pull the data from are current backend to this roo backend, and

Re: GWT Validator

2010-10-20 Thread Nick Chalko
Hi Benjamin, Thanks for you interest in GWT Validation. I am excited to work on it, but it is my 20% project not my normal project, so the progress on this will be slow at times. The first thing to remember is that this is PRE ALPHA code. While it will do constraint checking on the client side

turn off auto-completion suggestion box on uibinder ui.xml in eclipse

2010-10-20 Thread Kevin (Yau) Leung
I wonder if it's only me having this problem. Whenever I edit the ui.xml in eclipse, the auto-completion box comes up and it's extraordinary slow. Is there any method to turn it off? Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Change default browser in dev mode

2010-10-20 Thread magic
On Oct 21, 6:37 am, Chris Conroy con...@google.com wrote: Even the old school GWTShell Swing GUI has a Copy URL button. So I really can't make sense of the OP's post. Please try reading the last paragraph of my post again where I note that I can use copy and paste and refer to the annoyance

Re: Change default browser in dev mode

2010-10-20 Thread magic
I am using NetBeans. However the browser is launched by the GWT DevMode gizmo which picks the system default browser. So I don't understand what Eclipse's Window | Web Browser menu item would have to do with it. Please enlighten me. On Oct 21, 6:22 am, A. Stevko andy.ste...@gmail.com wrote:

[gwt-contrib] Re: Test timeout in JUnitShell ? (GWT 2.0.0)

2010-10-20 Thread Ed
I couldn't hold back investigating a bit more. Like described in my last post, the timeout always occurred/started in a GWTTestCase class that contained two test cases that involve RPC calls. I did split up these test cases such that they have their own GWTTestCase class, and the timeout

Re: [gwt-contrib] Re: Test timeout in JUnitShell ? (GWT 2.0.0)

2010-10-20 Thread John Tamplin
On Wed, Oct 20, 2010 at 9:22 AM, Ed post2edb...@gmail.com wrote: I couldn't hold back investigating a bit more. Like described in my last post, the timeout always occurred/started in a GWTTestCase class that contained two test cases that involve RPC calls. I did split up these test cases

[gwt-contrib] Re: GWT 2.1 MVP with GIN

2010-10-20 Thread Aigeec
Hey Guys, I am also interested in an implementation of GWT 2.1 MVP using GIN. I have made some head way with it. This has been done mostly by extending the ActivityManager, PlaceController and PlaceHistoryHandler classes and overriding their constructors to use GIN injection. I don't know if

[gwt-contrib] Re: Add a ControllerBinder in UiBinder so that UiHandlers can be bound on both the (issue923801)

2010-10-20 Thread Jeff Larsen
This is something I'm really interested in as well Stephen. - How do you test these things? How does the next guy know whether his event handler belongs in the view or the controller? - If the event doesn't change the view state, it doesn't belong in the view. I would argue that clicking

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

2010-10-20 Thread zundel
Some comments on style http://gwt-code-reviews.appspot.com/1015801/diff/6001/7001 File dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java (right): http://gwt-code-reviews.appspot.com/1015801/diff/6001/7001#newcode771

[gwt-contrib] [google-web-toolkit] r9125 committed - Cherry picking bugs from trunk into release branch: 1032801, 1035801, ...

2010-10-20 Thread codesite-noreply
Revision: 9125 Author: gwt.mirror...@gmail.com Date: Wed Oct 20 04:18:31 2010 Log: Cherry picking bugs from trunk into release branch: 1032801, 1035801, 1031801 http://code.google.com/p/google-web-toolkit/source/detail?r=9125 Modified: /releases/2.1/samples/expenses/README-MAVEN.txt

[gwt-contrib] [google-web-toolkit] r9126 committed - Removing 2.1.0 tag (will re-add)

2010-10-20 Thread codesite-noreply
Revision: 9126 Author: p...@google.com Date: Wed Oct 20 07:53:40 2010 Log: Removing 2.1.0 tag (will re-add) http://code.google.com/p/google-web-toolkit/source/detail?r=9126 Deleted: /tags/2.1.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2010-10-20 Thread codesite-noreply
Revision: 9127 Author: p...@google.com Date: Wed Oct 20 07:54:16 2010 Log: Adding 2.1.0 tag http://code.google.com/p/google-web-toolkit/source/detail?r=9127 Added: /tags/2.1.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Add a ControllerBinder in UiBinder so that UiHandlers can be bound on both the (issue923801)

2010-10-20 Thread Stephen Haberman
How do you test these things? This gwt-hack example project is horribly unmaintained, but the idea is: http://github.com/stephenh/gwt-hack/blob/master/src/test/java/com/bizo/gwthack/client/presenters/ClientPresenterTest.java When GwtFooView is generated, so is StubFooView, which has fields

Re: [gwt-contrib] Re: GWT 2.1 MVP with GIN

2010-10-20 Thread David Chandler
Hmmm, I see my comments about GIN in the ActivityMapper have caught up with me. I haven't worked this out fully yet, but was thinking of something along the lines of gwt-presenter's a

Re: [gwt-contrib] Re: Not using dvsDataMap on child entities

2010-10-20 Thread Tim Murison
Any updates on this issue? It seems very much like a bug as opposed to a purposeful design choice. All the editors work with object graphs and it makes sense to persist changes by sending object graph. On Fri, Oct 15, 2010 at 11:05 AM, Patrick Julien pjul...@gmail.com wrote: Not to mention that

Re: [gwt-contrib] Re: Not using dvsDataMap on child entities

2010-10-20 Thread Tim Murison
More notes on this: Say I have the following relationship, a User has a list of OfficeHours. Using the editor framework, I can create OfficeHours proxies, add them to User and persist() and get the whole graph, including new OfficeHours, on the server. If I add a new OfficeHours proxy and update

Re: [gwt-contrib] Re: Not using dvsDataMap on child entities

2010-10-20 Thread BobV
On Wed, Oct 20, 2010 at 11:34 AM, Tim Murison tim.muri...@gmail.com wrote: Any updates on this issue? I am burning down the server code this week. -- Bob Vawter Google Web Toolkit Team -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Not using dvsDataMap on child entities

2010-10-20 Thread Tim Murison
On Wed, Oct 20, 2010 at 12:02 PM, BobV b...@google.com wrote: On Wed, Oct 20, 2010 at 11:34 AM, Tim Murison tim.muri...@gmail.com wrote: Any updates on this issue? I am burning down the server code this week. Will it be replaced with some shiny new server code? --

[gwt-contrib] Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread conroy
Reviewers: jat, fabiomfv, Description: Update the npapi plugin to support OSX. Please review this at http://gwt-code-reviews.appspot.com/1036801/show Affected files: M plugins/npapi/Makefile M plugins/npapi/manifest-template.json A

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread jat
LGTM if you have verified it works with the Linux .so's in the CRX and a couple of nits. http://gwt-code-reviews.appspot.com/1036801/diff/1/3 File plugins/npapi/manifest-template.json (right): http://gwt-code-reviews.appspot.com/1036801/diff/1/3#newcode24

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread conroy
http://gwt-code-reviews.appspot.com/1036801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread conroy
http://gwt-code-reviews.appspot.com/1036801/diff/1/3 File plugins/npapi/manifest-template.json (right): http://gwt-code-reviews.appspot.com/1036801/diff/1/3#newcode24 plugins/npapi/manifest-template.json:24: { path: Darwin-gcc3/gwtDev.plugin, public: true } On 2010/10/20 17:24:20, jat wrote:

Re: [gwt-contrib] Re: GWT 2.1 MVP with GIN

2010-10-20 Thread David
Why not include Gin in GWT 2.1 ? It could maybe be useful inside the GWT codebase as well ? On Wed, Oct 20, 2010 at 5:32 PM, David Chandler drfibona...@google.com wrote: Hmmm, I see my comments about GIN in the ActivityMapper have caught up with me. I haven't worked this out fully yet, but was

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread jat
Ok. Be sure and check in the compiled libraries in prebuilt and an updated CRX at the same time. http://gwt-code-reviews.appspot.com/1036801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread knorton
LGTM2 On 2010/10/20 18:54:20, jat wrote: Ok. Be sure and check in the compiled libraries in prebuilt and an updated CRX at the same time. http://gwt-code-reviews.appspot.com/1036801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread Arthur Kalmenson
Is this coming with GWT 2.1? I'm guessing this is a Chrome Extension for Mac OS X -- Arthur Kalmenson On Wed, Oct 20, 2010 at 3:10 PM, knor...@google.com wrote: LGTM2 On 2010/10/20 18:54:20, jat wrote: Ok. Be sure and check in the compiled libraries in prebuilt and an updated CRX

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread fabiomfv
http://gwt-code-reviews.appspot.com/1036801/diff/6001/7001 File plugins/npapi/Makefile (right): http://gwt-code-reviews.appspot.com/1036801/diff/6001/7001#newcode47 plugins/npapi/Makefile:47: CFLAGS += -DBROWSER_NPAPI -DXP_UNIX -fshort-wchar out of curiosity, why are we defining XP_UNIX for a

Re: [gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread John Tamplin
On Wed, Oct 20, 2010 at 3:25 PM, Arthur Kalmenson arthur.k...@gmail.comwrote: Is this coming with GWT 2.1? I'm guessing this is a Chrome Extension for Mac OS X The plugins are updated independently of GWT itself, and this can be used with GWT 2.0 as well. Note that Chrome on both Mac and

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread conroy
http://gwt-code-reviews.appspot.com/1036801/diff/6001/7001 File plugins/npapi/Makefile (right): http://gwt-code-reviews.appspot.com/1036801/diff/6001/7001#newcode47 plugins/npapi/Makefile:47: CFLAGS += -DBROWSER_NPAPI -DXP_UNIX -fshort-wchar On 2010/10/20 19:31:06, fabiomfv wrote: out of

[gwt-contrib] Reformulate RPC generated TypeHandlers to create fewer classes. (issue1037801)

2010-10-20 Thread scottb
Reviewers: zundel, bobv, Description: This is a reformulation of the TypeHandler change, which causes the generated serializer class to serve as the TypeHandler interface implementor. The current implementation uses an inner class, which causes twice as many types to get generated. Please

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread conroy
http://gwt-code-reviews.appspot.com/1036801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread fabiomfv
On 2010/10/20 19:44:12, conroy wrote: http://gwt-code-reviews.appspot.com/1036801/diff/6001/7001 File plugins/npapi/Makefile (right): http://gwt-code-reviews.appspot.com/1036801/diff/6001/7001#newcode47 plugins/npapi/Makefile:47: CFLAGS += -DBROWSER_NPAPI -DXP_UNIX -fshort-wchar On

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread Chris Conroy
I'm glad you mention this: In the latest version of the patch I'm nuking Makefile.mac (amongst other cruft) since unused bits like this laying around just cause confusion. XP_MACOSX is set higher up in the Makefile on the OS==mac check. I set XP_UNIX there so that linux and mac can share it. On

[gwt-contrib] Re: Update the npapi plugin to support OSX. (issue1036801)

2010-10-20 Thread fabiomfv
On 2010/10/20 20:06:42, conroy wrote: I'm glad you mention this: In the latest version of the patch I'm nuking Makefile.mac (amongst other cruft) since unused bits like this laying around just cause confusion. XP_MACOSX is set higher up in the Makefile on the OS==mac check. I set XP_UNIX

[gwt-contrib] Re: Exposes the built-in year-month-weekday-day format in PredefinedFormat. (issue1039801)

2010-10-20 Thread jat
LGTM, thanks. http://gwt-code-reviews.appspot.com/1039801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] GWT 2.1 MVP with Code Splitting

2010-10-20 Thread Tolga Tarhan
All, Somewhat similar to my previous email about GIN with MVP, I also have a concern regarding using Code Splitting with the MVP framework as it sits today. Specifically, it would appear that ActivityMapper can't use runAsync because it has to return the matching activity synchronously.

[gwt-contrib] [google-web-toolkit] r9129 committed - Exposes the built-in year-month-weekday-day format in PredefinedFormat...

2010-10-20 Thread codesite-noreply
Revision: 9129 Author: gry...@google.com Date: Wed Oct 20 12:39:18 2010 Log: Exposes the built-in year-month-weekday-day format in PredefinedFormat. Review at http://gwt-code-reviews.appspot.com/1039801 Patch by: guillaume.ryder Review by: jat

[gwt-contrib] Re: Make the following method public in StackTraceDeobfuscator, for reuse by user server side code: (issue1040801)

2010-10-20 Thread fredsa
http://gwt-code-reviews.appspot.com/1040801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make the following method public in StackTraceDeobfuscator, for reuse by user server side code: (issue1040801)

2010-10-20 Thread fredsa
http://gwt-code-reviews.appspot.com/1040801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors