summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2013-05-30 10:25:58 +0300
committerAnssi Kääriäinen <akaariai@gmail.com>2013-06-01 00:59:04 +0300
commit369b6fab25b55ceb363ba2a8cb7e0f1a88ef8f8d (patch)
treecd04263f614eebeb661f5f07d07db02514bba220
parent84909377f2f2eea07ab8bf398dafc69e2d736b50 (diff)
Fixed #18169 -- NoReverseMatch not silenced if from block.super
-rw-r--r--django/core/urlresolvers.py3
-rw-r--r--docs/releases/1.6.txt6
-rw-r--r--tests/template_tests/templates/included_base.html3
-rw-r--r--tests/template_tests/templates/included_content.html11
-rw-r--r--tests/template_tests/tests.py9
5 files changed, 30 insertions, 2 deletions
diff --git a/django/core/urlresolvers.py b/django/core/urlresolvers.py
index 5f314ff490..d58f2a9fa3 100644
--- a/django/core/urlresolvers.py
+++ b/django/core/urlresolvers.py
@@ -75,8 +75,7 @@ class Resolver404(Http404):
pass
class NoReverseMatch(Exception):
- # Don't make this raise an error when used in a template.
- silent_variable_failure = True
+ pass
def get_callable(lookup_view, can_fail=False):
"""
diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt
index 91dda667f1..cd665a775e 100644
--- a/docs/releases/1.6.txt
+++ b/docs/releases/1.6.txt
@@ -616,6 +616,12 @@ Miscellaneous
stored as ``null``. Previously, storing a ``blank`` value in a field which
did not allow ``null`` would cause a database exception at runtime.
+* If a :class:`~django.core.urlresolvers.NoReverseMatch` exception is risen
+ from a method when rendering a template it is not silenced. For example
+ {{ obj.view_href }} will cause template rendering to fail if view_href()
+ raises NoReverseMatch. There is no change to {% url %} tag, it causes
+ template rendering to fail like always when NoReverseMatch is risen.
+
Features deprecated in 1.6
==========================
diff --git a/tests/template_tests/templates/included_base.html b/tests/template_tests/templates/included_base.html
new file mode 100644
index 0000000000..eae222cf9d
--- /dev/null
+++ b/tests/template_tests/templates/included_base.html
@@ -0,0 +1,3 @@
+{% block content %}
+ {% block error_here %}{% endblock %}
+{% endblock %}
diff --git a/tests/template_tests/templates/included_content.html b/tests/template_tests/templates/included_content.html
new file mode 100644
index 0000000000..bfc87c0425
--- /dev/null
+++ b/tests/template_tests/templates/included_content.html
@@ -0,0 +1,11 @@
+{% extends "included_base.html" %}
+
+{% block content %}
+ content
+ {{ block.super }}
+{% endblock %}
+
+{% block error_here %}
+ error here
+ {% url "non_existing_url" %}
+{% endblock %}
diff --git a/tests/template_tests/tests.py b/tests/template_tests/tests.py
index 2aeaee9464..15668e00c0 100644
--- a/tests/template_tests/tests.py
+++ b/tests/template_tests/tests.py
@@ -444,6 +444,15 @@ class Templates(TestCase):
output = template.render(Context({}))
self.assertEqual(output, '1st time')
+ def test_super_errors(self):
+ """
+ Test behavior of the raise errors into included blocks.
+ See #18169
+ """
+ t = loader.get_template('included_content.html')
+ with self.assertRaises(urlresolvers.NoReverseMatch):
+ t.render(Context({}))
+
def test_templates(self):
template_tests = self.get_template_tests()
filter_tests = filters.get_filter_tests()