Opened 3 years ago

Closed 3 years ago

Last modified 3 years ago

#33503 closed Uncategorized (invalid)

docs.djangoproject.com does not serve objects.inv by Sphinx

Reported by: Martin Fischer Owned by: nobody
Component: Documentation Version: 4.0
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Sphinx generates an objects.inv file which can be used to link doc pages from another sphinx website using sphinx.ext.intersphinx.

https://docs.djangoproject.com/en/4.0/objects.inv however returns a 404

Change History (2)

comment:1 by Mariusz Felisiak, 3 years ago

Resolution: invalid
Status: newclosed

You can find objects inventory in https://docs.djangoproject.com/en/4.0/_objects/

comment:2 by Carlton Gibson, 3 years ago

Just to expand, an interspinx configuration like this works:

intersphinx_mapping = {
    'python': ('https://docs.python.org/3/', None),
    'django': ('http://docs.djangoproject.com/en/stable/', 'http://docs.djangoproject.com/en/stable/_objects/'),
}
Note: See TracTickets for help on using tickets.
Back to Top