summaryrefslogtreecommitdiffstats
path: root/forum_modules/robotstxt/urls.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-03-14 18:27:57 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-03-14 18:27:57 -0400
commit10c98242325230d2314c2f1292e75650acd8d50e (patch)
treeb977974539f794324a4bb36655ae6e35ecc769a3 /forum_modules/robotstxt/urls.py
parent7d4e81c2e6553ee9aa087d95fdc6c87f75b021df (diff)
parentc2255c60fa5bca3f49fa30aa81a20fcdaa603dc3 (diff)
downloadaskbot-10c98242325230d2314c2f1292e75650acd8d50e.tar.gz
askbot-10c98242325230d2314c2f1292e75650acd8d50e.tar.bz2
askbot-10c98242325230d2314c2f1292e75650acd8d50e.zip
merged with master branch
Diffstat (limited to 'forum_modules/robotstxt/urls.py')
-rwxr-xr-xforum_modules/robotstxt/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/forum_modules/robotstxt/urls.py b/forum_modules/robotstxt/urls.py
new file mode 100755
index 00000000..79a6d84c
--- /dev/null
+++ b/forum_modules/robotstxt/urls.py
@@ -0,0 +1,6 @@
+from django.conf.urls.defaults import *
+from django.views.generic.simple import direct_to_template
+
+urlpatterns = patterns('',
+ (r'^robots.txt$', direct_to_template, {'template': 'modules/robotsdennyall/robots.txt'}),
+)