Re: page without a .page

2006-04-13 Thread Filip S. Adamsen
Hi, Move your Home.html up one level and everything will be just fine. (Tapestry looks in your context root for your .html files by default. This is the standard approach - and it works quite well. This allows for easy serving of assets - for example, notice where logo.png is going in this di

Re: page without a .page

2006-04-12 Thread Robin Ericsson
On 4/12/06, Jeff Lubetkin <[EMAIL PROTECTED]> wrote: > Either: > 1) Move Home.html to the context root (up one level, outside of WEB-INF) > 2) Use the information in > http://wiki.apache.org/jakarta-tapestry/SpeclessPagesInWEB-INF to allow > the directory structure you're using. Ahhh. Thank you. W

RE: page without a .page

2006-04-12 Thread Jeff Lubetkin
ECTED] Sent: Wednesday, April 12, 2006 12:42 PM To: Tapestry users Subject: Re: page without a .page On 4/12/06, Adam Zimowski <[EMAIL PROTECTED]> wrote: > What does your directory structure look like? Where is Home.html ? Like this: WEB-INF/ Home.html Tidrapport.application web.xm

Re: page without a .page

2006-04-12 Thread Robin Ericsson
On 4/12/06, Adam Zimowski <[EMAIL PROTECTED]> wrote: > What does your directory structure look like? Where is Home.html ? Like this: WEB-INF/ Home.html Tidrapport.application web.xml classes/nu/localhost/tidrapport/tapestry/pages/ Home.class lib/ lots-of-jars.jar regards, Robi

Re: page without a .page

2006-04-12 Thread Adam Zimowski
What does your directory structure look like? Where is Home.html ? On 4/12/06, Robin Ericsson <[EMAIL PROTECTED]> wrote: > On 4/12/06, Mark <[EMAIL PROTECTED]> wrote: > > Do you have Home.html? And do you have the proper Upper/lower-case spelling? > > Yes, > > Home.html exists and case shouldn't b

Re: page without a .page

2006-04-12 Thread Robin Ericsson
On 4/12/06, Mark <[EMAIL PROTECTED]> wrote: > Do you have Home.html? And do you have the proper Upper/lower-case spelling? Yes, Home.html exists and case shouldn't be a problem. regards, Robin - To unsubscribe, e-mail: [EMAIL

Re: page without a .page

2006-04-12 Thread Mark
Do you have Home.html? And do you have the proper Upper/lower-case spelling? On 4/12/06, James Carman <[EMAIL PROTECTED]> wrote: Sure you can. Most of my pages (in T4) don't have .page files. Tapestry will search the packages you define in your .application file for your page classes:

Re: page without a .page

2006-04-12 Thread Robin Ericsson
On 4/12/06, James Carman <[EMAIL PROTECTED]> wrote: > Sure you can. Most of my pages (in T4) don't have .page files. Tapestry > will search the packages you define in your .application file for your page > classes: > > > value="com.myco.page"/> > value="com.myco.component"/> > > > So,

RE: page without a .page

2006-04-12 Thread James Carman
Sure you can. Most of my pages (in T4) don't have .page files. Tapestry will search the packages you define in your .application file for your page classes: So, using this example, for a page named Hello, it will look for a class called com.myco.page.Hello. It will also look for a