aboutsummaryrefslogtreecommitdiffstats
path: root/lv2specgen/lv2specgen.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-04 16:16:05 +0000
committerDavid Robillard <d@drobilla.net>2011-11-04 16:16:05 +0000
commitd45e469b43b6ec467e458f719b0dc3b4c8c4a900 (patch)
tree8633c74bdc4ca83ca596c82ce79fae1e83424f37 /lv2specgen/lv2specgen.py
parent6d6e2458c3dff83ee6f68a1c7c5f7ed69bb121ab (diff)
downloadlv2-d45e469b43b6ec467e458f719b0dc3b4c8c4a900.tar.xz
Move everything but basic command line argument handling to specgen().
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-xlv2specgen/lv2specgen.py65
1 files changed, 33 insertions, 32 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index 0b4f77e..949ec08 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -93,8 +93,6 @@ lv2 = rdflib.Namespace('http://lv2plug.in/ns/lv2core#')
doap = rdflib.Namespace('http://usefulinc.com/ns/doap#')
foaf = rdflib.Namespace('http://xmlns.com/foaf/0.1/')
-doc_base = '.'
-
def findStatements(model, s, p, o):
return model.triples([s, p, o])
@@ -857,7 +855,7 @@ def getInstances(model, classes, properties):
return instances
-def specgen(specloc, docdir, template, doclinks, instances=False, mode="spec"):
+def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=False, mode="spec"):
"""The meat and potatoes: Everything starts here."""
global spec_url
@@ -866,6 +864,30 @@ def specgen(specloc, docdir, template, doclinks, instances=False, mode="spec"):
global spec_pre
global ns_list
+ # Template
+ temploc = os.path.join(indir, "template.html")
+ template = None
+ try:
+ f = open(temploc, "r")
+ template = f.read()
+ except Exception:
+ e = sys.exc_info()[1]
+ print("Error reading from template \"" + temploc + "\": " + str(e))
+ usage()
+
+ # Footer
+ footerloc = os.path.join(indir, "footer.html")
+ footer = ''
+ try:
+ f = open(footerloc, "r")
+ footer = f.read()
+ except Exception:
+ e = sys.exc_info()[1]
+ print("Error reading from footer \"" + footerloc + "\": " + str(e))
+ usage()
+
+ template = template.replace('@FOOTER@', footer)
+
# Build a symbol -> link mapping for external links
dlfile = open(doclinks, 'r')
for line in dlfile:
@@ -937,6 +959,7 @@ def specgen(specloc, docdir, template, doclinks, instances=False, mode="spec"):
filename = os.path.basename(specloc)
basename = filename[0:filename.rfind('.')]
+ template = template.replace('@STYLE_URI@', os.path.join(doc_base, style_uri))
template = template.replace('@PREFIXES@', str(prefixes_html))
template = template.replace('@BASE@', spec_ns_str)
template = template.replace('@AUTHORS@', specAuthors(m, spec_url))
@@ -1039,13 +1062,14 @@ def getOntologyNS(m):
def usage():
script = os.path.basename(sys.argv[0])
- print("""Usage: %s ONTOLOGY TEMPLATE STYLE OUTPUT [FLAGS]
+ print("""Usage: %s ONTOLOGY INDIR STYLE OUTPUT [FLAGS]
ONTOLOGY : Path to ontology file
- TEMPLATE : HTML template path
- STYLE : CSS style path
+ INDIR : Input directory containing template.html footer.html style.css
+ STYLE : Stylesheet URI
OUTPUT : HTML output path
BASE : Documentation output base URI
+ DOCLINKS : Doxygen links file
Optional flags:
-i : Document class/property instances (disabled by default)
@@ -1068,29 +1092,8 @@ if __name__ == "__main__":
# Ontology
specloc = "file:" + str(args[0])
- # Template
- temploc = args[1]
- template = None
- try:
- f = open(temploc, "r")
- template = f.read()
- except Exception:
- e = sys.exc_info()[1]
- print("Error reading from template \"" + temploc + "\": " + str(e))
- usage()
-
- # Footer
- footerloc = temploc.replace('template', 'footer')
- footer = ''
- try:
- f = open(footerloc, "r")
- footer = f.read()
- except Exception:
- e = sys.exc_info()[1]
- print("Error reading from footer \"" + footerloc + "\": " + str(e))
- usage()
-
- template = template.replace('@FOOTER@', footer)
+ # Input directory
+ indir = args[1]
# Style
style_uri = args[2]
@@ -1104,8 +1107,6 @@ if __name__ == "__main__":
# C symbol -> doxygen link mapping
doc_links = args[5]
- template = template.replace('@STYLE_URI@', os.path.join(doc_base, style_uri))
-
docdir = os.path.join(doc_base, 'ns', 'doc')
# Flags
@@ -1121,4 +1122,4 @@ if __name__ == "__main__":
i += 1
i += 1
- save(dest, specgen(specloc, docdir, template, doc_links, instances=instances))
+ save(dest, specgen(specloc, indir, docdir, style_uri, doc_base, doc_links, instances=instances))