diff options
author | David Robillard <d@drobilla.net> | 2007-07-23 17:42:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-23 17:42:08 +0000 |
commit | efc597e09cebbec1ae579cfc37d114e9a458e578 (patch) | |
tree | d50e9ae913b1ef946e3ab7c86353f93193d7bd68 /data/lv2.ttl | |
parent | 043e683a796e1338a8874b0e7c195292ff32b7de (diff) | |
download | lilv-efc597e09cebbec1ae579cfc37d114e9a458e578.tar.gz lilv-efc597e09cebbec1ae579cfc37d114e9a458e578.tar.bz2 lilv-efc597e09cebbec1ae579cfc37d114e9a458e578.zip |
Updated LV2 spec.
git-svn-id: http://svn.drobilla.net/lad/slv2@602 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'data/lv2.ttl')
-rw-r--r-- | data/lv2.ttl | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/data/lv2.ttl b/data/lv2.ttl index ec189bf..38888bd 100644 --- a/data/lv2.ttl +++ b/data/lv2.ttl @@ -1,5 +1,5 @@ # RDF Schema for LV2 plugins -# *** PROVISIONAL Revision 2007-05-08 *** +# *** PROVISIONAL Revision 2007-07-23 *** # # This document describes the classes and properties that are defined by the # core LV2 specification. See <http://lv2plug.in> for more information. @@ -24,14 +24,24 @@ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR # OTHER DEALINGS IN THE SOFTWARE. -@prefix : <http://lv2plug.in/ontology#> . +@prefix : <http://lv2plug.in/ns/lv2core#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema> . @prefix doap: <http://usefulinc.com/ns/doap#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . +:Specification a rdfs:Class ; + rdfs:comment """ +A part of the system LV2 specification. This file defines the core of the LV2 +specification, but extensions can be written which add to it. Specification +data is distributed in bundles so hosts may discover all present extensions +and treat them as a single extended "LV2 Specification". +See http://lv2plug.in/docs for more details. +""" . + <> a doap:Project ; + a :Specification ; doap:license <http://usefulinc.com/doap/licenses/mit> ; doap:name "LV2" ; doap:homepage <http://lv2plug.in> ; @@ -39,8 +49,8 @@ doap:shortdesc "An audio processing plugin specification" ; doap:programming-language "C" ; doap:release [ - doap:revision "1.0beta3" ; - doap:created "2007-05-08" + doap:revision "1.0beta4" ; + doap:created "2007-07-23" ] ; doap:maintainer [ a foaf:Person ; @@ -54,13 +64,6 @@ rdfs:seeAlso <http://drobilla.net/drobilla.xrdf> ]. -:Extension a rdfs:Class ; - rdfs:command """ -An extension to the LV2 specification. Extension data should be installed in -bundles, and data associated with an extension should be used by the host as -if it were included directly in lv2.ttl (this file). -""" . - ################## ## Plugin Class ## |