contents: Page fallbacks for context and localsiteurl

This commit is contained in:
W. Trevor King 2013-01-04 19:47:55 -05:00
commit fdde17281d

View file

@ -48,6 +48,8 @@ class Content(object):
self.settings = settings self.settings = settings
self._content = content self._content = content
if context is None:
context = {}
self._context = context self._context = context
self.translations = [] self.translations = []
@ -220,7 +222,7 @@ class Content(object):
@property @property
def content(self): def content(self):
return self.get_content(self._context['localsiteurl']) return self.get_content(self._context.get('localsiteurl', ''))
def _get_summary(self): def _get_summary(self):
"""Returns the summary of an article. """Returns the summary of an article.