On Wed, Jan 28, 2009 at 06:06:45PM -0800, Junio C Hamano wrote: [...] > * ks/maint-mailinfo-folded (Tue Jan 13 01:21:04 2009 +0300) 4 commits > + mailinfo: tests for RFC2047 examples > + mailinfo: add explicit test for mails like '<a.u.thor@xxxxxxxxxxx> > (A U Thor)' > + mailinfo: 'From:' header should be unfold as well > + mailinfo: correctly handle multiline 'Subject:' header > > I just got tired of waiting and cleaned up the series myself. Sorry about that. Here is the missing bit (based on master) --- 8< --- Subject: [PATCH] mailinfo: cleanup extra spaces for complex 'From:' currently for cases like From: A U Thor <a.u.thor@xxxxxxxxxxx> (Comment) mailinfo extracts the following 'Author:' field: Author: A U Thor (Comment) ^^ which has two extra spaces left in there after removed email part. I think this is wrong so here is a fix. Signed-off-by: Kirill Smelkov <kirr@xxxxxxxxxxxxxxxxxxx> --- builtin-mailinfo.c | 19 +++++++++++++++---- t/t5100/info0001 | 2 +- t/t5100/rfc2047-info-0004 | 2 +- t/t5100/sample.mbox | 4 ++-- 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/builtin-mailinfo.c b/builtin-mailinfo.c index d4dc23a..2789ccd 100644 --- a/builtin-mailinfo.c +++ b/builtin-mailinfo.c @@ -29,6 +29,9 @@ static struct strbuf **p_hdr_data, **s_hdr_data; #define MAX_HDR_PARSED 10 #define MAX_BOUNDARIES 5 +static void cleanup_space(struct strbuf *sb); + + static void get_sane_name(struct strbuf *out, struct strbuf *name, struct strbuf *email) { struct strbuf *src = name; @@ -109,11 +112,19 @@ static void handle_from(const struct strbuf *from) strbuf_add(&email, at, el); strbuf_remove(&f, at - f.buf, el + (at[el] ? 1 : 0)); - /* The remainder is name. It could be "John Doe <john.doe@xz>" - * or "john.doe@xz (John Doe)", but we have removed the - * email part, so trim from both ends, possibly removing - * the () pair at the end. + /* The remainder is name. It could be + * + * - "John Doe <john.doe@xz>" (a), or + * - "john.doe@xz (John Doe)" (b), or + * - "John (zzz) Doe <john.doe@xz> (Comment)" (c) + * + * but we have removed the email part, so + * + * - remove extra spaces which could stay after email (case 'c'), and + * - trim from both ends, possibly removing the () pair at the end + * (cases 'a' and 'b'). */ + cleanup_space(&f); strbuf_trim(&f); if (f.buf[0] == '(' && f.len && f.buf[f.len - 1] == ')') { strbuf_remove(&f, 0, 1); diff --git a/t/t5100/info0001 b/t/t5100/info0001 index 8c05277..f951538 100644 --- a/t/t5100/info0001 +++ b/t/t5100/info0001 @@ -1,4 +1,4 @@ -Author: A U Thor +Author: A (zzz) U Thor (Comment) Email: a.u.thor@xxxxxxxxxxx Subject: a commit. Date: Fri, 9 Jun 2006 00:44:16 -0700 diff --git a/t/t5100/rfc2047-info-0004 b/t/t5100/rfc2047-info-0004 index 0ca7ff0..f67a90a 100644 --- a/t/t5100/rfc2047-info-0004 +++ b/t/t5100/rfc2047-info-0004 @@ -1,4 +1,4 @@ -Author: Nathaniel Borenstein (םולש ןב ילטפנ) +Author: Nathaniel Borenstein (םולש ןב ילטפנ) Email: nsb@xxxxxxxxxxxxxxxxxxxx Subject: Test of new header generator diff --git a/t/t5100/sample.mbox b/t/t5100/sample.mbox index 85df55f..c5ad206 100644 --- a/t/t5100/sample.mbox +++ b/t/t5100/sample.mbox @@ -2,10 +2,10 @@ From nobody Mon Sep 17 00:00:00 2001 -From: A +From: A (zzz) U Thor - <a.u.thor@xxxxxxxxxxx> + <a.u.thor@xxxxxxxxxxx> (Comment) Date: Fri, 9 Jun 2006 00:44:16 -0700 Subject: [PATCH] a commit. -- 1.6.1.284.g5dc13 --- 8< --- Thanks, Kirill -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html