X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/8e983105bb2635f3c90e7ddef54be5c36d814df1..c40f96736a25a3d5a2c968bd85d55d790a71073c:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index 45284cb..8ecf7ac 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -121,7 +121,7 @@ class Lesson(models.Model): return 'catalogue_lesson', [self.slug] @classmethod - def publish(cls, infile, ignore_incomplete=False): + def publish(cls, infile, ignore_incomplete=False, repackage_level=False): from librarian.parser import WLDocument from django.core.files.base import ContentFile wldoc = WLDocument(infile) @@ -150,22 +150,22 @@ class Lesson(models.Model): if lesson.type != 'project': lesson.build_pdf(student=True) lesson.build_package(student=True) + if repackage_level: + lesson.level.build_packages() return lesson def republish(self, repackage_level=True, attachments=None): from librarian import IOFile import os.path + from django.conf import settings 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) + full_name = os.path.join(settings.MEDIA_ROOT, attachment.file.name) + f = IOFile.from_filename(full_name) + attachments['%s.%s' % (attachment.slug, attachment.ext)] = f infile = IOFile.from_filename(self.xml_file.path, attachments=attachments) - Lesson.publish(infile) - if repackage_level: - self.level.build_packages() + Lesson.publish(infile, repackage_level=repackage_level) def populate_dc(self): from librarian.parser import WLDocument @@ -289,14 +289,14 @@ class Lesson(models.Model): return None def requires_internet(self): - return 'internet' in self.dc.get('requires', []) + return any(requirement in self.dc.get('requires', []) for requirement in ('internet', 'Internet')) class Attachment(models.Model): slug = models.CharField(max_length=255) ext = models.CharField(max_length=15) lesson = models.ForeignKey(Lesson) - file = models.FileField(upload_to="catalogue/attachment", storage=bofh_storage) + file = models.FileField(upload_to="catalogue/attachment", storage=bofh_storage, max_length=255) class Meta: ordering = ['slug', 'ext']