# HG changeset patch # User paulo # Date 1531119035 21600 # Node ID 9bd400576469599fb641c5ad0516b7cc45ac99c8 # Parent 259a484f691bc11b65eece17affbcdd5c02b3430 myrss: fix meta viewport scale for mobile optimization, and add extra debug logging line diff -r 259a484f691b -r 9bd400576469 myrss/myrss_app.py --- a/myrss/myrss_app.py Sun Jul 08 23:31:13 2018 -0700 +++ b/myrss/myrss_app.py Mon Jul 09 00:50:35 2018 -0600 @@ -121,6 +121,7 @@ root = html.HTML("html") header = root.head + header.meta(name="viewport", content="width=device-width, initial-scale=1") header.title(page_title) header.link(rel="stylesheet", type="text/css", href="index.css") @@ -135,6 +136,7 @@ (title, link, items) = feed + logging.debug("title: %s", title) body.h2.a(_strip_html(title), href=link, klass="z%d" % (link_z % MAX_LINK_Z)) link_z += 1 p = body.p