| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib64/lv2/state.lv2/ |
Upload File : |
@prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix state: <http://lv2plug.in/ns/ext/state#> . <http://lv2plug.in/ns/ext/state> a owl:Ontology ; rdfs:label "LV2 State" ; rdfs:comment "An interface for LV2 plugins to save and restore state." ; rdfs:seeAlso <state.meta.ttl> ; owl:imports <http://lv2plug.in/ns/lv2core> . state:interface a lv2:ExtensionData ; rdfs:label "interface" ; rdfs:comment "A plugin interface for saving and restoring state." . state:State a rdfs:Class ; rdfs:label "State" ; rdfs:comment "LV2 plugin state." . state:loadDefaultState a lv2:Feature ; rdfs:label "load default state" ; rdfs:comment "A feature indicating that the plugin has default state." . state:state a rdf:Property , owl:ObjectProperty ; rdfs:label "state" ; rdfs:range state:State ; rdfs:comment "The state of an LV2 plugin instance." . state:mapPath a lv2:Feature ; rdfs:label "map path" ; rdfs:comment "A feature for mapping between absolute and abstract file paths." . state:makePath a lv2:Feature ; rdfs:label "make path" ; rdfs:comment "A feature for creating new files and directories." . state:threadSafeRestore a lv2:Feature ; rdfs:label "thread-safe restore" ; rdfs:comment "A feature indicating support for thread-safe state restoration." . state:freePath a lv2:Feature ; rdfs:label "free path" ; rdfs:comment "A feature for freeing paths allocated by the host." . state:StateChanged a rdfs:Class ; rdfs:label "State Changed" ; rdfs:comment "A notification that the internal state of the plugin has changed." .