Public bug reported:
The XmlBodyMiddleware converts request body from XML string to JSON
string and passes it on to the JsonBodyMiddleware next in chain.
Observe the following line in the XmlBodyMiddleware.process_request method:
request.body = jsonutils.dumps(
s
Public bug reported:
class NormalizingFilter(wsgi.Middleware):
"""Middleware filter to handle URL normalization."""
def process_request(self, request):
"""Normalizes URLs."""
# Removes a trailing slash from the given path, if any.
if (len(request.environ['PATH_INFO
2 matches
Mail list logo