diff options
author | David Robillard <d@drobilla.net> | 2011-11-09 04:40:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-09 04:40:50 +0000 |
commit | bb91f0334218ce1866aee3fd955871aae7c7550f (patch) | |
tree | f440ebe4f0cfde8dc96e04942d55468edee7c2ee /ext/reference.lv2/reference.ttl | |
parent | ed9ed2beeb9b43c85187ffa6bc3219883020b6a7 (diff) | |
download | lv2-bb91f0334218ce1866aee3fd955871aae7c7550f.tar.xz |
Make use of new auto-linking in lv2specgen.py.
Diffstat (limited to 'ext/reference.lv2/reference.ttl')
-rw-r--r-- | ext/reference.lv2/reference.ttl | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/ext/reference.lv2/reference.ttl b/ext/reference.lv2/reference.ttl index e59e0ae..6d5870f 100644 --- a/ext/reference.lv2/reference.ttl +++ b/ext/reference.lv2/reference.ttl @@ -38,21 +38,20 @@ lv2:documentation """ <p>This extension defines a mechanism for working with generic/opaque dynamically allocated memory, called a <a href="#Blob">"Blob"</a>, which is -(unlike an Atom) not necessarily POD. Blobs are accessed via a <a -href="#Reference">Reference</a>, which is a special case of Atom 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> +(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 = +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> """ . reference:Reference a rdfs:Class ; rdfs:subClassOf atom:Atom ; rdfs:label "Reference" ; lv2:documentation """ -<p>Reference to a <a href="#Blob">Blob</a>. The actual contents of a Reference -are opaque and host specific, and must not be copied, serialized, or otherwise -interpreted by a plugin, except via functions provided by the host in -LV2_Blob_Support.</p> +<p>Reference to an lv2:Blob. The actual contents of a Reference are opaque and +host specific, and must not be copied, serialized, or otherwise interpreted by +a plugin, except via functions provided by the host in LV2_Blob_Support.</p> <p>A Reference is a special case of Atom with <code>type = 0</code>. "Null" is the unique Atom with <code>type = 0</code> and |