summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.de>2010-01-12 13:00:21 +0100
committerChristoph Helma <helma@in-silico.de>2010-01-12 13:00:21 +0100
commit39c8cc99b5dd6a41abe4e77541f97a9f9136e436 (patch)
tree754bd1d23046a62e908bcd8c3b177e0f45bf4a7e
parentcba55e685015d997b51630652160338e0065b460 (diff)
README added
-rw-r--r--README22
1 files changed, 22 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..f8320e8
--- /dev/null
+++ b/README
@@ -0,0 +1,22 @@
+OpenTox Task
+============
+
+* An OpenTox REST Webservice (http://www.opentox.org)
+* Does _not_ comply to the (incomplete) OpenTox API
+
+REST operations:
+
+Get a list of all tasks GET / - Task URIs 200
+Get the status of a task GET /{id}/status - created|started|completed|cancelled 200,404
+Create a new task POST / - Task URI 200
+Start a task PUT /{id}/started - - 200,404
+Complete a task PUT /{id}/completed resource={resource_uri} - 200,404
+Cancel a task PUT /{id}/cancelled - - 200, 404
+Delete a task DELETE /{id} - - 200, 404
+Delete all tasks DELETE / - - 200
+
+More documentation: Source code (application.rb)
+
+Copyright (c) 2009 Christoph Helma. See LICENSE for details.
+
+