aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/core
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-02-16 11:59:39 +0100
committerDavid Robillard <d@drobilla.net>2020-02-16 12:02:05 +0100
commitb042d19364170e03db35b4c736d7d17c897d5203 (patch)
tree23ae7c49621566139b7d536c68c50b4e0afe01f0 /lv2/core
parentd5d6a9529d9ee0d5e8d8db96fb0015f0e9222bcf (diff)
downloadlv2-b042d19364170e03db35b4c736d7d17c897d5203.tar.xz
Normalise syntax of all specification data with serdi
Diffstat (limited to 'lv2/core')
-rw-r--r--lv2/core/lv2core.doap.ttl5
-rw-r--r--lv2/core/lv2core.ttl55
-rw-r--r--lv2/core/manifest.ttl7
-rw-r--r--lv2/core/meta.ttl11
-rw-r--r--lv2/core/people.ttl2
5 files changed, 42 insertions, 38 deletions
diff --git a/lv2/core/lv2core.doap.ttl b/lv2/core/lv2core.doap.ttl
index 2bac9b3..22ed50a 100644
--- a/lv2/core/lv2core.doap.ttl
+++ b/lv2/core/lv2core.doap.ttl
@@ -5,8 +5,8 @@
<http://lv2plug.in/ns/lv2core>
a doap:Project ;
- rdfs:seeAlso <meta.ttl> ;
- rdfs:seeAlso <people.ttl> ;
+ rdfs:seeAlso <meta.ttl> ,
+ <people.ttl> ;
doap:license <http://opensource.org/licenses/isc> ;
doap:name "LV2" ;
doap:homepage <http://lv2plug.in> ;
@@ -203,3 +203,4 @@
]
]
] .
+
diff --git a/lv2/core/lv2core.ttl b/lv2/core/lv2core.ttl
index cd32a6d..5f8696c 100644
--- a/lv2/core/lv2core.ttl
+++ b/lv2/core/lv2core.ttl
@@ -1,9 +1,9 @@
@prefix doap: <http://usefulinc.com/ns/doap#> .
-@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#> .
+@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#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
lv2:Specification
a rdfs:Class ,
@@ -145,12 +145,12 @@ lv2:Plugin
a owl:Restriction ;
owl:onProperty doap:name ;
owl:someValuesFrom rdf:PlainLiteral ;
- rdfs:comment "A plugin MUST have at least one untranslated doap:name." ;
+ rdfs:comment "A plugin MUST have at least one untranslated doap:name."
] , [
a owl:Restriction ;
owl:onProperty lv2:port ;
owl:allValuesFrom lv2:Port ;
- rdfs:comment "All ports on a plugin MUST be fully specified lv2:Port instances." ;
+ rdfs:comment "All ports on a plugin MUST be fully specified lv2:Port instances."
] ;
lv2:documentation """
<p>The class which represents an LV2 plugin.</p>
@@ -175,7 +175,7 @@ lv2:PortBase
a owl:Restriction ;
owl:onProperty lv2:symbol ;
owl:cardinality 1 ;
- rdfs:comment "A port MUST have exactly one lv2:symbol." ;
+ rdfs:comment "A port MUST have exactly one lv2:symbol."
] ;
lv2:documentation """
<p>Similar to lv2:PluginBase, an abstract port-like resource that MAY not
@@ -187,8 +187,8 @@ lv2:Port
a rdfs:Class ,
owl:Class ;
rdfs:label "Port" ;
- rdfs:subClassOf lv2:PortBase ;
- rdfs:subClassOf [
+ rdfs:subClassOf lv2:PortBase ,
+ [
a owl:Restriction ;
owl:onProperty lv2:name ;
owl:minCardinality 1 ;
@@ -223,14 +223,14 @@ lv2:InputPort
owl:Class ;
rdfs:subClassOf lv2:Port ;
rdfs:label "Input Port" ;
- rdfs:comment """Ports of this type will be connected to a pointer to some value, which will be read by the plugin during their run method.""" .
+ rdfs:comment "Ports of this type will be connected to a pointer to some value, which will be read by the plugin during their run method." .
lv2:OutputPort
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:Port ;
rdfs:label "Output Port" ;
- rdfs:comment """Ports of this type will be connected to a pointer to some value, which will be written to by the plugin during their run method.""" .
+ rdfs:comment "Ports of this type will be connected to a pointer to some value, which will be written to by the plugin during their run method." .
lv2:ControlPort
a rdfs:Class ,
@@ -632,7 +632,7 @@ lv2:default
owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:label "default" ;
- rdfs:comment """The default value that the host SHOULD set this port to when there is no other information available.""" .
+ rdfs:comment "The default value that the host SHOULD set this port to when there is no other information available." .
lv2:minimum
a rdf:Property ,
@@ -660,7 +660,7 @@ lv2:Feature
a rdfs:Class ,
owl:Class ;
rdfs:label "Feature" ;
- rdfs:comment """An additional feature which a plugin or other resource may use or require.""" .
+ rdfs:comment "An additional feature which a plugin or other resource may use or require." .
lv2:optionalFeature
a rdf:Property ,
@@ -762,7 +762,7 @@ lv2:PortProperty
a rdfs:Class ,
owl:Class ;
rdfs:label "Port Property" ;
- rdfs:comment """A property of this port that allows a host to make more sensible decisions (e.g. to provide a better interface).""" .
+ rdfs:comment "A property of this port that allows a host to make more sensible decisions (e.g. to provide a better interface)." .
lv2:portProperty
a rdf:Property ,
@@ -770,12 +770,12 @@ lv2:portProperty
rdfs:domain lv2:Port ;
rdfs:range lv2:PortProperty ;
rdfs:label "port property" ;
- rdfs:comment """Relates Ports to PortProperties. The PortProperty may be ignored without catastrophic effects, though it may be useful e.g. for providing a sensible interface for the port.""" .
+ rdfs:comment "Relates Ports to PortProperties. The PortProperty may be ignored without catastrophic effects, though it may be useful e.g. for providing a sensible interface for the port." .
lv2:connectionOptional
a lv2:PortProperty ;
rdfs:label "connection optional" ;
- rdfs:comment """Indicates that this port does not have to be connected to valid data by the host. If it is to be disconnected then the port MUST set to NULL with a call to the connectPort method.""" .
+ rdfs:comment "Indicates that this port does not have to be connected to valid data by the host. If it is to be disconnected then the port MUST set to NULL with a call to the connectPort method." .
lv2:reportsLatency
a lv2:PortProperty ;
@@ -805,7 +805,7 @@ data above zero should be considered <q>on</q> or <q>true</q>.</p>
lv2:sampleRate
a lv2:PortProperty ;
rdfs:label "sample rate" ;
- rdfs:comment """Indicates that any bounds specified should be interpreted as multiples of the sample rate. For instance, a frequency range from 0Hz to the Nyquist frequency (half the sample rate) could be requested by this property in conjunction with lv2:minimum 0.0 and lv2:maximum 0.5. Hosts that support bounds at all MUST support this property.""" .
+ rdfs:comment "Indicates that any bounds specified should be interpreted as multiples of the sample rate. For instance, a frequency range from 0Hz to the Nyquist frequency (half the sample rate) could be requested by this property in conjunction with lv2:minimum 0.0 and lv2:maximum 0.5. Hosts that support bounds at all MUST support this property." .
lv2:integer
a lv2:PortProperty ;
@@ -827,14 +827,14 @@ lv2:GeneratorPlugin
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "Generator" ;
- rdfs:comment """Any plugin that generates sound internally, rather than processing its input.""" .
+ rdfs:comment "Any plugin that generates sound internally, rather than processing its input." .
lv2:InstrumentPlugin
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:GeneratorPlugin ;
rdfs:label "Instrument" ;
- rdfs:comment """Any plugin that is intended to be played as a musical instrument.""" .
+ rdfs:comment "Any plugin that is intended to be played as a musical instrument." .
lv2:OscillatorPlugin
a rdfs:Class ,
@@ -847,42 +847,42 @@ lv2:UtilityPlugin
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "Utility" ;
- rdfs:comment """Includes things like mathematical functions and non-musical delays.""" .
+ rdfs:comment "Includes things like mathematical functions and non-musical delays." .
lv2:ConverterPlugin
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:UtilityPlugin ;
rdfs:label "Converter" ;
- rdfs:comment """Any plugin that converts some form of input into a different form of output.""" .
+ rdfs:comment "Any plugin that converts some form of input into a different form of output." .
lv2:AnalyserPlugin
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:UtilityPlugin ;
rdfs:label "Analyser" ;
- rdfs:comment """Any plugin that analyses input to output some useful information.""" .
+ rdfs:comment "Any plugin that analyses input to output some useful information." .
lv2:MixerPlugin
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:UtilityPlugin ;
rdfs:label "Mixer" ;
- rdfs:comment """A plugin which mixes some number of inputs into some number of outputs.""" .
+ rdfs:comment "A plugin which mixes some number of inputs into some number of outputs." .
lv2:SimulatorPlugin
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "Simulator" ;
- rdfs:comment """Plugins that aim to duplicate the effect of some environmental effect or musical equipment.""" .
+ rdfs:comment "Plugins that aim to duplicate the effect of some environmental effect or musical equipment." .
lv2:DelayPlugin
a rdfs:Class ,
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "Delay" ;
- rdfs:comment """Plugins that intentionally delay their input signal as an effect.""" .
+ rdfs:comment "Plugins that intentionally delay their input signal as an effect." .
lv2:ModulatorPlugin
a rdfs:Class ,
@@ -983,7 +983,7 @@ lv2:SpectralPlugin
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "Spectral" ;
- rdfs:comment """Plugins that alter the spectral properties (e.g. frequency) of audio.""" .
+ rdfs:comment "Plugins that alter the spectral properties (e.g. frequency) of audio." .
lv2:PitchPlugin
a rdfs:Class ,
@@ -1020,7 +1020,7 @@ lv2:DynamicsPlugin
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "Dynamics" ;
- rdfs:comment """Plugins that alter the envelope or dynamic range of audio.""" .
+ rdfs:comment "Plugins that alter the envelope or dynamic range of audio." .
lv2:CompressorPlugin
a rdfs:Class ,
@@ -1063,3 +1063,4 @@ lv2:MIDIPlugin
owl:Class ;
rdfs:subClassOf lv2:Plugin ;
rdfs:label "MIDI" .
+
diff --git a/lv2/core/manifest.ttl b/lv2/core/manifest.ttl
index 286d1d0..870ab1b 100644
--- a/lv2/core/manifest.ttl
+++ b/lv2/core/manifest.ttl
@@ -1,5 +1,5 @@
@prefix doap: <http://usefulinc.com/ns/doap#> .
-@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://lv2plug.in/ns/lv2core>
@@ -10,5 +10,6 @@
<http://lv2plug.in/ns/lv2>
a doap:Project ;
- rdfs:seeAlso <meta.ttl> ;
- rdfs:seeAlso <people.ttl> .
+ rdfs:seeAlso <meta.ttl> ,
+ <people.ttl> .
+
diff --git a/lv2/core/meta.ttl b/lv2/core/meta.ttl
index 4fa9a6a..e767910 100644
--- a/lv2/core/meta.ttl
+++ b/lv2/core/meta.ttl
@@ -1,8 +1,8 @@
-@prefix dcs: <http://ontologi.es/doap-changeset#> .
+@prefix dcs: <http://ontologi.es/doap-changeset#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
-@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix meta: <http://lv2plug.in/ns/meta#> .
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://opensource.org/licenses/isc>
@@ -75,7 +75,7 @@ THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH R
dcs:blame <http://drobilla.net/drobilla#me> ;
dcs:changeset [
dcs:item [
- rdfs:label "eg-scope: Don't feed back UI state updates."
+ rdfs:label """eg-scope: Don't feed back UI state updates."""
] , [
rdfs:label "eg-sampler: Fix handling of state file paths."
] , [
@@ -173,9 +173,10 @@ THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH R
dcs:blame <http://drobilla.net/drobilla#me> ;
dcs:changeset [
dcs:item [
- rdfs:label "Initial release as a unified project. Projects can now simply depend on the pkg-config package 'lv2' for all official LV2 APIs."
+ rdfs:label """Initial release as a unified project. Projects can now simply depend on the pkg-config package 'lv2' for all official LV2 APIs."""
] , [
rdfs:label "New extensions: atom, log, parameters, patch, port-groups, port-props, resize-port, state, time, worker."
]
]
] .
+
diff --git a/lv2/core/people.ttl b/lv2/core/people.ttl
index 292fbab..52d0384 100644
--- a/lv2/core/people.ttl
+++ b/lv2/core/people.ttl
@@ -26,7 +26,7 @@ meta:gabrbedd
meta:daste
a foaf:Person ;
- foaf:name "Stefano D'Angelo" ;
+ foaf:name """Stefano D'Angelo""" ;
foaf:mbox <mailto:zanga.mail@gmail.com> .
meta:kfoltman