summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-03 03:46:17 +0000
committerDavid Robillard <d@drobilla.net>2007-07-03 03:46:17 +0000
commit295d44114978522b2e9109db4dd2c2bfcdcb78b9 (patch)
tree7db7e49f2da56bfa4323dbb5dbb49549eefe8520 /src
parent51e3373d0c8f13e13e19dbe80d01dce17a60e6c3 (diff)
downloadlilv-295d44114978522b2e9109db4dd2c2bfcdcb78b9.tar.gz
lilv-295d44114978522b2e9109db4dd2c2bfcdcb78b9.tar.bz2
lilv-295d44114978522b2e9109db4dd2c2bfcdcb78b9.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/world.c4
1 files changed, 1 insertions, 3 deletions
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 : <http://lv2plug.in/ontology#>\n"
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n"
- "PREFIX lv2: <http://lv2plug.in/ontology#>\n"
- "PREFIX doap: <http://usefulinc.com/ns/doap#>\n"
"PREFIX slv2: <http://drobilla.net/ns/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";