summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--application.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/application.rb b/application.rb
index 20fadad..167f968 100644
--- a/application.rb
+++ b/application.rb
@@ -37,6 +37,20 @@ module OpenTox
parse_put
end
+ head "/dataset/:id/?" do
+ case @accept
+ when "application/rdf+xml", "text/turtle", "text/plain", /html/
+ r = FourStore.list @accept
+ if r =~ /dataset\/#{params[:id]}/
+ true
+ else
+ false
+ end
+ else
+ bad_request_error "'#{@accept}' is not a supported content type."
+ end
+ end
+
get "/dataset/:id/?" do
case @accept
when "application/rdf+xml", "text/turtle", "text/plain", /html/