Re: PageURL rewriting deprecated

2013-06-18 Thread Thiago H. de Paula Figueiredo
Please post examples always considering the application being deployed as root (/), so we don't need to guess whether MyApp is a page, package or context name. So, considering /MyPage/1 needs to be rewritten to /1 and MyPage is the only one with URLs like that, the easiest way is to avoid URL rewr

Re: PageURL rewriting deprecated

2013-06-18 Thread Thiago H. de Paula Figueiredo
On Mon, Jun 17, 2013 at 8:01 PM, Nomen Nomanum wrote: > You are master, master of knowledge, I just can say I'm a master at something because I have an master degree in Computer Science. :P Not of much use, but I had lot of fun in getting it, so it was well worth it. :) > So, back to topic, wh

RE: PageURL rewriting deprecated

2013-06-17 Thread Nomen Nomanum
Also, I plead You to explain me in text of course( not by source code ), if You can step by step how to change following: localhost:8080/MyApp/MyPage1/1 to just localhost:8080/MyApp/1 How to delete MyPage1 context from link url and to leave only localhost:8080/MyApp/1

RE: PageURL rewriting deprecated

2013-06-17 Thread Nomen Nomanum
You are master, master of knowledge, giving help thousands of people here who strive for it, so don't be modest. Your words expose to us new light how things function in a best possible way. For instance, without you I nor my fellows wouldn't know this: This first level (the context/webapp nam

Re: PageURL rewriting deprecated

2013-06-17 Thread Thiago H. de Paula Figueiredo
On Mon, Jun 17, 2013 at 3:15 PM, Nomen Nomanum wrote: > Hi, @Thiago! :) > Hi! > Yes, you are right, I have no idea what am I doing. But with a help from > master, I hope I will. My scenario is following: > Hey, I'm no master, just someone with a love for posting in mailing lists . . . > I ha

RE: PageURL rewriting deprecated

2013-06-17 Thread Nomen Nomanum
s, to test whether path starts with localhost:8083/MyApp/MyPage and to change it to localhost:8083/MyPage Is there any light in my vision, master? > Date: Mon, 17 Jun 2013 14:20:43 -0300 > Subject: Re: PageURL rewriting deprecated > From: thiag...@gmail.com > To: users@tapes

Re: PageURL rewriting deprecated

2013-06-17 Thread Thiago H. de Paula Figueiredo
} > };so that final output would be something like > localhost:8080/Y/Z/ > instead of > localhost:8080/X/Y/Z/ > > > > To: users@tapestry.apache.org > > Subject: Re: PageURL rewriting deprecated > > Date: Sun, 16 Jun 2013 16:56:21 -0300 >

RE: PageURL rewriting deprecated

2013-06-17 Thread Nomen Nomanum
public RewriteRuleApplicability applicability() { return RewriteRuleApplicability.OUTBOUND; } };so that final output would be something like localhost:8080/Y/Z/ instead of localhost:8080/X/Y/Z/ > To: users@tapestry.apache.org

Re: PageURL rewriting deprecated

2013-06-16 Thread Thiago H de Paula Figueiredo
On Sun, 16 Jun 2013 14:06:22 -0300, Howard Lewis Ship wrote: The original implementation of url rewriting was flawed and replaced. Why flawed? Besides a couple bugs, it worked. I'd say it has some advantages and disadvantages over the current Link Rewriter API. IMHO URL rewriter is bet

Re: PageURL rewriting deprecated

2013-06-16 Thread Howard Lewis Ship
The original implementation of url rewriting was flawed and replaced. On Sunday, June 16, 2013, Nomen Nomanum wrote: > Hi. > I am using latest version of Tap, and in it URL rewriting module is > deprecated. What troubles me is why is it deprecated, any particular reason > for it, or just because

PageURL rewriting deprecated

2013-06-16 Thread Nomen Nomanum
Hi. I am using latest version of Tap, and in it URL rewriting module is deprecated. What troubles me is why is it deprecated, any particular reason for it, or just because there are many others modules which contribute to that part more optimal like Apaches mod, Tuckey etc... Also, if you had a