Login

A custom 500 handler which is AJAX-aware

Author:
mallipeddi
Posted:
January 30, 2008
Language:
Python
Version:
.96
Score:
1 (after 1 ratings)

The default 500 handler does not take into consideration if the HTTP request made is an XMLHttpRequest. If it's an XHR, then it may not be a good idea to send back your default 500 HTML page.

To use this custom 500 handler, just add the following to your urls.py:

handler500 = 'my_project.my_app.views.my_500'
1
2
3
4
5
def my_500(request):
    if request.META.get('HTTP_X_REQUESTED_WITH') == 'XMLHttpRequest':
        return HttpResponse("")
    else:
        return render_to_response("500.html",{},context_instance=RequestContext(request))

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

buriy (on January 31, 2008):

how about to email error that was happened? ;)

#

Please login first before commenting.