aboutsummaryrefslogtreecommitdiffstats
path: root/lv2specgen/lv2specgen.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-06 06:27:21 +0000
committerDavid Robillard <d@drobilla.net>2010-10-06 06:27:21 +0000
commitda7098065a000bae4ea5308d7fab32029d75db6c (patch)
tree31f1f4a724a288bf333fec3b92c43a86f385fb71 /lv2specgen/lv2specgen.py
parent38d8a847b9d472f58cca37567be3200f48f4b07e (diff)
downloadlv2-da7098065a000bae4ea5308d7fab32029d75db6c.tar.xz
Generate all releases in the same directory.
Link to individual release as well as all releases in generated documentation.
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-xlv2specgen/lv2specgen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index 00290eb..527c11d 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -714,9 +714,9 @@ def specgen(specloc, docdir, template, instances=False, mode="spec"):
bundle_path = os.path.split(specloc[specloc.find(':')+1:])[0]
header_path = bundle_path + '/' + basename + '.h'
- other_files = '<li><a href=".">Bundle</a></li>\n'
+ other_files = '<li><a href=".">Online Bundle</a></li>\n'
if revision and revision[0] != '0':
- other_files += '<li><a href="http://lv2plug.in/spec">Releases</a></li>\n'
+ other_files += '<li><a href="http://lv2plug.in/spec/lv2-%s-%s.tar.gz">Release</a> (<a href="http://lv2plug.in/spec">all releases</a>)</li>\n' % (basename, revision[0])
if os.path.exists(os.path.abspath(header_path)):
other_files += '<li><a href="' + docdir + '/html/%s">Header Documentation</a></li>\n' % (
basename + '_8h.html')