From 673c2fa8e710c94b1ce250ec7b01d183d2bf91a0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 18 Mar 2011 06:20:40 +0000 Subject: Add OWL types. Fix lv2:minimum, lv2:maximum, and lv2:minimum (definition did not match the reality of their usage) (Spec bug found with Pellet). Move project description metadata to manifest. Remove invalid (non-DL) OWL restrictions, and use of Turtle collection syntax (there is at least one broken implementation in the wild that fails to parse this). LV2 is now almost, but not quite, a valid OWL DL Ontology. --- core.lv2/manifest.ttl | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) (limited to 'core.lv2/manifest.ttl') diff --git a/core.lv2/manifest.ttl b/core.lv2/manifest.ttl index 454a0c5..c4f134d 100644 --- a/core.lv2/manifest.ttl +++ b/core.lv2/manifest.ttl @@ -1,8 +1,32 @@ -@prefix lv2: . -@prefix rdfs: . +@prefix doap: . +@prefix foaf: . +@prefix lv2: . +@prefix rdfs: . - a lv2:Specification ; + a doap:Project , lv2:Specification ; lv2:minorVersion 3 ; lv2:microVersion 2 ; - rdfs:seeAlso . + rdfs:seeAlso ; + doap:license ; + doap:name "LV2" ; + doap:homepage ; + doap:created "2004-04-21" ; + doap:shortdesc "An audio plugin interface specification" ; + doap:programming-language "C" ; + doap:release [ + doap:revision "3.2" ; + doap:created "2011-03-17" + ] ; + doap:maintainer [ + a foaf:Person ; + foaf:name "Steve Harris" ; + foaf:homepage ; + rdfs:seeAlso + ] , [ + a foaf:Person ; + foaf:name "David Robillard" ; + foaf:homepage ; + rdfs:seeAlso + ] . + -- cgit v1.2.1