Opened 7 years ago

Last modified 6 years ago

#28720 closed New feature

Add HttpRequest.get_full_path_info() — at Version 2

Reported by: Jonas Haag Owned by: nobody
Component: HTTP handling Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Tim Graham)

HttpRequest.get_full_path() returns the HttpRequest.path based full path, including query string. Example: /posts/12345/?foo=bar.

We should add a counterpart for HttpRequest.path_info() that includes the SCRIPT_NAME, if set. Example: /scriptname/posts/12345/?foo=bar

Example use case: Adding hreflang meta tags to your <head> section. This must include the SCRIPT_NAME prefix as well, otherwise invalid URLs are given.

<link rel=alternative hreflang=en href="https://yourdomain.com{{ request.get_full_path_info }}">

PR

Change History (2)

comment:1 by Jonas Haag, 7 years ago

Description: modified (diff)

comment:2 by Tim Graham, 7 years ago

Description: modified (diff)
Summary: Add HttpRequest.get_full_path_infoAdd HttpRequest.get_full_path_info()
Triage Stage: UnreviewedAccepted
Note: See TracTickets for help on using tickets.
Back to Top