X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/f8b34544329e05b7c27990ffe9c241df877cd95c..c1f370d46a0e1d1c8d99e5d67fd9553e10c10158:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index b42a463..f05688d 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -144,12 +144,12 @@ class Lesson(models.Model): def build_html(self, infile=None): from librarian.parser import WLDocument - from .publish import HtmlFormat + from .publish import HtmlFormat, OrmDocProvider if infile is None: - wldoc = WLDocument.from_file(self.xml_file.path) + wldoc = WLDocument.from_file(self.xml_file.path, provider=OrmDocProvider) else: - wldoc = WLDocument(infile) + wldoc = WLDocument(infile, provider=OrmDocProvider()) html = HtmlFormat(wldoc).build() self.html_file.save("%s.html" % self.slug, File(open(html.get_filename())))