Bug #31013
FrontendNodeRoutePartHandler does not match against complete RoutePath
| Status: | New | Start date: | 2011-10-17 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | Frontend | |||
| Target version: | - | |||
| Votes: | 0 |
Description
Currently the FrontendNodeRoutePartHandler only matches a Request against the uriPattern until the first occurence of the splitString (the next static RoutePart).
Example:
For the uriPattern '{node}/{foo}' the NodePartHandler would look for the first "/" in the request path and only match that against the node repository.
Instead the FrontendNodeRoutePartHandler should iterate through all remaining path segments until a segment does not match a node path, and then compare the exceeding path with the split string.