X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/a4a0d6ab3c0a97fbb7ffeae0454e448c92cb67ce..a36b71e91ec260eae71f133f450fe4de80974461:/librarian/pyhtml.py diff --git a/librarian/pyhtml.py b/librarian/pyhtml.py index 6bfbf8a..68ae384 100644 --- a/librarian/pyhtml.py +++ b/librarian/pyhtml.py @@ -9,9 +9,7 @@ from xmlutils import Xmill, tag, tagged, ifoption, tag_open_close from librarian import functions import re import random -from copy import deepcopy -IMAGE_THUMB_WIDTH = 300 class EduModule(Xmill): def __init__(self, options=None): @@ -67,12 +65,11 @@ class EduModule(Xmill): toc.append("
  • %s
  • " % atxt) toc = "" % "".join(toc) add_header = "Lekcja: " if self.options['wldoc'].book_info.type in ('course', 'synthetic') else '' - return "

    %s" % add_header, "

    " + toc + return "

    %s" % add_header, "

    " + toc + @tagged("h2") def handle_naglowek_rozdzial(self, element): - return_to_top = u"wróć do spisu treści" - anchor = "".join(tag_open_close("a", name=self.naglowek_to_anchor(element))) - return return_to_top + "

    ", anchor + "

    " + return "", "".join(tag_open_close("a", name=self.naglowek_to_anchor(element))) def handle_uwaga(self, _e): return None @@ -85,7 +82,10 @@ class EduModule(Xmill): } submill = EduModule(dict(self.options.items() + {'sub_gen': True}.items())) - opis = submill.generate(element.xpath('opis')[0]) + if element.xpath('opis'): + opis = submill.generate(element.xpath('opis')[0]) + else: + opis = '' n = element.xpath('wskazowki') if n: wskazowki = submill.generate(n[0]) @@ -151,11 +151,6 @@ u"""%(wskazowki)s # Lists def handle_lista(self, element, attrs={}): ltype = element.attrib.get('typ', 'punkt') - if not element.findall("punkt"): - if ltype == 'czytelnia': - return '

    W przygotowaniu.

    ' - else: - return None if ltype == 'slowniczek': surl = element.attrib.get('src', None) if surl is None: @@ -178,10 +173,7 @@ u"""%(wskazowki)s attrs_s = ' '.join(['%s="%s"' % kv for kv in attrs.items()]) if attrs_s: attrs_s = ' ' + attrs_s - pre, post = '<%s class="lista %s %s"%s>' % (listtag, ltype, classes, attrs_s), '' % listtag - if ltype == 'slowniczek': - post += '

    Zobacz cały słowniczek.

    ' % surl - return pre, post + return '<%s class="lista %s %s"%s>' % (listtag, ltype, classes, attrs_s), '' % listtag def handle_punkt(self, element): if self.options['slowniczek']: @@ -266,45 +258,13 @@ u"""%(wskazowki)s return u"" % def_href, u'%s%s' % (def_err, more_links) - def handle_obraz(self, element): - name = element.attrib.get('nazwa', '').strip() - if not name: - print '!! missing "nazwa"' - return - alt = element.attrib.get('alt', '') - if not alt: - print '** missing "alt"' - slug, ext = name.rsplit('.', 1) - url = self.options['urlmapper'].url_for_image(slug, ext) - thumb_url = self.options['urlmapper'].url_for_image(slug, ext, IMAGE_THUMB_WIDTH) - e = etree.Element("a", attrib={"href": url, "class": "image"}) - e.append(etree.Element("img", attrib={"src": thumb_url, "alt": alt, - "width": str(IMAGE_THUMB_WIDTH)})) - return etree.tostring(e, encoding=unicode), u"" - - def handle_video(self, element): - url = element.attrib.get('url') - if not url: - print '!!