* [PATCH 1/2] mailinfo: handle StGit patches
@ 2009-05-24 7:19 Giuseppe Bilotta
0 siblings, 0 replies; only message in thread
From: Giuseppe Bilotta @ 2009-05-24 7:19 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano, Giuseppe Bilotta
The default StGit export template puts author information in a From:
line located between the subject and the body of the commit message.
We can handle these files by prepending 'Subject: ' to the first
line of the file and skipping the whitespace following it.
Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
---
builtin-mailinfo.c | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/builtin-mailinfo.c b/builtin-mailinfo.c
index 92637ac..67317e2 100644
--- a/builtin-mailinfo.c
+++ b/builtin-mailinfo.c
@@ -920,6 +920,24 @@ static int mailinfo(FILE *in, FILE *out, int ks, const char *encoding,
} while (isspace(peek));
ungetc(peek, in);
+ /* The default StGit export template has the subject as first line
+ (without 'Subject:') followed by an empty line, followed by
+ the author info (with 'From:'), followed by an empty line,
+ followed by the body. If the first line is not a mail header
+ and we add 'Subject:' in front of it, skipping the subsequent
+ empty line(s), we can thus parse StGit patches.
+ */
+ if (read_one_header_line(&line, fin))
+ check_header(&line, p_hdr_data, 1);
+ else {
+ strbuf_insert(&line, 0, "Subject: ", 9);
+ check_header(&line, p_hdr_data, 1);
+ do {
+ peek = fgetc(in);
+ } while (isspace(peek));
+ ungetc(peek, in);
+ }
+
/* process the email header */
while (read_one_header_line(&line, fin))
check_header(&line, p_hdr_data, 1);
--
1.6.3.1.212.g6c0d3.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-05-24 7:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-24 7:19 [PATCH 1/2] mailinfo: handle StGit patches Giuseppe Bilotta
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).