From c934e64879a30f640fc2b9fcaa28daacd874cd59 Mon Sep 17 00:00:00 2001 From: gebele Date: Tue, 11 Jun 2013 12:45:30 +0200 Subject: added missing accept format for uri-list --- lib/4store.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/4store.rb b/lib/4store.rb index 00414c0..24200ae 100644 --- a/lib/4store.rb +++ b/lib/4store.rb @@ -7,10 +7,10 @@ module OpenTox def self.list mime_type bad_request_error "'#{mime_type}' is not a supported mime type. Please specify one of #{@@accept_formats.join(", ")} in the Accept Header." unless @@accept_formats.include? mime_type - if mime_type =~ /(uri-list|html)/ + if mime_type =~ /(uri-list|html|sparql-results)/ sparql = "SELECT DISTINCT ?g WHERE {GRAPH ?g {?s <#{RDF.type}> <#{klass}>} }" else - sparql = "CONSTRUCT {?s ?p ?o.} WHERE {?s <#{RDF.type}> <#{klass}>; ?p ?o. }" + sparql = "CONSTRUCT {?s <#{RDF.type}> <#{klass}>.} WHERE { GRAPH ?g {?s <#{RDF.type}> <#{klass}>.} }" end query sparql, mime_type end -- cgit v1.2.3