summaryrefslogtreecommitdiff
path: root/django/template
AgeCommit message (Expand)Author
2015-01-12Accounted for multiple template engines in template responses.Aymeric Augustin
2015-01-12Deprecated passing a Context to a generic Template.render.Aymeric Augustin
2015-01-12Rewrapped TemplateSyntaxError in Jinja2 backend.Aymeric Augustin
2015-01-11Fixed #23913 -- Deprecated the `=` comparison in `if` template tag.Ola Sitarska
2015-01-07Added a request argument to render_to_string.Aymeric Augustin
2015-01-07Exposed Engine in the django.template namespace.Aymeric Augustin
2015-01-06Made context take priority over context processors.Aymeric Augustin
2015-01-06Added comments to remove Engine.render_to_string in Django 2.0.Aymeric Augustin
2015-01-05Fixed #24022 -- Deprecated the ssi tag.Preston Timmons
2014-12-28Explained the structure of django.template.Aymeric Augustin
2014-12-28Raised a warning when using the legacy TEMPLATE_* settings.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Raised an error when allowed_include_roots is a string.Aymeric Augustin
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Preserved context class in inclusion_tag.Aymeric Augustin
2014-12-28Simplified implementation of django.shortcuts.render(_to_response).Aymeric Augustin
2014-12-28Moved context_processors from django.core to django.template.Aymeric Augustin
2014-12-28Added a comment about the last use of Engine.get_default().Aymeric Augustin
2014-12-28Supported multiple template engines in render_to_string.Aymeric Augustin
2014-12-28Removed extraneous arguments in Engine.from_string.Aymeric Augustin
2014-12-28Removed private API get_template_from_string.Aymeric Augustin
2014-12-28Removed private API find_template.Aymeric Augustin
2014-12-28Supported multiple template engines in get_template and select_template.Aymeric Augustin
2014-12-28Looked up the default template engine in the list of all engines.Aymeric Augustin
2014-12-28Passed a reference to the current engine when instantiating Template.Aymeric Augustin
2014-12-28Removed some uses of global APIs from django.template.loader.Aymeric Augustin
2014-12-28Added Django template backend.Aymeric Augustin
2014-12-28Added jinja2 template backend.Aymeric Augustin
2014-12-28Added dummy template backend.Aymeric Augustin
2014-12-28Added initial support for loading template engines.Aymeric Augustin
2014-12-28Imported BaseEngine from the DEP.Aymeric Augustin
2014-12-28Cleaned up the django.template namespace.Aymeric Augustin
2014-12-28Renamed get_template_from_string to from_string.Aymeric Augustin
2014-12-28Simplified handling of a default value.Aymeric Augustin
2014-12-27Fixed #23831 -- Supported strings escaped by third-party libs in Django.Aymeric Augustin
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-12-03Removed redundant numbered parameters from str.format().Berker Peksag
2014-11-25Fixed #23914 -- Improved {% now %} to allow storing its result in the context.Baptiste Mispelon
2014-11-23Encapsulated TEMPLATE_DEBUG in Engine.Aymeric Augustin
2014-11-23Encapsulated TEMPLATE_STRING_IF_INVALID in Engine.Aymeric Augustin
2014-11-23Encapsulated TEMPLATE_CONTEXT_PROCESSORS in Engine.Aymeric Augustin
2014-11-23Encapsulated ALLOWED_INCLUDE_ROOTS in Engine.Aymeric Augustin
2014-11-23Moved make_origin into the Engine class.Aymeric Augustin
2014-11-23Move compile_string into the Engine class.Aymeric Augustin
2014-11-23Added to each Context a reference to the Engine.Aymeric Augustin
2014-11-23Removed dependency of template loaders on Django settings.Aymeric Augustin
2014-11-23Moved template loaders management in Engine.Aymeric Augustin
2014-11-23Removed unused API get_template_loaders.Aymeric Augustin
2014-11-23Introduced a template engine class.Aymeric Augustin
2014-11-23Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin