Re: [Mojolicious] named route not working after upgrade from 7.33

2020-01-10 Thread Francesc Guasch
On 9/1/20 23:21, Dan Book wrote: Placeholder syntax was changed from parentheses to chevrons <> in 7.75. I will add this to https://github.com/mojolicious/mojo/wiki/UpgradingĀ once I figure out when the old syntax was actually removed. I too stumbled upon this and I did this to keep the old b

Re: [Mojolicious] named route not working after upgrade from 7.33

2020-01-09 Thread Dan Book
And added: https://github.com/mojolicious/mojo/wiki/Upgrading#upgrading-to-mojolicious-788 -Dan On Thu, Jan 9, 2020 at 5:21 PM Dan Book wrote: > Placeholder syntax was changed from parentheses to chevrons <> in 7.75. I > will add this to https://github.com/mojolicious/mojo/wiki/Upgrading once >

Re: [Mojolicious] named route not working after upgrade from 7.33

2020-01-09 Thread Dan Book
Placeholder syntax was changed from parentheses to chevrons <> in 7.75. I will add this to https://github.com/mojolicious/mojo/wiki/Upgrading once I figure out when the old syntax was actually removed. -Dan On Thu, Jan 9, 2020 at 5:17 PM 'Rolf Schaufelberger' via Mojolicious < mojolicious@googleg

[Mojolicious] named route not working after upgrade from 7.33

2020-01-09 Thread 'Rolf Schaufelberger' via Mojolicious
Hi, I have a route definition like this my $order = $r->any('/order')->to(controller => 'order'); $order->get('/')->to(action => 'index'); $order->post('/find')->to(action => 'find'); $order->get('/edit/:id')->to(action => 'index'); $order->get('/edit/:id(*tab)')->to(action => 'index', title =>