From db32487a23a07dcf62686480aa8642c4795f3787 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 14 Nov 2011 01:23:22 +0000 Subject: Make all lv2:documentation valid XHTML Basic 1.1. Validate lv2:documentation in lv2specgen (if lxml is available). --- lv2specgen/lv2specgen.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 428a6ef..5c62701 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -46,6 +46,12 @@ import re import sys import xml.sax.saxutils +try: + from lxml import etree + have_lxml = True +except: + have_lxml = False + try: import pygments import pygments.lexers @@ -70,6 +76,7 @@ spec_url = None spec_ns_str = None spec_ns = None spec_pre = None +specgendir = None ns_list = { "http://www.w3.org/1999/02/22-rdf-syntax-ns#" : "rdf", "http://www.w3.org/2000/01/rdf-schema#" : "rdfs", @@ -230,6 +237,29 @@ def getComment(m, urinode, classlist): c = findOne(m, urinode, lv2.documentation, None) if c: markup = getLiteralString(getObject(c)) + if have_lxml: + try: + # Parse and validate documentation as XHTML Basic 1.1 + doc = """ + + + + Validation Skeleton Document + + +%s + + +""" % str(markup.decode()) + + oldcwd = os.getcwd() + os.chdir(specgendir) + parser = etree.XMLParser(dtd_validation=True, no_network=True) + root = etree.fromstring(doc, parser) + os.chdir(oldcwd) + except Exception as e: + print("Invalid lv2:documentation for %s\n%s" % (urinode, e)) # Syntax highlight all C code if have_pygments: @@ -894,6 +924,9 @@ def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=Fal global spec_ns global spec_pre global ns_list + global specgendir + + specgendir = os.path.abspath(indir) # Template temploc = os.path.join(indir, "template.html") -- cgit v1.2.1