From 9b4d2917ce2e61ea3854670e80730dfed42c1e88 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 20 Oct 2011 20:21:53 +0000 Subject: Fix invalid markup in output. --- lv2specgen/lv2specgen.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 97d50db..3b2ede3 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -590,7 +590,7 @@ def buildIndex(m, classlist, proplist, instalist=None): return tree azlist += class_tree(c) azlist += '' - azlist = """%s\n""" % azlist + azlist += '\n' if (len(proplist) > 0): azlist += "
Properties
" @@ -768,7 +768,10 @@ def getInstances(model, classes, properties): if inst not in instances and str(inst) != spec_url: instances.append(inst) for i in model.find_statements(RDF.Statement(None, rdf.type, None)): - if not i.subject.is_resource() or i.subject in classes or i.subject in instances: + if ((not i.subject.is_resource()) + or (i.subject in classes) + or (i.subject in instances) + or (i.subject in properties)): continue full_uri = str(i.subject.uri) if (full_uri.startswith(spec_ns_str)): -- cgit v1.2.1