fnp
/
edumed.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
workshop banner
[edumed.git]
/
catalogue
/
models.py
diff --git
a/catalogue/models.py
b/catalogue/models.py
index
f518743
..
75feba1
100644
(file)
--- a/
catalogue/models.py
+++ b/
catalogue/models.py
@@
-159,9
+159,9
@@
class Lesson(models.Model):
if attachments is None:
attachments = {}
for attachment in self.attachment_set.all():
if attachments is None:
attachments = {}
for attachment in self.attachment_set.all():
- full_name = os.path.join(settings.MEDIA_ROOT,
'%s.%s' % (attachment.file.name, attachment.ext)
)
+ full_name = os.path.join(settings.MEDIA_ROOT,
attachment.file.name
)
f = IOFile.from_filename(full_name)
f = IOFile.from_filename(full_name)
- attachments[
attachment.slug
] = f
+ attachments[
'%s.%s' % (attachment.slug, attachment.ext)
] = f
infile = IOFile.from_filename(self.xml_file.path, attachments=attachments)
Lesson.publish(infile)
if repackage_level:
infile = IOFile.from_filename(self.xml_file.path, attachments=attachments)
Lesson.publish(infile)
if repackage_level:
@@
-289,7
+289,7
@@
class Lesson(models.Model):
return None
def requires_internet(self):
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):
class Attachment(models.Model):