Re: Getting ServletContext inside service

2009-10-30 Thread Benny Law
Hi Stefan, Try injecting org.apache.tapestry5.services.Context into your service and use its getInitParameter() method to retrieve your context parameters. Regards, Benny Law On Fri, Oct 30, 2009 at 3:56 PM, Stefan wrote: > Hi, > > is there a way to get access to the ServletContext inside a s

Re: currentLocale vs persistentLocale

2009-10-30 Thread Gunnar Eketrapp
Hi ! Given these injections ... @Inject private PersistentLocale persistentLocale; @Inject private Locale currentLocale; ... what should be the value of currentLocale. I.e. after that the persistent locale has been set, should curentLocale follow? I will conduct tests tomorrow

Getting ServletContext inside service

2009-10-30 Thread Stefan
Hi, is there a way to get access to the ServletContext inside a service bean? I like to configure some parameters within the web.xml which i need in some services. How can i retrieve these parameters? Injecting "ApplicationGlobals" does not work. Where is my mistake? Thanks in advance. S

Re: does tapestry support en-us locale?

2009-10-30 Thread Kevin Menard
Hi Jamie, Did you just modify the i18n property bundles or did you register the locale with Tapestry as well? -- Kevin On Fri, Oct 30, 2009 at 2:49 PM, Jamie Counihan wrote: > Hi all, > > Quick question about localisation/language translation. > > I know tapestry supports different locales i

does tapestry support en-us locale?

2009-10-30 Thread Jamie Counihan
Hi all, Quick question about localisation/language translation. I know tapestry supports different locales i.e. en, fr, de, es etc. This works fine. What I would like is to support another english format other than "en" - for example "en-us". However, when I add the properties and change my br

Re: currentLocale vs persistentLocale

2009-10-30 Thread Gunnar Eketrapp
Hi! The code below is not PROD ready yet. The first section is to setup input fields with label inside them. Something that our "designers" seems slick! The state locale is used it to remember the locale when called from a flash menu that "discarded" the persistent locale. The flash menu is feede

Re: currentLocale vs persistentLocale

2009-10-30 Thread cordenier christophe
To what corresponds exactly this logs in your rendering scenario ? [DEBUG] components.TellLayout <<< --- TELLGAMING --- >>>: 1: TellLayout.setupComponent( currentLocale.language=sv) [DEBUG] components.TellLayout <<< --- TELLGAMING --- >>>: 4: TellLayout.setupComponent(persistentLocale=en) 2009/1

Re: currentLocale vs persistentLocale

2009-10-30 Thread cordenier christophe
Sorry i have missed [DEBUG] AppModule. ProtectedPageGateKeeper PPGK.path=/en/tellfriends 2009/10/30 Gunnar Eketrapp > Hi! > > Well I have read that page over and over ... > > I am calling persistentLocale.set() in the action link connected to my > language selector. > > But for some reasons th

Re: currentLocale vs persistentLocale

2009-10-30 Thread cordenier christophe
is the locale present in the URL ? 2009/10/30 Gunnar Eketrapp > Hi! > > Well I have read that page over and over ... > > I am calling persistentLocale.set() in the action link connected to my > language selector. > > But for some reasons the persistentLocale is not used when rendering > > T

Re: currentLocale vs persistentLocale

