Re: Antwort: Re: Antwort: RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Martin Grotzke
t; 02.07.2007 16:50 > Bitte antworten an > "Tapestry users" > > > > > >An > Tapestry users > > Kopie > > Thema > Re: Antwort: RE: > T5 Decoupling a > Template >F

Antwort: Re: Antwort: RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Kristian Marinkovic
just remove the InjectService annotation from your service method and try it again :) Martin Grotzke <[EMAIL PROTECTED]> 02.07.2007 16:50 Bitte antworten an "Tapestry users" An Tapestry users Kopie Thema Re: Antwort: RE: T5 Decoupling a Template From its Component Cl

Re: Antwort: RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Martin Grotzke
t; kris > > > > Martin Grotzke > <[EMAIL PROTECTED]> > > 02.07.2007 14:10 > Bitte antworten an > "Tapestry users" > > > > > > An > Tapestry users > > Kopie > &g

Antwort: RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Kristian Marinkovic
twice: 1) to define your service 2) to contribute to the alias service then you can forget it :) g, kris Martin Grotzke <[EMAIL PROTECTED]> 02.07.2007 14:10 Bitte antworten an "Tapestry users" An Tapestry users Kopie Thema RE: T5 Decoupling a Template From its

RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Martin Grotzke
; > > g, > kris > > > > Martin Grotzke > <[EMAIL PROTECTED]> > > 02.07.2007 10:00 > Bitte antworten an > "Tapestry users" > > > > > >An > Tapestry users > >

RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Kristian Marinkovic
;) PageTemplateLocator locator, Configuration configuration) { configuration.add( AliasContribution.create( PageTemplateLocator.class, locator)); g, kris Martin Grotzke <[EMAIL PROTECTED]> 02.07.2007 10:00 Bitte antworten an "Tapestry users" An Tapestry us

RE: T5 Decoupling a Template From its Component Class

2007-07-02 Thread Martin Grotzke
> Digging through the code I notice there is a PageTemplateLocator > interface which seems like the appropriate service to override. What I > have tried is to add the following method to my AppModule class > > > public static void bind(ServiceBinder binder) { > ServiceBindingOptions options

Re: Lehky_SPAM: Re: T5 Decoupling a Template From its Component Class

2007-05-31 Thread Juan Maya
yes, that;s still supported and documented here: http://tapestry.apache.org/tapestry5/tapestry-core/guide/localization.html On 5/31/07, Jiri Mares <[EMAIL PROTECTED]> wrote: Hi Howard, I would like to ask, whether there is still possibility to have localized templates? eg. org/example/myapp

Re: Lehky_SPAM: Re: T5 Decoupling a Template From its Component Class

2007-05-31 Thread Jiri Mares
Hi Howard, I would like to ask, whether there is still possibility to have localized templates? eg. org/example/myapp/components/CClamp.html org/example/myapp/components/CClamp_en.html org/example/myapp/components/CClamp_en_US.html org/example/myapp/components/CClamp_de.html Thanks Howard Le

RE: T5 Decoupling a Template From its Component Class

2007-05-30 Thread David Kendall
> From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 30, 2007 5:15 PM > There are internal services that can be overridden to handle those > kinds of situations. > The goal is to create something that works amazingly well for all > the more typical cases, then start going a

Re: T5 Decoupling a Template From its Component Class

2007-05-30 Thread Howard Lewis Ship
There are internal services that can be overridden to handle those kinds of situations. The goal is to create something that works amazingly well for all the more typical cases, then start going after these others. Often it will involve moving a private interface out into the public space ... bu