aboutsummaryrefslogtreecommitdiffstats
path: root/docs/index.rst
diff options
context:
space:
mode:
authorTom Christie2011-06-02 16:03:11 +0100
committerTom Christie2011-06-02 16:03:11 +0100
commit3531b0b35540ade216299c46717dcf9fa24487c7 (patch)
tree813755ed96aa7a0476a719b570635424119f0000 /docs/index.rst
parentbf9ea978bca8928ba5726e4ec3d76e81d72aada8 (diff)
downloaddjango-rest-framework-3531b0b35540ade216299c46717dcf9fa24487c7.tar.bz2
More updating docs for 0.2
--HG-- rename : docs/examples/modelresources.rst => docs/examples/modelviews.rst rename : docs/examples/resources.rst => docs/examples/views.rst
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 866ad444..dfa361bd 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -89,17 +89,17 @@ Using Django REST framework can be as simple as adding a few lines to your urlco
Django REST framework comes with two "getting started" examples.
-#. :ref:`resources`
-#. :ref:`modelresources`
+#. :ref:`views`
+#. :ref:`modelviews`
Examples
--------
There are a few real world web API examples included with Django REST framework.
-#. :ref:`objectstore` - Using :class:`.Resource` for resources that do not map to models.
-#. :ref:`codehighlighting` - Using :class:`.Resource` with forms for input validation.
-#. :ref:`blogposts` - Using :class:`.ModelResource` for resources that map directly to models.
+#. :ref:`objectstore` - Using :class:`views.View` classes for APIs that do not map to models.
+#. :ref:`codehighlighting` - Using :class:`views.View` classes with forms for input validation.
+#. :ref:`blogposts` - Using :class:`views.ModelView` classes for APIs that map directly to models.
All the examples are freely available for testing in the sandbox:
@@ -143,8 +143,8 @@ Examples Reference
.. toctree::
:maxdepth: 1
- examples/resources
- examples/modelresources
+ examples/views
+ examples/modelviews
examples/objectstore
examples/pygments
examples/blogpost