]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/robotstxt/urls.py
#OSQA-544, words in cyrillic should also be counted, adding the А-Я (all the letters...
[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 )