summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPreston Timmons <prestontimmons@gmail.com>2015-03-03 15:48:26 -0600
committerPreston Timmons <prestontimmons@gmail.com>2015-04-22 14:49:00 -0500
commitfc2147152637e21bc73f991b50fa06254af02739 (patch)
treec9f80c73aabf680e67c6646361d8de3a29a62f93 /docs
parent1b1b58bc7b2917b203ee3eb3b9e8b3a1fafaee64 (diff)
Fixed #15053 -- Enabled recursive template loading.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 98432a7e38..ce9b330b69 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -37,6 +37,26 @@ details on these changes.
* The ``GeoManager`` and ``GeoQuerySet`` classes will be removed.
+* The ``supports_recursion`` check for template loaders will be removed from:
+
+ * ``django.template.engine.Engine.find_template()``
+ * ``django.template.loader_tags.ExtendsNode.find_template()``
+ * ``django.template.loaders.base.Loader.supports_recursion()``
+ * ``django.template.loaders.cached.Loader.supports_recursion()``
+
+* The ``load_template and ``load_template_sources`` template loader methods
+ will be removed.
+
+* The ``template_dirs`` argument for template loaders will be removed:
+
+ * ``django.template.loaders.base.Loader.get_template()``
+ * ``django.template.loaders.cached.Loader.cache_key()``
+ * ``django.template.loaders.cached.Loader.get_template()``
+ * ``django.template.loaders.cached.Loader.get_template_sources()``
+ * ``django.template.loaders.filesystem.Loader.get_template_sources()``
+
+* The ``django.template.loaders.base.Loader.__call__`` method will be removed.
+
.. _deprecation-removed-in-2.0:
2.0