Mercurial > public > sg101
view core/mdexts/ssl_images.py @ 953:8647a669edb4
Fix excessive cache usage for forum date/times.
Issue #84. Hitting the cache 30+ times while browsing the forums
to adjust all the dates/times into the user's time zone. Just
hit the user's profile and be done with it. It should be loaded.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 19 May 2015 21:08:45 -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')