diff options
author | David Robillard <d@drobilla.net> | 2012-03-25 18:28:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-25 18:28:47 +0000 |
commit | 58c3f34d861b6bc3b7a4761bdc7100fd0d530d84 (patch) | |
tree | 8b0b424a82fce3f493fac9b8b7044ef2bf1c9f5c /lv2/lv2plug.in/ns/ext/patch/patch.ttl | |
parent | ec4f54e90f2f9872db34c5c867b150623e1498eb (diff) | |
download | lv2-58c3f34d861b6bc3b7a4761bdc7100fd0d530d84.tar.xz |
Move people information in to a common place.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/patch/patch.ttl')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/patch/patch.ttl | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/lv2/lv2plug.in/ns/ext/patch/patch.ttl b/lv2/lv2plug.in/ns/ext/patch/patch.ttl index 1c50893..f5eef6c 100644 --- a/lv2/lv2plug.in/ns/ext/patch/patch.ttl +++ b/lv2/lv2plug.in/ns/ext/patch/patch.ttl @@ -13,24 +13,19 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix foaf: <http://xmlns.com/foaf/0.1/> . -@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix patch: <http://lv2plug.in/ns/ext/patch#> . -@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 xsd: <http://www.w3.org/2001/XMLSchema#> . - -<http://drobilla.net/drobilla#me> - a foaf:Person ; - foaf:name "David Robillard" ; - foaf:mbox <mailto:d@drobilla.net> ; - rdfs:seeAlso <http://drobilla.net/drobilla> . +@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 xsd: <http://www.w3.org/2001/XMLSchema#> . <http://lv2plug.in/ns/ext/patch> a lv2:Specification ; - rdfs:seeAlso <patch.h> ; + rdfs:seeAlso <patch.h> , + <../../people/people.ttl> ; doap:license <http://opensource.org/licenses/isc> ; doap:developer <http://drobilla.net/drobilla#me> ; doap:name "LV2 Patch" ; |