mercurial/localrepo.py
changeset 12174 7bccd04292a2
parent 12166 441a74b8def1
child 12175 c0a8f9dea0f6
equal deleted inserted replaced
12173:5b849148b620 12174:7bccd04292a2
   130         # been rejected before, such as the above cat command if sub/
   130         # been rejected before, such as the above cat command if sub/
   131         # is a subrepository now, but was a normal directory before.
   131         # is a subrepository now, but was a normal directory before.
   132         # The old path auditor would have rejected by mistake since it
   132         # The old path auditor would have rejected by mistake since it
   133         # panics when it sees sub/.hg/.
   133         # panics when it sees sub/.hg/.
   134         #
   134         #
   135         # All in all, checking against the working copy parent
   135         # All in all, checking against the working copy seems sensible
   136         # revision seems sensible since we want to prevent access to
   136         # since we want to prevent access to nested repositories on
   137         # nested repositories on the filesystem *now*.
   137         # the filesystem *now*.
   138         ctx = self['.']
   138         ctx = self[None]
   139         parts = util.splitpath(subpath)
   139         parts = util.splitpath(subpath)
   140         while parts:
   140         while parts:
   141             prefix = os.sep.join(parts)
   141             prefix = os.sep.join(parts)
   142             if prefix in ctx.substate:
   142             if prefix in ctx.substate:
   143                 if prefix == subpath:
   143                 if prefix == subpath: