mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Strip script name from path
This commit is contained in:
parent
22d364729b
commit
577d9317d2
1 changed files with 3 additions and 0 deletions
|
@ -358,6 +358,9 @@ class Application:
|
|||
environ["PATH_INFO"] = storage.sanitize_path(environ["PATH_INFO"])
|
||||
self.logger.debug("Sanitized path: %s", environ["PATH_INFO"])
|
||||
path = environ["PATH_INFO"]
|
||||
if base_prefix and path.startswith(base_prefix):
|
||||
path = path[len(base_prefix):]
|
||||
self.logger.debug("Stripped script name from path: %s", path)
|
||||
|
||||
# Get function corresponding to method
|
||||
function = getattr(self, "do_%s" % environ["REQUEST_METHOD"].upper())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue