##// END OF EJS Templates
filterfiles: Search as long as the target is a prefix of current....
filterfiles: Search as long as the target is a prefix of current. filterfiles was failing to find files for directory arguments if another file existed that started with the directory name and sorted earlier. For example, a manifest of ('foo.h', 'foo/foo') would cause filterfiles('foo') to return nothing. This resolves issue #294.

File last commit:

r2484:eabcda3e default
r2485:885de96e default
Show More
remoterepo.py
23 lines | 593 B | text/x-python | PythonLexer
mpm@selenic.com
Break apart hg.py...
r1089 # remoterepo - remote repositort proxy classes for mercurial
#
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
Eric Hopper
Convert all classes to new-style classes by deriving them from object.
r1559 class remoterepository(object):
Vadim Gelfer
remove duplicate code.
r2484 def dev(self):
return -1
mpm@selenic.com
Break apart hg.py...
r1089 def local(self):
return False
Eric Hopper
Convert all classes to new-style classes by deriving them from object.
r1559 class remotelock(object):
mpm@selenic.com
Break apart hg.py...
r1089 def __init__(self, repo):
self.repo = repo
def release(self):
self.repo.unlock()
self.repo = None
def __del__(self):
if self.repo:
self.release()