From ad2686b58a52109dc79dca21da991194ba13f90a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 14 Apr 2012 04:13:42 +0000 Subject: Remove host-info extension. --- lv2/lv2plug.in/ns/ext/host-info/host-info.ttl | 98 --------------------------- lv2/lv2plug.in/ns/ext/host-info/manifest.ttl | 9 --- lv2/lv2plug.in/ns/ext/host-info/wscript | 1 - 3 files changed, 108 deletions(-) delete mode 100644 lv2/lv2plug.in/ns/ext/host-info/host-info.ttl delete mode 100644 lv2/lv2plug.in/ns/ext/host-info/manifest.ttl delete mode 120000 lv2/lv2plug.in/ns/ext/host-info/wscript (limited to 'lv2/lv2plug.in') diff --git a/lv2/lv2plug.in/ns/ext/host-info/host-info.ttl b/lv2/lv2plug.in/ns/ext/host-info/host-info.ttl deleted file mode 100644 index fa1c611..0000000 --- a/lv2/lv2plug.in/ns/ext/host-info/host-info.ttl +++ /dev/null @@ -1,98 +0,0 @@ -@prefix doap: . -@prefix foaf: . -@prefix hi: . -@prefix lv2: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - a lv2:Specification ; - rdfs:seeAlso <../../meta/meta.ttl> ; - doap:license ; - doap:name "LV2 Host Info" ; - doap:created "2009-00-00" ; - doap:shortdesc "A format for describing LV2 hosts." ; - doap:developer ; - lv2:documentation """ -

This specification defines various properties to represent useful information -about LV2 hosts. Currently, the primary use of this specification is to describe which -extensions are supported by a given host.

- -

The extensions supported by a host can be described like this:

-
-@prefix hi: <http://lv2plug.in/ns/ext/host-info#> .
-
-<http://example.org/some-host>
-    a hi:Host ;
-    doap:name "Foo Rack" ;
-    hi:supportsExtension [
-        hi:extension <http://example.org/some-extension> ;
-        hi:sinceVersion "1.2.0"
-    ] .
-
-""" . - -hi:Host - a rdfs:Class ; - rdfs:label "LV2 Host" ; - rdfs:subClassOf [ - a owl:Restriction ; - owl:onProperty doap:name ; - owl:someValuesFrom xsd:string ; - owl:minCardinality 1 ; - rdfs:comment "A hi:Host MUST have at least one string doap:name" - ] ; - rdfs:comment """ -An application that supports loading LV2 plugins, or performs other -LV2 related functionality. -""" . - -hi:supportsExtension - a rdf:Property ; - rdfs:domain hi:Host ; - rdfs:range hi:ExtensionSupport ; - rdfs:label "supports extension" ; - rdfs:comment "Relates a Host to its ExtensionSupport" . - -hi:ExtensionSupport - a rdfs:Class ; - rdfs:label "Extension Support" ; - rdfs:subClassOf [ - a owl:Restriction ; - owl:onProperty hi:sinceVersion ; - owl:someValuesFrom xsd:string ; - owl:minCardinality 1 ; - rdfs:comment """ -A hi:ExtensionSupport MUST have at least one string hi:sinceVersion -""" - ] ; - rdfs:comment "A description of the support for an extension by a Host" . - -hi:extension - a rdf:Property ; - rdfs:domain hi:ExtensionSupport ; - rdfs:range lv2:Specification ; - rdfs:label "extension" ; - rdfs:comment "Indicates the extension supported by a host." . - -hi:sinceVersion - a rdf:Property ; - rdfs:domain hi:ExtensionSupport ; - rdfs:range xsd:string ; - rdfs:label "since version" ; - rdfs:comment """ -The initial version of a host which supported an extension. -This property MUST always be given -""" . - -hi:untilVersion - a rdf:Property ; - rdfs:domain hi:ExtensionSupport ; - rdfs:range xsd:string ; - rdfs:label "until version" ; - rdfs:comment """ -The final version of a host which supported an extension. This property can -be used if support for an extension was discontinued in a host for some reason. -""" . diff --git a/lv2/lv2plug.in/ns/ext/host-info/manifest.ttl b/lv2/lv2plug.in/ns/ext/host-info/manifest.ttl deleted file mode 100644 index ae1e097..0000000 --- a/lv2/lv2plug.in/ns/ext/host-info/manifest.ttl +++ /dev/null @@ -1,9 +0,0 @@ -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Specification ; - lv2:minorVersion 0 ; - lv2:microVersion 1 ; - rdfs:seeAlso . - diff --git a/lv2/lv2plug.in/ns/ext/host-info/wscript b/lv2/lv2plug.in/ns/ext/host-info/wscript deleted file mode 120000 index 7e2c01b..0000000 --- a/lv2/lv2plug.in/ns/ext/host-info/wscript +++ /dev/null @@ -1 +0,0 @@ -../../../../../ext.wscript \ No newline at end of file -- cgit v1.2.1