diff options
author | David Robillard <d@drobilla.net> | 2011-10-27 15:42:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-10-27 15:42:46 +0000 |
commit | 50fc4c3dd2ac72311170436e455770f9c6814ffd (patch) | |
tree | e726df93aef0cfb6bd53e956a4ea1ecfa1d3b830 /ext/pui-gtk.lv2 | |
parent | 9adcb3b918e11838464e183c5b4dd2036dc67a03 (diff) | |
download | lv2-50fc4c3dd2ac72311170436e455770f9c6814ffd.tar.xz |
Port lv2specgen to rdflib.
Diffstat (limited to 'ext/pui-gtk.lv2')
-rw-r--r-- | ext/pui-gtk.lv2/pui-gtk.ttl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/pui-gtk.lv2/pui-gtk.ttl b/ext/pui-gtk.lv2/pui-gtk.ttl index 5bce34e..63c8417 100644 --- a/ext/pui-gtk.lv2/pui-gtk.ttl +++ b/ext/pui-gtk.lv2/pui-gtk.ttl @@ -23,13 +23,13 @@ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR # OTHER DEALINGS IN THE SOFTWARE. -@prefix pui-gtk: <http://lv2plug.in/ns/ext/pui-gtk#>. -@prefix pui: <http://lv2plug.in/ns/ext/pui#>. -@prefix lv2: <http://lv2plug.in/ns/lv2core#>. -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix gtkui: <http://lv2plug.in/ns/ext/pui-gtk#>. +@prefix pui: <http://lv2plug.in/ns/ext/pui#>. +@prefix lv2: <http://lv2plug.in/ns/lv2core#>. +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . <http://lv2plug.in/ns/ext/pui-gtk> a lv2:Specification ; doap:license <http://usefulinc.com/doap/licenses/mit>; @@ -48,7 +48,7 @@ This extension defines an UI type for the in-process UI extension that can be used in a Gtk+ program. """. -pui-gtk:GtkUI a rdfs:Class; +gtkui:GtkUI a rdfs:Class; rdfs:subClassOf pui:UI; rdfs:label "Gtk+ UI"; lv2:documentation """ @@ -63,7 +63,7 @@ LV2_PUI_Descriptor may only be called from the thread that runs the Glib main loop.</p> """ . -pui-gtk:noHostResize a lv2:Feature; +gtkui:noHostResize a lv2:Feature; rdfs:label "No host resize"; lv2:documentation """ <p>This Feature should only be used with UIs.</p> |