aboutsummaryrefslogtreecommitdiff
path: root/bleach/sanitizer.py
diff options
context:
space:
mode:
authorPer Andersson <avtobiff@gmail.com>2013-06-09 19:45:55 +0200
committerPer Andersson <avtobiff@gmail.com>2013-06-09 19:45:55 +0200
commit3d09dd7c6ac21ad1d70010a511947bb93305fb1e (patch)
tree5b055a5ba3579696b9a5dbf9ae5c666f5ea0cae0 /bleach/sanitizer.py
parent525314d573bb57e0dec989d2c85f951bccc1fe4d (diff)
parentfac84c6d90e0875e6c1b10c5ef02d577ee008af4 (diff)
downloadpython-bleach-3d09dd7c6ac21ad1d70010a511947bb93305fb1e.tar
python-bleach-3d09dd7c6ac21ad1d70010a511947bb93305fb1e.tar.gz
Merge tag 'upstream/1.2.2'
Upstream version 1.2.2
Diffstat (limited to 'bleach/sanitizer.py')
-rw-r--r--bleach/sanitizer.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bleach/sanitizer.py b/bleach/sanitizer.py
index 677287e..4640012 100644
--- a/bleach/sanitizer.py
+++ b/bleach/sanitizer.py
@@ -6,6 +6,10 @@ from html5lib.sanitizer import HTMLSanitizerMixin
from html5lib.tokenizer import HTMLTokenizer
+PROTOS = HTMLSanitizerMixin.acceptable_protocols
+PROTOS.remove('feed')
+
+
class BleachSanitizerMixin(HTMLSanitizerMixin):
"""Mixin to replace sanitize_token() and sanitize_css()."""
@@ -108,7 +112,7 @@ class BleachSanitizerMixin(HTMLSanitizerMixin):
# TODO: Make sure this does what it's meant to - I *think* it wants to
# validate style attribute contents.
parts = style.split(';')
- gauntlet = re.compile("""^([-/:,#%.'\sa-zA-Z0-9!]|\w-\w|'[\s\w]+'\s*"""
+ gauntlet = re.compile("""^([-/:,#%.'"\sa-zA-Z0-9!]|\w-\w|'[\s\w]+'\s*"""
"""|"[\s\w]+"|\([\d,%\.\s]+\))*$""")
for part in parts:
if not gauntlet.match(part):