Protocol agnostic URL for emoticons
This commit is contained in:
parent
09a604b555
commit
a994d37a9e
|
@ -70,8 +70,11 @@ def render(message):
|
||||||
for trigger in smileys["map"][img]:
|
for trigger in smileys["map"][img]:
|
||||||
if trigger in message:
|
if trigger in message:
|
||||||
# Substitute it.
|
# Substitute it.
|
||||||
|
url = request.url_root.strip("/") \
|
||||||
|
.replace("http:", "") \
|
||||||
|
.replace("https:", "")
|
||||||
sub = """<img src="{url}" class="rophako-emoticon" alt="{trigger}" title="{trigger}">""".format(
|
sub = """<img src="{url}" class="rophako-emoticon" alt="{trigger}" title="{trigger}">""".format(
|
||||||
url="{}/static/smileys/{}/{}".format(request.url_root.strip("/"), Config.emoticons.theme, img),
|
url="{}/static/smileys/{}/{}".format(url, Config.emoticons.theme, img),
|
||||||
trigger=trigger,
|
trigger=trigger,
|
||||||
)
|
)
|
||||||
pattern = r'([^A-Za-z0-9:\-]|^){}([^A-Za-z0-9:\-]|$)'.format(re.escape(trigger))
|
pattern = r'([^A-Za-z0-9:\-]|^){}([^A-Za-z0-9:\-]|$)'.format(re.escape(trigger))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user