Changes between Initial Version and Version 4 of Ticket #34892


Ignore:
Timestamp:
Oct 7, 2023, 9:17:39 AM (12 months ago)
Author:
EugeneM
Comment:

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
     1Found out that the ticket was closed but still is interesting in mention about incorrectly truncated path in 404 message.
    22
    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 
     3Why it's ok ?
Back to Top