diff options
author | David Robillard <d@drobilla.net> | 2007-05-01 05:11:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-05-01 05:11:21 +0000 |
commit | 3f94f9ccf13d08b8bf7acd786e0b894f01fb5175 (patch) | |
tree | f7d2f92229498dc26e4af4005dbf7c920cf2c18a /src/progs/ingenuity/LoadRemotePatchWindow.cpp | |
parent | 3e5fef2e59776923f175a4260adf18c559ab861f (diff) | |
download | ingen-3f94f9ccf13d08b8bf7acd786e0b894f01fb5175.tar.gz ingen-3f94f9ccf13d08b8bf7acd786e0b894f01fb5175.tar.bz2 ingen-3f94f9ccf13d08b8bf7acd786e0b894f01fb5175.zip |
Fixed remote patch loading.
git-svn-id: http://svn.drobilla.net/lad/ingen@487 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/LoadRemotePatchWindow.cpp')
-rw-r--r-- | src/progs/ingenuity/LoadRemotePatchWindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/progs/ingenuity/LoadRemotePatchWindow.cpp b/src/progs/ingenuity/LoadRemotePatchWindow.cpp index 12006f3f..d1aa0db3 100644 --- a/src/progs/ingenuity/LoadRemotePatchWindow.cpp +++ b/src/progs/ingenuity/LoadRemotePatchWindow.cpp @@ -65,10 +65,11 @@ LoadRemotePatchWindow::present(SharedPtr<PatchModel> patch, MetadataMap data) _initial_data = data; RDF::Model model(*App::instance().rdf_world(), - "http://rdf.drobilla.net/ingen_patches/index.ttl"); + "http://rdf.drobilla.net/ingen_patches/index.ttl", + "http://rdf.drobilla.net/ingen_patches/"); RDF::Query query(*App::instance().rdf_world(), Glib::ustring( - "SELECT DISTINCT ?name ?uri FROM <> WHERE {" + "SELECT DISTINCT ?name ?uri WHERE {" " ?uri a ingen:Patch ;" " doap:name ?name ." "}")); |