Opened 6 years ago

Closed 6 years ago

Last modified 6 years ago

#29002 closed Bug (fixed)

Documentation about cached template loader is inaccurate about DEBUG

Reported by: oTree-org Owned by: nobody
Component: Documentation Version: 2.0
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by oTree-org)

The documentation here: https://docs.djangoproject.com/en/2.0/ref/templates/api/#django.template.loaders.cached.Loader

It says about the cached template loader:

This loader is automatically enabled if DEBUG is False and OPTIONS['loaders'] isn’t specified.

Actually, it's not based on DEBUG per se, but rather the template engine's 'debug' option, which is acknowledged correctly elsewhere in the docs.

So, I would correct that text to:

This loader is automatically enabled if OPTIONS['loaders'] isn’t specified and the OPTIONS['debug'] is False (if not set, this option defaults to the value of DEBUG)

Change History (6)

comment:1 by oTree-org, 6 years ago

Description: modified (diff)

comment:2 by Tim Graham, 6 years ago

Has patch: set
Triage Stage: UnreviewedAccepted

comment:3 by Carlton Gibson, 6 years ago

Triage Stage: AcceptedReady for checkin

comment:4 by GitHub <noreply@…>, 6 years ago

Resolution: fixed
Status: newclosed

In 7c00f9f:

Fixed #29002 -- Corrected cached template loader docs about when it's automatically enabled.

Thanks oTree-org for the suggestion.

comment:5 by Tim Graham <timograham@…>, 6 years ago

In 3d144787:

[2.0.x] Fixed #29002 -- Corrected cached template loader docs about when it's automatically enabled.

Thanks oTree-org for the suggestion.

Backport of 7c00f9fb1cc47e1c993f7728e2b592a1be29dd40 from master

comment:6 by Tim Graham <timograham@…>, 6 years ago

In bb39e4b5:

[1.11.x] Fixed #29002 -- Corrected cached template loader docs about when it's automatically enabled.

Thanks oTree-org for the suggestion.

Backport of 7c00f9fb1cc47e1c993f7728e2b592a1be29dd40 from master

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