projects
/
osqa.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixing a translation bug (made by me... :)
[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
)