children.py
45 lines
| 1.4 KiB
| text/x-python
|
PythonLexer
/ hgext / children.py
Thomas Arendsen Hein
|
r4783 | # Mercurial extension to provide the 'hg children' command | ||
# | ||||
# Copyright 2007 by Intevation GmbH <intevation@intevation.de> | ||||
Martin Geisler
|
r8228 | # | ||
Thomas Arendsen Hein
|
r4783 | # Author(s): | ||
# Thomas Arendsen Hein <thomas@intevation.de> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Thomas Arendsen Hein
|
r4783 | |||
Dirkjan Ochtman
|
r8934 | '''command to display child changesets''' | ||
Dirkjan Ochtman
|
r8873 | |||
Thomas Arendsen Hein
|
r4785 | from mercurial import cmdutil | ||
Thomas Arendsen Hein
|
r6192 | from mercurial.commands import templateopts | ||
Thomas Arendsen Hein
|
r4783 | from mercurial.i18n import _ | ||
def children(ui, repo, file_=None, **opts): | ||||
Martin Geisler
|
r8026 | """show the children of the given or working directory revision | ||
Thomas Arendsen Hein
|
r4783 | |||
Martin Geisler
|
r9253 | Print the children of the working directory's revisions. If a | ||
revision is given via -r/--rev, the children of that revision will | ||||
be printed. If a file argument is given, revision in which the | ||||
file was last changed (after the working directory revision or the | ||||
argument to --rev if given) is printed. | ||||
Thomas Arendsen Hein
|
r4783 | """ | ||
rev = opts.get('rev') | ||||
if file_: | ||||
ctx = repo.filectx(file_, changeid=rev) | ||||
else: | ||||
Matt Mackall
|
r6747 | ctx = repo[rev] | ||
Thomas Arendsen Hein
|
r4783 | |||
displayer = cmdutil.show_changeset(ui, repo, opts) | ||||
Dirkjan Ochtman
|
r7369 | for cctx in ctx.children(): | ||
displayer.show(cctx) | ||||
Robert Bachmann
|
r10152 | displayer.close() | ||
Thomas Arendsen Hein
|
r4783 | |||
cmdtable = { | ||||
"children": | ||||
(children, | ||||
FUJIWARA Katsunori
|
r11321 | [('r', 'rev', '', | ||
_('show children of the specified revision'), _('REV')), | ||||
Thomas Arendsen Hein
|
r6192 | ] + templateopts, | ||
Thomas Arendsen Hein
|
r4783 | _('hg children [-r REV] [FILE]')), | ||
} | ||||