diff options
Diffstat (limited to 'core.lv2/lv2-doap.ttl')
-rw-r--r-- | core.lv2/lv2-doap.ttl | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/core.lv2/lv2-doap.ttl b/core.lv2/lv2-doap.ttl index bbd093b..f01eadb 100644 --- a/core.lv2/lv2-doap.ttl +++ b/core.lv2/lv2-doap.ttl @@ -3,6 +3,19 @@ @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +<http://plugin.org.uk/swh.xrdf#me> + a foaf:Person ; + foaf:name "Steve Harris" ; + foaf:homepage <http://plugin.org.uk/> ; + rdfs:seeAlso <http://plugin.org.uk/swh.xrdf> . + +<http://drobilla.net/drobilla#me> + a foaf:Person ; + foaf:name "David Robillard" ; + foaf:homepage <http://drobilla.net/> ; + foaf:mbox <mailto:d@drobilla.net> ; + rdfs:seeAlso <http://drobilla.net/drobilla> . + <http://lv2plug.in/ns/lv2core> a doap:Project ; doap:license <http://opensource.org/licenses/isc> ; @@ -13,9 +26,10 @@ doap:programming-language "C" ; doap:release [ doap:revision "4.1" ; + dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ - rdfs:label "Add lv2:extensionData and lv2:ExtensionData for plugins to indicate that they support some URI for LV2_Descriptor::extension_data." + rdfs:label "Add lv2:extensionData and lv2:ExtensionData for plugins to indicate that they support some URI for extension_data()." ] , [ rdfs:label "Remove lv2config in favour of the convention that extension bundles simply install headers to standard URI-like include paths." ] , [ @@ -26,6 +40,7 @@ doap:revision "4.0" ; doap:created "2011-03-18" ; doap:file-release <http://lv2plug.in/spec/lv2core-4.0.tar.bz2> ; + dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Make doap:license suggested, but not required (for wrappers)." @@ -59,6 +74,7 @@ doap:revision "3.0" ; doap:created "2008-11-08" ; doap:file-release <http://lv2plug.in/spec/lv2core-3.0.tar.bz2> ; + dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Require that serialisations refer to ports by symbol rather than index." @@ -71,16 +87,14 @@ ] , [ doap:revision "2.0" ; doap:created "2008-02-10" ; - doap:file-release <http://lv2plug.in/spec/lv2core-2.0.tar.gz> + doap:file-release <http://lv2plug.in/spec/lv2core-2.0.tar.gz> ; + dcs:blame <http://drobilla.net/drobilla#me> ; + dcs:changeset [ + dcs:item [ + rdfs:label "Initial packaging." + ] + ] ] ; - 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> - ] . + doap:developer <http://plugin.org.uk/swh.xrdf#me> , + <http://drobilla.net/drobilla#me> ; + doap:maintainer <http://drobilla.net/drobilla#me> . |