From c7bcdce232aa701135c1b7272b132961b846c38c Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Mon, 09 Jan 2012 22:21:32 -0500 Subject: [PATCH] Updated to Groovy 1.8.5 --- groovy/sendmail.groovy | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/groovy/sendmail.groovy b/groovy/sendmail.groovy index 5733ae7..0b60dfa 100644 --- a/groovy/sendmail.groovy +++ b/groovy/sendmail.groovy @@ -130,40 +130,40 @@ switch (command.type) { case ReceiveCommand.Type.CREATE: - def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name) + def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name).reverse() commitCount += commits.size() if (commits.size() > 0) { // new branch - changes += "$branchBreak new branch $ref created ($commits.size commits)\n$branchBreak" + changes += "\n$branchBreak new branch $ref created ($commits.size commits)\n$branchBreak" changes += commits.collect(table).join(commitBreak) changes += '\n' } else if (ref.command.refName.startsWith('refs/tags/')) { // new tag - changes += "$branchBreak new tag $ref created\n$branchBreak" + changes += "\n$branchBreak new tag $ref created\n$branchBreak" } else if (ref.command.refName.startsWith('refs/heads/')) { // new branch - changes += "$branchBreak new $ref branch created\n$branchBreak" + changes += "\n$branchBreak new $ref branch created\n$branchBreak" } break case ReceiveCommand.Type.UPDATE: - def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name) + def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name).reverse() commitCount += commits.size() // fast-forward branch commits table - changes += "$branchBreak $ref branch updated ($commits.size commits)\n$branchBreak" + changes += "\n$branchBreak $ref branch updated ($commits.size commits)\n$branchBreak" changes += commits.collect(table).join(commitBreak) changes += '\n' break case ReceiveCommand.Type.UPDATE_NONFASTFORWARD: - def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name) + def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name).reverse() commitCount += commits.size() // non-fast-forward branch commits table - changes += "$branchBreak $ref branch updated [NON fast-forward] ($commits.size commits)\n$branchBreak" + changes += "\n$branchBreak $ref branch updated [NON fast-forward] ($commits.size commits)\n$branchBreak" changes += commits.collect(table).join(commitBreak) changes += '\n' break case ReceiveCommand.Type.DELETE: // deleted branch/tag - changes += "$branchBreak $ref deleted\n$branchBreak" + changes += "\n$branchBreak $ref deleted\n$branchBreak" break default: break @@ -173,4 +173,4 @@ r.close() // tell Gitblit to send the message (Gitblit filters duplicate addresses) -gitblit.sendMail("$emailprefix $user.username pushed $commitCount commits => $repository.name", "$summaryUrl\n\n$changes", toAddresses) \ No newline at end of file +gitblit.sendMail("$emailprefix $user.username pushed $commitCount commits => $repository.name", "$summaryUrl\n$changes", toAddresses) \ No newline at end of file -- Gitblit v1.9.1