##// END OF EJS Templates
registrar: move cmdutil.command to registrar module (API)...
registrar: move cmdutil.command to registrar module (API) cmdutil.command wasn't a member of the registrar framework only for a historical reason. Let's make that happen. This patch keeps cmdutil.command as an alias for extension compatibility.

File last commit:

r32337:46ba2cdd default
r32337:46ba2cdd default
Show More
extdiff.py
401 lines | 15.0 KiB | text/x-python | PythonLexer
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333 # extdiff.py - external diff program support for mercurial
#
# Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com>
#
Martin Geisler
updated license to be explicit about GPL version 2
r8225 # This software may be used and distributed according to the terms of the
Matt Mackall
Update license to GPLv2+
r10263 # GNU General Public License version 2 or any later version.
Brendan Cully
Improve extdiff configuration....
r5245
Dirkjan Ochtman
extensions: change descriptions for extensions providing a few commands
r8934 '''command to allow external programs to compare revisions
Dirkjan Ochtman
help: add/fix docstrings for a bunch of extensions
r8873
Cédric Duval
doc: fix quotes mismatches affecting rst
r9286 The extdiff Mercurial extension allows you to use external programs
Martin Geisler
extdiff: wrap docstrings at 70 characters
r9257 to compare revisions, or revision with working directory. The external
diff programs are called with a configurable set of options and two
Brendan Cully
Improve extdiff configuration....
r5245 non-option arguments: paths to directories containing snapshots of
files to compare.
Javi Merino
extdiff: grammar "allows to" -> "allows one to"...
r14327 The extdiff extension also allows you to configure new diff commands, so
Martin Geisler
extdiff: fix reST syntax in module docstring
r11191 you do not need to type :hg:`extdiff -p kdiff3` always. ::
Mathieu Clabaut
Update [extdiff] configuration sample for vimdiff,...
r3127
Brendan Cully
Improve extdiff configuration....
r5245 [extdiff]
# add new command that runs GNU diff(1) in 'context diff' mode
cdiff = gdiff -Nprc5
## or the old way:
#cmd.cdiff = gdiff
#opts.cdiff = -Nprc5
Mathieu Clabaut
Update [extdiff] configuration sample for vimdiff,...
r3127
Matt Harbison
extdiff: allow a preconfigured merge-tool to be invoked...
r23150 # add new command called meld, runs meld (no need to name twice). If
# the meld executable is not available, the meld tool in [merge-tools]
# will be used, if available
Brendan Cully
Improve extdiff configuration....
r5245 meld =
# add new command called vimdiff, runs gvimdiff with DirDiff plugin
Martin Geisler
extdiff: wrap docstrings at 70 characters
r9257 # (see http://www.vim.org/scripts/script.php?script_id=102) Non
# English user, be sure to put "let g:DirDiffDynamicDiffText = 1" in
Brendan Cully
Improve extdiff configuration....
r5245 # your .vimrc
Thomas Arendsen Hein
extdiff: escape filenames with vim/DirDiff and make quoting work with Windows...
r16242 vimdiff = gvim -f "+next" \\
"+execute 'DirDiff' fnameescape(argv(0)) fnameescape(argv(1))"
Brendan Cully
Improve extdiff configuration....
r5245
Martin Geisler
extdiff: fix reST syntax in module docstring
r11191 Tool arguments can include variables that are expanded at runtime::
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184
$parent1, $plabel1 - filename, descriptive label of first parent
$child, $clabel - filename, descriptive label of child revision
$parent2, $plabel2 - filename, descriptive label of second parent
Steven Stallion
extdiff: add repository root as a variable...
r14045 $root - repository root
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184 $parent is an alias for $parent1.
The extdiff extension will look in your [diff-tools] and [merge-tools]
sections for diff tool arguments, when none are specified in [extdiff].
Martin Geisler
extdiff: fix reST syntax in module docstring
r11191 ::
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184 [extdiff]
Martin Geisler
extdiff: fix reST syntax in module docstring
r11191 kdiff3 =
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184
[diff-tools]
kdiff3.diffargs=--L1 '$plabel1' --L2 '$clabel' $parent $child
Martin Geisler
extdiff: fix reST syntax in module docstring
r11191 You can use -I/-X and list of file or directory names like normal
:hg:`diff` command. The extdiff extension makes snapshots of only
needed files, so running the external diff program will actually be
pretty fast (at least faster than having to compare the entire tree).
Brendan Cully
Improve extdiff configuration....
r5245 '''
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333
Pulkit Goyal
py3: make extdiff use absolute_import
r28970 from __future__ import absolute_import
import os
import re
import shutil
import tempfile
Matt Mackall
Simplify i18n imports
r3891 from mercurial.i18n import _
Pulkit Goyal
py3: make extdiff use absolute_import
r28970 from mercurial.node import (
nullid,
short,
)
from mercurial import (
archival,
cmdutil,
commands,
error,
filemerge,
Pulkit Goyal
py3: have a bytes version of shlex.split()...
r30678 pycompat,
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 registrar,
Pulkit Goyal
py3: make extdiff use absolute_import
r28970 scmutil,
util,
)
Brad Schick
extdiff: un-nested two functions...
r5135
Gregory Szorc
extdiff: declare command using decorator
r21246 cmdtable = {}
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 command = registrar.command(cmdtable)
Augie Fackler
extensions: change magic "shipped with hg" string...
r29841 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
Augie Fackler
extensions: document that `testedwith = 'internal'` is special...
r25186 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
# be specifying the version(s) of Mercurial they are tested with, or
# leave the attribute unspecified.
Augie Fackler
extensions: change magic "shipped with hg" string...
r29841 testedwith = 'ships-with-hg-core'
Augie Fackler
hgext: mark all first-party extensions as such
r16743
Matt Harbison
extdiff: add support for subrepos...
r25813 def snapshot(ui, repo, files, node, tmproot, listsubrepos):
Patrick Mezard
extdiff: merge node and working dir snapshot modes
r8064 '''snapshot files as of some revision
if not using snapshot, -I/-X does not work and recursive diff
in tools like kdiff3 and meld displays too many files.'''
Brad Schick
extdiff: un-nested two functions...
r5135 dirname = os.path.basename(repo.root)
if dirname == "":
dirname = "root"
Patrick Mezard
extdiff: merge node and working dir snapshot modes
r8064 if node is not None:
dirname = '%s.%s' % (dirname, short(node))
Brad Schick
extdiff: un-nested two functions...
r5135 base = os.path.join(tmproot, dirname)
os.mkdir(base)
Matt Harbison
extdiff: copy back files to the working directory if the size changed...
r32212 fnsandstat = []
Matt Harbison
extdiff: use archiver to take snapshots of committed revisions...
r25812
Patrick Mezard
extdiff: merge node and working dir snapshot modes
r8064 if node is not None:
ui.note(_('making snapshot of %d files from rev %s\n') %
(len(files), short(node)))
else:
Patrick Mezard
Merge with crew-stable
r8066 ui.note(_('making snapshot of %d files from working directory\n') %
Patrick Mezard
extdiff: merge node and working dir snapshot modes
r8064 (len(files)))
Matt Harbison
extdiff: use archiver to take snapshots of committed revisions...
r25812
if files:
repo.ui.setconfig("ui", "archivemeta", False)
archival.archive(repo, base, node, 'files',
Matt Harbison
extdiff: add support for subrepos...
r25813 matchfn=scmutil.matchfiles(repo, files),
subrepos=listsubrepos)
Matt Harbison
extdiff: use archiver to take snapshots of committed revisions...
r25812
for fn in sorted(files):
wfn = util.pconvert(fn)
ui.note(' %s\n' % wfn)
if node is None:
dest = os.path.join(base, wfn)
Matt Harbison
extdiff: copy back files to the working directory if the size changed...
r32212 fnsandstat.append((dest, repo.wjoin(fn), os.lstat(dest)))
return dirname, fnsandstat
Thomas Arendsen Hein
Remove trailing spaces, fix indentation
r5143
FUJIWARA Katsunori
extdiff: rename the name of an argument for readability...
r23681 def dodiff(ui, repo, cmdline, pats, opts):
Mads Kiilerich
fix trivial spelling errors
r17424 '''Do the actual diff:
Fabio Zadrozny <fabiofz at gmail dot com>
Propagating changes back to working dirs when changing files in external
r6103
- copy to a temp structure if diffing 2 internal revisions
- copy to a temp structure if diffing working revision with
another one and more than 1 file is changed
- just invoke the diff for a single file in the working dir
'''
Gilles Moris
extdiff: add --change option to display single changeset diff...
r7758
revs = opts.get('rev')
change = opts.get('change')
FUJIWARA Katsunori
extdiff: rename the name of an argument for readability...
r23681 do3way = '$parent2' in cmdline
Gilles Moris
extdiff: add --change option to display single changeset diff...
r7758
if revs and change:
msg = _('cannot specify --rev and --change at the same time')
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(msg)
Gilles Moris
extdiff: add --change option to display single changeset diff...
r7758 elif change:
Matt Mackall
scmutil: move revsingle/pair/range from cmdutil...
r14319 node2 = scmutil.revsingle(repo, change, None).node()
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512 node1a, node1b = repo.changelog.parents(node2)
Gilles Moris
extdiff: add --change option to display single changeset diff...
r7758 else:
Matt Mackall
scmutil: move revsingle/pair/range from cmdutil...
r14319 node1a, node2 = scmutil.revpair(repo, revs)
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512 if not revs:
Matt Mackall
misc: replace .parents()[0] with p1()
r13878 node1b = repo.dirstate.p2()
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512 else:
node1b = nullid
# Disable 3-way merge if there is only one parent
if do3way:
if node1b == nullid:
do3way = False
Gilles Moris
extdiff: add --change option to display single changeset diff...
r7758
Matt Harbison
extdiff: add support for subrepos...
r25813 subrepos=opts.get('subrepos')
Matt Mackall
scmutil: switch match users to supplying contexts...
r14671 matcher = scmutil.match(repo[node2], pats, opts)
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 if opts.get('patch'):
if subrepos:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('--patch cannot be used with --subrepos'))
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 if node2 is None:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('--patch requires two revisions'))
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 else:
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 mod_a, add_a, rem_a = map(set, repo.status(node1a, node2, matcher,
Matt Harbison
extdiff: add support for subrepos...
r25813 listsubrepos=subrepos)[:3])
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 if do3way:
mod_b, add_b, rem_b = map(set,
repo.status(node1b, node2, matcher,
listsubrepos=subrepos)[:3])
else:
mod_b, add_b, rem_b = set(), set(), set()
modadd = mod_a | add_a | mod_b | add_b
common = modadd | rem_a | rem_b
if not common:
return 0
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333
tmproot = tempfile.mkdtemp(prefix='extdiff.')
try:
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 if not opts.get('patch'):
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 # Always make a copy of node1a (and node1b, if applicable)
dir1a_files = mod_a | rem_a | ((mod_b | add_b) - add_a)
dir1a = snapshot(ui, repo, dir1a_files, node1a, tmproot,
Matt Harbison
extdiff: add support for subrepos...
r25813 subrepos)[0]
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 rev1a = '@%d' % repo[node1a].rev()
if do3way:
dir1b_files = mod_b | rem_b | ((mod_a | add_a) - add_b)
dir1b = snapshot(ui, repo, dir1b_files, node1b, tmproot,
subrepos)[0]
rev1b = '@%d' % repo[node1b].rev()
else:
dir1b = None
rev1b = ''
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512
Matt Harbison
extdiff: copy back files to the working directory if the size changed...
r32212 fnsandstat = []
Brad Schick
extdiff: do single file diffs from the wc with no copy...
r5137
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 # If node2 in not the wc or there is >1 change, copy it
dir2root = ''
rev2 = ''
if node2:
dir2 = snapshot(ui, repo, modadd, node2, tmproot, subrepos)[0]
rev2 = '@%d' % repo[node2].rev()
elif len(common) > 1:
#we only actually need to get the files to copy back to
#the working dir in this case (because the other cases
#are: diffing 2 revisions or single file -- in which case
#the file is already directly passed to the diff tool).
Matt Harbison
extdiff: copy back files to the working directory if the size changed...
r32212 dir2, fnsandstat = snapshot(ui, repo, modadd, None, tmproot,
subrepos)
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 else:
# This lets the diff tool open the changed file directly
dir2 = ''
dir2root = repo.root
Brad Schick
extdiff: do single file diffs from the wc with no copy...
r5137
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 label1a = rev1a
label1b = rev1b
label2 = rev2
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184
Matt Harbison
extdiff: prepare sections of dodiff() for conditionalizing...
r26227 # If only one change, diff the files instead of the directories
# Handle bogus modifies correctly by checking if the files exist
if len(common) == 1:
common_file = util.localpath(common.pop())
dir1a = os.path.join(tmproot, dir1a, common_file)
label1a = common_file + rev1a
if not os.path.isfile(dir1a):
dir1a = os.devnull
if do3way:
dir1b = os.path.join(tmproot, dir1b, common_file)
label1b = common_file + rev1b
if not os.path.isfile(dir1b):
dir1b = os.devnull
dir2 = os.path.join(dir2root, dir2, common_file)
label2 = common_file + rev2
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 else:
template = 'hg-%h.patch'
cmdutil.export(repo, [repo[node1a].rev(), repo[node2].rev()],
Matt Harbison
extdiff: enable -I/-X with --patch...
r26229 template=repo.vfs.reljoin(tmproot, template),
match=matcher)
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 label1a = cmdutil.makefilename(repo, template, node1a)
label2 = cmdutil.makefilename(repo, template, node2)
dir1a = repo.vfs.reljoin(tmproot, label1a)
dir2 = repo.vfs.reljoin(tmproot, label2)
dir1b = None
label1b = None
Matt Harbison
extdiff: copy back files to the working directory if the size changed...
r32212 fnsandstat = []
Thomas Arendsen Hein
Remove trailing spaces, fix indentation
r5143
Martin Geisler
extdiff: wrap long lines in docstring and comments...
r9945 # Function to quote file/dir names in the argument string.
# When not operating in 3-way mode, an empty string is
# returned for parent2
Augie Fackler
extdiff: move from dict() construction to {} literals...
r20674 replace = {'parent': dir1a, 'parent1': dir1a, 'parent2': dir1b,
'plabel1': label1a, 'plabel2': label1b,
'clabel': label2, 'child': dir2,
'root': repo.root}
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512 def quote(match):
Mads Kiilerich
extdiff: reintroduce backward compatibility with manual quoting of parameters...
r23969 pre = match.group(2)
key = match.group(3)
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512 if not do3way and key == 'parent2':
Mads Kiilerich
extdiff: reintroduce backward compatibility with manual quoting of parameters...
r23969 return pre
return pre + util.shellquote(replace[key])
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512
# Match parent2 first, so 'parent1?' will match both parent1 and parent
Mads Kiilerich
extdiff: reintroduce backward compatibility with manual quoting of parameters...
r23969 regex = (r'''(['"]?)([^\s'"$]*)'''
r'\$(parent2|parent1?|child|plabel1|plabel2|clabel|root)\1')
FUJIWARA Katsunori
extdiff: rename the name of an argument for readability...
r23681 if not do3way and not re.search(regex, cmdline):
cmdline += ' $parent1 $child'
cmdline = re.sub(regex, quote, cmdline)
Sune Foldager
extdiff: add 3-way diff for merge changesets...
r9512
Martin Geisler
do not attempt to translate ui.debug output
r9467 ui.debug('running %r in %s\n' % (cmdline, tmproot))
Simon Farnsworth
extdiff: log time spent in external diff program...
r30982 ui.system(cmdline, cwd=tmproot, blockedtag='extdiff')
Fabio Zadrozny <fabiofz at gmail dot com>
Propagating changes back to working dirs when changing files in external
r6103
Matt Harbison
extdiff: copy back files to the working directory if the size changed...
r32212 for copy_fn, working_fn, st in fnsandstat:
cpstat = os.lstat(copy_fn)
# Some tools copy the file and attributes, so mtime may not detect
# all changes. A size check will detect more cases, but not all.
# The only certain way to detect every case is to diff all files,
# which could be expensive.
Matt Harbison
extdiff: copy back execbit-only changes to the working directory...
r32283 # copyfile() carries over the permission, so the mode check could
# be in an 'elif' branch, but for the case where the file has
# changed without affecting mtime or size.
if (cpstat.st_mtime != st.st_mtime or cpstat.st_size != st.st_size
or (cpstat.st_mode & 0o100) != (st.st_mode & 0o100)):
Martin Geisler
do not attempt to translate ui.debug output
r9467 ui.debug('file changed while diffing. '
'Overwriting: %s (src: %s)\n' % (working_fn, copy_fn))
Fabio Zadrozny <fabiofz at gmail dot com>
Propagating changes back to working dirs when changing files in external
r6103 util.copyfile(copy_fn, working_fn)
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333 return 1
finally:
ui.note(_('cleaning up temp directory\n'))
shutil.rmtree(tmproot)
Yuya Nishihara
extdiff: factor out list of common options
r27680 extdiffopts = [
Gregory Szorc
extdiff: declare command using decorator
r21246 ('o', 'option', [],
_('pass option to comparison program'), _('OPT')),
('r', 'rev', [], _('revision'), _('REV')),
('c', 'change', '', _('change made by revision'), _('REV')),
Matt Harbison
extdiff: add a --patch argument for diffing changeset deltas...
r26228 ('', 'patch', None, _('compare patches for two revisions'))
Yuya Nishihara
extdiff: factor out list of common options
r27680 ] + commands.walkopts + commands.subrepoopts
@command('extdiff',
[('p', 'program', '', _('comparison program to run'), _('CMD')),
] + extdiffopts,
Gregory Szorc
extdiff: define inferrepo in command decorator
r21781 _('hg extdiff [OPT]... [FILE]...'),
inferrepo=True)
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333 def extdiff(ui, repo, *pats, **opts):
'''use external program to diff repository (or selected files)
Show differences between revisions for the specified files, using
Martin Geisler
Change double spaces to single spaces in help texts.
r7983 an external program. The default program used is diff, with
Vadim Gelfer
extdiff: fix bugs. add test.
r2906 default options "-Npru".
Martin Geisler
help texts: write command line switches as -a/--abc
r8076 To select a different program, use the -p/--program option. The
program will be passed the names of two directories to compare. To
pass additional options to the program, use -o/--option. These
will be passed before the names of the directories to compare.
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333
Martin Geisler
extdiff: word-wrap help texts at 70 characters
r7990 When two revision arguments are given, then changes are shown
between those revisions. If only one revision is specified then
that revision is compared to the working directory, and, when no
revisions are specified, the working directory files are compared
to its parent.'''
Peter Arrenbrecht
extdiff: fix defaulting to "diff" if no --program is given
r9519 program = opts.get('program')
option = opts.get('option')
if not program:
program = 'diff'
option = option or ['-Npru']
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 cmdline = ' '.join(map(util.shellquote, [program] + option))
return dodiff(ui, repo, cmdline, pats, opts)
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333
Yuya Nishihara
extdiff: refactor closure of saved diff command as a top-level class...
r29721 class savedcmd(object):
Yuya Nishihara
extdiff: isolate path variable of saved command to independent paragraph...
r29723 """use external program to diff repository (or selected files)
Yuya Nishihara
extdiff: refactor closure of saved diff command as a top-level class...
r29721
Show differences between revisions for the specified files, using
Yuya Nishihara
extdiff: isolate path variable of saved command to independent paragraph...
r29723 the following program::
%(path)s
Yuya Nishihara
extdiff: refactor closure of saved diff command as a top-level class...
r29721
When two revision arguments are given, then changes are shown
between those revisions. If only one revision is specified then
that revision is compared to the working directory, and, when no
revisions are specified, the working directory files are compared
to its parent.
"""
def __init__(self, path, cmdline):
# We can't pass non-ASCII through docstrings (and path is
# in an unknown encoding anyway)
Yuya Nishihara
util: wrap s.encode('string_escape') call for future py3 compatibility
r31451 docpath = util.escapestr(path)
Yuya Nishihara
extdiff: refactor closure of saved diff command as a top-level class...
r29721 self.__doc__ = self.__doc__ % {'path': util.uirepr(docpath)}
self._cmdline = cmdline
def __call__(self, ui, repo, *pats, **opts):
options = ' '.join(map(util.shellquote, opts['option']))
if options:
options = ' ' + options
return dodiff(ui, repo, self._cmdline + options, pats, opts)
Vadim Gelfer
new extension: extdiff. allows to use external diff program.
r2333 def uisetup(ui):
for cmd, path in ui.configitems('extdiff'):
Jordi Gutiérrez Hermoso
extdiff: expand tildes and variables in paths to user-supplied diff programs
r24193 path = util.expandpath(path)
Brendan Cully
Improve extdiff configuration....
r5245 if cmd.startswith('cmd.'):
cmd = cmd[4:]
Matt Mackall
many, many trivial check-code fixups
r10282 if not path:
Matt Harbison
extdiff: allow a preconfigured merge-tool to be invoked...
r23150 path = util.findexe(cmd)
if path is None:
path = filemerge.findexternaltool(ui, cmd) or cmd
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 diffopts = ui.config('extdiff', 'opts.' + cmd, '')
cmdline = util.shellquote(path)
if diffopts:
cmdline += ' ' + diffopts
Brendan Cully
Improve extdiff configuration....
r5245 elif cmd.startswith('opts.'):
continue
else:
if path:
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 # case "cmd = path opts"
cmdline = path
Pulkit Goyal
py3: have a bytes version of shlex.split()...
r30678 diffopts = len(pycompat.shlexsplit(cmdline)) > 1
Brendan Cully
Improve extdiff configuration....
r5245 else:
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 # case "cmd ="
path = util.findexe(cmd)
Matt Harbison
extdiff: allow a preconfigured merge-tool to be invoked...
r23150 if path is None:
path = filemerge.findexternaltool(ui, cmd) or cmd
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 cmdline = util.shellquote(path)
diffopts = False
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184 # look for diff arguments in [diff-tools] then [merge-tools]
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 if not diffopts:
Steve Borho
extdiff: add labels, read diff arguments from [merge-tools]...
r11184 args = ui.config('diff-tools', cmd+'.diffargs') or \
ui.config('merge-tools', cmd+'.diffargs')
if args:
FUJIWARA Katsunori
extdiff: avoid unexpected quoting arguments for external tools (issue4463)...
r23680 cmdline += ' ' + args
Yuya Nishihara
extdiff: use @command decorator to set up diff commands...
r27681 command(cmd, extdiffopts[:], _('hg %s [OPTION]... [FILE]...') % cmd,
Yuya Nishihara
extdiff: refactor closure of saved diff command as a top-level class...
r29721 inferrepo=True)(savedcmd(path, cmdline))
Yuya Nishihara
extdiff: export __doc__ of saved command for translation
r29722
# tell hggettext to extract docstrings from these functions:
i18nfunctions = [savedcmd]