From 8da42a8b68698b57931f8c5db1247f47d70da009 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 1 Sep 2005 05:12:25 +0000 Subject: [PATCH] Fixed inevitable ReST bugs in [592] git-svn-id: http://code.djangoproject.com/svn/django/trunk@593 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/request_response.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/request_response.txt b/docs/request_response.txt index 72119459bea..3f4ccea7134 100644 --- a/docs/request_response.txt +++ b/docs/request_response.txt @@ -261,7 +261,7 @@ Methods header with the given name. ``set_cookie(key, value='', max_age=None, path='/', domain=None, secure=None)`` - Sets a cookie. The parameters are the same as in the `Cookie.Morsel`_ + Sets a cookie. The parameters are the same as in the `cookie Morsel`_ object in the Python standard library. * ``max_age`` should be a number of seconds, or ``None`` (default) if @@ -272,15 +272,13 @@ Methods calendars.lawrence.com. Otherwise, a cookie will only be readable by the domain that set it. - .. _`Cookie.Morsel object`: http://www.python.org/doc/current/lib/morsel-objects.html + .. _`cookie Morsel`: http://www.python.org/doc/current/lib/morsel-objects.html ``get_content_as_string(encoding)`` Returns the content as a Python string, encoding it from a Unicode object if necessary. -``write(content)`` -``flush()`` -``tell()`` +``write(content)``, ``flush()`` and ``tell()`` These methods make an ``HttpResponse`` instance a file-like object. HttpResponse subclasses