Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I have more than one pathpart in an action at the same time? I tried with Regex and LocalRegex but it realy doesnt work.

This is the result I want:

/typeone/*/*/something
/typetwo/*/*/something

I want to achieve this by using only one base action that captures the two args in from, and can have either the "typeone" or "typetwo" pathpart.

The "something" is just another action that is chained to that base. I don't want to have two bases with two different pathparts, that would require me to have two something chained to each of the bases, right?

Thank you

share|improve this question
Ok, after trying a bit, either chaining or regex work but not both in combination. I tried sub anchor :Chained :Regex('^type(one|two)$') :CaptureArgs(2) {} ... sub something :Chained('anchor') :Args(0) {}. Maybe its because Regex is consuming all three parts instead of honoring the CaptureArgs(2). – dgw Jun 19 '12 at 20:39
1  
It's because ":Regex matches act globally, i.e. without reference to the namespace from which they are called." search.cpan.org/~zarquon/Catalyst-Manual-5.9004/lib/Catalyst/… :( – LuRsT Jun 20 '12 at 16:07

1 Answer

As far as I know, there is no way to set more then one PathPart, or to have a regexp-enabled PathPart.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.