X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/495fe5182b1644edb6616074cc65d332ed2c0f03..dcacc3b4c2ba2f550806a2d22b183f6fac4f63ff:/forum/models/node.py diff --git a/forum/models/node.py b/forum/models/node.py index 6694426..20ede47 100644 --- a/forum/models/node.py +++ b/forum/models/node.py @@ -152,7 +152,7 @@ class NodeQuerySet(CachedQuerySet): class NodeManager(CachedManager): use_for_related_fields = True - def get_query_set(self): + def get_queryset(self): qs = NodeQuerySet(self.model) # If the node is an answer, question or comment we filter the Node model by type @@ -257,7 +257,7 @@ class Node(BaseModel, NodeContent): @classmethod def _generate_cache_key(cls, key, group="node"): return super(Node, cls)._generate_cache_key(key, group) - + @classmethod def get_type(cls): return cls.__name__.lower() @@ -317,16 +317,27 @@ class Node(BaseModel, NodeContent): @property def summary(self): - content = strip_tags(self.html)[:SUMMARY_LENGTH] + content = strip_tags(self.html) # Remove multiple spaces. content = re.sub(' +',' ', content) - # Remove line breaks. We don't need them at all. - content = content.replace("\n", '') + # Replace line breaks with a space, we don't need them at all. + content = content.replace("\n", ' ') + + # Truncate and all an ellipsis if length greater than summary length. + content = (content[:SUMMARY_LENGTH] + '...') if len(content) > SUMMARY_LENGTH else content return content + # Can be used to block subscription notifications for a specific node from a module + def _is_notifiable(self): + return True + + @property + def is_notifiable(self): + return self._is_notifiable() + @models.permalink def get_revisions_url(self): return ('revisions', (), {'id': self.id})