From d2fa4f8292a50b47864d561c33ced39c55c89254 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 3 Nov 2011 22:36:43 +0000 Subject: Syntax highlight C and Turtle code in documentation. --- ext/pui.lv2/pui.ttl | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'ext/pui.lv2') diff --git a/ext/pui.lv2/pui.ttl b/ext/pui.lv2/pui.ttl index 20c9ee8..c84aa98 100644 --- a/ext/pui.lv2/pui.ttl +++ b/ext/pui.lv2/pui.ttl @@ -51,12 +51,12 @@

This extension defines an interface that can be used to create UIs for plugins. The UIs are code that reside in shared object files in an LV2 bundle and are referenced in the RDF data using the triples -

-  @prefix pui:     <http://lv2plug.in/ns/ext/pui#> .
-  @prefix pui-gtk: <http://lv2plug.in/ns/ext/pui-gtk#> .
-  <http://example.org/my-ui>  a             pui-gtk:GtkUI ;
-                              lv2:appliesTo <http://example.org/my-plugin> ;
-                              pui:binary     <my-ui.so> .
+
+@prefix pui:     <http://lv2plug.in/ns/ext/pui#> .
+@prefix pui-gtk: <http://lv2plug.in/ns/ext/pui-gtk#> .
+<http://example.org/my-ui>  a             pui-gtk:GtkUI ;
+                            lv2:appliesTo <http://example.org/my-plugin> ;
+                            pui:binary     <my-ui.so> .
 
where http://example.org/my-plugin is the URI of the plugin, http://example.org/my-ui is the URI of the plugin UI and @@ -103,12 +103,12 @@ pui:UI a rdfs:Class;

To be used by a host a UI MUST have at least the following properties: -

-    rdf:type (with object a proper subclass of pui:UI)
-    doap:name (one without language tag)
-    lv2:binary (with a shared object file as object)
-    lv2:appliesTo (with a LV2 plugin as object)
-
+