blob: b2b26d89b4080aad6515813b3b687badaae7f9d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# -*- coding: utf-8 -*-
"""
sphinx.web.robots
~~~~~~~~~~~~~~~~~
robots.txt
:copyright: 2007-2008 by Georg Brandl.
:license: BSD.
"""
robots_txt = """\
User-agent: *
Disallow: /@source/
Disallow: /@edit/
Disallow: /@submit/
Disallow: /@comments/
Disallow: /@rss/
Disallow: /@admin
User-agent: Googlebot
Disallow: /@source/
Disallow: /@edit/
Disallow: /@submit/
Disallow: /@comments/
Disallow: /@rss/
Disallow: /@admin
"""
|