Renumbered all the doctest examples so that they are ordered correctly on the doc pages.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4796 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
af1aa1baea
commit
189e7dd802
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
Empty model tests
|
39. Empty model tests
|
||||||
|
|
||||||
These test that things behave sensibly for the rare corner-case of a model with
|
These test that things behave sensibly for the rare corner-case of a model with
|
||||||
no fields.
|
no fields.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
31. Callable defaults
|
32. Callable defaults
|
||||||
|
|
||||||
You can pass callable objects as the ``default`` parameter to a field. When
|
You can pass callable objects as the ``default`` parameter to a field. When
|
||||||
the object is created without an explicit value passed in, Django will call
|
the object is created without an explicit value passed in, Django will call
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
39. Fixtures.
|
37. Fixtures.
|
||||||
|
|
||||||
Fixtures are a way of loading data into the database in bulk. Fixure data
|
Fixtures are a way of loading data into the database in bulk. Fixure data
|
||||||
can be stored in any serializable format (including JSON and XML). Fixtures
|
can be stored in any serializable format (including JSON and XML). Fixtures
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
33. Generic relations
|
34. Generic relations
|
||||||
|
|
||||||
Generic relations let an object have a foreign key to any object through a
|
Generic relations let an object have a foreign key to any object through a
|
||||||
content-type/object-id field. A generic foreign key can point to any object,
|
content-type/object-id field. A generic foreign key can point to any object,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
34. DB-API Shortcuts
|
35. DB-API Shortcuts
|
||||||
|
|
||||||
get_object_or_404 is a shortcut function to be used in view functions for
|
get_object_or_404 is a shortcut function to be used in view functions for
|
||||||
performing a get() lookup and raising a Http404 exception if a DoesNotExist
|
performing a get() lookup and raising a Http404 exception if a DoesNotExist
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
32. get_or_create()
|
33. get_or_create()
|
||||||
|
|
||||||
get_or_create() does what it says: it tries to look up an object with the given
|
get_or_create() does what it says: it tries to look up an object with the given
|
||||||
parameters. If an object isn't found, it creates one with the given parameters.
|
parameters. If an object isn't found, it creates one with the given parameters.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
28. Many-to-many and many-to-one relationships to the same table
|
29. Many-to-many and many-to-one relationships to the same table
|
||||||
|
|
||||||
Make sure to set ``related_name`` if you use relationships to the same table.
|
Make sure to set ``related_name`` if you use relationships to the same table.
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
27. Many-to-many relationships between the same two tables
|
28. Many-to-many relationships between the same two tables
|
||||||
|
|
||||||
In this example, A Person can have many friends, who are also people. Friendship is a
|
In this example, A Person can have many friends, who are also people. Friendship is a
|
||||||
symmetrical relationship - if I am your friend, you are my friend.
|
symmetrical relationship - if I am your friend, you are my friend.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
26. Default manipulators
|
27. Default manipulators
|
||||||
|
|
||||||
Each model gets an AddManipulator and ChangeManipulator by default.
|
Each model gets an AddManipulator and ChangeManipulator by default.
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
34. Generating HTML forms from models
|
36. Generating HTML forms from models
|
||||||
|
|
||||||
Django provides shortcuts for creating Form objects from a model class and a
|
Django provides shortcuts for creating Form objects from a model class and a
|
||||||
model instance.
|
model instance.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
29. Object pagination
|
30. Object pagination
|
||||||
|
|
||||||
Django provides a framework for paginating a list of objects in a few lines
|
Django provides a framework for paginating a list of objects in a few lines
|
||||||
of code. This is often useful for dividing search results or long lists of
|
of code. This is often useful for dividing search results or long lists of
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
XXX. Tests for ``select_related()``
|
40. Tests for ``select_related()``
|
||||||
|
|
||||||
``select_related()`` follows all relationships and pre-caches any foreign key
|
``select_related()`` follows all relationships and pre-caches any foreign key
|
||||||
values so that complex trees can be fetched in a single query. However, this
|
values so that complex trees can be fetched in a single query. However, this
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
XXX. Serialization
|
41. Serialization
|
||||||
|
|
||||||
``django.core.serializers`` provides interfaces to converting Django querysets
|
``django.core.serializers`` provides interfaces to converting Django querysets
|
||||||
to and from "flat" data (i.e. strings).
|
to and from "flat" data (i.e. strings).
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
39. Testing using the Test Client
|
38. Testing using the Test Client
|
||||||
|
|
||||||
The test client is a class that can act like a simple
|
The test client is a class that can act like a simple
|
||||||
browser for testing purposes.
|
browser for testing purposes.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
"""
|
"""
|
||||||
30. Validation
|
31. Validation
|
||||||
|
|
||||||
This is an experimental feature!
|
This is an experimental feature!
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue