Changes between Initial Version and Version 4 of Ticket #34892
- Timestamp:
- Oct 7, 2023, 9:17:39 AM (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34892
- Property Has patch unset
-
Ticket #34892 – Description
initial v4 1 It looks like the bug is from ancient times due to rare use of FORCE_SCRIPT_NAME with dev server. So the version to be fixed is unknown 1 Found out that the ticket was closed but still is interesting in mention about incorrectly truncated path in 404 message. 2 2 3 /contrib/staticfiles/handlers.py 4 {{{ 5 def serve(self, request): 6 """Serve the request path.""" 7 -- return serve(request, self.file_path(request.path), insecure=True) 8 ++ return serve(request, self.file_path(request.path_info), insecure=True) 9 }}} 10 3 Why it's ok ?