This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, 6.0 has been updated
       via  e0e508c68bfa929c39a0355575a2c83c51cd5cb1 (commit)
      from  855c7ee0b6b9df429b36ad91225aa0fa3f0e69d1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e0e508c68bfa929c39a0355575a2c83c51cd5cb1
Author: Sylvain Beucler <[email protected]>
Date:   Wed Jun 10 15:17:59 2015 +0200

    scmhook: svn: commitemail: when file list is too long, mail intro is 
truncated (3k max); place commit message first so it always appears
    Patch by Vincent Lefèvre - 
https://gforge.inria.fr/tracker/index.php?func=detail&aid=17776&group_id=1&atid=110

diff --git 
a/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl 
b/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl
index d0bde7f..672cae8 100755
--- a/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl
+++ b/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl
@@ -474,6 +474,9 @@ if ($mode eq 'commit')
     push(@body, "Date: $date\n");
     push(@body, "New Revision: $rev\n");
     push(@body, "\n");
+    push(@body, "Log:\n");
+    push(@body, @log);
+    push(@body, "\n");
     if (@adds)
       {
         @adds = sort @adds;
@@ -492,9 +495,6 @@ if ($mode eq 'commit')
         push(@body, "Modified:\n");
         push(@body, map { "   $_\n" } @mods);
       }
-    push(@body, "Log:\n");
-    push(@body, @log);
-    push(@body, "\n");
   }
 elsif ($mode eq 'revprop-change')
   {

-----------------------------------------------------------------------

Summary of changes:
 .../scmhook/library/scmsvn/hooks/commitemail/commit-email.pl        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl 
b/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl
index d0bde7f..672cae8 100755
--- a/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl
+++ b/src/plugins/scmhook/library/scmsvn/hooks/commitemail/commit-email.pl
@@ -474,6 +474,9 @@ if ($mode eq 'commit')
     push(@body, "Date: $date\n");
     push(@body, "New Revision: $rev\n");
     push(@body, "\n");
+    push(@body, "Log:\n");
+    push(@body, @log);
+    push(@body, "\n");
     if (@adds)
       {
         @adds = sort @adds;
@@ -492,9 +495,6 @@ if ($mode eq 'commit')
         push(@body, "Modified:\n");
         push(@body, map { "   $_\n" } @mods);
       }
-    push(@body, "Log:\n");
-    push(@body, @log);
-    push(@body, "\n");
   }
 elsif ($mode eq 'revprop-change')
   {


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to