Mercurial > public > sg101
view core/markup.py @ 821:71db8076dc3d
Bandmap WIP: geocoding integrated with add form.
Add form works. Before submitting the form, client side JS makes
a geocode request to Google and populates hidden lat/lon fields
with the result. Successfully created a model instance on the
server side.
Still need to update admin dashboard, admin approval, and give
out badges for adding bands to the map. Once that is done, then
work on displaying the map with filtering.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 23 Sep 2014 20:40:31 -0500 |
parents | 7429c98c8ece |
children | 32ebe22f0cad |
line wrap: on
line source
""" Markup related utitlities useful for the entire project. """ import markdown as _markdown from django.utils.encoding import force_unicode from smiley import SmilifyMarkdown class Markdown(object): """ This is a thin wrapper around the Markdown class. """ def __init__(self, safe_mode='escape'): self.md = _markdown.Markdown(safe_mode=safe_mode, extensions=['urlize', 'nl2br', 'del']) def convert(self, s): return self.md.convert(force_unicode(s)) def markdown(s): """ A convenience function for one-off markdown jobs. """ md = Markdown() return md.convert(s) class SiteMarkup(object): """ This class provides site markup by combining markdown and our own smiley markup. The relative_urls parameter controls whether the smileys are generated with relative or absolute URLs. """ def __init__(self, relative_urls=True): self.md = Markdown() self.smiley = SmilifyMarkdown(relative_urls=relative_urls) def convert(self, s): return self.md.convert(self.smiley.convert(s)) def site_markup(s, relative_urls=True): """ Convenience function for one-off site markup jobs. """ sm = SiteMarkup(relative_urls=relative_urls) return sm.convert(s)