summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-02 01:25:42 +0000
committerDavid Robillard <d@drobilla.net>2011-11-02 01:25:42 +0000
commit993f55ab9cb785da97059df5485c745b010ac8b2 (patch)
tree13ca40f030750c5d1f145feef064f1a0bea96c12 /src/world.c
parent385be0465af010722fa3a99890d30674be3d2d0c (diff)
downloadlilv-993f55ab9cb785da97059df5485c745b010ac8b2.tar.gz
lilv-993f55ab9cb785da97059df5485c745b010ac8b2.tar.bz2
lilv-993f55ab9cb785da97059df5485c745b010ac8b2.zip
Use correct URI for dcterms:replaces (for hiding old plugins):
"http://purl.org/dc/terms/replaces" git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3594 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/world.c b/src/world.c
index 75ee8d3..1efe368 100644
--- a/src/world.c
+++ b/src/world.c
@@ -46,13 +46,13 @@ lilv_world_new(void)
world->plugin_classes = lilv_plugin_classes_new();
world->plugins = lilv_plugins_new();
-#define NS_DYNMAN "http://lv2plug.in/ns/ext/dynmanifest#"
-#define NS_DC "http://purl.org/dc/elements/1.1/"
+#define NS_DYNMAN "http://lv2plug.in/ns/ext/dynmanifest#"
+#define NS_DCTERMS "http://purl.org/dc/terms/"
#define NEW_URI(uri) sord_new_uri(world->world, (const uint8_t*)uri)
#define NEW_URI_VAL(uri) lilv_new_uri(world, (const char*)(uri));
- world->dc_replaces_node = NEW_URI(NS_DC "replaces");
+ world->dc_replaces_node = NEW_URI(NS_DCTERMS "replaces");
world->dyn_manifest_node = NEW_URI(NS_DYNMAN "DynManifest");
world->lv2_binary_node = NEW_URI(LILV_NS_LV2 "binary");
world->lv2_default_node = NEW_URI(LILV_NS_LV2 "default");