diff options
author | David Robillard <d@drobilla.net> | 2010-10-06 05:52:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-06 05:52:35 +0000 |
commit | 38d8a847b9d472f58cca37567be3200f48f4b07e (patch) | |
tree | d77878017ffedf86dc9e3e41a506c3daa98e61b9 /lv2specgen/lv2specgen.py | |
parent | 46d38bde1bdc038fd4a8c3dc998077e3f96a1ed7 (diff) | |
download | lv2-38d8a847b9d472f58cca37567be3200f48f4b07e.tar.xz |
Only create (and link to) release tarballs for extensions with non-zero revisions.
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 9adae8d..00290eb 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -715,7 +715,8 @@ def specgen(specloc, docdir, template, instances=False, mode="spec"): header_path = bundle_path + '/' + basename + '.h' other_files = '<li><a href=".">Bundle</a></li>\n' - other_files += '<li><a href="../releases">Releases</a></li>\n' + if revision and revision[0] != '0': + other_files += '<li><a href="http://lv2plug.in/spec">Releases</a></li>\n' 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') |