X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/73b6a1639ba8f9f5fc7615c136364fdba73e5bb2..48a8d1d73adefae7f0c58015494ce956d7cd70df:/src/oai/handlers.py diff --git a/src/oai/handlers.py b/src/oai/handlers.py index 6fbcd4271..16d760911 100644 --- a/src/oai/handlers.py +++ b/src/oai/handlers.py @@ -56,7 +56,6 @@ def nsdcterms(name): return '{%s}%s' % (NS_DCTERMS, name) -# WTF class Catalogue(common.ResumptionOAIPMH): TAG_CATEGORIES = ['author', 'epoch', 'kind', 'genre'] @@ -99,14 +98,14 @@ class Catalogue(common.ResumptionOAIPMH): identifier = self.slug_to_identifier(book.slug) if isinstance(book, Book): # setSpec = map(self.tag_to_setspec, book.tags.filter(category__in=self.TAG_CATEGORIES)) - header = common.Header(identifier, make_time_naive(book.changed_at), [], False) + header = common.Header(None, identifier, make_time_naive(book.changed_at), [], False) if not headers_only: - meta = common.Metadata(self.metadata(book)) + meta = common.Metadata(None, self.metadata(book)) about = None elif isinstance(book, Deleted): - header = common.Header(identifier, make_time_naive(book.deleted_at), [], True) + header = common.Header(None, identifier, make_time_naive(book.deleted_at), [], True) if not headers_only: - meta = common.Metadata({}) + meta = common.Metadata(None, {}) about = None else: raise TypeError('Unknown book class') @@ -117,7 +116,7 @@ class Catalogue(common.ResumptionOAIPMH): def identify(self, **kw): ident = common.Identify( 'Wolne Lektury', # generate - '%s/oaipmh' % unicode(WL_BASE), # generate + '%s/oaipmh' % str(WL_BASE), # generate '2.0', # version [m[1] for m in settings.MANAGERS], # adminEmails make_time_naive(self.earliest_datestamp), # earliest datestamp of any change