Switch to urn instead of fake URL
parent
60bbaac366
commit
029d2f6cdd
|
@ -1,7 +1,7 @@
|
|||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<http://fuzzle.org/~petern/ptap/1>
|
||||
<urn:fuzzle:ptap>
|
||||
a lv2:Plugin, lv2:DelayPlugin;
|
||||
lv2:binary <ptap.so>;
|
||||
rdfs:seeAlso <ptap.ttl>.
|
||||
|
|
|
@ -211,7 +211,7 @@ static void ptap_cleanup(LV2_Handle lv2instance)
|
|||
|
||||
static const LV2_Descriptor s_lv2descriptor =
|
||||
{
|
||||
.URI = "http://fuzzle.org/~petern/ptap/1",
|
||||
.URI = "urn:fuzzle:ptap",
|
||||
.instantiate = &ptap_instantiate,
|
||||
.connect_port = &ptap_connect_port,
|
||||
.run = &ptap_run,
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix doap: <http://usefulinc.com/ns/doap#> .
|
||||
@prefix lv2ev: <http://lv2plug.in/ns/ext/event#> .
|
||||
|
||||
<http://fuzzle.org/~petern/ptap/1>
|
||||
<urn:fuzzle:ptap>
|
||||
a lv2:Plugin;
|
||||
doap:maintainer [
|
||||
foaf:name "Peter Nelson";
|
||||
|
|
|
@ -32,7 +32,7 @@ static void ptapui_port_event(
|
|||
|
||||
static const LV2UI_Descriptor s_lv2uidescriptor =
|
||||
{
|
||||
.URI = "http://fuzzle.org/~petern/ptapui/1",
|
||||
.URI = "urn:fuzzle:ptap#X11UI",
|
||||
.instantiate = &ptapui_instantiate,
|
||||
.cleanup = &ptapui_cleanup,
|
||||
.port_event = &ptapui_port_event,
|
||||
|
|
Loading…
Reference in New Issue