2 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 as
6 published by the Free Software Foundation.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 from optparse import OptionParser, make_option
20 from pydoc import pager
22 from stgit.commands.common import *
23 from stgit.utils import *
24 from stgit import stack, git
27 help = 'show the patches modifying a file'
28 usage = """%prog [options] <file> [<file>...]
30 Show the applied patches modifying the given files. The '--diff'
31 option also lists the patch log and the diff for the given files."""
33 options = [make_option('-d', '--diff',
34 help = 'show the diff for the given files',
35 action = 'store_true')]
38 '-------------------------------------------------------------------------------\n' \
40 '-------------------------------------------------------------------------------\n' \
45 def func(parser, options, args):
46 """Show the patches modifying a file
49 parser.error('incorrect number of arguments')
51 applied = crt_series.get_applied()
53 raise CmdException, 'No patches applied'
55 revs = git.modifying_revs(args, git_id('base'))
58 # build the patch/revision mapping
61 patch = crt_series.get_patch(name)
62 rev_patch[patch.get_top()] = patch
64 # print the patch names
68 patch = rev_patch[rev]
70 diff_output += diff_tmpl \
71 % (patch.get_name(), patch.get_description(),
72 git.diff(args, patch.get_bottom(),
75 print patch.get_name()