X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=blobdiff_plain;f=influences%2Fmodels.py;h=049cbeba4f4a7d5f6d82aba0c15439016685c014;hp=198b0318aa77e63f614618bc50025bad94d46156;hb=e0314624fa1da2a58161cb43359f72f255aa9b26;hpb=2ae4f2443bdf48a26be09b126b7720771bd6d477 diff --git a/influences/models.py b/influences/models.py index 198b031..049cbeb 100644 --- a/influences/models.py +++ b/influences/models.py @@ -1,6 +1,7 @@ from django.db import models from django.core.urlresolvers import reverse from django.contrib.auth.models import User +from django.utils.text import normalize_newlines, wrap from django.utils.translation import ugettext_lazy as _ from threadedcomments.models import ThreadedComment @@ -60,7 +61,8 @@ class Influence(models.Model): If private is True, private comments are included in this list. """ def quote_reply(comment): - return "\n".join(["> " + l for l in comment.comment.split("\n")]) + text = wrap(normalize_newlines(comment.comment), 72) + return "\n".join(["> " + l for l in text.split("\n")]) # Import here to prevent dependency loop, since forms depends on # models as well