newbie: GAE + Oauth + Open Id example

2010-10-31 Thread Fendy Tjin
Hi, I've searched all over the places, what I found is that, I need to redirect or forward to authenticate to Google account or other accounts. However I am still puzzled as to how to implement oauth and open id authentication. Can anyone enlighten me as to how to implement? While at it, can you

Re: Announcing GWT 2.1

2010-10-31 Thread Thomas Broyer
On 30 oct, 23:15, Jeff Schwartz jefftschwa...@gmail.com wrote: Excellent! Thank you for the information. I still however have to wait until support for DAOs embeded objects is implemented in the MVP framework (I am using Objectify for my ORM as well ass a DAO) before I can cut over. I am

Re: GWT2.1 : sample Data bound views

2010-10-31 Thread Thomas Broyer
On 31 oct, 01:20, googelybear googelyb...@gmail.com wrote: I am also trying out the new editor framework. Did anyone already find out how to define constraints on fields? E.g. I have a TextBox and the user needs to type at least n characters in it otherwise an error should be displayed.

Re: GWT2.1 : sample Data bound views

2010-10-31 Thread googelybear
I see, javax.validation would be sweet. So what is the best approach to plugin the validation into the existing framework? I saw that there is a 'hasErrors()' and 'getErrors' method in the driver but how do I create/record an error, how can I trigger the 'editorDelegate.recordError' being called?

Re: Announcing GWT 2.1

2010-10-31 Thread Jeff Schwartz
Thomas, It is the 'I' in DI that I reflected on: Injection takes cpu cycles and on App Engine server cpu cycles are severely restricted by numerous quotas; the penalty for exceeding them cause cascading conditions of failure. If you aren't familiar with App Engine hosting and its quotas perhaps

Re: GWT 2.1 CELL TABLE

2010-10-31 Thread bond
Thanks very much bradr!! I'll try you suggestions!! Daniele On 29 Ott, 22:51, bradr brad.rydzew...@gmail.com wrote: To do this, you have to override the CellTable's default style. Because CellTable uses a CssResource, which ultimately gets obfuscated when you compile, you have to create your

Re: Announcing GWT 2.1

2010-10-31 Thread Duong BaTien
Hi: Good to know your experience with Roo and the light weight approach. A best-practiced example of RequestFactory with GIN at GWT side and GUICE at server side may be what a mortal developer is looking for. It is even better with Objectify if Jeff does it. Thanks BaTien On Sun, 2010-10-31 at

Re: JUnit testing GWT

2010-10-31 Thread Arthur Kalmenson
You can still mock out GWT widgets, but you'll need to use the GWTMockUtilities. You can find more info here: http://onthejvm.com/mocking-your-gwt-widgets-without-gwttestcase -- Arthur Kalmenson On Fri, Oct 29, 2010 at 9:14 AM, chrisr chris.robert.rowl...@gmail.com wrote: Hi Ignat, thank you

Re: Announcing GWT 2.1

2010-10-31 Thread Arthur Kalmenson
Great job, you guys rock! -- Arthur Kalmenson On Thu, Oct 28, 2010 at 2:12 PM, David Chandler drfibona...@google.com wrote: GWT 2.1 is here! http://googlewebtoolkit.blogspot.com/2010/10/announcing-final-release-of-gwt-21.html -- David Chandler Developer Programs Engineer, Google Web

CellTree reordering nodes?

2010-10-31 Thread decitrig
This problem is a bit tricky to describe; forgive me. I have a cell tree where nodes are added programmatically by doing a getList().add() on a ListDataProvider field. However, I found that using the .add(Object) method would do strange things to the ordering, i.e. the node *rendered* as Item 1

Re: Announcing GWT 2.1

2010-10-31 Thread Thomas Broyer
On 31 oct, 13:40, Jeff Schwartz jefftschwa...@gmail.com wrote: Thomas, It is the 'I' in DI that I reflected on: Injection takes cpu cycles and on App Engine server cpu cycles are severely restricted by numerous quotas; the penalty for exceeding them cause cascading conditions of failure. If

Re: Announcing GWT 2.1

2010-10-31 Thread Thomas Broyer
On 31 oct, 15:26, Duong BaTien duong.bat...@gmail.com wrote: Hi: Good to know your experience with Roo and the light weight approach. I think I already said it: I have zero experience with Roo. A best-practiced example of RequestFactory with GIN at GWT side and GUICE at server side may be

