| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-12-01 | [1.9.x] Fixed #25778 -- Updated docs links to use https when available. | Jon Dufresne | |
| Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master | |||
| 2015-11-17 | [1.9.x] Fixed #25710 -- Clarified the docs about what INTERNAL_IPS does. | Alex Morozov | |
| Backport of 5abed864ee1cd31a0b920768b4abe85b26b43a4d from master | |||
| 2015-11-13 | [1.9.x] Tweaked example text in docs/ref/templates/builtins.txt. | Tom Christie | |
| Backport of a32538279c085bdf67839dc834f05b37f8f38bb8 from master | |||
| 2015-10-23 | [1.9.x] Fixed #25397 -- Documented class-based view context variable clash ↵ | Jacek Bzdak | |
| with context processors. Backport of 494b7986a3e5996d857b085f188a630d1504d9ca from master | |||
| 2015-10-21 | [1.9.x] Fixed #25574 -- Documented {{ dict.items }} shadowing in for ↵ | Jacek Bzdak | |
| template tag docs. Backport of 32cd7069711d2e02fcd20c005c59c175d542c62e from master | |||
| 2015-09-23 | Fixed #25386 -- Warned about differences between Engine and DjangoTemplates. | Tim Graham | |
| 2015-09-21 | Fixed #25373 -- Added warning logging for exceptions during {% include %} ↵ | Nick Johnson | |
| tag rendering. | |||
| 2015-09-05 | Removed some discussion of deprecated {% url %} behavior. | Tim Graham | |
| 2015-08-19 | Refs #24451 -- Corrected Django version for {% cycle %} deprecation. | Tim Graham | |
| 2015-08-08 | Refs #25236 -- Discouraged use of ifequal/ifnotequal template tags. | Tim Graham | |
| 2015-08-08 | Corrected some inconsistent headings in docs/ref/templates/builtins.txt. | Tim Graham | |
| 2015-08-08 | Updated Wikipedia links to use https | Claude Paroz | |
| 2015-07-27 | Fixed #25159 -- Removed brackets from class/function/method signatures in docs. | Tim Graham | |
| Thanks hellbeast for the initial patch. | |||
| 2015-07-16 | Fixed #25120 -- Deprecated egg template loader. | Tim Graham | |
| 2015-07-04 | Fixed #25051 -- Clarified return type of {% now %} tag. | Tim Graham | |
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-05-22 | Fixed #24839 -- Removed references to deprecated contrib.webdesign. | Tim Graham | |
| 2015-05-21 | Fixed #24813 -- Documented {% include %} debug behavior variance | Andrei Kulakov | |
| 2015-05-21 | Fixed #17085, #24783 -- Refactored template library registration. | Preston Timmons | |
| * Converted the ``libraries`` and ``builtins`` globals of ``django.template.base`` into properties of the Engine class. * Added a public API for explicit registration of libraries and builtins. | |||
| 2015-05-01 | Updated capitalization in the word "JavaScript" for consistency | Dave Hodder | |
| 2015-04-22 | Added docs for new template loader api. | Preston Timmons | |
| Refs #15053. | |||
| 2015-04-17 | Fixed #24657 -- Fixed include template tag example. | Tim Graham | |
| Thanks pattypatpat for the report. | |||
| 2015-04-14 | Fixed #24603 -- Allowed Context.update() to be used as a context manager. | Tommy Beadle | |
| 2015-04-14 | Fixed typos in docs/ref/templates/api.txt | Tim Graham | |
| 2015-04-14 | Fixed #12199 -- Added the ability to use "as" with the firstof template tag. | Craig Oldford | |
| 2015-04-14 | Fixed formatting in docs/ref/templates/builtins.txt | Maxime Lorant | |
| 2015-04-08 | Fixed #24600 -- Fixed inaccurate example in template Context docs. | Tim Graham | |
| Thanks pattypatpat for the report. | |||
| 2015-03-31 | Fixed typo in docs/ref/templates/builtins.txt | Joost Rijneveld | |
| 2015-03-16 | Fixed #24493 -- Added BaseContext.setdefault() | Preston Timmons | |
| 2015-03-16 | Documented Context.get() method. | Preston Timmons | |
| 2015-03-11 | Fixed typo in current_app deprecation note. | Preston Timmons | |
| 2015-03-07 | Fixed #24451 -- Deprecated comma-separated {% cycle %} syntax. | Tim Graham | |
| 2015-03-05 | Improved get_media_prefix template tag example. | Aymeric Augustin | |
| 2015-02-19 | Set context.template instead of context.engine while rendering. | Aymeric Augustin | |
| This opens more possibilities, like accessing context.template.origin. It also follows the chain of objects instead of following a shortcut. | |||
| 2015-02-15 | Deprecated TEMPLATE_DEBUG setting. | Aymeric Augustin | |
| 2015-02-03 | Fixed #24149 -- Normalized tuple settings to lists. | darkryder | |
| 2015-02-01 | Removed versionadded/changed notes for 1.7. | Tim Graham | |
| 2015-01-12 | Deprecated passing a Context to a generic Template.render. | Aymeric Augustin | |
| A deprecation path is required because the return type of django.template.loader.get_template changed during the multiple template engines refactor. test_csrf_token_in_404 was incorrect: it tested the case when the hardcoded template was rendered, and that template doesn't depend on the CSRF token. This commit makes it test the case when a custom template is rendered. | |||
| 2015-01-12 | Fixed #24124 -- Changed context_processors in the default settings.py | Collin Anderson | |
| 2015-01-11 | Fixed spelling errors in docs. | Tim Graham | |
| 2015-01-10 | Improved template ugrading docs. | Aymeric Augustin | |
| Recommending Template(template_code) was dumb. Described alternatives. | |||
| 2015-01-10 | Updated templates API reference. | Aymeric Augustin | |
| Accounted for multiple template engines and made a few small fixes. | |||
| 2015-01-10 | Added release notes and upgrade instructions for templates. | Aymeric Augustin | |
| 2015-01-10 | Wrote main documentation for templates. | Aymeric Augustin | |
| 2015-01-10 | Moved doc on the DTL's syntax to the ref/ section. | Aymeric Augustin | |
| This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL. | |||
| 2015-01-05 | Fixed #24022 -- Deprecated the ssi tag. | Preston Timmons | |
| 2014-12-28 | Deprecated TEMPLATE_CONTEXT_PROCESSORS. | Aymeric Augustin | |
| 2014-12-28 | Deprecated TEMPLATE_DIRS. | Aymeric Augustin | |
| 2014-12-28 | Deprecated TEMPLATE_LOADERS. | Aymeric Augustin | |
| 2014-12-28 | Deprecated TEMPLATE_STRING_IF_INVALID. | Aymeric Augustin | |
