diff options
Diffstat (limited to 'core.lv2')
-rw-r--r-- | core.lv2/lv2-doap.ttl | 75 | ||||
-rw-r--r-- | core.lv2/lv2.ttl | 33 | ||||
-rw-r--r-- | core.lv2/manifest.ttl | 2 |
3 files changed, 80 insertions, 30 deletions
diff --git a/core.lv2/lv2-doap.ttl b/core.lv2/lv2-doap.ttl new file mode 100644 index 0000000..34b60dc --- /dev/null +++ b/core.lv2/lv2-doap.ttl @@ -0,0 +1,75 @@ +@prefix dcs: <http://ontologi.es/doap-changeset#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +<http://lv2plug.in/ns/lv2core> + a doap:Project ; + doap:license <http://opensource.org/licenses/isc> ; + doap:name "LV2" ; + doap:homepage <http://lv2plug.in> ; + doap:created "2004-04-21" ; + doap:shortdesc "An audio plugin interface specification" ; + doap:programming-language "C" ; + doap:release [ + doap:revision "4.0" ; + doap:created "2011-03-18" ; + doap:file-release <http://lv2plug.in/spec/lv2core-4.0.tar.bz2> ; + dcs:changeset [ + dcs:item [ + rdfs:label "Make doap:license suggested, but not required (for wrappers)." + ] , [ + rdfs:label "Define lv2:binary (MUST be in manifest.ttl)." + ] , [ + rdfs:label "Define lv2:majorVersion and lv2:minorVersion (MUST be in manifest.ttl)." + ] , [ + rdfs:label "Define lv2:documentation and use it to document lv2core." + ] , [ + rdfs:label "Add lv2:FunctionPlugin and lv2:ConstantPlugin classes." + ] , [ + rdfs:label "Move lv2:AmplifierPlugin under lv2:DynamicsPlugin." + ] , [ + rdfs:label "Loosen domain of lv2:optionalFeature and lv2:requiredFeature (to allow re-use in extensions)." + ] , [ + rdfs:label "Add generic lv2:Resource and lv2:PluginBase classes." + ] , [ + rdfs:label "Fix definition of lv2:minimum etc. (used for values, not scale points)." + ] , [ + rdfs:label "More precisely define properties with OWL." + ] , [ + rdfs:label "Move project metadata to manifest." + ] , [ + rdfs:label "Add lv2:enumeration port property." + ] , [ + rdfs:label "Define run() pre-roll special case (sample_count == 0)." + ] + ] + ] , [ + doap:revision "3.0" ; + doap:created "2008-11-08" ; + doap:file-release <http://lv2plug.in/spec/lv2core-3.0.tar.bz2> ; + dcs:changeset [ + dcs:item [ + rdfs:label "Require that serialisations refer to ports by symbol rather than index." + ] , [ + rdfs:label "Minor stylistic changes to lv2.ttl." + ] , [ + rdfs:label "No header changes." + ] + ] + ] , [ + doap:revision "2.0" ; + doap:created "2008-02-10" ; + doap:file-release <http://lv2plug.in/spec/lv2core-2.0.tar.gz> ; + ] ; + doap:maintainer [ + a foaf:Person ; + foaf:name "Steve Harris" ; + foaf:homepage <http://plugin.org.uk/> ; + rdfs:seeAlso <http://plugin.org.uk/swh.xrdf> + ] , [ + a foaf:Person ; + foaf:name "David Robillard" ; + foaf:homepage <http://drobilla.net/> ; + rdfs:seeAlso <http://drobilla.net/drobilla.rdf> + ] . diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl index 798d9fd..0ab56c5 100644 --- a/core.lv2/lv2.ttl +++ b/core.lv2/lv2.ttl @@ -16,7 +16,6 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. @prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @@ -59,33 +58,9 @@ devices). See <a href="http://www.w3.org/TR/xhtml-basic/#s_xhtmlmodules" """ . <http://lv2plug.in/ns/lv2core> - a lv2:Specification , owl:Ontology , doap:Project ; - owl:imports <http://purl.org/az/foaf.owl> , - <http://lv2plug.in/ns/doap.owl> ; - doap:license <http://opensource.org/licenses/isc> ; - doap:name "LV2" ; - doap:homepage <http://lv2plug.in> ; - doap:created "2004-04-21" ; - doap:shortdesc "An audio plugin interface specification" ; - doap:programming-language "C" ; - doap:release [ - doap:revision "4.0" ; - doap:created "2011-03-18" - ] ; - doap:maintainer [ - a foaf:Person ; - foaf:name "Steve Harris" ; - foaf:homepage <http://plugin.org.uk/> ; - rdfs:seeAlso <http://plugin.org.uk/swh.xrdf> - ] , [ - a foaf:Person ; - foaf:name "David Robillard" ; - foaf:homepage <http://drobilla.net/> ; - rdfs:seeAlso <http://drobilla.net/drobilla.rdf> - ] ; - lv2:documentation """ -<h4>Overview</h4> - + a owl:Ontology ; + owl:imports <http://lv2plug.in/ns/doap.owl> ; + lv2:documentation """ <p>LV2 is an interface for writing audio processors, or <q>plugins</q>, in C/C++ which can be dynamically loaded into many applications, or <q>hosts</q>. This <q>core</q> specification is simple and minimal, but is designed so that @@ -125,7 +100,7 @@ which are fixed and valid for the duration of the call to <code>run()</code>. Thus the <q>control rate</q> is determined by the block size, which is controlled by the host (and not necessarily constant).</p> -<h4>Threading Rules</h4> +<h3>Threading Rules</h3> <p>To faciliate use in multi-threaded programs, LV2 functions are partitioned into several threading classes:</p> diff --git a/core.lv2/manifest.ttl b/core.lv2/manifest.ttl index 08ed8d1..f9418d2 100644 --- a/core.lv2/manifest.ttl +++ b/core.lv2/manifest.ttl @@ -7,4 +7,4 @@ a doap:Project , lv2:Specification , owl:Ontology ; lv2:minorVersion 4 ; lv2:microVersion 1 ; - rdfs:seeAlso <lv2.ttl> . + rdfs:seeAlso <lv2.ttl> , <lv2-doap.ttl> .
\ No newline at end of file |