Re: how to specify to say more than one java file to share same html

2009-06-16 Thread Andreas Andreou
Totally forgot that - but I do remember someone wanting to remove this ... hack :) Good to see it's still useful ! On Tue, Jun 16, 2009 at 3:27 PM, kk4Nabble wrote: > > > Hi, > > Thank  you all for the reply. > I specified > > in .application file. > And in Calendar.page > >         >   > > And

Re: how to specify to say more than one java file to share same html

2009-06-16 Thread kk4Nabble
Hi, Thank you all for the reply. I specified in .application file. And in Calendar.page And it works fine. Andreas Andreou-4 wrote: > > I dont remember this being possible... > > So, i guess the alternatives are to either: > - copy Calendar.html to CalendarHome.html, or > -

Re: how to specify to say more than one java file to share same html

2009-06-16 Thread Onno Scheffers
It's been a while since I last used Tapestry 4, but maybe you can create a custom TemplateLocator that loads the proper template for you? regards, Onno On Tue, Jun 16, 2009 at 8:55 AM, kk4Nabble wrote: > > Hi all, > My problem is I have CalendarHome.java which extends Calendar.java. > But i w

Re: how to specify to say more than one java file to share same html

2009-06-16 Thread Andreas Andreou
I dont remember this being possible... So, i guess the alternatives are to either: - copy Calendar.html to CalendarHome.html, or - have your build process do that for you On Tue, Jun 16, 2009 at 9:55 AM, kk4Nabble wrote: > > Hi all, > My problem is I have CalendarHome.java which extends Calendar.

Re: how to specify to say more than one java file to share same html

2009-06-15 Thread kk4Nabble
Hi all, My problem is I have CalendarHome.java which extends Calendar.java. But i want both the files to share Calendar.html How do i do it? basically when it sees CalendarHome.java it ll search for CalendarHome.html, i wan it look for Calendar.html instead of CalendarHome.html. Please suggest.