mirror of https://github.com/django/django.git
Minor style fixes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6911 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
58b2374b68
commit
a944613b3a
|
@ -1,4 +1,4 @@
|
||||||
"HTML utilities suitable for global use."
|
"""HTML utilities suitable for global use."""
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import string
|
import string
|
||||||
|
@ -8,11 +8,11 @@ from django.utils.encoding import force_unicode
|
||||||
from django.utils.functional import allow_lazy
|
from django.utils.functional import allow_lazy
|
||||||
from django.utils.http import urlquote
|
from django.utils.http import urlquote
|
||||||
|
|
||||||
# Configuration for urlize() function
|
# Configuration for urlize() function.
|
||||||
LEADING_PUNCTUATION = ['(', '<', '<']
|
LEADING_PUNCTUATION = ['(', '<', '<']
|
||||||
TRAILING_PUNCTUATION = ['.', ',', ')', '>', '\n', '>']
|
TRAILING_PUNCTUATION = ['.', ',', ')', '>', '\n', '>']
|
||||||
|
|
||||||
# list of possible strings used for bullets in bulleted lists
|
# List of possible strings used for bullets in bulleted lists.
|
||||||
DOTS = ['·', '*', '\xe2\x80\xa2', '•', '•', '•']
|
DOTS = ['·', '*', '\xe2\x80\xa2', '•', '•', '•']
|
||||||
|
|
||||||
unencoded_ampersands_re = re.compile(r'&(?!(\w+|#\d+);)')
|
unencoded_ampersands_re = re.compile(r'&(?!(\w+|#\d+);)')
|
||||||
|
@ -28,7 +28,7 @@ trailing_empty_content_re = re.compile(r'(?:<p>(?: |\s|<br \/>)*?</p>\s*)+\
|
||||||
del x # Temporary variable
|
del x # Temporary variable
|
||||||
|
|
||||||
def escape(html):
|
def escape(html):
|
||||||
"Return the given HTML with ampersands, quotes and carets encoded."
|
"""Returns the given HTML with ampersands, quotes and carets encoded."""
|
||||||
return mark_safe(force_unicode(html).replace('&', '&').replace('<', '<').replace('>', '>').replace('"', '"').replace("'", '''))
|
return mark_safe(force_unicode(html).replace('&', '&').replace('<', '<').replace('>', '>').replace('"', '"').replace("'", '''))
|
||||||
escape = allow_lazy(escape, unicode)
|
escape = allow_lazy(escape, unicode)
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ def conditional_escape(html):
|
||||||
return escape(html)
|
return escape(html)
|
||||||
|
|
||||||
def linebreaks(value, autoescape=False):
|
def linebreaks(value, autoescape=False):
|
||||||
"Converts newlines into <p> and <br />s"
|
"""Converts newlines into <p> and <br />s."""
|
||||||
value = re.sub(r'\r\n|\r|\n', '\n', force_unicode(value)) # normalize newlines
|
value = re.sub(r'\r\n|\r|\n', '\n', force_unicode(value)) # normalize newlines
|
||||||
paras = re.split('\n{2,}', value)
|
paras = re.split('\n{2,}', value)
|
||||||
if autoescape:
|
if autoescape:
|
||||||
|
@ -50,31 +50,31 @@ def linebreaks(value, autoescape=False):
|
||||||
else:
|
else:
|
||||||
paras = [u'<p>%s</p>' % p.strip().replace('\n', '<br />') for p in paras]
|
paras = [u'<p>%s</p>' % p.strip().replace('\n', '<br />') for p in paras]
|
||||||
return u'\n\n'.join(paras)
|
return u'\n\n'.join(paras)
|
||||||
linebreaks = allow_lazy(linebreaks, unicode)
|
linebreaks = allow_lazy(linebreaks, unicode)
|
||||||
|
|
||||||
def strip_tags(value):
|
def strip_tags(value):
|
||||||
"Return the given HTML with all tags stripped."
|
"""Returns the given HTML with all tags stripped."""
|
||||||
return re.sub(r'<[^>]*?>', '', force_unicode(value))
|
return re.sub(r'<[^>]*?>', '', force_unicode(value))
|
||||||
strip_tags = allow_lazy(strip_tags)
|
strip_tags = allow_lazy(strip_tags)
|
||||||
|
|
||||||
def strip_spaces_between_tags(value):
|
def strip_spaces_between_tags(value):
|
||||||
"Return the given HTML with spaces between tags removed."
|
"""Returns the given HTML with spaces between tags removed."""
|
||||||
return re.sub(r'>\s+<', '><', force_unicode(value))
|
return re.sub(r'>\s+<', '><', force_unicode(value))
|
||||||
strip_spaces_between_tags = allow_lazy(strip_spaces_between_tags, unicode)
|
strip_spaces_between_tags = allow_lazy(strip_spaces_between_tags, unicode)
|
||||||
|
|
||||||
def strip_entities(value):
|
def strip_entities(value):
|
||||||
"Return the given HTML with all entities (&something;) stripped."
|
"""Returns the given HTML with all entities (&something;) stripped."""
|
||||||
return re.sub(r'&(?:\w+|#\d+);', '', force_unicode(value))
|
return re.sub(r'&(?:\w+|#\d+);', '', force_unicode(value))
|
||||||
strip_entities = allow_lazy(strip_entities, unicode)
|
strip_entities = allow_lazy(strip_entities, unicode)
|
||||||
|
|
||||||
def fix_ampersands(value):
|
def fix_ampersands(value):
|
||||||
"Return the given HTML with all unencoded ampersands encoded correctly."
|
"""Returns the given HTML with all unencoded ampersands encoded correctly."""
|
||||||
return unencoded_ampersands_re.sub('&', force_unicode(value))
|
return unencoded_ampersands_re.sub('&', force_unicode(value))
|
||||||
fix_ampersands = allow_lazy(fix_ampersands, unicode)
|
fix_ampersands = allow_lazy(fix_ampersands, unicode)
|
||||||
|
|
||||||
def urlize(text, trim_url_limit=None, nofollow=False, autoescape=False):
|
def urlize(text, trim_url_limit=None, nofollow=False, autoescape=False):
|
||||||
"""
|
"""
|
||||||
Convert any URLs in text into clickable links.
|
Converts any URLs in text into clickable links.
|
||||||
|
|
||||||
Works on http://, https://, and www. links. Links can have trailing
|
Works on http://, https://, and www. links. Links can have trailing
|
||||||
punctuation (periods, commas, close-parens) and leading punctuation
|
punctuation (periods, commas, close-parens) and leading punctuation
|
||||||
|
|
Loading…
Reference in New Issue