All top level modules are included. Ready for diving into the modules and documenting/ enhancing already existing docs.

This commit is contained in:
markotibold 2011-05-17 00:18:45 +02:00
parent 304786657a
commit 66b9bda9bf
6 changed files with 29 additions and 9 deletions

View File

@ -11,7 +11,7 @@ __all__ = (
'BaseView', 'BaseView',
'ModelView', 'ModelView',
'InstanceModelView', 'InstanceModelView',
'ListOrModelView', 'ListModelView',
'ListOrCreateModelView' 'ListOrCreateModelView'
) )
@ -131,7 +131,3 @@ class ListModelView(ListModelMixin, ModelView):
class ListOrCreateModelView(ListModelMixin, CreateModelMixin, ModelView): class ListOrCreateModelView(ListModelMixin, CreateModelMixin, ModelView):
"""A view which provides default operations for list and create, against a model in the database.""" """A view which provides default operations for list and create, against a model in the database."""
pass pass

View File

@ -140,13 +140,17 @@ Library Reference
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
library/resource
library/renderers
library/parsers
library/authentication library/authentication
library/validators library/compat
library/mixins
library/parsers
library/permissions
library/renderers
library/resource
library/response library/response
library/status library/status
library/validators
library/views
Examples Reference Examples Reference
------------------ ------------------

5
docs/library/compat.rst Normal file
View File

@ -0,0 +1,5 @@
:mod:`compat`
=====================
.. automodule:: compat
:members:

5
docs/library/mixins.rst Normal file
View File

@ -0,0 +1,5 @@
:mod:`mixins`
=====================
.. automodule:: mixins
:members:

View File

@ -0,0 +1,5 @@
:mod:`permissions`
=====================
.. automodule:: permissions
:members:

5
docs/library/views.rst Normal file
View File

@ -0,0 +1,5 @@
:mod:`views`
=====================
.. automodule:: views
:members: