pyramid.url
¶
Utility functions for dealing with URLs in pyramid
-
resource_url
(context, request, *elements, query=None, anchor=None)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.resource_url(resource, *elements, **kw)
See
pyramid.request.Request.resource_url()
for more information.
-
route_url
(route_name, request, *elements, **kw)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.route_url(route_name, *elements, **kw)
See
pyramid.request.Request.route_url()
for more information.
-
current_route_url
(request, *elements, **kw)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.current_route_url(*elements, **kw)
See
pyramid.request.Request.current_route_url()
for more information.
-
route_path
(route_name, request, *elements, **kw)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.route_path(route_name, *elements, **kw)
See
pyramid.request.Request.route_path()
for more information.
-
current_route_path
(request, *elements, **kw)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.current_route_path(*elements, **kw)
See
pyramid.request.Request.current_route_path()
for more information.
-
static_url
(path, request, **kw)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.static_url(path, **kw)
See
pyramid.request.Request.static_url()
for more information.
-
static_path
(path, request, **kw)[source]¶ This is a backwards compatibility function. Its result is the same as calling:
request.static_path(path, **kw)
See
pyramid.request.Request.static_path()
for more information.
-
urlencode
(query, doseq=True)[source]¶ An alternate implementation of Python's stdlib urllib.urlencode function which accepts unicode keys and values within the
query
dict/sequence; all Unicode keys and values are first converted to UTF-8 before being used to compose the query string.The value of
query
must be a sequence of two-tuples representing key/value pairs or an object (often a dictionary) with an.items()
method that returns a sequence of two-tuples representing key/value pairs.For minimal calling convention backwards compatibility, this version of urlencode accepts but ignores a second argument conventionally named
doseq
. The Python stdlib version behaves differently whendoseq
is False and when a sequence is presented as one of the values. This version always behaves in thedoseq=True
mode, no matter what the value of the second argument.See the Python stdlib documentation for
urllib.urlencode
for more information.Changed in version 1.5: In a key/value pair, if the value is
None
then it will be dropped from the resulting output.