Re: [Catalyst] Regex dispatch type is deprecated

2015-07-09 Thread Juan Miguel Paredes
To: The elegant MVC web framework Subject: Re: [Catalyst] Regex dispatch type is deprecated Dmitry, You can use the Regexp Dispatcher on CPAN, for legacy code. There is no plan to stop supporting it, unless we hit a point where we can't support it when making required fixes to Catalyst. I

Re: [Catalyst] Regex dispatch type is deprecated

2015-07-08 Thread John Napiorkowski
- From: John Napiorkowski [mailto:jjn1...@yahoo.com] Sent: 07 July 2015 19:51 To: The elegant MVC web framework Subject: Re: [Catalyst] Regex dispatch type is deprecated Dmitry, You can use the Regexp Dispatcher on CPAN, for legacy code. There is no plan to stop supporting it, unless we hit a point

Re: [Catalyst] Regex dispatch type is deprecated

2015-07-08 Thread Dmitry Karasik
John, Thank you very much! That was exactly what I needed On Tue, Jul 07, 2015 at 06:51:08PM +, John Napiorkowski wrote: Dmitry, You can use the Regexp Dispatcher on CPAN, for legacy code. There is no plan to stop supporting it, unless we hit a point where we can't support it when

[Catalyst] Regex dispatch type is deprecated

2015-07-07 Thread Dmitry Karasik
Hello all, I'm upgrading an older Catalyst installation, and re-writing code that uses Regex/LocalRegex dispatchers. The rewriting is mostly for routes such as Regex('a-(\d+)-(\d+).png'), and I'm writing new code which basically does the same, but using :Args(1), manually matching the last part

Re: [Catalyst] Regex dispatch type is deprecated

2015-07-07 Thread John Napiorkowski
Dmitry, You can use the Regexp Dispatcher on CPAN, for legacy code. There is no plan to stop supporting it, unless we hit a point where we can't support it when making required fixes to Catalyst. I just wanted to remove it from Catalyst core such as to emphasis its no longer the approved