[symfony-users] Re: Routing issue with dots in URL

2011-05-12 Thread Womble
network_graph_node_interface") It seems the issue isn't with the segment separator, it is with the slug stopping once it reaches a period, I tried to replace the period with a %2E which didn't help either. On May 11, 12:07 am, Christophe COEVOET wrote: > Le 09/05/2011 21:21, Wo

[symfony-users] Re: Routing issue with dots in URL

2011-05-10 Thread Womble
Thanks, any chance of doing it via the annotations? On May 9, 7:30 pm, Chris Sedlmayr wrote: > You can set the segment separators per route using the options declaration. > > routeName: >   options: { segment_separators: [/, ., -] } -- If you want to report a vulnerability issue on symfony, ple

[symfony-users] Routing issue with dots in URL

2011-05-09 Thread Womble
Hi, I am having problems with the routing because of the dots in my URL say /interface/ge-0_0_0.0/ where I need the .0 to be part of the route. I see that in Symfony/Component/Routing/Route.php there is a way to change the segement_separators but how would I do this in my application? 92