comparison mercurial/interfaces/repository.py @ 50281:f34887316f1f stable

undo-files: factor the vfs map in a repository property We define it in multiple locations and inconsistencies are appearing. So we now have a single definition point.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 06 Mar 2023 13:30:41 +0100
parents ff7134e03629
children 6901916458bd
comparison
equal deleted inserted replaced
50280:5e568d70f54d 50281:f34887316f1f
1522 1522
1523 filtername = interfaceutil.Attribute( 1523 filtername = interfaceutil.Attribute(
1524 """Name of the repoview that is active on this repo.""" 1524 """Name of the repoview that is active on this repo."""
1525 ) 1525 )
1526 1526
1527 vfs_map = interfaceutil.Attribute(
1528 """a bytes-key → vfs mapping used by transaction and others"""
1529 )
1530
1527 wvfs = interfaceutil.Attribute( 1531 wvfs = interfaceutil.Attribute(
1528 """VFS used to access the working directory.""" 1532 """VFS used to access the working directory."""
1529 ) 1533 )
1530 1534
1531 vfs = interfaceutil.Attribute( 1535 vfs = interfaceutil.Attribute(