2009-10-30 Thread Gunnar Eketrapp
Hi! Well I have read that page over and over ... I am calling persistentLocale.set() in the action link connected to my language selector. But for some reasons the persistentLocale is not used when rendering The page below is rendered in swedish even if the persistentLocale is english. [D

Tapestry 5.1 / Selenium / Session handling

2009-10-30 Thread cordenier christophe
Hi all, I am trying to build a test case with Selenium (AbstractIntegrationTestSuite), but it seems that a new session is created on each request. I use IE. Has anyone encounter this problem ? Thanks in advance, Christophe.

Re: currentLocale vs persistentLocale

2009-10-30 Thread cordenier christophe
Hi Have a look at 'Changing the Locale' here http://tapestry.apache.org/tapestry5.1/guide/localization.html to check if your are using the good scenario to change locale, since Tapestry 5.1 uses URL to store Local and not a cookie (like in 5.0.18) Christophe. 2009/10/30 Gunnar Eketrapp > Hi! >

Re: T5.1.0.5 on JBoss 5.1.0 = no standard components

2009-10-30 Thread Janko Muzykant
thanks for this hint. i tried to adjust ClassPathURLConverter for JB 5.1 but i'm not really sure what URL should I return to make it all working. this is how sample incoming url looks like: vfszip:/Users/janko/jboss-5.1.0.GA/server/myapp/deploy/myapp-ear.ear/myapp-webapp-1.0-SNAPSHOT.war/WEB-INF/

Re: Index page is activated for each page request ?

2009-10-30 Thread cordenier christophe
So this is maybe your image 'src' that does not exist and is considered by Tapestry to be a call to index page : You can find a similar behavior here : https://issues.apache.org/jira/browse/TAP5-879 2009/10/30 Gunnar Eketrapp > Hi ! > > When creating a minimal reproduction (not an easy task)

currentLocale vs persistentLocale

2009-10-30 Thread Gunnar Eketrapp
Hi! For some reason my pages are rendered accoring to currentLocale and not persistentLocale. Is there something I should now? Thanks in advance, Gunnar Eketrapp

Re: Index page is activated for each page request ?

2009-10-30 Thread Gunnar Eketrapp
Hi ! When creating a minimal reproduction (not an easy task) I realized that a link in the footer seemed to part of the problem, It was not tapified and included old links When I commented it out my app started to behave again! I.e. not activating the index page for each page reques.

Re: T5:how to support AJAX submit

2009-10-30 Thread cleverpig
thanks! it's really good solution! in another side: if we do some background-process such as "autosave" when user input a long form. we should use ajax.periodUpdater method to save data automaticly,but this way only can use url as target without ability to submit form. so where can we get the form

Re: Index page is activated for each page request ?

2009-10-30 Thread Gunnar Eketrapp
Hi and thanks for the effort! I will try to create a minimal reproduction. /Gunnar 2009/10/30 cordenier christophe > Hi > > I have made a test and cannot reproduce this behaviour, can you send a > sample that reproduces it ? > > Regards, > Christophe. > > 2009/10/30 Gunnar Eketrapp > > > Hi!

Re: Index page is activated for each page request ?

2009-10-30 Thread cordenier christophe
Hi I have made a test and cannot reproduce this behaviour, can you send a sample that reproduces it ? Regards, Christophe. 2009/10/30 Gunnar Eketrapp > Hi! > > By some reason my index page is activated after each page request. > > What have I missed? > > Thanks in advance! > /Gunnar Eketrapp >

Index page is activated for each page request ?

2009-10-30 Thread Gunnar Eketrapp
Hi! By some reason my index page is activated after each page request. What have I missed? Thanks in advance! /Gunnar Eketrapp

Re: Why is setupComponent called twice?

2009-10-30 Thread Gunnar Eketrapp
Hi! I found a very strange thing ... I have and Index page that just redirects to another page ... public class Index { @InjectPage private com.tellpoker.pages.AboutUs about; public Object onActivate() { return about; } } ... which was an attempt to change the defaul

Re: How to avoid contribution to TypeCoercer in my case.

2009-10-30 Thread Niclas.Meier
Hi sandeep, The effekt that occurs is, that tapestry tries to provide a loop context/state for the enclosing form. You need this if you have any fields in your loop. If you don¹t want/need to provide a context you may mark the loop as voliatile. This looks like: ... Otherwise you'll have to

Re: Why is setupComponent called twice?

2009-10-30 Thread cordenier christophe
Well i cannot reproduce on 5.1.0.5. Can you give more details on how you use/declare your layout component ? If it contains other @AfterRender... annotations ? Christophe 2009/10/30 Gunnar Eketrapp > Hi! > > I uninstalled both Firebug and Web Developer but the method is still called > twice. >

Re: Why is setupComponent called twice?

2009-10-30 Thread Gunnar Eketrapp
Hi! I uninstalled both Firebug and Web Developer but the method is still called twice. Must be some other issue ... /Gunnar 2009/10/30 cordenier christophe > Hi > > I already encounter this kind of problems using Firebug (which make a > second > call to obtain JS of the current page) > > Re

Re: T5:how to support AJAX submit

2009-10-30 Thread Inge Solvoll
Also, you can observe the Tapestry.ZONE_UPDATED_EVENT on the zone element for your callback hook. Like this: $('myZoneId').observe(Tapestry.ZONE_UPDATED_EVENT, myFunction); See http://tapestry.apache.org/tapestry5/tapestry-core/ref/org/apache/tapestry5/corelib/components/Zone.html On Fri, Oct 30

Re: Why is setupComponent called twice?

2009-10-30 Thread cordenier christophe
Hi I already encounter this kind of problems using Firebug (which make a second call to obtain JS of the current page) Regards Christophe. 2009/10/30 Gunnar Eketrapp > Hi! > > I have a layout component in which I have a method ... > > @SetupRender > void setupComponent() { >... > } > > For

Why is setupComponent called twice?

2009-10-30 Thread Gunnar Eketrapp
Hi! I have a layout component in which I have a method ... @SetupRender void setupComponent() { ... } For some reason this method is called twice for each page request. Can anyone explain why? Thanks in advance! /Gunnar Eketrapp

Re: T5: ClasspathResource and performance

2009-10-30 Thread Christiansen Merel
Hi all, Thanks for your answers. I've already stripped down the supported locale list to the only one needed. We still have two missed hit for each tried locale. The tapestry.file-check-interval doesn't help either. The file-check-interval is seems to be used only for existing files. I guess th

Re: T5:how to support AJAX submit

2009-10-30 Thread Ulrich Stärk
"Binding the zone parameter will cause the form submission to be handled as an Ajax request that updates the indicated zone. Often a Form will update the same zone that contains it." http://tapestry.apache.org/tapestry5.1/tapestry-core/ref/org/apache/tapestry5/corelib/components/Form.html So ju

How to avoid contribution to TypeCoercer in my case.

2009-10-30 Thread sandeepraj singh
Hi All, I have the following In MyComponent.tml ${MyDataObject.someothervariable} Ofcourse there is supporting code for the same in MyComponent.java. ie. having an istance variable of MyDataObject etc. In my Page, there are 2 cases 1) I use the component wi