(self, site)
| 31 | class ContentManager(object): |
| 32 | |
| 33 | def __init__(self, site): |
| 34 | self.site = site |
| 35 | self.log = self.site.log |
| 36 | self.contents = ContentDbDict(site) |
| 37 | self.hashfield = PeerHashfield() |
| 38 | self.has_optional_files = False |
| 39 | |
| 40 | # Load all content.json files |
| 41 | def loadContents(self): |
nothing calls this directly
no test coverage detected