Cleaned up some test code.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15957 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
16f6acdb89
commit
4a6cb38722
|
@ -21,17 +21,12 @@ def post_form_view(request):
|
||||||
return post_form_response()
|
return post_form_response()
|
||||||
|
|
||||||
# Response/views used for template tag tests
|
# Response/views used for template tag tests
|
||||||
def _token_template():
|
|
||||||
return Template("{% csrf_token %}")
|
|
||||||
|
|
||||||
def _render_csrf_token_template(req):
|
|
||||||
context = RequestContext(req, processors=[csrf])
|
|
||||||
template = _token_template()
|
|
||||||
return template.render(context)
|
|
||||||
|
|
||||||
def token_view(request):
|
def token_view(request):
|
||||||
"""A view that uses {% csrf_token %}"""
|
"""A view that uses {% csrf_token %}"""
|
||||||
return HttpResponse(_render_csrf_token_template(request))
|
context = RequestContext(request, processors=[csrf])
|
||||||
|
template = Template("{% csrf_token %}")
|
||||||
|
return HttpResponse(template.render(context))
|
||||||
|
|
||||||
def non_token_view_using_request_processor(request):
|
def non_token_view_using_request_processor(request):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue