Use urn rather that non-resolvable URL.

master
Peter Nelson 2010-06-16 11:12:30 +01:00
parent fcb48f3dc4
commit eec125e237
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://fuzzle.org/~petern/psyn/1> <urn:fuzzle:psyn>
a lv2:Plugin, lv2:InstrumentPlugin; a lv2:Plugin, lv2:InstrumentPlugin;
lv2:binary <psyn.so>; lv2:binary <libpsyn.so>;
rdfs:seeAlso <psyn.ttl>. rdfs:seeAlso <psyn.ttl>.

2
psyn.c
View File

@ -186,7 +186,7 @@ static void run(LV2_Handle lv2instance, uint32_t sample_count)
static LV2_Descriptor g_lv2descriptor = static LV2_Descriptor g_lv2descriptor =
{ {
.URI = "http://fuzzle.org/~petern/psyn/1", .URI = "urn:fuzzle:psyn",
.instantiate = &instantiate, .instantiate = &instantiate,
.connect_port = &connect_port, .connect_port = &connect_port,
.run = &run, .run = &run,

View File

@ -3,7 +3,7 @@
@prefix doap: <http://usefulinc.com/ns/doap#> . @prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2ev: <http://lv2plug.in/ns/ext/event#> . @prefix lv2ev: <http://lv2plug.in/ns/ext/event#> .
<http://fuzzle.org/~petern/psyn/1> <urn:fuzzle:psyn>
a lv2:Plugin; a lv2:Plugin;
doap:maintainer [ doap:maintainer [
foaf:name "Peter Nelson"; foaf:name "Peter Nelson";