Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue with static files on Windows #474

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/whitenoise/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

import os
from posixpath import basename
from posixpath import normpath
from urllib.parse import urlparse
from urllib.request import url2pathname

from django.conf import settings
from django.contrib.staticfiles import finders
Expand Down Expand Up @@ -155,7 +157,10 @@ def add_files_from_finders(self):

def candidate_paths_for_url(self, url):
if self.use_finders and url.startswith(self.static_prefix):
path = finders.find(url[len(self.static_prefix) :])
relative_url = url[len(self.static_prefix) :]
path = url2pathname(relative_url)
normalized_path = normpath(path).lstrip("/")
path = finders.find(normalized_path)
if path:
yield path
paths = super().candidate_paths_for_url(url)
Expand Down