Opened 12 years ago

Closed 11 years ago

#18862 closed Cleanup/optimization (fixed)

FlatPages get_absolute_url should pay attention to script prefix

Reported by: Gunnar Scherf Owned by: nobody
Component: contrib.flatpages Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When hosting a django app under a subpath of a domain, then get_absolute_url returns the url without the subpath.

    def get_absolute_url(self):
        return self.url

Better would be if the subpath is recognized

    def get_absolute_url(self):
        absolute_url = "%s%s" % (get_script_prefix().rstrip('/'), self.url)
        return absolute_url

Change History (4)

comment:1 by Thejaswi Puthraya, 12 years ago

Component: Uncategorizedcontrib.flatpages

comment:2 by Claude Paroz, 12 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Aymeric Augustin, 11 years ago

Yes, this is necessary because flatpages bypass the URL resolver (and specifically the reverse function) entirely.

comment:4 by Aymeric Augustin <aymeric.augustin@…>, 11 years ago

Resolution: fixed
Status: newclosed

In a44531ae1592cf266e6c24387f49d665c639b480:

Fixed #18862 -- Honored script prefix in FlatPage.get_absolute_url.

Note: See TracTickets for help on using tickets.
Back to Top