Re: Changing to default localization without extension for the language

2012-11-23 Thread Geoff Callender
Once I have gone to a specific locale I can't get back to the default locale in a way that leaves locale out of the URL. eg. from http://localhost:8080/myapp/mypage to http://localhost:8080/myapp/en_GB/mypage and back to http://localhost:8080/myapp/mypage I have tried L

Re: Which phase of page lifecycle will not occur when we access page 2nd time?

2012-11-23 Thread Thiago H de Paula Figueiredo
On Fri, 23 Nov 2012 22:03:46 -0200, Geoff Callender wrote: Yes, every page render request and component event request does result in pageAttached(), onActivate() and pageDetached() being called. But there's one other situation, shown in the example "When Tapestry creates a URL to this pa

Re: Which phase of page lifecycle will not occur when we access page 2nd time?

2012-11-23 Thread Geoff Callender
Yes, every page render request and component event request does result in pageAttached(), onActivate() and pageDetached() being called. But there's one other situation, shown in the example "When Tapestry creates a URL to this page". It results in pageAttached() and pageDetached() but no onActi

Re: Adding a progress listener to UploadedFile

2012-11-23 Thread Lance Java
In tapestry 5.2+ you have the option of annotations or naming conventions. Prior to 5.2 you can only use naming conventions. See methods starting with "contribute" here http://tapestry.apache.org/tapestry-ioc-configuration.html -- View this message in context: http://tapestry.1045711.n5.nab

Re: Jquery Tooltip on production mode

2012-11-23 Thread Lance Java
Yui isn't on your build path Have you done a clean deploy or a dirty deploy? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718216.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Adding a progress listener to UploadedFile

2012-11-23 Thread dkeenan
Thanks. I wasn't able to use the following annotation and method... @Contribute(ServiceOverride.class) public static void setupApplicationServiceOverrides(MappedConfiguration configuration) { configuration.addInstance(SomeServiceType.class, SomeServiceTypeOverrideImpl.class); } I have a

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-23 Thread Emmanuel DEMEY
Sorry for the delay on the Tapestry5-jQuery mailing list. I will try to find a solution right now. 2012/11/23 David Canteros > Thank you for your answers! > > I didn't know about the exanpe library, i looks very good! > However I'm already using Tapestry-Jquery so I'll try first the solution >

Re: Disabling HMAC check

2012-11-23 Thread TG
Works like a charm. Thanks guy! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Disabling-HMAC-check-tp5718156p5718212.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscr

Re: Jquery Tooltip on production mode

2012-11-23 Thread Lance Java
Type "mvn dependency:tree" at the command line to show your dependency hierarchy -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718210.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: How to pass the object itself by eventlink?

2012-11-23 Thread Thiago H de Paula Figueiredo
Answering the question in the subject: just pass it. On Fri, 23 Nov 2012 15:52:11 -0200, membersound wrote: How can I just pass the object of an eventlink within a table row? The same way you'd do it if it wasn't inside a table row. The following does not work, I don't understand why: Im

How to pass the object itself by eventlink?

2012-11-23 Thread membersound
How can I just pass the object of an eventlink within a table row? The following does not work, I don't understand why: Create Object class MyPage { @Property Object object; @Property List objects; public void onCreateObject(Object object) { object.getXX(); }

Re: Jquery Tooltip on production mode

2012-11-23 Thread arterzatij
I try this: -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718207.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Jquery Tooltip on production mode

2012-11-23 Thread arterzatij
Seems like YUI pom avoiding is still no working. There are configuration that I missing? Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718206.html

Re: Adding a progress listener to UploadedFile

2012-11-23 Thread Lance Java
http://tapestry.apache.org/ioc-cookbook-overriding-ioc-services.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/Adding-a-progress-listener-to-UploadedFile-tp5718197p5718205.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-23 Thread David Canteros
Thank you for your answers! I didn't know about the exanpe library, i looks very good! However I'm already using Tapestry-Jquery so I'll try first the solution proposed by arterzatij. The tapestry-jquery developers should be noticed about this problem,I posted this on the google-group of the proj

Re: Adding a progress listener to UploadedFile

2012-11-23 Thread Lance Java
You will need to override (or perhaps decorate) the MultipartDecoder. Most likely, you will extend MultipartDecoderImpl and extend the following method to add your progress listener: Note that the MultipartDecoder has per-thread scope https://github.com/apache/tapestry5/blob/trunk/tapestry-uplo

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-23 Thread Lance Java
I haven't used the gmap in tapestry-jquery but I have used the gmap component from exanpe without any trouble at all. Demo: http://exanpe-t5-lib.appspot.com/components/googlemap/example2 Source: https://github.com/exanpe/exanpe-t5-lib Demo Source: https://github.com/exanpe/exanpe-t5-demo --

Re: Jquery Tooltip on production mode

2012-11-23 Thread Lance Java
Can you send another screenshot now that YUI is not compressing the javascript? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718200.html Sent from the Tapestry - User mailing list archive at Nabble.com.