summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-09 01:36:53 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-09 01:36:53 +0000
commitfedea84f3ce4d58d4fb2d5d15f142443da760f32 (patch)
tree198900b60373e23024e5b6e8311317e1ae8c2337 /docs
parent35f934f5a7d9eb79a69f33de84854aa9a506b912 (diff)
Changed a few versionadded doc directives from "development" to "1.1".
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10005 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index e4a514576f..e1c3c2e06c 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -494,7 +494,7 @@ arguments at time of construction:
/customers/details/?name=fred&age=7
- .. versionadded:: development
+ .. versionadded:: 1.1
If you already have the GET arguments in URL-encoded form, you can
use that encoding instead of using the data argument. For example,
@@ -586,7 +586,7 @@ arguments at time of construction:
.. method:: Client.head(path, data={}, follow=False)
- .. versionadded:: development
+ .. versionadded:: 1.1
Makes a HEAD request on the provided ``path`` and returns a ``Response``
object. Useful for testing RESTful interfaces. Acts just like
@@ -598,7 +598,7 @@ arguments at time of construction:
.. method:: Client.options(path, data={}, follow=False)
- .. versionadded:: development
+ .. versionadded:: 1.1
Makes an OPTIONS request on the provided ``path`` and returns a
``Response`` object. Useful for testing RESTful interfaces.
@@ -609,7 +609,7 @@ arguments at time of construction:
.. method:: Client.put(path, data={}, content_type=MULTIPART_CONTENT, follow=False)
- .. versionadded:: development
+ .. versionadded:: 1.1
Makes an PUT request on the provided ``path`` and returns a
``Response`` object. Useful for testing RESTful interfaces. Acts just
@@ -621,7 +621,7 @@ arguments at time of construction:
.. method:: Client.delete(path, follow=False)
- .. versionadded:: development
+ .. versionadded:: 1.1
Makes an DELETE request on the provided ``path`` and returns a
``Response`` object. Useful for testing RESTful interfaces.