On Thu, 2009-03-26 at 20:35 -0700, Thomas Hill wrote: > Hey all, > > > I'm trying to implement a function similar to get_object_or_404. I'm > trying to check permissions for a user, and if those permissions are > met, then I want them to be sent to a page explaining what's going on. > I found the exception PermissionDenied, but I can't find a way to do a > custom permission denied page (would this even be the right thing to > do?) > > > Is there a way to do a raise Http200('<html code here, or template, or > what have you') for this sort of reroute?
No. Http404 is a special class, in that it's a subclass of Exception. If you want to raise an exception to provide some kind of early bailout, you'll need to either capture and handle those exceptions in each view or write a middleware to handle the view exceptions (and don't catch the exception). My preferred method is to catch and handle any exceptions in the view, since it makes it clear which layer is responsible for talking to the server. However, I intentionally don't use things like get_object_or_404 in anything other than the outer view for the same reason: that code can be reused without assuming it's going to be an HTTP response. Regards, Malcolm > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---