Re: Logical Page Name Shortening

2016-09-02 Thread Thiago H de Paula Figueiredo
On Mon, 29 Aug 2016 07:25:41 -0300, Lherm Nicolas wrote: I read the https://tapestry.apache.org/url-rewriting.html and saw that Tapestry URL Rewriting API does not exist anymore and has been replaced with the LinkTransformer service. Hi! I've created a separate JAR which brings back T5.1's

RE: Logical Page Name Shortening

2016-08-29 Thread Svein-Erik Løken
} return null; } private boolean urlStartsWithCounty(String path) { for (String s : COUNTYS) { if (path.startsWith("/" + s)) return true; } return false; } } From: slqiTapestry [via Apache Tapestry Mailing List Archives] [

RE: Logical Page Name Shortening

2016-08-29 Thread Lherm Nicolas
Figueiredo Envoyé : vendredi 26 août 2016 15:18:31 À : Tapestry users Objet : Re: Logical Page Name Shortening You can always create a Jira ticket asking for a new configuration symbol to be created to turn off logical page name shortening. Or, as Dmitry already suggested, you can use URL rewriting

Re: Logical Page Name Shortening

2016-08-26 Thread Thiago H de Paula Figueiredo
Create -- in java you'd have to use fully qualified names. > > On Wed, Aug 24, 2016 at 6:12 PM, Lherm Nicolas wrote: > > > Hi, > > > > > > Yes I saw it, but I don't understand why tapestry removed the suffix. > > > > ____

Re: Logical Page Name Shortening

2016-08-25 Thread abangkis
t; > > > ____________ > > De : Dmitry Gusev > > Envoyé : mercredi 24 août 2016 17:18:49 > > À : Tapestry users > > Objet : Re: Logical Page Name Shortening > > > > To make URLs shorter/prettier, so you could name your java classes &

Re: Logical Page Name Shortening

2016-08-24 Thread Dmitry Gusev
gt; > > > De : Dmitry Gusev > Envoyé : mercredi 24 août 2016 17:18:49 > À : Tapestry users > Objet : Re: Logical Page Name Shortening > > To make URLs shorter/prettier, so you could name your java classes & TMLs > differently, i.e.:

RE: Logical Page Name Shortening

2016-08-24 Thread Lherm Nicolas
17:18:49 À : Tapestry users Objet : Re: Logical Page Name Shortening To make URLs shorter/prettier, so you could name your java classes & TMLs differently, i.e.: address/CreateAddress => address/create user/CreateUser => user/create Without this feature your URLs would be address/cr

Re: Logical Page Name Shortening

2016-08-24 Thread Dmitry Gusev
> > > Yes I saw it, but I don't understand why tapestry removed the suffix. > > > De : Dmitry Gusev > Envoyé : mercredi 24 août 2016 16:54:46 > À : Tapestry users > Objet : Re: Logical Page Name Shortening > > Hi, have you seen t

RE: Logical Page Name Shortening

2016-08-24 Thread Lherm Nicolas
Hi, Yes I saw it, but I don't understand why tapestry removed the suffix. De : Dmitry Gusev Envoyé : mercredi 24 août 2016 16:54:46 À : Tapestry users Objet : Re: Logical Page Name Shortening Hi, have you seen this? http://tapestry.apache.org

Re: Logical Page Name Shortening

2016-08-24 Thread Dmitry Gusev
Hi, have you seen this? http://tapestry.apache.org/page-navigation.html On Wed, Aug 24, 2016 at 5:38 PM, Lherm Nicolas wrote: > Hello, > > > I have a question about the shortheneng URL's of somes page names. > > > I read that Tapestry removed the redundant suffix of the URL in certains > cases,