]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/robotstxt/urls.py
#OSQAAWS-79, the improved filtration of the content, now we check if the moderation...
[osqa.git] / forum_modules / robotstxt / urls.py
1 from django.conf.urls.defaults import *
2 from django.http import  HttpResponse
3 import settings
4
5 urlpatterns = patterns('',
6     (r'^robots.txt$',  lambda r: HttpResponse(settings.ROBOTS_FILE.value)),
7 )