This is a decorator which essentially replaces the decorated view with a view that always raises Http404
(File Not Found) when settings.DEBUG
is set to True.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | def when_developing(view):
"""
Usage:
@when_developing
def delete_all_users(request):
User.objects.all().delete()
return HttpResponse('Successfully deleted all users.')
"""
from django.conf import settings
def f404(*args, **kwargs):
from django.http import Http404
raise Http404
def inner(*args, **kwargs):
return view(*args, **kwargs)
if not settings.DEBUG:
return f404
return inner
|
More like this
- Stuff by NixonDash 1 month ago
- Add custom fields to the built-in Group model by jmoppel 3 months ago
- Month / Year SelectDateWidget based on django SelectDateWidget by pierreben 6 months, 2 weeks ago
- Python Django CRUD Example Tutorial by tuts_station 7 months ago
- Browser-native date input field by kytta 8 months, 2 weeks ago
Comments
Excellent! Perfect timing --already using it.
#
Please login first before commenting.