diff options
author | Chris Cahoon <chris.cahoon@gmail.com> | 2009-08-13 22:57:16 +0000 |
---|---|---|
committer | Chris Cahoon <chris.cahoon@gmail.com> | 2009-08-13 22:57:16 +0000 |
commit | bcec8b2c43bd3726fb764044a6e872168abef674 (patch) | |
tree | f933b33aa96a8b43ab07088d6d0fc03c760103cd /docs/topics | |
parent | b15984b179953e93c74f47d06761c9a5c22b0716 (diff) | |
download | django-soc2009/http-wsgi-improvements.tar.gz |
[soc2009/http-wsgi-improvements] Update versions in docs for the various new HttpResponse features, and fixed an error on the argument list for HttpResponse.__init__.archive/soc2009/http-wsgi-improvementssoc2009/http-wsgi-improvements
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/http-wsgi-improvements@11450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
-rw-r--r-- | docs/topics/http/shortcuts.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt index 15aa6c4fa7..8c7afcfe4c 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -17,7 +17,7 @@ introduce controlled coupling for convenience's sake. ``render_to_response`` ====================== -.. function:: render_to_response(template[, dictionary][, context_instance][, mimetype, content_type, status]) +.. function:: render_to_response(template[, dictionary][, context_instance][, mimetype, content_type, request]) Renders a given template with a given context dictionary and returns an :class:`~django.http.HttpResponse` object with that rendered text. |