* [StGIT PATCH] Do not mess-up with commit message formatting when sending email
@ 2008-07-31 12:50 Samuel Tardieu
2008-08-04 14:16 ` Karl Hasselström
0 siblings, 1 reply; 5+ messages in thread
From: Samuel Tardieu @ 2008-07-31 12:50 UTC (permalink / raw)
To: git; +Cc: Catalin Marinas
The short description, which will be used as the email subject,
gets its leading and trailing whitespaces removed.
The long description only gets its trailing whitespaces removed
to preserve commit message formatting, e.g. in the case of a
ChangeLog-style commit message, as well as empty leading lines.
Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
---
stgit/commands/mail.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/stgit/commands/mail.py b/stgit/commands/mail.py
index a833efc..bdc3fcc 100644
--- a/stgit/commands/mail.py
+++ b/stgit/commands/mail.py
@@ -401,8 +401,8 @@ def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
options.edit_patches = True
descr_lines = descr.split('\n')
- short_descr = descr_lines[0].rstrip()
- long_descr = '\n'.join(descr_lines[1:]).lstrip()
+ short_descr = descr_lines[0].strip()
+ long_descr = '\n'.join([l.rstrip() for l in descr_lines[1:]]).lstrip('\n')
authname = p.get_authname();
authemail = p.get_authemail();
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [StGIT PATCH] Do not mess-up with commit message formatting when sending email
2008-07-31 12:50 [StGIT PATCH] Do not mess-up with commit message formatting when sending email Samuel Tardieu
@ 2008-08-04 14:16 ` Karl Hasselström
2008-08-04 15:19 ` [StGIT v2 " Samuel Tardieu
0 siblings, 1 reply; 5+ messages in thread
From: Karl Hasselström @ 2008-08-04 14:16 UTC (permalink / raw)
To: Samuel Tardieu; +Cc: git, Catalin Marinas
On 2008-07-31 14:50:05 +0200, Samuel Tardieu wrote:
> The short description, which will be used as the email subject, gets
> its leading and trailing whitespaces removed.
OK, good.
> The long description only gets its trailing whitespaces removed to
> preserve commit message formatting, e.g. in the case of a
> ChangeLog-style commit message, as well as empty leading lines.
I'd like a better description of this change, please. If I'm not
mistaken, we used to do _only_ left stripping of the body. You change
that to left stripping of only newlines, but also add right stripping
for each line. I'm all for these changes, but the commit message
confused me a lot.
> - long_descr = '\n'.join(descr_lines[1:]).lstrip()
> + long_descr = '\n'.join([l.rstrip() for l in descr_lines[1:]]).lstrip('\n')
We require Python 2.4 or later, so you can skip the square brackets
here.
--
Karl Hasselström, kha@treskal.com
www.treskal.com/kalle
^ permalink raw reply [flat|nested] 5+ messages in thread
* [StGIT v2 PATCH] Do not mess-up with commit message formatting when sending email
2008-08-04 14:16 ` Karl Hasselström
@ 2008-08-04 15:19 ` Samuel Tardieu
2008-08-04 15:57 ` Karl Hasselström
2008-08-05 20:48 ` Catalin Marinas
0 siblings, 2 replies; 5+ messages in thread
From: Samuel Tardieu @ 2008-08-04 15:19 UTC (permalink / raw)
To: kha; +Cc: git, Catalin Marinas
The short description, which will be used as the email subject,
gets its leading and trailing blanks removed.
The long description gets its trailing blanks removed as well
as any leading empty lines. Leading blanks are left untouched
to preserve the formatting.
Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
---
stgit/commands/mail.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/stgit/commands/mail.py b/stgit/commands/mail.py
index a833efc..61e3f3a 100644
--- a/stgit/commands/mail.py
+++ b/stgit/commands/mail.py
@@ -401,8 +401,8 @@ def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
options.edit_patches = True
descr_lines = descr.split('\n')
- short_descr = descr_lines[0].rstrip()
- long_descr = '\n'.join(descr_lines[1:]).lstrip()
+ short_descr = descr_lines[0].strip()
+ long_descr = '\n'.join(l.rstrip() for l in descr_lines[1:]).lstrip('\n')
authname = p.get_authname();
authemail = p.get_authemail();
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [StGIT v2 PATCH] Do not mess-up with commit message formatting when sending email
2008-08-04 15:19 ` [StGIT v2 " Samuel Tardieu
@ 2008-08-04 15:57 ` Karl Hasselström
2008-08-05 20:48 ` Catalin Marinas
1 sibling, 0 replies; 5+ messages in thread
From: Karl Hasselström @ 2008-08-04 15:57 UTC (permalink / raw)
To: Samuel Tardieu; +Cc: git, Catalin Marinas
Your round-trip time was shorter than mine by a few orders of
magnitude. ;-)
On 2008-08-04 17:19:14 +0200, Samuel Tardieu wrote:
> The long description gets its trailing blanks removed as well as any
> leading empty lines. Leading blanks are left untouched to preserve
> the formatting.
Thanks, much better. Will apply.
--
Karl Hasselström, kha@treskal.com
www.treskal.com/kalle
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [StGIT v2 PATCH] Do not mess-up with commit message formatting when sending email
2008-08-04 15:19 ` [StGIT v2 " Samuel Tardieu
2008-08-04 15:57 ` Karl Hasselström
@ 2008-08-05 20:48 ` Catalin Marinas
1 sibling, 0 replies; 5+ messages in thread
From: Catalin Marinas @ 2008-08-05 20:48 UTC (permalink / raw)
To: Samuel Tardieu; +Cc: kha, git
2008/8/4 Samuel Tardieu <sam@rfc1149.net>:
> The short description, which will be used as the email subject,
> gets its leading and trailing blanks removed.
>
> The long description gets its trailing blanks removed as well
> as any leading empty lines. Leading blanks are left untouched
> to preserve the formatting.
Thanks.
--
Catalin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-08-05 20:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-31 12:50 [StGIT PATCH] Do not mess-up with commit message formatting when sending email Samuel Tardieu
2008-08-04 14:16 ` Karl Hasselström
2008-08-04 15:19 ` [StGIT v2 " Samuel Tardieu
2008-08-04 15:57 ` Karl Hasselström
2008-08-05 20:48 ` Catalin Marinas
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).