Mercurial > public > sg101
view core/mdexts/ssl_images.py @ 917:0365fdbb4d78
Fix app conflict with messages.
Django's messages app label conflicts with our messages app.
We can't easily rename our label as that will make us rename database tables.
Since our app came first we'll just customize Django messages label.
For Django 1.7.7 upgrade.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 06 Apr 2015 20:02:25 -0500 |
parents | f12751259f66 |
children |
line wrap: on
line source
""" A python-markdown extension to turn <img> tags with http: source attributes into <a> tags. """ from urlparse import urlparse import markdown class SslImagesTreeprocessor(markdown.treeprocessors.Treeprocessor): def run(self, root): for node in root.iter('img'): src = node.get('src') if src: url = urlparse(src) if url.scheme == 'http': node.clear() node.tag = 'a' node.text = 'Click for image' node.set('href', url.geturl()) class SslImagesExtension(markdown.Extension): def extendMarkdown(self, md, md_globals): tree_proc = SslImagesTreeprocessor() md.treeprocessors.add('ssl_images', tree_proc, '>inline')