Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A2C37CF08 for ; Thu, 4 Jul 2013 10:47:07 +0000 (UTC) Received: (qmail 51665 invoked by uid 500); 4 Jul 2013 10:47:07 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 51646 invoked by uid 500); 4 Jul 2013 10:47:07 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 51639 invoked by uid 99); 4 Jul 2013 10:47:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jul 2013 10:47:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jul 2013 10:47:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 51AD423888A6; Thu, 4 Jul 2013 10:46:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1499718 - in /subversion/trunk/tools: buildbot/slaves/warnings/ dist/backport.pl Date: Thu, 04 Jul 2013 10:46:43 -0000 To: commits@subversion.apache.org From: danielsh@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130704104643.51AD423888A6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: danielsh Date: Thu Jul 4 10:46:42 2013 New Revision: 1499718 URL: http://svn.apache.org/r1499718 Log: * tools/dist/bacport.pl (vote): When entering a +0, -0, or -1, automatically pop up $EDITOR to enter a reason. (To enter a reason with '+1', use 'e' (or '-1').) Added: subversion/trunk/tools/buildbot/slaves/warnings/ Modified: subversion/trunk/tools/dist/backport.pl Modified: subversion/trunk/tools/dist/backport.pl URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1499718&r1=1499717&r2=1499718&view=diff ============================================================================== --- subversion/trunk/tools/dist/backport.pl (original) +++ subversion/trunk/tools/dist/backport.pl Thu Jul 4 10:46:42 2013 @@ -322,6 +322,7 @@ sub vote { s/^(\s*\Q$vote\E:.*)/"$1, $AVAILID"/me or s/(.*\w.*?\n)/"$1 $vote: $AVAILID\n"/se; + $_ = edit_string $_, $entry->{header} if $vote ne '+1'; print VOTES; } close STATUS;