mirror of
https://github.com/django/django.git
synced 2025-09-15 15:05:14 +00:00
Made django.utils.html.escape() work with unicode strings (and unicode-like
objects). Refs #3897. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4919 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
1bddac37b6
commit
5212911b19
2 changed files with 14 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
|||
"HTML utilities suitable for global use."
|
||||
|
||||
import re, string
|
||||
from django.utils.encoding import smart_unicode
|
||||
|
||||
# Configuration for urlize() function
|
||||
LEADING_PUNCTUATION = ['(', '<', '<']
|
||||
|
@ -24,7 +25,7 @@ del x # Temporary variable
|
|||
def escape(html):
|
||||
"Returns the given HTML with ampersands, quotes and carets encoded"
|
||||
if not isinstance(html, basestring):
|
||||
html = str(html)
|
||||
html = smart_unicode(html)
|
||||
return html.replace('&', '&').replace('<', '<').replace('>', '>').replace('"', '"').replace("'", ''')
|
||||
|
||||
def linebreaks(value):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue