Slightly modify the "publish" command description
[stgit] / stgit / commands / top.py
CommitLineData
fcee87cf
CM
1
2__copyright__ = """
3Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License version 2 as
7published by the Free Software Foundation.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
16Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17"""
18
575bbdae 19from stgit.argparse import opt
b7eeeade
CM
20from stgit.commands import common
21from stgit.out import out
6c8a90e1 22from stgit import argparse
fcee87cf 23
575bbdae 24help = 'Print the name of the top patch'
33ff9cdd 25kind = 'stack'
575bbdae
KH
26usage = ['']
27description = """
26aab5b0 28Print the name of the current (topmost) patch."""
fcee87cf 29
6c8a90e1 30args = []
575bbdae 31options = [
6c8a90e1 32 opt('-b', '--branch', args = [argparse.stg_branches],
575bbdae
KH
33 short = 'Use BRANCH instead of the default branch')]
34
b7eeeade 35directory = common.DirectoryHasRepositoryLib()
fcee87cf 36
fcee87cf
CM
37def func(parser, options, args):
38 """Show the name of the topmost patch
39 """
40 if len(args) != 0:
41 parser.error('incorrect number of arguments')
42
b7eeeade
CM
43 stack = directory.repository.get_stack(options.branch)
44 applied = stack.patchorder.applied
45
46 if applied:
47 out.stdout(applied[-1])
fcee87cf 48 else:
b7eeeade 49 raise common.CmdException, 'No patches applied'