aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db/mixin.py
diff options
context:
space:
mode:
authorElrond <elrond+mediagoblin.org@samba-tng.org>2012-02-13 13:42:59 +0100
committerElrond <elrond+mediagoblin.org@samba-tng.org>2012-02-18 12:41:25 +0100
commit1e72e075f8d542f4aa1ad0262f4fd1a5645cc731 (patch)
tree71a3dc08526cdb88452daeae939c7a9263a766c1 /mediagoblin/db/mixin.py
parente61ab0998b77eaf18268001fd2d70917c3cd3e37 (diff)
downloadmediagoblin-1e72e075f8d542f4aa1ad0262f4fd1a5645cc731.tar.lz
mediagoblin-1e72e075f8d542f4aa1ad0262f4fd1a5645cc731.tar.xz
mediagoblin-1e72e075f8d542f4aa1ad0262f4fd1a5645cc731.zip
Drop pre-rendered html: MediaEntry.description_html
After a bit of discussion, we decided to drop the pre-rendered html from the database and render it on the fly. In another step, we will use some proper caching method to cache this stuff. This commit affects the MediaEntry.description_html part.
Diffstat (limited to 'mediagoblin/db/mixin.py')
-rw-r--r--mediagoblin/db/mixin.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/mediagoblin/db/mixin.py b/mediagoblin/db/mixin.py
index 2ff08722..4e3800ab 100644
--- a/mediagoblin/db/mixin.py
+++ b/mediagoblin/db/mixin.py
@@ -46,6 +46,14 @@ class UserMixin(object):
class MediaEntryMixin(object):
+ @property
+ def description_html(self):
+ """
+ Rendered version of the description, run through
+ Markdown and cleaned with our cleaning tool.
+ """
+ return cleaned_markdown_conversion(self.description)
+
def get_display_media(self, media_map,
fetch_order=common.DISPLAY_IMAGE_FETCHING_ORDER):
"""