1 2 3 4 5 6 7 8 9 10 11 12 | import re
from django.http import HttpResponseRedirect
class DiggBarMiddleware(object):
diggbar_regex = re.compile("http://digg.com/\w{1,8}/?")
rickroll = "http://www.youtube.com/watch?v=oHg5SJYRHA0"
def process_request(self, request):
if self.diggbar_regex.match(request.META.get('HTTP_REFERER', '')):
return HttpResponseRedirect(self.rickroll)
|
Comments
Fantastic idea!
#
diggbar is a kinda "back to the future", it just sucks.
Nice snippet but what the hell is this song ! lol
#
The code is wrong!
Line 11 should be:
#
nice catch izibi, thanks. fixed
#