]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/robotstxt/urls.py
merging to the trunk changes in the user model, commit 694
[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 )