# HG changeset patch # User Benoit Boissinot # Date 1224364823 -7200 # Node ID 26632498368184b6d1889c11959627af32c71cf9 # Parent 6f4a253f2a64f3444d13ab8e6dff9d3e29c5f947# Parent 2bbdae4f39d13f068075eaea5b6e9a3fa1a30dac merge with crew diff -r 6f4a253f2a64 -r 266324983681 hgext/mq.py --- a/hgext/mq.py Sat Oct 18 23:06:29 2008 +0200 +++ b/hgext/mq.py Sat Oct 18 23:20:23 2008 +0200 @@ -2331,6 +2331,23 @@ repo.__class__ = mqrepo repo.mq = queue(ui, repo.join("")) +def uisetup(ui): + # override import to disallow importing over patch + importalias, importcmd = cmdutil.findcmd(ui, 'import', commands.table) + for alias, cmd in commands.table.iteritems(): + if cmd is importcmd: + importkey = alias + break + orig_import = importcmd[0] + def mqimport(ui, repo, patch1, *patches, **opts): + if hasattr(repo, 'abort_if_wdir_patched'): + repo.abort_if_wdir_patched(_('cannot import over an applied patch'), + opts.get('force')) + orig_import(ui, repo, patch1, *patches, **opts) + importcmd = list(importcmd) + importcmd[0] = mqimport + commands.table[importkey] = tuple(importcmd) + seriesopts = [('s', 'summary', None, _('print first line of patch header'))] cmdtable = { diff -r 6f4a253f2a64 -r 266324983681 tests/test-mq --- a/tests/test-mq Sat Oct 18 23:06:29 2008 +0200 +++ b/tests/test-mq Sat Oct 18 23:20:23 2008 +0200 @@ -199,6 +199,14 @@ echo % push should fail hg push ../../k +echo % import should fail +hg st . +echo foo >> ../a +hg diff > ../../import.diff +hg revert --no-backup ../a +hg import ../../import.diff +hg st + echo % qunapplied hg qunapplied diff -r 6f4a253f2a64 -r 266324983681 tests/test-mq.out --- a/tests/test-mq.out Sat Oct 18 23:06:29 2008 +0200 +++ b/tests/test-mq.out Sat Oct 18 23:20:23 2008 +0200 @@ -169,6 +169,8 @@ % push should fail pushing to ../../k abort: source has mq patches applied +% import should fail +abort: cannot import over an applied patch % qunapplied test2.patch % qpush/qpop with index