summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-09-19 16:39:14 -0400
committerTim Graham <timograham@gmail.com>2012-09-20 19:06:55 -0400
commit837425b425c2d58596f3ed04a7ed79541279ee7e (patch)
tree9e9f7719e645d872638f189979f29d4c89ae5399 /docs/topics/http
parente06b54391dd06a0448b7676ec38f3734a4f86300 (diff)
Fixed #18934 - Removed versionadded/changed annotations for Django 1.3
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/middleware.txt2
-rw-r--r--docs/topics/http/shortcuts.txt2
-rw-r--r--docs/topics/http/urls.txt7
3 files changed, 0 insertions, 11 deletions
diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt
index fe92bc59a9..a8347e52a0 100644
--- a/docs/topics/http/middleware.txt
+++ b/docs/topics/http/middleware.txt
@@ -117,8 +117,6 @@ middleware is always called on every response.
``process_template_response``
-----------------------------
-.. versionadded:: 1.3
-
.. method:: process_template_response(self, request, response)
``request`` is an :class:`~django.http.HttpRequest` object. ``response`` is a
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index 10be353e80..0dc38b1459 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -17,8 +17,6 @@ introduce controlled coupling for convenience's sake.
.. function:: render(request, template_name[, dictionary][, context_instance][, content_type][, status][, current_app])
- .. versionadded:: 1.3
-
Combines a given template with a given context dictionary and returns an
:class:`~django.http.HttpResponse` object with that rendered text.
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 69089af8e9..99afa13279 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -980,13 +980,6 @@ A :class:`ResolverMatch` object can also be assigned to a triple::
func, args, kwargs = resolve('/some/path/')
-.. versionchanged:: 1.3
- Triple-assignment exists for backwards-compatibility. Prior to
- Django 1.3, :func:`~django.core.urlresolvers.resolve` returned a
- triple containing (view function, arguments, keyword arguments);
- the :class:`ResolverMatch` object (as well as the namespace and pattern
- information it provides) is not available in earlier Django releases.
-
One possible use of :func:`~django.core.urlresolvers.resolve` would be to test
whether a view would raise a ``Http404`` error before redirecting to it::