comparison mercurial/util.py @ 4188:dd0d9bd91e0a

dirstate.statwalk: explicitly test for ignored directories This removes a hack where we appended '/' to a dirname so that: - it would not appear on the "dc" dict - it would always be matched by the match function This was a contorted way of checking if the directory was matched by some hgignore pattern, and it would still fail with some uses of --include/--exclude patterns. Things would still work fine if we removed the check altogether and just appended things to "work" directly, but then we would end up walking ignored directories too, which could be quite a bit of work. This allows further simplification of the match function returned by util._matcher, and fixes walking the working directory with a --include pattern that matches only the end of a name.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Sat, 10 Mar 2007 23:00:54 -0300
parents 9814d600011e
children e8ee8fdeddb1
comparison
equal deleted inserted replaced
4187:9814d600011e 4188:dd0d9bd91e0a
507 if exc: 507 if exc:
508 dummy, exckinds, dummy = normalizepats(exc, 'glob') 508 dummy, exckinds, dummy = normalizepats(exc, 'glob')
509 excmatch = matchfn(exckinds, '(?:/|$)') 509 excmatch = matchfn(exckinds, '(?:/|$)')
510 510
511 return (roots, 511 return (roots,
512 lambda fn: (incmatch(fn) and not excmatch(fn) and 512 lambda fn: (incmatch(fn) and not excmatch(fn) and patmatch(fn)),
513 (fn.endswith('/') or patmatch(fn))),
514 (inc or exc or anypats) and True) 513 (inc or exc or anypats) and True)
515 514
516 def system(cmd, environ={}, cwd=None, onerr=None, errprefix=None): 515 def system(cmd, environ={}, cwd=None, onerr=None, errprefix=None):
517 '''enhanced shell command execution. 516 '''enhanced shell command execution.
518 run with environment maybe modified, maybe in different dir. 517 run with environment maybe modified, maybe in different dir.