Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-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 171C2DF7B for ; Fri, 7 Dec 2012 16:11:49 +0000 (UTC) Received: (qmail 92734 invoked by uid 500); 7 Dec 2012 16:11:49 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 92601 invoked by uid 500); 7 Dec 2012 16:11:48 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 92500 invoked by uid 99); 7 Dec 2012 16:11:48 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Dec 2012 16:11:48 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0A0D031D211; Fri, 7 Dec 2012 16:11:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: johnsca@apache.org To: allura-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [1/21] git commit: [#4691] Fixed description of --all and --step options for refresh-last-commits.py Message-Id: <20121207161148.0A0D031D211@tyr.zones.apache.org> Date: Fri, 7 Dec 2012 16:11:48 +0000 (UTC) Updated Branches: refs/heads/cj/4691 dc1056edf -> 701a73494 (forced update) [#4691] Fixed description of --all and --step options for refresh-last-commits.py Signed-off-by: Cory Johns Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/dddf9943 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/dddf9943 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/dddf9943 Branch: refs/heads/cj/4691 Commit: dddf99431045ee38f211ef19e7e6e14fe21dea69 Parents: 44f59f0 Author: Cory Johns Authored: Wed Dec 5 17:48:24 2012 +0000 Committer: Cory Johns Committed: Fri Dec 7 16:11:27 2012 +0000 ---------------------------------------------------------------------- scripts/refresh-last-commits.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/dddf9943/scripts/refresh-last-commits.py ---------------------------------------------------------------------- diff --git a/scripts/refresh-last-commits.py b/scripts/refresh-last-commits.py index ed753ab..e45bb49 100644 --- a/scripts/refresh-last-commits.py +++ b/scripts/refresh-last-commits.py @@ -181,9 +181,9 @@ def parse_options(): parser.add_argument('--diffs', action='store_true', dest='diffs', default=False, help='Refresh diffs as well as LCDs') parser.add_argument('--all', action='store_const', dest='step', - const=1, default=100, help='Refresh diffs as well as LCDs') + const=1, default=100, help='Refresh the LCD for every commit instead of every 100th') parser.add_argument('--step', action='store', dest='step', - type=int, default=100, help='Refresh diffs as well as LCDs') + type=int, default=100, help='Refresh the LCD for every Nth commit instead of every 100th') return parser.parse_args() if __name__ == '__main__':