# and move the gallery starts
if gm.was_merged:
for chunk in self[len(self) - len_other:]:
- chunk.gallery_start += gm.dest_size - gm.num_deleted
+ old_start = chunk.gallery_start or 1
+ chunk.gallery_start = old_start + gm.dest_size - gm.num_deleted
chunk.save()
other.delete()
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:
valid_about = self.correct_about()
assert bi.about == valid_about, _("rdf:about is not") + " " + valid_about
+ def publishable_error(self):
+ try:
+ return self.assert_publishable()
+ except AssertionError, e:
+ return e
+ else:
+ return None
+
def hidden(self):
return self.slug.startswith('.')
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):
"""