--- a/mercurial/revset.py Sun Feb 26 16:56:32 2012 +0100
+++ b/mercurial/revset.py Sun Feb 26 17:10:51 2012 +0100
@@ -534,12 +534,16 @@
#
# builds a match object from them and filters subset. Allowed
# prefixes are 'p:' for regular patterns, 'i:' for include
- # patterns and 'x:' for exclude patterns.
+ # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
+ # a revision identifier, or the empty string to reference the
+ # working directory, from which the match object is
+ # initialized. At most one 'r:' argument can be passed.
# i18n: "_matchfiles" is a keyword
l = getargs(x, 1, -1, _("_matchfiles requires at least one argument"))
pats, inc, exc = [], [], []
hasset = False
+ rev = None
for arg in l:
s = getstring(arg, _("_matchfiles requires string arguments"))
prefix, value = s[:2], s[2:]
@@ -549,6 +553,11 @@
inc.append(value)
elif prefix == 'x:':
exc.append(value)
+ elif prefix == 'r:':
+ if rev is not None:
+ raise error.ParseError(_('_matchfiles expected at most one '
+ 'revision'))
+ rev = value
else:
raise error.ParseError(_('invalid _matchfiles prefix: %s') % prefix)
if not hasset and matchmod.patkind(value) == 'set':
@@ -557,9 +566,12 @@
s = []
for r in subset:
c = repo[r]
- if not m or hasset:
+ if not m or (hasset and rev is None):
+ ctx = c
+ if rev is not None:
+ ctx = repo[rev or None]
m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
- exclude=exc, ctx=c)
+ exclude=exc, ctx=ctx)
for f in c.files():
if m(f):
s.append(r)
--- a/tests/test-glog.t Sun Feb 26 16:56:32 2012 +0100
+++ b/tests/test-glog.t Sun Feb 26 17:10:51 2012 +0100
@@ -1539,12 +1539,12 @@
Test falling back to slow path for non-existing files
$ testlog a c
- ('group', ('group', ('func', ('symbol', '_matchfiles'), ('list', ('string', 'p:a'), ('string', 'p:c')))))
+ ('group', ('group', ('func', ('symbol', '_matchfiles'), ('list', ('list', ('string', 'r:'), ('string', 'p:a')), ('string', 'p:c')))))
Test multiple --include/--exclude/paths
$ testlog --include a --include e --exclude b --exclude e a e
- ('group', ('group', ('func', ('symbol', '_matchfiles'), ('list', ('list', ('list', ('list', ('list', ('string', 'p:a'), ('string', 'p:e')), ('string', 'i:a')), ('string', 'i:e')), ('string', 'x:b')), ('string', 'x:e')))))
+ ('group', ('group', ('func', ('symbol', '_matchfiles'), ('list', ('list', ('list', ('list', ('list', ('list', ('string', 'r:'), ('string', 'p:a')), ('string', 'p:e')), ('string', 'i:a')), ('string', 'i:e')), ('string', 'x:b')), ('string', 'x:e')))))
Test glob expansion of pats
@@ -1660,3 +1660,10 @@
|
o 0 add a copies:
+Test "set:..." and parent revision
+
+ $ hg up -q 4
+ $ testlog --include "set:copied()"
+ ('group', ('group', ('func', ('symbol', '_matchfiles'), ('list', ('string', 'r:'), ('string', 'i:set:copied()')))))
+ $ testlog -r "sort(file('set:copied()'), -rev)"
+ ('group', ('group', ('func', ('symbol', 'sort'), ('list', ('func', ('symbol', 'file'), ('string', 'set:copied()')), ('negate', ('symbol', 'rev'))))))