Re: How can I create a CellTree of Anchor nodes?

2010-10-31 Thread decitrig
On Oct 16, 5:50 pm, Tamer Sezgin tamer.sez...@gmail.com wrote: It's a little complex example, but the left menu of Showcase application is implemented using CellTree and contains Hyperlinks..    http://gwt.google.com/samples/Showcase/Showcase.html I assume after figuring out how it works, it

Re: Announcing GWT 2.1

2010-10-31 Thread Jeff Schwartz
Hi Thomas, No hard feelings, I assure you, and I think your English is very good so please don't feel insecure. I apologize if I came off with an attitude; I didn't mean to, but it was early in the morning and I didn't have my 1st cup of coffee :) Roo is a Spring Source technology as is STS

Re: client code from external directory

2010-10-31 Thread Alex Shabanov
Guys, can anybody help me, please? The solution should be pretty simple but I still can't figure out what is the problem. Does someone ever tried the approach given above? On Oct 26, 8:19 pm, Alex Shabanov avshaba...@gmail.com wrote: Thank you so much for your advice. I've created a small

Re: About widgets management

2010-10-31 Thread Jeff Schwartz
On Thu, Oct 28, 2010 at 6:55 AM, Pablo G.F blay...@gmail.com wrote: But when I create the menu I have to write the behaviour of each widget (when hide/show etc), so I have to instance them. I know what you mean by using Singleton but with that approach I can specify the behaviour, because

Re: client code from external directory

2010-10-31 Thread Jeff Larsen
Put a gwt.xml file in the project. define the module, then you'll be able to import your library project into a gwt project. On Oct 31, 1:59 pm, Alex Shabanov avshaba...@gmail.com wrote: Guys, can anybody help me, please? The solution should be pretty simple but I still can't figure out what

Announcing gwt4air 1.0

2010-10-31 Thread nino ekambi
Hello community, It s been a long way but i m proud to annouce the release of Gwt4Air 1.0 Gwt4Air will give you the the ability to turn your GWT apps in to desktop apps using adobe air. You can download the jar here http://code.google.com/p/gwt4air/. The first release is compatible with gxt 2.2,

Re: Announcing GWT 2.1

2010-10-31 Thread Stephen Haberman
As DI requires additional cpu cycles to do its magic I'd be interested to hear if you have any profiling results specifically showing DI is responsible for the bad startup perf. My assertion is that if you startup Hibernate + Wicket + whatever without DI, just configuring them by hand, it will

Re: Announcing GWT 2.1

2010-10-31 Thread Shawn Brown
That being said, I'm not a Spring (nor Guice) fan, so would actually enjoy seeing numbers that show, say, your stack w/Spring takes x% more time than the same stack w/o Spring. Here's what I read... I’ve been able to reduce my cold start time on AppEngine from an average of 8.1s to 2.5s, a

Re: 2.1 linker changes

2010-10-31 Thread Shawn Brown
Should appName.nocache.js be one of the Artifacts obtained via artifacts.find(EmittedArtifact.class)? In 2.04 it was emitted in the link method but in 2.1 it isn't Is this by design? If so, what is the design?!? Shawn Later the log reports  Emitting resource projectName.nocache.js

Re: Announcing GWT 2.1

2010-10-31 Thread Shawn Brown
That being said, I'm not a Spring (nor Guice) fan, so would actually enjoy seeing numbers that show, say, your stack w/Spring takes x% more time than the same stack w/o Spring. One more: http://www.streamhead.com/google-appengine-java-loading-request-analysis/ Shawn -- You received this

Re: Announcing GWT 2.1

2010-10-31 Thread Stephen Haberman
Hi Shawn, Thanks for the links. Moving off JDO and Spring MVC (the web framework, not DI) seemed to be the biggest startup time wins, which is in line with my assertion that DI itself is not typically the bottleneck. That being said, the streamhead link:

[gwt-contrib] Re: Comment on RpcDirectEval in google-web-toolkit

2010-10-31 Thread codesite-noreply
Comment by vermavee: Any update on if this has been included in the GWT releases? For more information: http://code.google.com/p/google-web-toolkit/wiki/RpcDirectEval -- http://groups.google.com/group/Google-Web-Toolkit-Contributors