From bbc2bb312e6d9e5613d4a2342c245d6e378c2108 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 21 Nov 2011 03:00:45 +0000 Subject: Remove uri-unmap extension. --- Doxyfile | 1 - lv2/ns/ext/uri-unmap/ext.pc.in | 1 - lv2/ns/ext/uri-unmap/manifest.ttl | 8 ---- lv2/ns/ext/uri-unmap/uri-unmap.h | 81 -------------------------------------- lv2/ns/ext/uri-unmap/uri-unmap.ttl | 46 ---------------------- lv2/ns/ext/uri-unmap/waf | 1 - lv2/ns/ext/uri-unmap/wscript | 1 - 7 files changed, 139 deletions(-) delete mode 120000 lv2/ns/ext/uri-unmap/ext.pc.in delete mode 100644 lv2/ns/ext/uri-unmap/manifest.ttl delete mode 100644 lv2/ns/ext/uri-unmap/uri-unmap.h delete mode 100644 lv2/ns/ext/uri-unmap/uri-unmap.ttl delete mode 120000 lv2/ns/ext/uri-unmap/waf delete mode 120000 lv2/ns/ext/uri-unmap/wscript diff --git a/Doxyfile b/Doxyfile index 73b81b8..7de9665 100644 --- a/Doxyfile +++ b/Doxyfile @@ -587,7 +587,6 @@ INPUT = \ ns/ext/time/time.h \ ns/ext/ui-resize/ui-resize.h \ ns/ext/uri-map/uri-map.h \ - ns/ext/uri-unmap/uri-unmap.h \ ns/ext/urid/urid.h \ ns/extensions/ui/ui.h \ ns/lv2core/lv2.h diff --git a/lv2/ns/ext/uri-unmap/ext.pc.in b/lv2/ns/ext/uri-unmap/ext.pc.in deleted file mode 120000 index 82b50df..0000000 --- a/lv2/ns/ext/uri-unmap/ext.pc.in +++ /dev/null @@ -1 +0,0 @@ -../../../../ext.pc.in \ No newline at end of file diff --git a/lv2/ns/ext/uri-unmap/manifest.ttl b/lv2/ns/ext/uri-unmap/manifest.ttl deleted file mode 100644 index 217e7b6..0000000 --- a/lv2/ns/ext/uri-unmap/manifest.ttl +++ /dev/null @@ -1,8 +0,0 @@ -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Specification ; - lv2:minorVersion 0 ; - lv2:microVersion 1 ; - rdfs:seeAlso . diff --git a/lv2/ns/ext/uri-unmap/uri-unmap.h b/lv2/ns/ext/uri-unmap/uri-unmap.h deleted file mode 100644 index d6cb900..0000000 --- a/lv2/ns/ext/uri-unmap/uri-unmap.h +++ /dev/null @@ -1,81 +0,0 @@ -/* lv2_uri_unmap.h - C header file for the LV2 URI Unmap extension. - * - * Copyright (C) 2010 David Robillard - * - * This header is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This header is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - * License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this header; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place, Suite 330, Boston, MA 01222-1307 USA - */ - -/** @file - * C header for the LV2 URI Map extension . - */ - -#ifndef LV2_URI_UNMAP_H -#define LV2_URI_UNMAP_H - -#define LV2_URI_UNMAP_URI "http://lv2plug.in/ns/ext/uri-unmap" - -#include - - -/** Opaque pointer to host data. */ -typedef void* LV2_URI_Unmap_Callback_Data; - - -/** The data field of the LV2_Feature for the URI Unmap extension. - * - * To support this extension the host must pass an LV2_Feature struct to the - * plugin's instantiate method with URI "http://lv2plug.in/ns/ext/uri-unmap" - * and data pointed to an instance of this struct. - */ -typedef struct { - - /** Opaque pointer to host data. - * - * The plugin MUST pass this to any call to functions in this struct. - * Otherwise, it must not be interpreted in any way. - */ - LV2_URI_Unmap_Callback_Data callback_data; - - /** Get the numeric ID of a URI from the host. - * - * @param callback_data Must be the callback_data member of this struct. - * @param map The 'context' used to map this URI. - * @param id The URI ID to unmap. - * @return The string form of @a id, or NULL on error. - * - * The @a id MUST be a value previously returned from - * LV2_Uri_Map_Feature.uri_to_id. - * - * The returned string is owned by the host and MUST NOT be freed by - * the plugin or stored for a long period of time (e.g. across run - * invocations) without copying. - * - * This function is referentially transparent - any number of calls with - * the same arguments is guaranteed to return the same value over the life - * of a plugin instance (though the same ID may return different values - * with a different map parameter). - * - * This function may be called from any non-realtime thread, possibly - * concurrently (hosts may simply use a mutex to meet these requirements). - */ - const char* (*id_to_uri)(LV2_URI_Unmap_Callback_Data callback_data, - const char* map, - uint32_t id); - -} LV2_URI_Unmap_Feature; - - -#endif /* LV2_URI_UNMAP_H */ - diff --git a/lv2/ns/ext/uri-unmap/uri-unmap.ttl b/lv2/ns/ext/uri-unmap/uri-unmap.ttl deleted file mode 100644 index 053bb37..0000000 --- a/lv2/ns/ext/uri-unmap/uri-unmap.ttl +++ /dev/null @@ -1,46 +0,0 @@ -# LV2 URI Unmap Extension -# Copyright (C) 2010 David Robillard -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included -# in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -# OTHER DEALINGS IN THE SOFTWARE. - -@prefix unmap: . -@prefix lv2: . -@prefix lv2ev: . -@prefix rdf: . -@prefix rdfs: . -@prefix doap: . -@prefix foaf: . - - a lv2:Specification , lv2:Feature ; - doap:license ; - doap:name "LV2 URI Unmap" ; - doap:shortdesc "A feature for unmapping URIs from integers." ; - doap:maintainer [ - a foaf:Person ; - foaf:name "David Robillard" ; - foaf:homepage ; - rdfs:seeAlso - ] ; - lv2:documentation """ -

This extension is the opposite of the LV2 URI Map extension. It allows -the host to pass an id_to_uri function to the plugin which can be used for -unmapping an integer (previously mapped using the URI map extension's -uri_to_id) back to a string.

""" . - diff --git a/lv2/ns/ext/uri-unmap/waf b/lv2/ns/ext/uri-unmap/waf deleted file mode 120000 index b955110..0000000 --- a/lv2/ns/ext/uri-unmap/waf +++ /dev/null @@ -1 +0,0 @@ -../../../../waf \ No newline at end of file diff --git a/lv2/ns/ext/uri-unmap/wscript b/lv2/ns/ext/uri-unmap/wscript deleted file mode 120000 index ec20a77..0000000 --- a/lv2/ns/ext/uri-unmap/wscript +++ /dev/null @@ -1 +0,0 @@ -../../../../ext.wscript \ No newline at end of file -- cgit v1.2.1