summaryrefslogtreecommitdiff
path: root/docs/ref/generic-views.txt
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2010-12-26 00:37:14 +0000
committerTimo Graham <timograham@gmail.com>2010-12-26 00:37:14 +0000
commit2ea93f9327e37c686cc4333d1f483a7c97894a3c (patch)
tree813e9832e252229a782aadc9e3082846cbf7103e /docs/ref/generic-views.txt
parent00c554f89e184b2d4de828c82965e333a3c2a863 (diff)
Fixed #14000 - remove versionadded/changed tags for Django 1.0 and 1.1
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/generic-views.txt')
-rw-r--r--docs/ref/generic-views.txt19
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/ref/generic-views.txt b/docs/ref/generic-views.txt
index f6d22eafa9..b9b887dda7 100644
--- a/docs/ref/generic-views.txt
+++ b/docs/ref/generic-views.txt
@@ -93,9 +93,6 @@ If the given URL is ``None``, Django will return an ``HttpResponseGone`` (410).
to the URL. If ``False``, then the query string is discarded. By
default, ``query_string`` is ``False``.
-.. versionadded:: 1.1
- The ``permanent`` keyword argument is new in Django 1.1.
-
.. versionadded:: 1.3
The ``query_string`` keyword argument is new in Django 1.3.
@@ -184,8 +181,6 @@ a date in the *future* are not included unless you set ``allow_future`` to
specified in ``date_field`` is greater than the current date/time. By
default, this is ``False``.
- .. versionadded:: 1.0
-
* ``template_object_name``: Designates the name of the template variable
to use in the template context. By default, this is ``'latest'``.
@@ -210,9 +205,6 @@ In addition to ``extra_context``, the template's context will be:
``datetime.datetime`` objects. These are ordered in reverse. This is
equivalent to ``queryset.dates(date_field, 'year')[::-1]``.
- .. versionchanged:: 1.0
- The behaviour depending on ``template_object_name`` is new in this version.
-
* ``latest``: The ``num_latest`` objects in the system, ordered descending
by ``date_field``. For example, if ``num_latest`` is ``10``, then
``latest`` will be a list of the latest 10 objects in ``queryset``.
@@ -729,9 +721,6 @@ If ``template_name`` isn't specified, this view will use the template
**Template context:**
-.. versionadded:: 1.0
- The ``paginator`` and ``page_obj`` context variables are new.
-
In addition to ``extra_context``, the template's context will be:
* ``object_list``: The list of objects. This variable's name depends on the
@@ -775,8 +764,6 @@ represented as page ``1``.
For more on pagination, read the :doc:`pagination documentation
</topics/pagination>`.
-.. versionadded:: 1.0
-
As a special case, you are also permitted to use ``last`` as a value for
``page``::
@@ -861,12 +848,6 @@ Create/update/delete generic views
The ``django.views.generic.create_update`` module contains a set of functions
for creating, editing and deleting objects.
-.. versionchanged:: 1.0
-
-``django.views.generic.create_update.create_object`` and
-``django.views.generic.create_update.update_object`` now use the new :doc:`forms
-library </topics/forms/index>` to build and display the form.
-
``django.views.generic.create_update.create_object``
----------------------------------------------------