Searched refs:route_args (Results 1 – 12 of 12) sorted by relevance
/dports/www/py-routes/Routes-2.5.1/routes/ |
H A D | util.py | 56 route_args = environ.get('wsgiorg.routing_args') 57 if route_args: 58 memory_kargs = route_args[1].copy() 241 route_args = [] 244 route_args.append(route) 260 url = config.mapper.generate(*route_args, **newargs) 381 route_args = [] 384 route_args.append(route) 413 url = self.mapper.generate(*route_args, **newargs)
|
/dports/www/p5-Dancer/Dancer-1.3513/lib/Dancer/Route/ |
H A D | Registry.pm | 129 my %route_args = ( 136 return $self->register_route(%route_args);
|
/dports/chinese/wordpress-zh_TW/wordpress/wp-includes/rest-api/ |
H A D | class-wp-rest-server.php | 771 * @param array $route_args Route arguments. 775 public function register_route( $namespace, $route, $route_args, $override = false ) { argument 801 $route_args['namespace'] = $namespace; 804 $this->endpoints[ $route ] = $route_args; 806 $this->endpoints[ $route ] = array_merge( $this->endpoints[ $route ], $route_args );
|
/dports/chinese/wordpress-zh_CN/wordpress/wp-includes/rest-api/ |
H A D | class-wp-rest-server.php | 771 * @param array $route_args Route arguments. 775 public function register_route( $namespace, $route, $route_args, $override = false ) { argument 801 $route_args['namespace'] = $namespace; 804 $this->endpoints[ $route ] = $route_args; 806 $this->endpoints[ $route ] = array_merge( $this->endpoints[ $route ], $route_args );
|
/dports/www/p5-Dancer2/Dancer2-0.301004/t/classes/Dancer2-Core-Route/ |
H A D | match.t | 398 my %route_args = ( 407 like exception { Dancer2::Core::Route->new(%route_args) }, 413 my $route = Dancer2::Core::Route->new(%route_args);
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/webapp2/ |
H A D | webapp2.py | 128 route_args = None variable in Request 565 args, kwargs = request.route_args, request.route_kwargs 1061 args, kwargs = request.route_args, request.route_kwargs 1084 args, kwargs = request.route_args, request.route_kwargs 1266 request.route, request.route_args, request.route_kwargs = rv
|
H A D | CHANGES | 471 - request.route_args: the matched positional arguments, a tuple
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/webapp2/docs/api/ |
H A D | webapp2.rst | 104 :members: app, response, route, route_args, route_kwargs, registry,
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/webapp2/docs/guide/ |
H A D | request.rst | 177 of the request object. They are ``request.route_args``, for positional
|
H A D | routing.rst | 392 object when a route matches. They are ``request.route_args``, for positional
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/webapp2/tests/ |
H A D | handler_test.py | 395 req.route_args = tuple()
|
/dports/www/py-pyramid/pyramid-1.7.3/pyramid/tests/test_config/ |
H A D | test_views.py | 3031 self.assertEqual(config.route_args, ('__view/', 'view/*subpath')) 3042 self.assertEqual(config.route_args, ('__/abc/view/', 'view/*subpath')) 3214 self.route_args = args
|