aboutsummaryrefslogtreecommitdiffstats
path: root/ext/urid.lv2/urid.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-05 03:26:29 +0000
committerDavid Robillard <d@drobilla.net>2011-11-05 03:26:29 +0000
commit434a3c065b0b9ac73692bc445b01e91123554e50 (patch)
tree0a70d7ad9859f3d164f605f07148b50afdb72a64 /ext/urid.lv2/urid.ttl
parent07da3a6b638a965b23ed6faab2e3c8c76ea7e2e5 (diff)
downloadlv2-434a3c065b0b9ac73692bc445b01e91123554e50.tar.xz
Separate features for mapping and unmapping.
Diffstat (limited to 'ext/urid.lv2/urid.ttl')
-rw-r--r--ext/urid.lv2/urid.ttl27
1 files changed, 18 insertions, 9 deletions
diff --git a/ext/urid.lv2/urid.ttl b/ext/urid.lv2/urid.ttl
index fdc4871..94b6863 100644
--- a/ext/urid.lv2/urid.ttl
+++ b/ext/urid.lv2/urid.ttl
@@ -26,10 +26,10 @@
doap:name "LV2 URID" ;
doap:shortdesc "Features for mapping URIs to and from integers." ;
doap:release [
- doap:revision "0.1" ;
- doap:created "2011-07-20"
+ doap:revision "0.2" ;
+ doap:created "2011-01-04"
] ;
- doap:maintainer [
+ doap:developer [
a foaf:Person ;
foaf:name "Gabriel M. Beddingfield" ;
foaf:homepage <http://gabe.is-a-geek.org/>
@@ -47,12 +47,21 @@ This extension is intended as an improved and simpler replacement for the
<q>map</q> context parameter has been found problematic.
""" .
-urid:URIMap
+urid:Mapper
a lv2:Feature ;
lv2:documentation """
-An lv2:Feature which provides URI mapping and unmapping capability. To support
-this feature, the host must pass an LV2_Feature to
-LV2_Descriptor::instantiate with <em>URI</em>
-<q>http://lv2plug.in/ns/ext/urid#URIMap</q> and <em>data</em> pointed to an instance of
-LV2_URID_Feature.
+A feature which is used to map URIs to integers. To support this feature, the
+host must pass an LV2_Feature to LV2_Descriptor::instantiate() with
+<em>URI</em> <q>http://lv2plug.in/ns/ext/urid#Mapper</q> and <em>data</em>
+pointed to an instance of LV2_URID_Mapper.
+""" .
+
+urid:Unmapper
+ a lv2:Feature ;
+ lv2:documentation """
+A feature which is used to unmap URIs previously mapped to integers by <a
+href="#Mapper">Mapper</a>. To support this feature, the host must pass an
+LV2_Feature to LV2_Descriptor::instantiate() with <em>URI</em>
+<q>http://lv2plug.in/ns/ext/urid#Unmapper</q> and <em>data</em> pointed to an
+instance of LV2_URID_Unmapper.
""" .