X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/c5f4d6f7fc2c876a56e7fcac2a9965e64f05c191..f8b34544329e05b7c27990ffe9c241df877cd95c:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index 916c5b1..b42a463 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -110,25 +110,17 @@ class Lesson(models.Model): slug = wldoc.book_info.url.slug try: lesson = cls.objects.get(slug=slug) + lesson.attachment_set.all().delete() except cls.DoesNotExist: lesson = cls(slug=slug, order=0) - lesson.attachment_set.all().delete() - for att_name, att_file in infile.attachments.items(): - try: - slug, ext = att_name.rsplit('.', 1) - except ValueError: - slug, ext = att_name, '' - attachment = lesson.attachment_set.create(slug=slug, ext=ext) - attachment.file.save(att_name, ContentFile(att_file.get_string())) - # Save XML file lesson.xml_file.save('%s.xml' % slug, ContentFile(xml), save=False) lesson.title = wldoc.book_info.title lesson.level = Level.objects.get(slug=wldoc.book_info.audience) lesson.populate_dc() - lesson.build_html() + lesson.build_html(infile=infile) lesson.build_package() lesson.build_package(student=True) return lesson @@ -150,10 +142,15 @@ class Lesson(models.Model): courses.add(curr.course) self.curriculum_courses = courses - def build_html(self): + def build_html(self, infile=None): from librarian.parser import WLDocument - wldoc = WLDocument.from_file(self.xml_file.path) - html = wldoc.as_html() + from .publish import HtmlFormat + + if infile is None: + wldoc = WLDocument.from_file(self.xml_file.path) + else: + wldoc = WLDocument(infile) + html = HtmlFormat(wldoc).build() self.html_file.save("%s.html" % self.slug, File(open(html.get_filename())))