Re: Page name problem with user/profile

2009-09-25 Thread Gunnar Eketrapp
Sorry and thanks for doing the test! It was my fault. I hade by mistake also a class called UserProfile.java which was empty. T5 tok that one instead of my Profile.java Gunnar Eketrapp Cold North 2009/9/25 Thiago H. de Paula Figueiredo > Em Fri, 25 Sep 2009 04:17:29 -0300, Gunnar Eketrapp < >

Re: Page name problem with user/profile

2009-09-25 Thread Thiago H. de Paula Figueiredo
Em Fri, 25 Sep 2009 04:17:29 -0300, Gunnar Eketrapp escreveu: Hi! Hi! T5 refused to render anything for a page named pages/user/Profile.java When renamed to pages/user/Profiles2.java the problem disappeared. It could have been due to the phase of the moon or is there something special wit

Page name problem with user/profile

2009-09-25 Thread Gunnar Eketrapp
Hi! T5 refused to render anything for a page named pages/user/Profile.java When renamed to pages/user/Profiles2.java the problem disappeared. It could have been due to the phase of the moon or is there something special with the name "profile" that I should know about? Thanks in advance! Gunnar

Re: Page Name Problem

2008-04-08 Thread Adam Zimowski
Not only on/off but ability to contribute some sort of exclusion set would be nice. In this case: set.add("pe"); Or perhaps a regular expression? -adam On Tue, Apr 8, 2008 at 9:01 AM, Marcelo Lotif <[EMAIL PROTECTED]> wrote: > Just a suggestion > I think this feature should have an "on/off" sw

Re: Page Name Problem

2008-04-08 Thread Marcelo Lotif
Just a suggestion I think this feature should have an "on/off" switch somewhere (AppModule?). This is a very nice and useful feature, but it tricks me up sometimes... 2008/4/8, Chris Lewis <[EMAIL PROTECTED]>: > > Unfortunately that's a feature and not a bug. See here: > > http://tapestry.apache.o

Re: Page Name Problem

2008-04-08 Thread Chris Lewis
Unfortunately that's a feature and not a bug. See here: http://tapestry.apache.org/tapestry5/tapestry-core/guide/component-classes.html, the section named "Sub-Folders / Sub-Packages": "Tapestry performs some simple optimizations of the logical page name (or component type, or mixin type). It chec

Page Name Problem

2008-04-08 Thread Peter Stavrinides
Hi I have a small issue with a page name returning incorrectly... My URL looks like this: http://mysite/myapp/pe/person/34687 @Inject private ComponentResources resources_; String nameRaw = resources_.getPageName(); gives me: "pe/rson" instead of "person" What am I doing wrong here? Thanks P