diff options
Diffstat (limited to 'lv2specgen')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 4 |
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') |