mirror of
https://github.com/django/django.git
synced 2025-11-17 18:48:15 +00:00
Use stdlib html.escape() in django.utils.html.escape()
Improves performance and removes duplicated code by leveraging Python's built-in html.escape(). Note: changes escaping of single quotes from ' to ', which may affect literal output.
This commit is contained in:
parent
28d5262fa3
commit
7fcafcc265
14 changed files with 36 additions and 44 deletions
|
|
@ -1,5 +1,6 @@
|
|||
"""HTML utilities suitable for global use."""
|
||||
|
||||
import html
|
||||
import json
|
||||
import re
|
||||
from html.parser import HTMLParser
|
||||
|
|
@ -24,15 +25,6 @@ word_split_re = re.compile(r'''([\s<>"']+)''')
|
|||
simple_url_re = re.compile(r'^https?://\[?\w', re.IGNORECASE)
|
||||
simple_url_2_re = re.compile(r'^www\.|^(?!http)\w[^@]+\.(com|edu|gov|int|mil|net|org)($|/.*)$', re.IGNORECASE)
|
||||
|
||||
_html_escapes = {
|
||||
ord('&'): '&',
|
||||
ord('<'): '<',
|
||||
ord('>'): '>',
|
||||
ord('"'): '"',
|
||||
ord("'"): ''',
|
||||
}
|
||||
|
||||
|
||||
@keep_lazy(str, SafeString)
|
||||
def escape(text):
|
||||
"""
|
||||
|
|
@ -43,7 +35,7 @@ def escape(text):
|
|||
This may result in double-escaping. If this is a concern, use
|
||||
conditional_escape() instead.
|
||||
"""
|
||||
return mark_safe(str(text).translate(_html_escapes))
|
||||
return mark_safe(html.escape(str(text)))
|
||||
|
||||
|
||||
_js_escapes = {
|
||||
|
|
@ -266,7 +258,7 @@ def urlize(text, trim_url_limit=None, nofollow=False, autoescape=False):
|
|||
http://example.com?x=1&y=<2> => http://example.com?x=1&y=<2>
|
||||
"""
|
||||
return text.replace('&', '&').replace('<', '<').replace(
|
||||
'>', '>').replace('"', '"').replace(''', "'")
|
||||
'>', '>').replace('"', '"').replace(''', "'").replace(''', "'")
|
||||
|
||||
def trim_punctuation(lead, middle, trail):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -199,7 +199,7 @@ class TestModelDetailView(TestDataMixin, AdminDocsTestCase):
|
|||
"""
|
||||
Methods with keyword arguments should have their arguments displayed.
|
||||
"""
|
||||
self.assertContains(self.response, "<td>suffix='ltd'</td>")
|
||||
self.assertContains(self.response, "<td>suffix='ltd'</td>")
|
||||
|
||||
def test_methods_with_multiple_arguments_display_arguments(self):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@ class UserCreationFormTest(TestDataMixin, TestCase):
|
|||
form = UserCreationForm()
|
||||
self.assertEqual(
|
||||
form.fields['password1'].help_text,
|
||||
'<ul><li>Your password can't be too similar to your other personal information.</li></ul>'
|
||||
'<ul><li>Your password can't be too similar to your other personal information.</li></ul>'
|
||||
)
|
||||
|
||||
@override_settings(AUTH_PASSWORD_VALIDATORS=[
|
||||
|
|
|
|||
|
|
@ -995,7 +995,7 @@ Java</label></li>
|
|||
self.assertHTMLEqual(
|
||||
f.as_table(),
|
||||
"""<tr><th><em>Special</em> Field:</th><td>
|
||||
<ul class="errorlist"><li>Something's wrong with 'Nothing to escape'</li></ul>
|
||||
<ul class="errorlist"><li>Something's wrong with 'Nothing to escape'</li></ul>
|
||||
<input type="text" name="special_name" value="Nothing to escape" required></td></tr>
|
||||
<tr><th><em>Special</em> Field:</th><td>
|
||||
<ul class="errorlist"><li>'<b>Nothing to escape</b>' is a safe string</li></ul>
|
||||
|
|
@ -1008,10 +1008,10 @@ Java</label></li>
|
|||
self.assertHTMLEqual(
|
||||
f.as_table(),
|
||||
"""<tr><th><em>Special</em> Field:</th><td>
|
||||
<ul class="errorlist"><li>Something's wrong with 'Should escape < & > and
|
||||
<script>alert('xss')</script>'</li></ul>
|
||||
<ul class="errorlist"><li>Something's wrong with 'Should escape < & > and
|
||||
<script>alert('xss')</script>'</li></ul>
|
||||
<input type="text" name="special_name"
|
||||
value="Should escape < & > and <script>alert('xss')</script>" required></td></tr>
|
||||
value="Should escape < & > and <script>alert('xss')</script>" required></td></tr>
|
||||
<tr><th><em>Special</em> Field:</th><td>
|
||||
<ul class="errorlist"><li>'<b><i>Do not escape</i></b>' is a safe string</li></ul>
|
||||
<input type="text" name="special_safe_name" value="<i>Do not escape</i>" required></td></tr>"""
|
||||
|
|
@ -2632,7 +2632,7 @@ Password: <input type="password" name="password" required>
|
|||
t.render(Context({'form': UserRegistration(auto_id=False)})),
|
||||
"""<form>
|
||||
<p>Username: <input type="text" name="username" maxlength="10" required><br>
|
||||
Good luck picking a username that doesn't already exist.</p>
|
||||
Good luck picking a username that doesn't already exist.</p>
|
||||
<p>Password1: <input type="password" name="password1" required></p>
|
||||
<p>Password2: <input type="password" name="password2" required></p>
|
||||
<input type="submit" required>
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class ClearableFileInputTest(WidgetTest):
|
|||
self.check_html(ClearableFileInput(), 'my<div>file', StrangeFieldFile(), html=(
|
||||
"""
|
||||
Currently: <a href="something?chapter=1&sect=2&copy=3&lang=en">
|
||||
something<div onclick="alert('oops')">.jpg</a>
|
||||
something<div onclick="alert('oops')">.jpg</a>
|
||||
<input type="checkbox" name="my<div>file-clear" id="my<div>file-clear_id">
|
||||
<label for="my<div>file-clear_id">Clear</label><br>
|
||||
Change: <input type="file" name="my<div>file">
|
||||
|
|
|
|||
|
|
@ -1197,7 +1197,7 @@ class ModelFormBasicTests(TestCase):
|
|||
<li>Article: <textarea rows="10" cols="40" name="article" required></textarea></li>
|
||||
<li>Categories: <select multiple name="categories">
|
||||
<option value="%s" selected>Entertainment</option>
|
||||
<option value="%s" selected>It's a test</option>
|
||||
<option value="%s" selected>It's a test</option>
|
||||
<option value="%s">Third test</option>
|
||||
</select></li>
|
||||
<li>Status: <select name="status">
|
||||
|
|
@ -1239,7 +1239,7 @@ class ModelFormBasicTests(TestCase):
|
|||
<li>Article: <textarea rows="10" cols="40" name="article" required>Hello.</textarea></li>
|
||||
<li>Categories: <select multiple name="categories">
|
||||
<option value="%s">Entertainment</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">Third test</option>
|
||||
</select></li>
|
||||
<li>Status: <select name="status">
|
||||
|
|
@ -1361,7 +1361,7 @@ class ModelFormBasicTests(TestCase):
|
|||
<tr><th>Article:</th><td><textarea rows="10" cols="40" name="article" required></textarea></td></tr>
|
||||
<tr><th>Categories:</th><td><select multiple name="categories">
|
||||
<option value="%s">Entertainment</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">Third test</option>
|
||||
</select></td></tr>
|
||||
<tr><th>Status:</th><td><select name="status">
|
||||
|
|
@ -1391,7 +1391,7 @@ class ModelFormBasicTests(TestCase):
|
|||
<li>Article: <textarea rows="10" cols="40" name="article" required>Hello.</textarea></li>
|
||||
<li>Categories: <select multiple name="categories">
|
||||
<option value="%s" selected>Entertainment</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">Third test</option>
|
||||
</select></li>
|
||||
<li>Status: <select name="status">
|
||||
|
|
@ -1535,7 +1535,7 @@ class ModelFormBasicTests(TestCase):
|
|||
<li>Article: <textarea rows="10" cols="40" name="article" required></textarea></li>
|
||||
<li>Categories: <select multiple name="categories">
|
||||
<option value="%s">Entertainment</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">Third test</option>
|
||||
</select> </li>
|
||||
<li>Status: <select name="status">
|
||||
|
|
@ -1561,7 +1561,7 @@ class ModelFormBasicTests(TestCase):
|
|||
<li>Article: <textarea rows="10" cols="40" name="article" required></textarea></li>
|
||||
<li>Categories: <select multiple name="categories">
|
||||
<option value="%s">Entertainment</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">It's a test</option>
|
||||
<option value="%s">Third test</option>
|
||||
<option value="%s">Fourth</option>
|
||||
</select></li>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ class AddslashesTests(SimpleTestCase):
|
|||
@setup({'addslashes02': '{{ a|addslashes }} {{ b|addslashes }}'})
|
||||
def test_addslashes02(self):
|
||||
output = self.engine.render_to_string('addslashes02', {"a": "<a>'", "b": mark_safe("<a>'")})
|
||||
self.assertEqual(output, r"<a>\' <a>\'")
|
||||
self.assertEqual(output, r"<a>\' <a>\'")
|
||||
|
||||
|
||||
class FunctionTests(SimpleTestCase):
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ class MakeListTests(SimpleTestCase):
|
|||
@setup({'make_list02': '{{ a|make_list }}'})
|
||||
def test_make_list02(self):
|
||||
output = self.engine.render_to_string('make_list02', {"a": mark_safe("&")})
|
||||
self.assertEqual(output, "['&']")
|
||||
self.assertEqual(output, "['&']")
|
||||
|
||||
@setup({'make_list03': '{% autoescape off %}{{ a|make_list|stringformat:"s"|safe }}{% endautoescape %}'})
|
||||
def test_make_list03(self):
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ class TitleTests(SimpleTestCase):
|
|||
@setup({'title1': '{{ a|title }}'})
|
||||
def test_title1(self):
|
||||
output = self.engine.render_to_string('title1', {'a': 'JOE\'S CRAB SHACK'})
|
||||
self.assertEqual(output, 'Joe's Crab Shack')
|
||||
self.assertEqual(output, 'Joe's Crab Shack')
|
||||
|
||||
@setup({'title2': '{{ a|title }}'})
|
||||
def test_title2(self):
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class UrlizeTests(SimpleTestCase):
|
|||
@setup({'urlize06': '{{ a|urlize }}'})
|
||||
def test_urlize06(self):
|
||||
output = self.engine.render_to_string('urlize06', {'a': "<script>alert('foo')</script>"})
|
||||
self.assertEqual(output, '<script>alert('foo')</script>')
|
||||
self.assertEqual(output, '<script>alert('foo')</script>')
|
||||
|
||||
# mailto: testing for urlize
|
||||
@setup({'urlize07': '{{ a|urlize }}'})
|
||||
|
|
@ -113,7 +113,7 @@ class FunctionTests(SimpleTestCase):
|
|||
)
|
||||
self.assertEqual(
|
||||
urlize('www.server.com\'abc'),
|
||||
'<a href="http://www.server.com" rel="nofollow">www.server.com</a>'abc',
|
||||
'<a href="http://www.server.com" rel="nofollow">www.server.com</a>'abc',
|
||||
)
|
||||
self.assertEqual(
|
||||
urlize('www.server.com<abc'),
|
||||
|
|
@ -284,7 +284,7 @@ class FunctionTests(SimpleTestCase):
|
|||
('<>', ('<', '>')),
|
||||
('[]', ('[', ']')),
|
||||
('""', ('"', '"')),
|
||||
("''", (''', ''')),
|
||||
("''", (''', ''')),
|
||||
)
|
||||
for wrapping_in, (start_out, end_out) in wrapping_chars:
|
||||
with self.subTest(wrapping_in=wrapping_in):
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class UrlTagTests(SimpleTestCase):
|
|||
@setup({'url12': '{% url "client_action" id=client.id action="!$&\'()*+,;=~:@," %}'})
|
||||
def test_url12(self):
|
||||
output = self.engine.render_to_string('url12', {'client': {'id': 1}})
|
||||
self.assertEqual(output, '/client/1/!$&'()*+,;=~:@,/')
|
||||
self.assertEqual(output, '/client/1/!$&'()*+,;=~:@,/')
|
||||
|
||||
@setup({'url13': '{% url "client_action" id=client.id action=arg|join:"-" %}'})
|
||||
def test_url13(self):
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ class TestUtilsHtml(SimpleTestCase):
|
|||
('<', '<'),
|
||||
('>', '>'),
|
||||
('"', '"'),
|
||||
("'", '''),
|
||||
("'", '''),
|
||||
)
|
||||
# Substitution patterns for testing the above items.
|
||||
patterns = ("%s", "asdf%sfdsa", "%s1", "1%sb")
|
||||
|
|
|
|||
|
|
@ -44,22 +44,22 @@ class CsrfViewTests(SimpleTestCase):
|
|||
self.assertContains(
|
||||
response,
|
||||
'You are seeing this message because this HTTPS site requires a '
|
||||
''Referer header' to be sent by your Web browser, but '
|
||||
''Referer header' to be sent by your Web browser, but '
|
||||
'none was sent.',
|
||||
status_code=403,
|
||||
)
|
||||
self.assertContains(
|
||||
response,
|
||||
'If you have configured your browser to disable 'Referer' '
|
||||
'If you have configured your browser to disable 'Referer' '
|
||||
'headers, please re-enable them, at least for this site, or for '
|
||||
'HTTPS connections, or for 'same-origin' requests.',
|
||||
'HTTPS connections, or for 'same-origin' requests.',
|
||||
status_code=403,
|
||||
)
|
||||
self.assertContains(
|
||||
response,
|
||||
'If you are using the <meta name="referrer" '
|
||||
'content="no-referrer"> tag or including the '
|
||||
''Referrer-Policy: no-referrer' header, please remove them.',
|
||||
''Referrer-Policy: no-referrer' header, please remove them.',
|
||||
status_code=403,
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -304,7 +304,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
reporter = ExceptionReporter(request, exc_type, exc_value, tb)
|
||||
html = reporter.get_traceback_html()
|
||||
self.assertInHTML('<h1>ValueError at /test_view/</h1>', html)
|
||||
self.assertIn('<pre class="exception_value">Can't find my keys</pre>', html)
|
||||
self.assertIn('<pre class="exception_value">Can't find my keys</pre>', html)
|
||||
self.assertIn('<th>Request Method:</th>', html)
|
||||
self.assertIn('<th>Request URL:</th>', html)
|
||||
self.assertIn('<h3 id="user-info">USER</h3>', html)
|
||||
|
|
@ -325,7 +325,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
reporter = ExceptionReporter(None, exc_type, exc_value, tb)
|
||||
html = reporter.get_traceback_html()
|
||||
self.assertInHTML('<h1>ValueError</h1>', html)
|
||||
self.assertIn('<pre class="exception_value">Can't find my keys</pre>', html)
|
||||
self.assertIn('<pre class="exception_value">Can't find my keys</pre>', html)
|
||||
self.assertNotIn('<th>Request Method:</th>', html)
|
||||
self.assertNotIn('<th>Request URL:</th>', html)
|
||||
self.assertNotIn('<h3 id="user-info">USER</h3>', html)
|
||||
|
|
@ -463,7 +463,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
reporter = ExceptionReporter(request, None, "I'm a little teapot", None)
|
||||
html = reporter.get_traceback_html()
|
||||
self.assertInHTML('<h1>Report at /test_view/</h1>', html)
|
||||
self.assertIn('<pre class="exception_value">I'm a little teapot</pre>', html)
|
||||
self.assertIn('<pre class="exception_value">I'm a little teapot</pre>', html)
|
||||
self.assertIn('<th>Request Method:</th>', html)
|
||||
self.assertIn('<th>Request URL:</th>', html)
|
||||
self.assertNotIn('<th>Exception Type:</th>', html)
|
||||
|
|
@ -476,7 +476,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
reporter = ExceptionReporter(None, None, "I'm a little teapot", None)
|
||||
html = reporter.get_traceback_html()
|
||||
self.assertInHTML('<h1>Report</h1>', html)
|
||||
self.assertIn('<pre class="exception_value">I'm a little teapot</pre>', html)
|
||||
self.assertIn('<pre class="exception_value">I'm a little teapot</pre>', html)
|
||||
self.assertNotIn('<th>Request Method:</th>', html)
|
||||
self.assertNotIn('<th>Request URL:</th>', html)
|
||||
self.assertNotIn('<th>Exception Type:</th>', html)
|
||||
|
|
@ -508,7 +508,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
except Exception:
|
||||
exc_type, exc_value, tb = sys.exc_info()
|
||||
html = ExceptionReporter(None, exc_type, exc_value, tb).get_traceback_html()
|
||||
self.assertIn('<td class="code"><pre>'<p>Local variable</p>'</pre></td>', html)
|
||||
self.assertIn('<td class="code"><pre>'<p>Local variable</p>'</pre></td>', html)
|
||||
|
||||
def test_unprintable_values_handling(self):
|
||||
"Unprintable values should not make the output generation choke."
|
||||
|
|
@ -607,7 +607,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
An exception report can be generated for requests with 'items' in
|
||||
request GET, POST, FILES, or COOKIES QueryDicts.
|
||||
"""
|
||||
value = '<td>items</td><td class="code"><pre>'Oops'</pre></td>'
|
||||
value = '<td>items</td><td class="code"><pre>'Oops'</pre></td>'
|
||||
# GET
|
||||
request = self.rf.get('/test_view/?items=Oops')
|
||||
reporter = ExceptionReporter(request, None, None, None)
|
||||
|
|
@ -634,7 +634,7 @@ class ExceptionReporterTests(SimpleTestCase):
|
|||
request = rf.get('/test_view/')
|
||||
reporter = ExceptionReporter(request, None, None, None)
|
||||
html = reporter.get_traceback_html()
|
||||
self.assertInHTML('<td>items</td><td class="code"><pre>'Oops'</pre></td>', html)
|
||||
self.assertInHTML('<td>items</td><td class="code"><pre>'Oops'</pre></td>', html)
|
||||
|
||||
def test_exception_fetching_user(self):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue