mirror of https://github.com/django/django.git
Fixed a failing test in special_headers, and performed a bit of cleanup.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
930371e91b
commit
2f9c52dc90
|
@ -44,8 +44,6 @@ class View(object):
|
||||||
|
|
||||||
def view(request, *args, **kwargs):
|
def view(request, *args, **kwargs):
|
||||||
self = cls(**initkwargs)
|
self = cls(**initkwargs)
|
||||||
if hasattr(self, 'get') and not hasattr(self, 'head'):
|
|
||||||
self.head = self.get
|
|
||||||
return self.dispatch(request, *args, **kwargs)
|
return self.dispatch(request, *args, **kwargs)
|
||||||
|
|
||||||
# take name and docstring from class
|
# take name and docstring from class
|
||||||
|
@ -79,6 +77,9 @@ class View(object):
|
||||||
)
|
)
|
||||||
return http.HttpResponseNotAllowed(allowed_methods)
|
return http.HttpResponseNotAllowed(allowed_methods)
|
||||||
|
|
||||||
|
def head(self, *args, **kwargs):
|
||||||
|
return self.get(*args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
class TemplateResponseMixin(object):
|
class TemplateResponseMixin(object):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -10,5 +10,5 @@ def xview(request):
|
||||||
return HttpResponse()
|
return HttpResponse()
|
||||||
|
|
||||||
class XViewClass(View):
|
class XViewClass(View):
|
||||||
def get(request):
|
def get(self, request):
|
||||||
return HttpResponse()
|
return HttpResponse()
|
||||||
|
|
Loading…
Reference in New Issue