From: Radek Czajka Date: Wed, 9 Jun 2010 13:49:53 +0000 (+0200) Subject: better emptiness detection X-Git-Tag: 1.7~286 X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/d43d87400dcc19851442a42ff20af9fc0b549087 better emptiness detection --- diff --git a/librarian/html.py b/librarian/html.py index f163d5b..b622cd8 100644 --- a/librarian/html.py +++ b/librarian/html.py @@ -43,6 +43,9 @@ def substitute_entities(context, text): ns = etree.FunctionNamespace('http://wolnelektury.pl/functions') ns['substitute_entities'] = substitute_entities +def html_has_content(text): + return etree.ETXPath('//p|//{%(ns)s}p|//h1|//{%(ns)s}h1' % {'ns': str(XHTMLNS)})(text) + def transform(input, output_filename=None, is_file=True, \ parse_dublincore=True, stylesheet='legacy', options={}): """Transforms file input_filename in XML to output_filename in XHTML. @@ -66,7 +69,7 @@ def transform(input, output_filename=None, is_file=True, \ result = document.transform(style, **options) del document # no longer needed large object :) - if etree.ETXPath('//p|//{%s}p' % str(XHTMLNS))(result): + if html_has_content(result): add_anchors(result.getroot()) add_table_of_contents(result.getroot())