Lines Matching refs:Route
279 - Route now raises exc.HTTPMethodNotAllowed if methods are set and the request
361 - DomainRoute now uses the same syntax used by webapp2.Route, instead of a
544 the routing system more extensible, while the default Route class sticks to
555 Route('/', UserOverviewHandler, 'user-overview'),
556 Route('/profile', UserProfileHandler, 'user-profile'),
557 Route('/projects', UserProjectsHandler, 'user-projects'),
565 Route('/users/<user:\w+>/', UserOverviewHandler, 'user-overview'),
566 Route('/users/<user:\w+>/profile', UserProfileHandler, 'user-profile'),
567 Route('/users/<user:\w+>/projects', UserProjectsHandler, 'user-projects'),
584 Route('/foo', 'FooHandler', 'subdomain-thing'),
586 Route('/bar', 'BarHandler', 'normal-thing'),
595 route = Route('/foo', RedirectHandler, defaults={'url': '/bar'})
596 route = Route('/foo', redirect_to='/bar')
602 route = Route('/foo', FooHandler, strict_slash=True)
603 route = Route('/bar/', BarHandler, strict_slash=True)
623 - Fixed a bug in Route.match() that would make it return positional arguments