Exemplo n.º 1
0
    def putClubSeasons(self, clubDbID, seasons):
        if len(seasons):
            self._cache[clubDbID] = cache = {}
            for sID, d in seasons:
                cache[sID] = ClubDossier(dossiers2.getClubDossierDescr(d), clubDbID)

        return self._cache[clubDbID]
Exemplo n.º 2
0
 def getTotalDossier(self):
     return ClubDossier(self._clubDescr.getDossierDescr()[1],
                        self.__clubDbID)
Exemplo n.º 3
0
 def getTotalDossier(self):
     dossierDescr = getClubDossierDescr(self.clubTotalDossier or '')
     return ClubDossier(dossierDescr, self.clubDbID)
Exemplo n.º 4
0
 def getSeasonDossier(self):
     return ClubDossier(self._clubDescr.getDossierDescr()[0],
                        self.__clubDbID)