@classmethod
def _as_markdown(cls, content, *extensions):
- return mark_safe(sanitize_html(markdown.markdown(content, extensions=extensions)))
+ try:
+ return mark_safe(sanitize_html(markdown.markdown(content, extensions=extensions)))
+ except Exception, e:
+ import traceback
+ logging.error("Caught exception %s in markdown parser rendering %s %s:\s %s" % (
+ str(e), cls.__name__, str(e), traceback.format_exc()))
+ return ''
def as_markdown(self, *extensions):
return self._as_markdown(self.body, *extensions)
apply_bool = lambda q, b: b and q or ~q
return self.filter(*[apply_bool(models.Q(state_string__contains="(%s)" % s), b) for s, b in kwargs.items()])
+ def children_count(self, child_type):
+ return NodeMetaClass.types[child_type].objects.filter_state(deleted=False).filter(parent__in=self).count()
+
class NodeManager(CachedManager):
use_for_related_fields = True