On Tue, 4 Aug 2009 16:47:37 -0500
Alex Gaynor <alex.gay...@gmail.com> wrote:

> 
> On Tue, Aug 4, 2009 at 4:45 PM, Mirat Can
> Bayrak<miratcanbay...@gmail.com> wrote:
> >
> > Question is simple. i tried to use raise Http404 from middleware and that 
> > is not working.
> >
> > My middleware is :
> >
> > import urlparse
> > from django.contrib.sites.models import Site
> > from django.http import Http404
> >
> > class GetSubdomainMiddleware:
> >        def process_request(self, request):
> >                site = Site.objects.filter(domain__exact = 
> > request.META['HTTP_HOST'])
> >                if site:
> >                        bits = 
> > urlparse.urlsplit(request.META['HTTP_HOST'])[2].split('.')
> >                        request.subdomain = bits[0]
> >                else:
> >                        raise Http404
> >
> > --
> > Mirat Can Bayrak <miratcanbay...@gmail.com>
> >
> > >
> >
> 
> Right now there is a bug in django's middleware where it doesn't
> correct catch exceptions: http://code.djangoproject.com/ticket/6094.
> 
> Alex
> 
> -- 
> "I disapprove of what you say, but I will defend to the death your
> right to say it." -- Voltaire
> "The people's good is the highest law." -- Cicero
> "Code can always be simpler than you think, but never as simple as you
> want" -- Me
> 
> > 

than... what should i do?

-- 
Mirat Can Bayrak <miratcanbay...@gmail.com>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to