RE: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Bruce Petro
Sent: Wednesday, June 06, 2007 3:02 PM To: Tapestry users Subject: Re: (T 5.0.5 snapshot) "No root element has been defined" Yes .. the idea is to strip out redundant junk in the URL (i.e., the class name recapitulating the package name). The bug is that it goes too far! On 6/6/07, Dan

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Howard Lewis Ship
Yes .. the idea is to strip out redundant junk in the URL (i.e., the class name recapitulating the package name). The bug is that it goes too far! On 6/6/07, Daniel Jue <[EMAIL PROTECTED]> wrote: Here is an enumeration of what I believe to be true. First are the class and its matching template

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Daniel Jue
Here is an enumeration of what I believe to be true. First are the class and its matching template. Next are a couple of the possible url mappings. java/myapp/pages/start.java resources/myapp/pages/start.html -> / -> /start -> /START java/myapp/pages/red/shoes.java resources/myapp/pages/red

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Steven Coco
On Wed June 6 2007 11:56:28 am Howard Lewis Ship wrote: > Please add an issue to JIRA. I think what's happening is that > pagetwo/PageTwo.class is being aliased to the logical name "pagetwo/" > which is useless ... the code that does the mapping needs to be > careful not to alias down to nothing!

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Hugo Palma
I have already https://issues.apache.org/jira/browse/TAPESTRY-1541 Howard Lewis Ship wrote: Please add an issue to JIRA. I think what's happening is that pagetwo/PageTwo.class is being aliased to the logical name "pagetwo/" which is useless ... the code that does the mapping needs to be carefu

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Howard Lewis Ship
Please add an issue to JIRA. I think what's happening is that pagetwo/PageTwo.class is being aliased to the logical name "pagetwo/" which is useless ... the code that does the mapping needs to be careful not to alias down to nothing! On 6/6/07, Hugo Palma <[EMAIL PROTECTED]> wrote: I think i mi

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Steven Coco
This does solve my problem. So I'm moving forward... Thanks. -Steev Coco. On Wed June 6 2007 5:17:55 am Hugo Palma wrote: > I think i might have found an "interesting" behavior in component > resolution. It seems that if you have a directory with the same name as > the page itself, Tapestry won'

Re: (T 5.0.5 snapshot) "No root element has been defined"

2007-06-06 Thread Hugo Palma
I think i might have found an "interesting" behavior in component resolution. It seems that if you have a directory with the same name as the page itself, Tapestry won't find that page. So, it won't find pagetwo/PageTwo but it will find somepages/PageTwo. At least this is the behavior i'm getti