X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=apps%2Fpatchwork%2Fmodels.py;h=bf8efba20b6c0cf788d5e014951f20bfd50ee32d;hb=f26f929de02369cf73fc8ab54fff3a046855dd9f;hp=d70fdb208eab49a29eb62daf1487c38db03993ab;hpb=969d359e9c2f3eb5ee4741208ef17639d5e1b180;p=patchwork 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']