Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/templates/api.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25397 -- Documented class-based view context ↵Jacek Bzdak2015-10-231-0/+4
| | | | variable clash with context processors.
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-241-14/+0
|
* Removed template.loader.BaseLoader per deprecation timeline.Tim Graham2015-09-241-5/+0
|
* Removed current_app argument to render() and ↵Tim Graham2015-09-241-6/+1
| | | | | | TemplateResponse(). Per deprecation timeline.
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-241-16/+1
|
* Fixed #25386 -- Warned about differences between Engine ↵Tim Graham2015-09-241-0/+7
| | | | and DjangoTemplates.
* Fixed #25159 -- Removed brackets from ↵Tim Graham2015-07-271-3/+3
| | | | | | class/function/method signatures in docs. Thanks hellbeast for the initial patch.
* Fixed #25120 -- Deprecated egg template loader.Tim Graham2015-07-161-0/+4
|
* Fixed #17085, #24783 -- Refactored template library ↵Preston Timmons2015-05-211-1/+29
| | | | | | | | registration. * 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.
* Added docs for new template loader api.Preston Timmons2015-04-221-26/+113
| | | | Refs #15053.
* Fixed #24603 -- Allowed Context.update() to be used as a ↵Tommy Beadle2015-04-141-0/+15
| | | | context manager.
* Fixed typos in docs/ref/templates/api.txtTim Graham2015-04-141-4/+4
|
* Fixed #24600 -- Fixed inaccurate example in template ↵Tim Graham2015-04-081-1/+3
| | | | | | Context docs. Thanks pattypatpat for the report.
* Fixed #24493 -- Added BaseContext.setdefault()Preston Timmons2015-03-161-0/+7
|
* Documented Context.get() method.Preston Timmons2015-03-161-0/+5
|
* Fixed typo in current_app deprecation note.Preston Timmons2015-03-111-1/+1
|
* Deprecated TEMPLATE_DEBUG setting.Aymeric Augustin2015-02-151-1/+1
|
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-1/+1
|
* Removed versionadded/changed notes for 1.7.Tim Graham2015-02-021-10/+0
|
* Fixed #24124 -- Changed context_processors in the ↵Collin Anderson2015-01-121-8/+4
| | | | default settings.py
* Updated templates API reference.Aymeric Augustin2015-01-101-141/+252
| | | | Accounted for multiple template engines and made a few small fixes.
* Wrote main documentation for templates.Aymeric Augustin2015-01-101-232/+31
|
* Moved doc on the DTL's syntax to the ref/ section.Aymeric Augustin2015-01-101-1/+1
| | | | | | | 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.
* Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin2014-12-281-39/+46
|
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-281-17/+26
|
* Deprecated TEMPLATE_LOADERS.Aymeric Augustin2014-12-281-20/+46
|
* Deprecated TEMPLATE_STRING_IF_INVALID.Aymeric Augustin2014-12-281-19/+17
|
* Moved context_processors from django.core to ↵Aymeric Augustin2014-12-281-19/+19
| | | | django.template.
* Supported multiple template engines in render_to_string.Aymeric Augustin2014-12-281-4/+13
| | | | Adjusted its API through a deprecation path according to the DEP.
* Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin2014-11-231-6/+8
| | | | Cancels 2f0566fa. Refs #4278.
* Fixed #23849 -- Documented the locmem.Loader class.Preston Timmons2014-11-191-2/+20
|
* Moved all template loaders under django.template.loaders.Aymeric Augustin2014-11-161-1/+6
| | | | | | | | | | | | Reformatted the code of base.Loader according to modern standards. Turned the test template loader into a regular locmem.Loader -- but didn't document it. Added a normal deprecation path for BaseLoader which is a public API. Added an accelerated deprecation path for TestTemplateLoader which is a private API.
* Moved CSRF docs out of contrib.Thomas Chaumeny2014-11-031-1/+1
|
* Fixed #23736 -- Corrected the description of the value ↵Tim Graham2014-10-301-2/+4
| | | | | | that silent_variable_failure uses. Thanks Aymeric Augustin for the report.
* Fixed #23737 -- Recommended the render() shortcut more ↵Tim Graham2014-10-301-19/+2
| | | | | | strongly. Thanks Aymeric Augustin for the report.
* Fixed #23527 -- Removed Cheetah references in docsOla Sitarska2014-09-211-1/+1
| | | | Thanks to @aaugustin for submitting the ticket.
* Converted sql_queries into a lazily evaluated list.Bas Peschier2014-08-301-1/+2
| | | | Fixed #23364. Thanks Markush2010 for the report.
* Fixed #17719 -- Documented that template syntax ↵Tim Graham2014-08-261-0/+25
| | | | sequences cannot be used as string literals.
* Fixed some doc errors that caused syntax highlighting to ↵Tim Graham2014-08-191-1/+1
| | | | fail.
* Fixed #22167 -- Improved documentation on context processorsMoritz2014-05-161-5/+9
| | | | | | Clarified the explanation on the order in which user provided variables to render_to_response, RequestContext and context processors are loaded.
* Updated the messages context processor docsClaude Paroz2014-05-061-3/+8
| | | | Refs #20610.
* Fixed doc typos.Tim Graham2014-02-281-1/+1
|
* Made the new template.Context.flatten() method a public API.Marek Wywiał2014-02-161-0/+37
| | | | | | That method was introduced in 9db4271bd11ac23a5a5652bbcdf8fb6d4b997651. Refs #21765.
* Added some internal links to render_to_string documentation.Baptiste Mispelon2013-12-151-3/+3
|
* Fixed #21515 -- Corrected example of template.Context in ↵Baptiste Mispelon2013-11-281-0/+2
| | | | | | documentation. Thanks to trac user oubiga for the report.
* Fixed #4278 -- Added a dirs parameter to a few functions ↵Berker Peksag2013-09-181-2/+16
| | | | | | | | | | | to override TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion.
* Fixed #16096 -- Added origin attribute to template ↵Preston Timmons2013-09-061-1/+36
| | | | | | instances. Thanks jdunck for the suggestion.
* Removed versionadded/changed annotations for 1.5Tim Graham2013-08-191-5/+0
|
* Fixed #20852 - Fixed incorrectly generated left quotes ↵Dominic Rodger2013-08-061-1/+1
| | | | | | | | | | | | in docs. Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">‘" in the generated HTML.
* Allowed Context.push to behave as a context mananger.Curtis Maloney2013-07-171-0/+25
| | | | Thanks Loic Bistuer for the review.