aboutsummaryrefslogtreecommitdiffstats
path: root/lv2specgen/lv2specgen.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-14 05:04:59 +0000
committerDavid Robillard <d@drobilla.net>2011-11-14 05:04:59 +0000
commit0a286773059f6c1f1bd3d2001f76b33dc29cee5a (patch)
treefb832a75ea1c7a148d66577ab670cc5e7f28e774 /lv2specgen/lv2specgen.py
parent1d75440f9719b9f2de57f6250f574b427939ea50 (diff)
downloadlv2-0a286773059f6c1f1bd3d2001f76b33dc29cee5a.tar.xz
Simplify footer (remove images).
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-xlv2specgen/lv2specgen.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index 5c62701..c1c7741 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -934,14 +934,6 @@ def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=Fal
f = open(temploc, "r")
template = f.read()
- # Footer
- footerloc = os.path.join(indir, "footer.html")
- footer = ''
- f = open(footerloc, "r")
- footer = f.read()
-
- template = template.replace('@FOOTER@', footer)
-
# Build a symbol -> link mapping for external links
dlfile = open(doclinks, 'r')
for line in dlfile:
@@ -1118,7 +1110,7 @@ def usage():
print("""Usage: %s ONTOLOGY INDIR STYLE OUTPUT [FLAGS]
ONTOLOGY : Path to ontology file
- INDIR : Input directory containing template.html footer.html style.css
+ INDIR : Input directory containing template.html and style.css
STYLE : Stylesheet URI
OUTPUT : HTML output path
BASE : Documentation output base URI