aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-22 01:30:35 +0000
committerDavid Robillard <d@drobilla.net>2011-11-22 01:30:35 +0000
commit5ff1d0ff0ee8bc52dacc6f0ef0f25c36fb6f1e47 (patch)
tree583f71941716eea33a9867530b7e835282563b70
parentece195616828b98c77b582c00b84b31f1fa027d6 (diff)
downloadlv2-5ff1d0ff0ee8bc52dacc6f0ef0f25c36fb6f1e47.tar.xz
Fix broken links.
-rw-r--r--lv2/ns/ext/files/files.ttl2
-rw-r--r--lv2/ns/ext/reference/reference.ttl2
-rwxr-xr-xlv2specgen/lv2specgen.py4
3 files changed, 5 insertions, 3 deletions
diff --git a/lv2/ns/ext/files/files.ttl b/lv2/ns/ext/files/files.ttl
index 78c6356..fc32c9a 100644
--- a/lv2/ns/ext/files/files.ttl
+++ b/lv2/ns/ext/files/files.ttl
@@ -40,7 +40,7 @@
lv2:documentation """
<p>This extension provides a mechanism for plugins to portably refer to files
in persistent plugin state (using the <a
-href="http://lv2plug.in/ns/ext/persist">LV2 Persist</a> extension), and create
+href="http://lv2plug.in/ns/ext/state">LV2 State</a> extension), and create
instance-local files in host-defined locations (e.g. for recording).</p>
<p>The motivating idea behind this extension is that all details of file
diff --git a/lv2/ns/ext/reference/reference.ttl b/lv2/ns/ext/reference/reference.ttl
index 1e030ee..bbf56d4 100644
--- a/lv2/ns/ext/reference/reference.ttl
+++ b/lv2/ns/ext/reference/reference.ttl
@@ -40,7 +40,7 @@
dynamically allocated memory, called a <a href="#Blob">"Blob"</a>, which is
(unlike an Atom) not necessarily POD. Blobs are accessed via a
reference:Reference, which is a special case of <a
-href="http://lv2plug.in/ns/ext/ext#Atom">Atom</a> that always has <code>type =
+href="http://lv2plug.in/ns/ext#Atom">Atom</a> that always has <code>type =
0</code>, is not POD, and can only be copied using host provided functions.
This allows plugins and hosts to work with data of any type at all.</p>
""" .
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index 76b272c..5740168 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -1028,6 +1028,8 @@ def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=Fal
prefixes_html = "<span>"
for i in keys:
uri = namespaces[i]
+ if uri.startswith('file:'):
+ continue;
ns_list[str(uri)] = i
if str(uri) == str(spec_url) + '#':
spec_pre = i
@@ -1101,7 +1103,7 @@ def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=Fal
other_files = ''
if not experimental:
release_name = "lv2-" + basename
- if basename == "lv2":
+ if basename == "lv2core":
release_name = "lv2core"
other_files += '<a href="http://lv2plug.in/spec/%s-%d.%d.tar.bz2">Release</a>, ' % (release_name, version[0], version[1])
other_files += '<a href="http://lv2plug.in/spec">All releases</a>, '