Routing
Routing copied to clipboard
Routing component building on the Symfony Routing component
splitting this into 2 repositories would make the purpose of each repository clearer. the chain router is only a few classes, and shares no code with the dynamic router. this...
the dynamic router has grown quite complicated from its initial design. we should check if we can streamline things. * do we need route enhancers or can we tell people...
I've been writing a wrapper library around this one and it turns out it's not possible to match a url containing anything but english letters. Here is an example url...
To map REST routes (and other use cases) we need an enhancer for to map on controller methods based on the HTTP method. The related discussion can be found: [here](https://github.com/symfony-cmf/ContentBundle/issues/93)...
as seen when discussing https://github.com/symfony-cmf/RoutingAuto/issues/31 and canonical route for seo, we noticed that we may need to specify that a route is more or less important for a content. in...
Port the route filters pass from drupal into the component. Left over from #70 see http://drupalcode.org/project/drupal.git/blob/refs/heads/8.x:/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteFiltersPass.php btw, why is there no priorities on the filters pass? the enhancer and router...
If the `ChainRouter` does not find a match it throws a exception in which the request object is dumped as a string https://github.com/symfony-cmf/Routing/blob/d1e3ba55073507c11e6f501b6b3cfc9c1dc7acaf/src/ChainRouter.php#L177 This can have security implications as **all**...
| Q | A | ------------- | --- | Branch? | patch versions for both 2.x and 3.x branches | Bug fix? | yes | New feature? | no |...
Symfony added request uri validation and exception throwing in case of prohibited characters. Would like to see adequate handling of this exception or throw a more understandable exception ref: https://github.com/symfony/http-foundation/commit/168b77c71e6f02d8fc479db78beaf742a37d3cab#diff-de5d8eb3f1d6537c947f70e0a4673779312a902c083739f472c709c037bcbc30R366-R379...