import re
from django.core.mail import send_mail
from django.http import HttpResponse
-from django.template import RequestContext
from django.template.loader import render_to_string
from django.utils import timezone
from django.conf import settings
try:
res = fun(request, **kwargs)
if res and template:
- res = {'html': render_to_string(template, res, RequestContext(request))}
+ res = {'html': render_to_string(template, res, request=request)}
except AjaxError as e:
res = {'result': e.args[0]}
if 'result' not in res:
# the original re.escape messes with unicode
def re_escape(s):
return re.sub(r"[(){}\[\].*?|^$\\+-]", r"\\\g<0>", s)
+
+
+BOT_BITS = ['bot', 'slurp', 'spider', 'facebook', 'crawler', 'parser', 'http']
+
+
+def is_crawler(request):
+ user_agent = request.META.get('HTTP_USER_AGENT')
+ if not user_agent:
+ return True
+ user_agent = user_agent.lower()
+ return any(bot_bit in user_agent for bot_bit in BOT_BITS)