from django.db import models, transaction
from django.template.loader import render_to_string
from django.utils.translation import ugettext_lazy as _
+from django.conf import settings
from slughifi import slughifi
+
import apiclient
-from catalogue.helpers import cached_in_field
+from catalogue.helpers import cached_in_field, GalleryMerger
from catalogue.models import BookPublishRecord, ChunkPublishRecord
from catalogue.signals import post_publish
from catalogue.tasks import refresh_instance, book_content_updated
from catalogue.xml_tools import compile_text, split_xml
-
+import os
+import shutil
+import re
class Book(models.Model):
""" A document edited on the wiki """
chunk.save()
number += 1
assert not other.chunk_set.exists()
+
+ gm = GalleryMerger(self.gallery, other.gallery)
+ self.gallery = gm.merge()
+
+ # 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
+ chunk.save()
+
other.delete()
+
@transaction.commit_on_success
def prepend_history(self, other):
"""Prepend history from all the other book's chunks to own."""
from librarian import NoDublinCore, ParseError, ValidationError
try:
- bi = BookInfo.from_string(book_xml.encode('utf-8'))
+ bi = BookInfo.from_string(book_xml.encode('utf-8'), strict=True)
except ParseError, e:
- raise AssertionError(_('Invalid XML') + ': ' + str(e))
+ raise AssertionError(_('Invalid XML') + ': ' + unicode(e))
except NoDublinCore:
raise AssertionError(_('No Dublin Core found.'))
except ValidationError, e:
- raise AssertionError(_('Invalid Dublin Core') + ': ' + str(e))
+ raise AssertionError(_('Invalid Dublin Core') + ': ' + unicode(e))
valid_about = self.correct_about()
assert bi.about == valid_about, _("rdf:about is not") + " " + valid_about