aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples/modelviews.rst
diff options
context:
space:
mode:
authorTom Christie2011-12-29 13:54:13 +0000
committerTom Christie2011-12-29 13:54:39 +0000
commitd87113ff60e0a48c85eb0c8d37b86416312b18a2 (patch)
tree9d5778705aed5fdb5e201287d39cde3218a692f5 /docs/examples/modelviews.rst
parent833bcbf69d96ba6ddbb69defb6be256f34e5412e (diff)
downloaddjango-rest-framework-d87113ff60e0a48c85eb0c8d37b86416312b18a2.tar.bz2
For now just point the examples at rest.ep.io
Would be nice to keep the custom subdomain, but too much of a PITA right now.
Diffstat (limited to 'docs/examples/modelviews.rst')
-rw-r--r--docs/examples/modelviews.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/examples/modelviews.rst b/docs/examples/modelviews.rst
index c60c9f24..a98ac279 100644
--- a/docs/examples/modelviews.rst
+++ b/docs/examples/modelviews.rst
@@ -7,11 +7,11 @@ Getting Started - Model Views
A live sandbox instance of this API is available:
- http://api.django-rest-framework.org/model-resource-example/
+ http://rest.ep.io/model-resource-example/
You can browse the API using a web browser, or from the command line::
- curl -X GET http://api.django-rest-framework.org/resource-example/ -H 'Accept: text/plain'
+ curl -X GET http://rest.ep.io/resource-example/ -H 'Accept: text/plain'
Often you'll want parts of your API to directly map to existing django models. Django REST framework handles this nicely for you in a couple of ways:
@@ -43,16 +43,16 @@ And we're done. We've now got a fully browseable API, which supports multiple i
We can visit the API in our browser:
-* http://api.django-rest-framework.org/model-resource-example/
+* http://rest.ep.io/model-resource-example/
Or access it from the command line using curl:
.. code-block:: bash
# Demonstrates API's input validation using form input
- bash: curl -X POST --data 'foo=true' http://api.django-rest-framework.org/model-resource-example/
+ bash: curl -X POST --data 'foo=true' http://rest.ep.io/model-resource-example/
{"detail": {"bar": ["This field is required."], "baz": ["This field is required."]}}
# Demonstrates API's input validation using JSON input
- bash: curl -X POST -H 'Content-Type: application/json' --data-binary '{"foo":true}' http://api.django-rest-framework.org/model-resource-example/
+ bash: curl -X POST -H 'Content-Type: application/json' --data-binary '{"foo":true}' http://rest.ep.io/model-resource-example/
{"detail": {"bar": ["This field is required."], "baz": ["This field is required."]}}