vfs: rename auditvfs to proxyvfs
Since we've removed mustaudit property, auditvfs has no auditing business.
It's just a utility class for vfs wrappers.
--- a/mercurial/store.py Fri Jul 07 23:19:31 2017 +0900
+++ b/mercurial/store.py Fri Jul 07 23:40:00 2017 +0900
@@ -475,9 +475,9 @@
self._load()
return iter(self.entries)
-class _fncachevfs(vfsmod.abstractvfs, vfsmod.auditvfs):
+class _fncachevfs(vfsmod.abstractvfs, vfsmod.proxyvfs):
def __init__(self, vfs, fnc, encode):
- vfsmod.auditvfs.__init__(self, vfs)
+ vfsmod.proxyvfs.__init__(self, vfs)
self.fncache = fnc
self.encode = encode
--- a/mercurial/vfs.py Fri Jul 07 23:19:31 2017 +0900
+++ b/mercurial/vfs.py Fri Jul 07 23:40:00 2017 +0900
@@ -441,7 +441,7 @@
opener = vfs
-class auditvfs(object):
+class proxyvfs(object):
def __init__(self, vfs):
self.vfs = vfs
@@ -453,11 +453,11 @@
def options(self, value):
self.vfs.options = value
-class filtervfs(abstractvfs, auditvfs):
+class filtervfs(abstractvfs, proxyvfs):
'''Wrapper vfs for filtering filenames with a function.'''
def __init__(self, vfs, filter):
- auditvfs.__init__(self, vfs)
+ proxyvfs.__init__(self, vfs)
self._filter = filter
def __call__(self, path, *args, **kwargs):
@@ -471,11 +471,11 @@
filteropener = filtervfs
-class readonlyvfs(abstractvfs, auditvfs):
+class readonlyvfs(abstractvfs, proxyvfs):
'''Wrapper vfs preventing any writing.'''
def __init__(self, vfs):
- auditvfs.__init__(self, vfs)
+ proxyvfs.__init__(self, vfs)
def __call__(self, path, mode='r', *args, **kw):
if mode not in ('r', 'rb'):