From 295d44114978522b2e9109db4dd2c2bfcdcb78b9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 3 Jul 2007 03:46:17 +0000 Subject: Back out last commit (ignored all plugins w/o doap:name in manifest.ttl, avoiding invalid plugins will be tougher than I thought...) git-svn-id: http://svn.drobilla.net/lad/slv2@557 a436a847-0d15-0410-975c-d299462d15a1 --- src/world.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/world.c') diff --git a/src/world.c b/src/world.c index ee6f029..dc2be1a 100644 --- a/src/world.c +++ b/src/world.c @@ -356,11 +356,9 @@ slv2_world_load_all(SLV2World world) unsigned char* query_string = (unsigned char*) "PREFIX : \n" "PREFIX rdfs: \n" - "PREFIX lv2: \n" - "PREFIX doap: \n" "PREFIX slv2: \n" "SELECT DISTINCT ?plugin ?data ?bundle ?binary\n" - "WHERE { ?plugin a :Plugin; doap:name ?name; lv2:bundleURI ?bundle; rdfs:seeAlso ?data\n" + "WHERE { ?plugin a :Plugin; slv2:bundleURI ?bundle; rdfs:seeAlso ?data\n" "OPTIONAL { ?plugin :binary ?binary } }\n" "ORDER BY ?plugin\n"; -- cgit v1.2.1