X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/e34d67aa6d16443c41215f6ad3aa7737dd14559f..8e983105bb2635f3c90e7ddef54be5c36d814df1:/catalogue/models.py?ds=sidebyside diff --git a/catalogue/models.py b/catalogue/models.py index 2f9a76d..45284cb 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -152,9 +152,17 @@ class Lesson(models.Model): lesson.build_package(student=True) return lesson - def republish(self, repackage_level=True): + def republish(self, repackage_level=True, attachments=None): from librarian import IOFile - infile = IOFile.from_filename(self.xml_file.path) + import os.path + if attachments is None: + attachments = {} + for attachment in self.attachment_set.all(): + f = IOFile.from_filename(attachment.file.name) + name = os.path.basename(attachment.file.name) + attachments[name.decode('utf-8')] = f + attachments.setdefault(name.replace(" ", "").decode('utf-8'), f) + infile = IOFile.from_filename(self.xml_file.path, attachments=attachments) Lesson.publish(infile) if repackage_level: self.level.build_packages()