From b439ac096d4b61bc5522ec29e5fb8260463e06a9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 5 Nov 2011 00:09:48 +0000 Subject: Fix invalid markup. --- ext/pui.lv2/pui.ttl | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'ext/pui.lv2') diff --git a/ext/pui.lv2/pui.ttl b/ext/pui.lv2/pui.ttl index 8c289bc..98db919 100644 --- a/ext/pui.lv2/pui.ttl +++ b/ext/pui.lv2/pui.ttl @@ -51,7 +51,7 @@ lv2:documentation """

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 +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#> .
@@ -59,7 +59,7 @@ bundle and are referenced in the RDF data using the triples
                             lv2:appliesTo <http://example.org/my-plugin> ;
                             pui:binary     <my-ui.so> .
 
-where http://example.org/my-plugin is the URI of the plugin, +

... 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 my-ui.so is the relative URI to the shared object file. While it is possible to have the plugin UI and the plugin in the same shared object file @@ -103,20 +103,20 @@ pui:UI a rdfs:Class;

The class which represents an LV2 plugin UI.

-

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

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

+ +

The rdf:type of an UI is used by the host to decide whether it supports the UI and how to handle the LV2_PUI_Widget object that is returned by the UIs -get_widget() function. For example, a type of pui-gtk:GtkGUI might tell the host -that LV2_PUI_Widget is a pointer to an object of a type defined in the Gtk+ -library. No UI types are defined in this extension, that is intentionally -left for other extensions. -

+get_widget() function. For example, a type of pui-gtk:GtkGUI might tell the +host that LV2_PUI_Widget is a pointer to an object of a type defined in the +Gtk+ library. No UI types are defined in this extension, that is intentionally +left for other extensions.

The doap:name property should be at most a few words in length using title capitalization, e.g. "Flashy Mixer GUI". Use lv2:documentation for more @@ -148,14 +148,14 @@ and plugin. PortProtocols can be specified in additional extensions, and those extensions MUST specify:

-

    +
    1. Which plugin port types the buffer type is valid for
    2. When the host should call port_event() in LV2_PUI_Descriptor
    3. The format of the data in the buffer passed to port_event()
    4. The format of the data in the buffer passed to write_port()
    5. What happens when the UI calls write_port() in LV2_PUI_Host_Descriptor
    6. What data (if any) should be passed in the LV2_Feature data pointer.
    7. -

    +

For an example, see pui:floatControl or pui:floatPeakRMS.

@@ -210,7 +210,7 @@ period.

However, UIs MUST NOT depend on either the regularity of the calls or the contiguity of the measurement periods; hosts may change the call rate or skip calls for performance or other reasons. Measurement periods for - different calls to port_event() for the same port MUST NOT overlap. + different calls to port_event() for the same port MUST NOT overlap.
  • The format of the data in the buffer passed to port_event() is a single LV2_PUI_Peak_RMS_Data object, and the buffer size is sizeof(LV2_PUI_Peak_RMS_Data).
  • -- cgit v1.2.1