Re: .page file

2007-01-11 Thread Mika Tammilehto
Hi Simon The .page file is not mandatory, but you may be have to set the following to your app.application file: This results in tapestry looking for page classes below this package namespace, e.g. page "Home" will be mapped to "com.foo.bar.Home" class. Cheers, mik

.page file

2007-01-10 Thread Simon Raveh
Hi, Is there something like @ComponentClass that I can use with a page or is it mandatory to have .page file Thanks, Simon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Extending existing component and .page file

2007-01-10 Thread karthik G
h Y. > -Original Message- > From: karthik G [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 3:15 PM > To: Tapestry users > Subject: Extending existing component and .page file > > class X extends Y{} > > If component X extends an existing component Y by

RE: Extending existing component and .page file

2007-01-09 Thread Marcus.Schulte
n vote on http://issues.apache.org/jira/browse/TAPESTRY-967 If your class X would be empty you are fine with Y. > -Original Message- > From: karthik G [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 3:15 PM > To: Tapestry users > Subject: Extending existing component and .pa

Re: Extending existing component and .page file

2007-01-09 Thread James Carman
What are you looking to do? What version of Tapestry are you using? If you're looking to automatically inject a HiveMind service into all of your pages/components, you can either use tapestry-autowire (tap 4.0) or upgrade to tap 4.1 which has tapestry-autowire built in. Using tapestry-autowire, i

Extending existing component and .page file

2007-01-09 Thread karthik G
class X extends Y{} If component X extends an existing component Y by providing a new template X.html and adding additional property in X.jwc, are we required to copy the contents of Y.jwc into X.jwc? If I dont include it, i run into errors. May be am missing some parameter here. How can i get