forked from rDrama/rDrama
1
0
Fork 0

remove <source> from tags

master
Aevann 2024-02-29 18:59:48 +02:00
parent 2b08408ef2
commit 15686d8a29
1 changed files with 1 additions and 4 deletions

View File

@ -7,7 +7,7 @@ from files.helpers.regex import sanitize_url_regex
from files.helpers.config.const import *
allowed_tags = ('a','audio','b','big','blink','blockquote','br','center','code','del','details','em','g','gl','h1','h2','h3','h4','h5','h6','hr','i','img','li','lite-youtube','marquee','ol','p','pre','rp','rt','ruby','small','span','spoiler','strike','strong','sub','summary','sup','table','tbody','td','th','thead','tr','u','ul','video')
allowed_tags_runtime = ('div', 'input', 'label', 'score', 'source', 'button', 'd')
allowed_tags_runtime = ('div', 'input', 'label', 'score', 'button', 'd')
allowed_css_properties = ('background-color', 'color', 'filter', 'font-weight', 'text-align', 'transform')
def allowed_attributes(tag, name, value):
@ -48,9 +48,6 @@ def allowed_attributes(tag, name, value):
if name == 'preload' and value == 'none': return True
if name == 'src': return is_safe_url(value)
if tag == 'source':
if name == 'src': return is_safe_url(value)
if tag == 'audio':
if name == 'src': return is_safe_url(value)
if name == 'controls' and value == '': return True