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:
Jacob Kaplan-Moss 2007-03-23 20:17:04 +00:00
parent af1aa1baea
commit 189e7dd802
15 changed files with 15 additions and 15 deletions

View File

@ -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
no fields.

View File

@ -1,5 +1,5 @@
"""
31. Callable defaults
32. Callable defaults
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

View File

@ -1,5 +1,5 @@
"""
39. Fixtures.
37. Fixtures.
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

View File

@ -1,5 +1,5 @@
"""
33. Generic relations
34. Generic relations
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,

View File

@ -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
performing a get() lookup and raising a Http404 exception if a DoesNotExist

View File

@ -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
parameters. If an object isn't found, it creates one with the given parameters.

View File

@ -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.
"""

View File

@ -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
symmetrical relationship - if I am your friend, you are my friend.

View File

@ -1,5 +1,5 @@
"""
26. Default manipulators
27. Default manipulators
Each model gets an AddManipulator and ChangeManipulator by default.
"""

View File

@ -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
model instance.

View File

@ -1,5 +1,5 @@
"""
29. Object pagination
30. Object pagination
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

View File

@ -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
values so that complex trees can be fetched in a single query. However, this

View File

@ -1,5 +1,5 @@
"""
XXX. Serialization
41. Serialization
``django.core.serializers`` provides interfaces to converting Django querysets
to and from "flat" data (i.e. strings).

View File

@ -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
browser for testing purposes.

View File

@ -1,5 +1,5 @@
"""
30. Validation
31. Validation
This is an experimental feature!