Fix the patch argument parsing for the "show" command
[stgit] / stgit / commands / show.py
CommitLineData
8847a11b
CM
1__copyright__ = """
2Copyright (C) 2006, Catalin Marinas <catalin.marinas@gmail.com>
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License version 2 as
6published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16"""
17
18import sys, os
52f3900c 19from pydoc import pager
575bbdae 20from stgit.argparse import opt
8847a11b 21from stgit.commands.common import *
20a52e06 22from stgit import argparse, git
8847a11b 23
575bbdae 24help = 'Show the commit corresponding to a patch'
33ff9cdd 25kind = 'patch'
575bbdae
KH
26usage = ['[options] [<patch1>] [<patch2>] [<patch3>..<patch4>]']
27description = """
28Show the commit log and the diff corresponding to the given patches.
29The output is similar to that generated by 'git show'."""
8847a11b 30
6c8a90e1
KH
31args = [argparse.patch_range(argparse.applied_patches,
32 argparse.unapplied_patches,
33 argparse.hidden_patches)]
575bbdae 34options = [
6c8a90e1 35 opt('-b', '--branch', args = [argparse.stg_branches],
575bbdae
KH
36 short = 'Use BRANCH instead of the default branch'),
37 opt('-a', '--applied', action = 'store_true',
38 short = 'Show the applied patches'),
39 opt('-u', '--unapplied', action = 'store_true',
40 short = 'Show the unapplied patches'),
41 ] + argparse.diff_opts_option()
8847a11b 42
117ed129 43directory = DirectoryHasRepository(log = False)
8847a11b
CM
44
45def func(parser, options, args):
46 """Show commit log and diff
47 """
7c47eea5 48 if options.applied:
d679e110 49 patches = crt_series.get_applied()
7c47eea5 50 elif options.unapplied:
d679e110 51 patches = crt_series.get_unapplied()
7c47eea5
CM
52 elif len(args) == 0:
53 patches = ['HEAD']
d3b31eea
CM
54 elif '..' in ' '.join(args):
55 # patch ranges
56 applied = crt_series.get_applied()
57 unapplied = crt_series.get_unapplied()
58 patches = parse_patches(args, applied + unapplied + \
59 crt_series.get_hidden(), len(applied))
8847a11b 60 else:
d3b31eea
CM
61 # individual patches or commit ids
62 patches = args
7c47eea5 63
6972fd6b 64 commit_ids = [git_id(crt_series, patch) for patch in patches]
bdf72d71
KH
65 commit_str = '\n'.join([git.pretty_commit(commit_id,
66 flags = options.diff_flags)
7c47eea5 67 for commit_id in commit_ids])
fdf4cb43
CM
68 if commit_str:
69 pager(commit_str)