diff options
author | David Robillard <d@drobilla.net> | 2011-03-19 00:45:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-19 00:45:47 +0000 |
commit | 6c7f2e8286de75d5007fe300617cb138663b711b (patch) | |
tree | 9f16f304fea69db48383c2786609c1ba6055a511 | |
parent | 2c8a2d59e6f9094511db0363d94fd19459f3155b (diff) | |
download | lv2-6c7f2e8286de75d5007fe300617cb138663b711b.tar.xz |
Move project description back to lv2.ttl.
While this makes OWL tools less happy, from an LV2 POV minimal manifest is good.
We are really blurring the lines between "project" "ontology" and "extension" here...
-rw-r--r-- | core.lv2/lv2.ttl | 24 | ||||
-rw-r--r-- | core.lv2/manifest.ttl | 27 |
2 files changed, 25 insertions, 26 deletions
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl index 774af7c..8d7822c 100644 --- a/core.lv2/lv2.ttl +++ b/core.lv2/lv2.ttl @@ -22,6 +22,7 @@ # OTHER DEALINGS IN THE 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#> . @@ -65,7 +66,28 @@ devices). See <a href="http://www.w3.org/TR/xhtml-basic/#s_xhtmlmodules" """ . <http://lv2plug.in/ns/lv2core> - a lv2:Specification , owl:Ontology ; + a lv2:Specification , owl:Ontology , doap:Project ; + doap:license <http://usefulinc.com/doap/licenses/mit> ; + 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 "3.2" ; + doap:created "2011-03-17" + ] ; + 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> diff --git a/core.lv2/manifest.ttl b/core.lv2/manifest.ttl index 994bfa9..7a54d6a 100644 --- a/core.lv2/manifest.ttl +++ b/core.lv2/manifest.ttl @@ -1,33 +1,10 @@ @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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> . <http://lv2plug.in/ns/lv2core> - a doap:Project , lv2:Specification , owl:Ontology; + a doap:Project , lv2:Specification , owl:Ontology ; lv2:minorVersion 3 ; lv2:microVersion 2 ; - rdfs:seeAlso <lv2.ttl> ; - doap:license <http://usefulinc.com/doap/licenses/mit> ; - 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 "3.2" ; - doap:created "2011-03-17" - ] ; - 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> - ] . - + rdfs:seeAlso <lv2.ttl> . |