Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/template/engine.py
Commit message (Expand)AuthorAgeFilesLines
* Added django.template.engine.Engine.render_to_string() do...Tim Graham2015-09-241-6/+4
* Removed template.loader.BaseLoader per deprecation timeline.Tim Graham2015-09-241-13/+1
* Removed dictionary and context_instance parameters for re...Tim Graham2015-09-241-33/+7
* Removed dirs parameter in template engine methods and rel...Tim Graham2015-09-241-32/+6
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-241-9/+1
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-9/+9
* Fixed #17085, #24783 -- Refactored template library regis...Preston Timmons2015-05-211-1/+24
* Moved engine-related exceptions to django.template.except...Preston Timmons2015-05-071-1/+2
* Fixed #15053 -- Enabled recursive template loading.Preston Timmons2015-04-221-16/+18
* Cleaned up the template debug implementation.Preston Timmons2015-03-201-15/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+1
* Fixed #24235 -- Removed is_usable attribute from template...Preston Timmons2015-02-041-12/+1
* Exposed Engine in the django.template namespace.Aymeric Augustin2015-01-071-3/+4
* Added comments to remove Engine.render_to_string in Djang...Aymeric Augustin2015-01-061-6/+6
* Raised an error when allowed_include_roots is a string.Aymeric Augustin2014-12-281-1/+5
* Supported multiple template engines in render_to_string.Aymeric Augustin2014-12-281-10/+27
* Removed extraneous arguments in Engine.from_string.Aymeric Augustin2014-12-281-3/+3
* Looked up the default template engine in the list of all ...Aymeric Augustin2014-12-281-13/+32
* Passed a reference to the current engine when instantiati...Aymeric Augustin2014-12-281-1/+1
* Renamed get_template_from_string to from_string.Aymeric Augustin2014-12-281-8/+8
* Simplified handling of a default value.Aymeric Augustin2014-12-281-3/+1
* Encapsulated TEMPLATE_DEBUG in Engine.Aymeric Augustin2014-11-231-3/+5
* Encapsulated TEMPLATE_CONTEXT_PROCESSORS in Engine.Aymeric Augustin2014-11-231-0/+7
* Moved make_origin into the Engine class.Aymeric Augustin2014-11-231-3/+10
* Move compile_string into the Engine class.Aymeric Augustin2014-11-231-1/+15
* Removed dependency of template loaders on Django settings.Aymeric Augustin2014-11-231-1/+6
* Moved template loaders management in Engine.Aymeric Augustin2014-11-231-3/+46
* Removed unused API get_template_loaders.Aymeric Augustin2014-11-231-2/+2
* Introduced a template engine class.Aymeric Augustin2014-11-231-0/+154