More helpful error message when both Redland and RDFLib aren't found.
[lv2.git] / ext / data-access.lv2 / data-access.ttl
blobce5c849daf75dcc41b4de534dc2dcdec93a13a2d
1 # LV2 Data Access Extension
2 # Copyright (C) 2008 David Robillard <d@drobilla.net>
4 # Permission is hereby granted, free of charge, to any person obtaining a
5 # copy of this software and associated documentation files (the "Software"),
6 # to deal in the Software without restriction, including without limitation
7 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 # and/or sell copies of the Software, and to permit persons to whom the
9 # Software is furnished to do so, subject to the following conditions:
10
11 # The above copyright notice and this permission notice shall be included
12 # in all copies or substantial portions of the Software.
13
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 # OTHER DEALINGS IN THE SOFTWARE.
22 @prefix da:    <http://lv2plug.in/ns/ext/data-access#> .
23 @prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
24 @prefix lv2ev: <http://lv2plug.in/ns/ext/event#> .
25 @prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
26 @prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
27 @prefix doap:  <http://usefulinc.com/ns/doap#> .
28 @prefix foaf:  <http://xmlns.com/foaf/0.1/> .
30 <http://lv2plug.in/ns/ext/data-access> a lv2:Specification ;
31         doap:license <http://usefulinc.com/doap/licenses/mit> ;
32         doap:name "LV2 Data Access" ;
33     doap:release [
34         doap:revision "1" ;
35         doap:created "2008-08-11" ;
36     ] ;
37         doap:maintainer [
38                 a foaf:Person ;
39                 foaf:name "David Robillard" ;
40                 foaf:homepage <http://drobilla.net/> ;
41                 rdfs:seeAlso <http://drobilla.net/drobilla.xrdf>
42         ] ;
43         rdfs:comment """
44 This extension defines a method for (e.g.) plugin UIs to have (possibly
45 marshalled) access to the extension_data function on a plugin instance.
46 """ .