RE: Sitemap: path matching

2012-05-24 Thread Robby Pelssers
Can you give a few possible examples of the pattern that you're trying to match? Ps. Maybe a bit nasty as solution but let's say you want to handle multiple productId's Pattern=generateProduct/* Example generateProduct/[P1, P2, P3] You just pass '[P1,P2,P3]' to your generator as a single

Re: Sitemap: path matching

2012-05-24 Thread Jos Snellings
Hi Robby, Here's an example: a href=matchbypath/virtualrootfolder/themes/conservation/index.html conservation /a = this is to be a hit for a matcher, and what I would like to pass to the generator: matchbypath/{path}/{name}.{extension} Of

RE: Sitemap: path matching

2012-05-24 Thread Robby Pelssers
@cocoon.apache.org Subject: RE: Sitemap: path matching The only way to work around this is what I've used in the past. matchbypath/index.html/virtualrootfolder/themes/conservation pattern=matchbypath/*.*/** From: Jos Snellings [mailto:jos.snelli...@upperware.biz] Sent: Thursday, May 24, 2012 4:45

Re: Sitemap: path matching

2012-05-24 Thread Jos Snellings
Yep, I will give that a try ! Thanks, Robby, Jos

Re: Sitemap: path matching

2012-05-24 Thread ktorres
Hello Gilbert, A way to catch multiple parameter is to have your own stylesheet where you define as many parameters as you need and then you use the XSLT Transformer[1] to get them on your pipeline. The way to retrieve your parameters is setting to true the property use-request-parameters at

RE: Sitemap: path matching

2012-05-24 Thread Robby Pelssers
from typing all parameters as map:parameter .../ Robby -Original Message- From: ktor...@agssa.net [mailto:ktor...@agssa.net] Sent: Thursday, May 24, 2012 6:55 PM To: users@cocoon.apache.org Cc: cocoon-us...@apache.org Subject: Re: Sitemap: path matching Hello Gilbert, A way to catch