diff options
author | David Robillard <d@drobilla.net> | 2011-11-05 03:45:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-05 03:45:53 +0000 |
commit | 4ee818b680e6864e03d98aa945be1600471db578 (patch) | |
tree | 6de8cea2f54e561b9f5ace6eac018d85ea7f54a7 /ext/event.lv2 | |
parent | 434a3c065b0b9ac73692bc445b01e91123554e50 (diff) | |
download | lv2-4ee818b680e6864e03d98aa945be1600471db578.tar.xz |
Mark event and uri-map as deprecated and point to their successors in documentation.
Diffstat (limited to 'ext/event.lv2')
-rw-r--r-- | ext/event.lv2/event.ttl | 18 | ||||
-rw-r--r-- | ext/event.lv2/manifest.ttl | 2 |
2 files changed, 13 insertions, 7 deletions
diff --git a/ext/event.lv2/event.ttl b/ext/event.lv2/event.ttl index 064e3eb..d207a7a 100644 --- a/ext/event.lv2/event.ttl +++ b/ext/event.lv2/event.ttl @@ -13,23 +13,25 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +@prefix doap: <http://usefulinc.com/ns/doap#> . @prefix ev: <http://lv2plug.in/ns/ext/event#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix lv2ev: <http://lv2plug.in/ns/ext/event#> . +@prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix foaf: <http://xmlns.com/foaf/0.1/> . <http://lv2plug.in/ns/ext/event> a lv2:Specification ; + owl:deprecated true ; doap:license <http://opensource.org/licenses/isc-license> ; doap:name "LV2 Event" ; doap:shortdesc "A port-based real-time generic event interface." ; rdfs:seeAlso <event-helpers.h> ; doap:release [ - doap:revision "1.2" ; - doap:created "2011-05-26" + doap:revision "1.3" ; + doap:created "2011-11-23" ] ; doap:maintainer [ a foaf:Person ; @@ -41,10 +43,14 @@ foaf:name "Lars Luthman" ; ] ; lv2:documentation """ -This extension defines a generic time-stamped event port type, which can be +<p><span class="warning">This extension is deprecated.</span> New +implementations should use <a href="http://lv2plug.in/ns/ext/atom">LV2 Atom</a> +instead.</p> + +<p>This extension defines a generic time-stamped event port type, which can be used to create plugins that read and write real-time events, such as MIDI, OSC, or any other type of event payload. The type(s) of event supported by -a port is defined in the data file for a plugin, for example: +a port is defined in the data file for a plugin, for example:</p> <pre class="turtle-code"> <http://example.org/some-plugin> lv2:port [ diff --git a/ext/event.lv2/manifest.ttl b/ext/event.lv2/manifest.ttl index bea8a13..2b1ff43 100644 --- a/ext/event.lv2/manifest.ttl +++ b/ext/event.lv2/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/ext/event> a lv2:Specification ; lv2:minorVersion 1 ; - lv2:microVersion 2 ; + lv2:microVersion 3 ; rdfs:seeAlso <event.ttl> . |