def load(self, entryid): """ Takes an entryid and keeps track of the filename. We only open the file when it's requested with getEntry. """ BlosxomCacheBase.load(self, entryid) filename = os.path.join(self._config, entryid.replace('/', '_')) self._cachefile = filename + '.entrypickle'
def load(self, entryid): """ Loads a specific entryid. """ BlosxomCacheBase.load(self, entryid)
def load(self, entryid): BlosxomCacheBase.load(self, entryid)
def load(self, entryid): BlosxomCacheBase.load(self, entryid) self._cacheFile = os.path.join(self._config, entryid.replace('/', '_')) + \ '.entrypickle'
def load(self, entryid): BlosxomCacheBase.load(self, entryid) self._cacheFile = os.path.join(self._config, entryid.replace("/", "_")) + ".entrypickle"