equal
deleted
inserted
replaced
504 c.readpending('00changelog.i.a') |
504 c.readpending('00changelog.i.a') |
505 return c |
505 return c |
506 |
506 |
507 @storecache('00manifest.i') |
507 @storecache('00manifest.i') |
508 def manifest(self): |
508 def manifest(self): |
|
509 return self._constructmanifest() |
|
510 |
|
511 def _constructmanifest(self): |
|
512 # This is a temporary function while we migrate from manifest to |
|
513 # manifestlog. It allows bundlerepo and unionrepo to intercept the |
|
514 # manifest creation. |
509 return manifest.manifest(self.svfs) |
515 return manifest.manifest(self.svfs) |
510 |
516 |
511 @property |
517 @property |
512 def manifestlog(self): |
518 def manifestlog(self): |
513 return manifest.manifestlog(self.svfs, self) |
519 return manifest.manifestlog(self.svfs, self) |