From f26f929de02369cf73fc8ab54fff3a046855dd9f Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Sat, 20 Sep 2008 14:41:43 +1000 Subject: [PATCH] Add comment signoffs and acks to mbox text Signed-off-by: Jeremy Kerr --- apps/patchwork/models.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/apps/patchwork/models.py b/apps/patchwork/models.py index d70fdb2..bf8efba 100644 --- a/apps/patchwork/models.py +++ b/apps/patchwork/models.py @@ -226,7 +226,16 @@ class Patch(models.Model): body = '' if comment: - body = comment.content.strip() + "\n\n" + body = comment.content.strip() + "\n" + + responses = False + for comment in Comment.objects.filter(patch = self) \ + .exclude(msgid = self.msgid): + body += comment.patch_responses() + + if body: + body += '\n' + body += self.content mail = MIMEText(body) @@ -256,6 +265,12 @@ class Comment(models.Model): headers = models.TextField(blank = True) content = models.TextField() + response_re = re.compile('^(Acked|Signed-off|Nacked)-by: .*$', re.M) + + def patch_responses(self): + return ''.join([ match.group(0) + '\n' for match in \ + self.response_re.finditer(self.content)]) + class Meta: ordering = ['date'] -- 2.39.2