1# LV2 URI Map Extension
2# Copyright (C) 2008 David Robillard <d@drobilla.net>
3#
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.
21
22@prefix umap:  <http://lv2plug.in/ns/ext/uri-map#> .
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/> .
29
30<http://lv2plug.in/ns/ext/uri-map> a lv2:Specification , lv2:Feature ;
31	doap:license <http://usefulinc.com/doap/licenses/mit> ;
32	doap:name "LV2 URI Map" ;
33    doap:release [
34        doap:revision "1" ;
35        doap:created "2008-04-16"
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		a foaf:Person ;
44		foaf:name "Lars Luthman" ;
45	] ;
46    rdfs:comment """
47This extension defines a simple mechanism for plugins to map URIs to integers,
48usually for performance reasons (e.g. processing events typed by URIs in
49real time).  The expected use case is for plugins to map URIs to integers for
50things they 'understand' at instantiation time, and store those values for
51use in the audio thread without doing any string comparison.  This allows
52the extensibility of RDF with the performance of integers (or centrally
53defined enumerations).
54""" .
55