_new_publishable = models.NullBooleanField(editable=False)
_published = models.NullBooleanField(editable=False)
_on_track = models.IntegerField(null=True, blank=True, db_index=True, editable=False)
- dc_cover_image = models.ForeignKey(Image, blank=True, null=True, db_index=True, on_delete=models.SET_NULL)
+ dc_cover_image = models.ForeignKey(Image, blank=True, null=True,
+ db_index=True, on_delete=models.SET_NULL, editable=False)
dc_slug = models.CharField(max_length=128, null=True, blank=True,
editable=False, db_index=True)
changes = self.get_current_changes(publishable=True)
except self.NoTextError:
raise AssertionError(_('Not all chunks have publishable revisions.'))
- book_xml = self.materialize(changes=changes)
- from librarian.dcparser import BookInfo
from librarian import NoDublinCore, ParseError, ValidationError
try:
- bi = BookInfo.from_string(book_xml.encode('utf-8'), strict=True)
+ bi = self.wldocument(changes=changes, strict=True).book_info
except ParseError, e:
raise AssertionError(_('Invalid XML') + ': ' + unicode(e))
except NoDublinCore:
except:
pass
else:
- if info.cover_source == image.get_absolute_url():
+ if info.cover_source == image.get_full_url():
update['dc_cover_image'] = image
Book.objects.filter(pk=self.pk).update(**update)
changes = self.get_current_changes(publishable)
return compile_text(change.materialize() for change in changes)
- def wldocument(self, publishable=True, changes=None, parse_dublincore=True):
+ def wldocument(self, publishable=True, changes=None,
+ parse_dublincore=True, strict=False):
from catalogue.ebook_utils import RedakcjaDocProvider
from librarian.parser import WLDocument
return WLDocument.from_string(
self.materialize(publishable=publishable, changes=changes),
provider=RedakcjaDocProvider(publishable=publishable),
- parse_dublincore=parse_dublincore)
+ parse_dublincore=parse_dublincore,
+ strict=strict)
def publish(self, user):
"""