Lines Matching refs:routes
121 - Like DomainRoute, PathPrefixRoute now only tests the nested routes if the
136 will allow routes with nested routes to act as a proxy to build URIs.
140 - Variables names in routes must now look like python identifiers -
248 - Fixed: multiple routes that define methods are tried before MethodNotAllowed
333 - Renamed webapp2_extras.routes.ImprovedRoute to RedirectRoute, as it
353 - Routes now return the route on match() or routes with nested routes cannot
387 - webapp2_extras.routes: Extended route classes.
496 routes can access app's config.
532 get_build_routes(). This simplifies multi-routes quite a bit.
543 - Added BaseRoute, an interface for custom routes. Several improvements make
547 - Nested routes are now possible. As an example, `extras/routes.py` has several
548 classes that accept nested routes or extend routing in other ways:
551 routes::
561 The example above is the same as setting the following routes, just more
570 - NamePrefixRoute: Same as PathPrefixRoute, but prefixes the names of routes.
573 routes.
578 For example, to restrict routes to a subdomain of the appspot domain::
615 - Routes store the handler, as we had in 0.1. This allows custom routes to
616 have nested routes.
617 - Much improved URL building, now delegated to routes.
625 - Added build_only option for routes: routes that are only used for url_for()