webrobots 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +4 -2
- data/LICENSE.txt +1 -1
- data/README.rdoc +1 -1
- data/Rakefile +1 -0
- data/lib/webrobots.rb +10 -5
- data/lib/webrobots/version.rb +1 -1
- data/test/helper.rb +7 -0
- data/test/simplecov_start.rb +9 -0
- data/test/test_webrobots.rb +87 -26
- data/test/vcr_cassettes/major_sites.yml +2006 -0
- data/webrobots.gemspec +13 -3
- metadata +109 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c833575046c3a5436342f25caf5492296256cb8
|
4
|
+
data.tar.gz: 2e3a24748d0bc3a6030033a8a6d209f59aa40c24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92bc8cbea288d93e02dbe9b9821c5cf47a8dea1484bd1d98094c8f45897ecdcff963393b7e555930a64701b2d01a5f850cede162951565ba077182d5646ac753
|
7
|
+
data.tar.gz: 0331daacc90ffd8ad3e998c8e465fce18f71b0f15550bbe08cbd102ae89a0d799ac979e9e2383da7e8cdec3708372220bacb001c0e440b53a92068f5654d851a
|
data/.travis.yml
CHANGED
@@ -1,15 +1,17 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
3
|
- 1.8.7
|
4
|
-
-
|
4
|
+
- ree
|
5
5
|
- 1.9.3
|
6
6
|
- 2.0.0
|
7
|
-
-
|
7
|
+
- ruby-head
|
8
8
|
- jruby-18mode
|
9
9
|
- jruby-19mode
|
10
|
+
- jruby-head
|
10
11
|
- rbx-18mode
|
11
12
|
- rbx-19mode
|
12
13
|
matrix:
|
13
14
|
allow_failures:
|
15
|
+
- rvm: ruby-head
|
14
16
|
- rvm: rbx-18mode
|
15
17
|
- rvm: rbx-19mode
|
data/LICENSE.txt
CHANGED
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -7,6 +7,7 @@ gemspec = Bundler::GemHelper.gemspec
|
|
7
7
|
require 'rake/testtask'
|
8
8
|
Rake::TestTask.new(:test) do |test|
|
9
9
|
test.libs << 'test'
|
10
|
+
test.ruby_opts << '-r./test/simplecov_start.rb' unless RUBY_VERSION < '1.9' || (RUBY_PLATFORM == 'java' && ENV['TRAVIS'])
|
10
11
|
test.test_files = gemspec.test_files
|
11
12
|
test.verbose = true
|
12
13
|
end
|
data/lib/webrobots.rb
CHANGED
@@ -171,8 +171,9 @@ class WebRobots
|
|
171
171
|
end
|
172
172
|
|
173
173
|
def http_get(uri)
|
174
|
+
response = nil
|
174
175
|
referer = nil
|
175
|
-
|
176
|
+
5.times {
|
176
177
|
http = Net::HTTP.new(uri.host, uri.port)
|
177
178
|
if http.use_ssl = uri.is_a?(URI::HTTPS)
|
178
179
|
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
@@ -190,13 +191,17 @@ class WebRobots
|
|
190
191
|
when Net::HTTPRedirection
|
191
192
|
referer = uri.to_s
|
192
193
|
uri = URI(response['location'])
|
193
|
-
when Net::
|
194
|
+
when Net::HTTPClientError
|
194
195
|
return ''
|
195
|
-
else
|
196
|
-
response.value
|
197
196
|
end
|
198
197
|
}
|
199
|
-
|
198
|
+
case response
|
199
|
+
when Net::HTTPRedirection
|
200
|
+
# Treat too many redirections as not found
|
201
|
+
''
|
202
|
+
else
|
203
|
+
raise "#{response.code} #{response.message}"
|
204
|
+
end
|
200
205
|
end
|
201
206
|
|
202
207
|
def crawl_delay_handler(delay, last_checked_at)
|
data/lib/webrobots/version.rb
CHANGED
data/test/helper.rb
CHANGED
@@ -9,6 +9,13 @@ rescue Bundler::BundlerError => e
|
|
9
9
|
end
|
10
10
|
require 'test/unit'
|
11
11
|
require 'shoulda'
|
12
|
+
require 'webmock/test_unit'
|
13
|
+
require 'vcr'
|
14
|
+
|
15
|
+
VCR.configure do |c|
|
16
|
+
c.cassette_library_dir = 'test/vcr_cassettes'
|
17
|
+
c.hook_into :webmock
|
18
|
+
end
|
12
19
|
|
13
20
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
14
21
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
data/test/test_webrobots.rb
CHANGED
@@ -31,7 +31,7 @@ class TestWebRobots < Test::Unit::TestCase
|
|
31
31
|
})
|
32
32
|
end
|
33
33
|
|
34
|
-
should "
|
34
|
+
should "be treated as full allow" do
|
35
35
|
assert @robots.allowed?('http://site1.example.org/index.html')
|
36
36
|
assert @robots.allowed?('http://site1.example.org/private/secret.txt')
|
37
37
|
assert @robots.allowed?('http://site2.example.org/index.html')
|
@@ -43,7 +43,69 @@ class TestWebRobots < Test::Unit::TestCase
|
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
|
-
context "
|
46
|
+
context "the default http_get proc" do
|
47
|
+
setup do
|
48
|
+
@robots = WebRobots.new('SomeBot')
|
49
|
+
@site_uri = URI('http://example.com/')
|
50
|
+
@txt_uri = @site_uri + '/robots.txt'
|
51
|
+
end
|
52
|
+
|
53
|
+
should "treat 201 as success" do
|
54
|
+
stub_request(:get, @txt_uri).to_return(status: 201, body: '# Just created!')
|
55
|
+
assert_equal '# Just created!', @robots.__send__(:http_get, @txt_uri)
|
56
|
+
assert_requested :get, @txt_uri
|
57
|
+
end
|
58
|
+
|
59
|
+
should "treat redirects more than 5 times as full allow" do
|
60
|
+
redirect_uri = @site_uri + '/redirect'
|
61
|
+
stub_request(:get, /\A#{Regexp.quote(@site_uri.to_s)}/).to_return(status: 301, headers: { Location: redirect_uri.to_s })
|
62
|
+
assert_equal '', @robots.__send__(:http_get, @txt_uri)
|
63
|
+
assert_requested :get, @txt_uri, times: 1
|
64
|
+
assert_requested :get, redirect_uri, times: 4
|
65
|
+
end
|
66
|
+
|
67
|
+
should "treat 400 as full allow" do
|
68
|
+
stub_request(:get, @txt_uri).to_return(status: 400, body: 'Bad Request!')
|
69
|
+
assert_equal '', @robots.__send__(:http_get, @txt_uri)
|
70
|
+
assert_requested :get, @txt_uri
|
71
|
+
end
|
72
|
+
|
73
|
+
should "treat 401 as full allow" do
|
74
|
+
stub_request(:get, @txt_uri).to_return(status: 401, body: 'Unauthorized!')
|
75
|
+
assert_equal '', @robots.__send__(:http_get, @txt_uri)
|
76
|
+
assert_requested :get, @txt_uri
|
77
|
+
end
|
78
|
+
|
79
|
+
should "treat 403 as full allow" do
|
80
|
+
stub_request(:get, @txt_uri).to_return(status: 403, body: 'Forbidden!')
|
81
|
+
assert_equal '', @robots.__send__(:http_get, @txt_uri)
|
82
|
+
assert_requested :get, @txt_uri
|
83
|
+
end
|
84
|
+
|
85
|
+
should "treat 404 as full allow" do
|
86
|
+
stub_request(:get, @txt_uri).to_return(status: 404, body: 'Not Found!')
|
87
|
+
assert_equal '', @robots.__send__(:http_get, @txt_uri)
|
88
|
+
assert_requested :get, @txt_uri
|
89
|
+
end
|
90
|
+
|
91
|
+
should "treat 500 as error after retrying 5 times" do
|
92
|
+
stub_request(:get, @txt_uri).to_return(status: 500, body: 'Internal Server Error!')
|
93
|
+
assert_raise {
|
94
|
+
@robots.__send__(:http_get, @txt_uri)
|
95
|
+
}
|
96
|
+
assert_requested :get, @txt_uri, times: 5
|
97
|
+
end
|
98
|
+
|
99
|
+
should "treat 503 as error after retrying 5 times" do
|
100
|
+
stub_request(:get, @txt_uri).to_return(status: 503, body: 'Service Unavailable!')
|
101
|
+
assert_raise {
|
102
|
+
@robots.__send__(:http_get, @txt_uri)
|
103
|
+
}
|
104
|
+
assert_requested :get, @txt_uri, times: 5
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
context "nil or error from a custom http_get proc" do
|
47
109
|
setup do
|
48
110
|
@robots = WebRobots.new('RandomBot', :http_get => lambda { |uri|
|
49
111
|
case uri.to_s
|
@@ -52,9 +114,8 @@ class TestWebRobots < Test::Unit::TestCase
|
|
52
114
|
'Internal Server Error',
|
53
115
|
Net::HTTPInternalServerError.new('1.1', '500', 'Internal Server Error'))
|
54
116
|
when 'http://site2.example.org/robots.txt'
|
55
|
-
|
56
|
-
|
57
|
-
Net::HTTPFound.new('1.1', '302', 'Found'))
|
117
|
+
require 'timeout'
|
118
|
+
Timeout.timeout(0) {}
|
58
119
|
when 'http://site3.example.org/robots.txt'
|
59
120
|
raise Errno::ECONNREFUSED
|
60
121
|
when 'http://site4.example.org/robots.txt'
|
@@ -67,7 +128,7 @@ class TestWebRobots < Test::Unit::TestCase
|
|
67
128
|
})
|
68
129
|
end
|
69
130
|
|
70
|
-
should "
|
131
|
+
should "be treated as full disallow" do
|
71
132
|
assert @robots.disallowed?('http://site1.example.org/index.html')
|
72
133
|
assert @robots.disallowed?('http://site1.example.org/private/secret.txt')
|
73
134
|
assert @robots.disallowed?('http://site2.example.org/index.html')
|
@@ -412,7 +473,7 @@ Option3: Hi
|
|
412
473
|
@robots_hisbot = WebRobots.new('HisBot', :http_get => http_get)
|
413
474
|
end
|
414
475
|
|
415
|
-
should "read
|
476
|
+
should "be properly read" do
|
416
477
|
options = @robots_mybot.options('http://www.example.org/')
|
417
478
|
assert_equal 2, options.size
|
418
479
|
assert_equal 'Foo', @robots_mybot.option('http://www.example.org/', 'Option1')
|
@@ -531,28 +592,28 @@ Disallow: /
|
|
531
592
|
context "robots.txt in the real world" do
|
532
593
|
setup do
|
533
594
|
@testbot = WebRobots.new('TestBot')
|
534
|
-
@
|
595
|
+
@baidubot = WebRobots.new('TestBaiduspider') # matches Baiduspider
|
535
596
|
end
|
536
597
|
|
537
598
|
should "be parsed for major sites" do
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
599
|
+
VCR.use_cassette("major_sites") do
|
600
|
+
assert_nothing_raised {
|
601
|
+
assert !@testbot.allowed?("https://www.google.com/search")
|
602
|
+
assert !@testbot.allowed?("https://www.google.com/catalogs")
|
603
|
+
assert @testbot.allowed?("https://www.google.com/catalogs/about")
|
604
|
+
}
|
605
|
+
assert_nothing_raised {
|
606
|
+
assert @testbot.allowed?("https://www.yahoo.com/")
|
607
|
+
assert !@testbot.allowed?("https://www.yahoo.com/p/foo")
|
608
|
+
}
|
609
|
+
assert_nothing_raised {
|
610
|
+
assert @testbot.allowed?("http://www.apple.com/jp/foo")
|
611
|
+
assert !@baidubot.allowed?("http://www.apple.com/jp/foo")
|
612
|
+
}
|
613
|
+
assert_nothing_raised {
|
614
|
+
assert !@testbot.allowed?("https://github.com/login")
|
615
|
+
}
|
616
|
+
end
|
556
617
|
end
|
557
618
|
end
|
558
619
|
|
@@ -0,0 +1,2006 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.google.com/robots.txt
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- TestBot
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Vary:
|
22
|
+
- Accept-Encoding
|
23
|
+
Content-Type:
|
24
|
+
- text/plain
|
25
|
+
Date:
|
26
|
+
- Mon, 04 Jan 2016 13:39:15 GMT
|
27
|
+
Expires:
|
28
|
+
- Mon, 04 Jan 2016 13:39:15 GMT
|
29
|
+
Cache-Control:
|
30
|
+
- private, max-age=0
|
31
|
+
Last-Modified:
|
32
|
+
- Thu, 17 Dec 2015 01:06:42 GMT
|
33
|
+
X-Content-Type-Options:
|
34
|
+
- nosniff
|
35
|
+
Server:
|
36
|
+
- sffe
|
37
|
+
X-Xss-Protection:
|
38
|
+
- 1; mode=block
|
39
|
+
Alternate-Protocol:
|
40
|
+
- 443:quic,p=1
|
41
|
+
Alt-Svc:
|
42
|
+
- quic="www.google.com:443"; ma=600; v="30,29,28,27,26,25",quic=":443"; ma=600;
|
43
|
+
v="30,29,28,27,26,25"
|
44
|
+
Transfer-Encoding:
|
45
|
+
- chunked
|
46
|
+
body:
|
47
|
+
encoding: ASCII-8BIT
|
48
|
+
string: |+
|
49
|
+
User-agent: *
|
50
|
+
Disallow: /search
|
51
|
+
Allow: /search/about
|
52
|
+
Disallow: /sdch
|
53
|
+
Disallow: /groups
|
54
|
+
Disallow: /catalogs
|
55
|
+
Allow: /catalogs/about
|
56
|
+
Allow: /catalogs/p?
|
57
|
+
Disallow: /catalogues
|
58
|
+
Allow: /newsalerts
|
59
|
+
Disallow: /news
|
60
|
+
Allow: /news/directory
|
61
|
+
Disallow: /nwshp
|
62
|
+
Disallow: /setnewsprefs?
|
63
|
+
Disallow: /index.html?
|
64
|
+
Disallow: /?
|
65
|
+
Allow: /?hl=
|
66
|
+
Disallow: /?hl=*&
|
67
|
+
Allow: /?hl=*&gws_rd=ssl$
|
68
|
+
Disallow: /?hl=*&*&gws_rd=ssl
|
69
|
+
Allow: /?gws_rd=ssl$
|
70
|
+
Allow: /?pt1=true$
|
71
|
+
Disallow: /addurl/image?
|
72
|
+
Allow: /mail/help/
|
73
|
+
Disallow: /mail/
|
74
|
+
Disallow: /pagead/
|
75
|
+
Disallow: /relpage/
|
76
|
+
Disallow: /relcontent
|
77
|
+
Disallow: /imgres
|
78
|
+
Disallow: /imglanding
|
79
|
+
Disallow: /sbd
|
80
|
+
Disallow: /keyword/
|
81
|
+
Disallow: /u/
|
82
|
+
Disallow: /univ/
|
83
|
+
Disallow: /cobrand
|
84
|
+
Disallow: /custom
|
85
|
+
Disallow: /advanced_group_search
|
86
|
+
Disallow: /googlesite
|
87
|
+
Disallow: /preferences
|
88
|
+
Disallow: /setprefs
|
89
|
+
Disallow: /swr
|
90
|
+
Disallow: /url
|
91
|
+
Disallow: /default
|
92
|
+
Disallow: /m?
|
93
|
+
Disallow: /m/
|
94
|
+
Allow: /m/finance
|
95
|
+
Disallow: /wml?
|
96
|
+
Disallow: /wml/?
|
97
|
+
Disallow: /wml/search?
|
98
|
+
Disallow: /xhtml?
|
99
|
+
Disallow: /xhtml/?
|
100
|
+
Disallow: /xhtml/search?
|
101
|
+
Disallow: /xml?
|
102
|
+
Disallow: /imode?
|
103
|
+
Disallow: /imode/?
|
104
|
+
Disallow: /imode/search?
|
105
|
+
Disallow: /jsky?
|
106
|
+
Disallow: /jsky/?
|
107
|
+
Disallow: /jsky/search?
|
108
|
+
Disallow: /pda?
|
109
|
+
Disallow: /pda/?
|
110
|
+
Disallow: /pda/search?
|
111
|
+
Disallow: /sprint_xhtml
|
112
|
+
Disallow: /sprint_wml
|
113
|
+
Disallow: /pqa
|
114
|
+
Disallow: /palm
|
115
|
+
Disallow: /gwt/
|
116
|
+
Disallow: /purchases
|
117
|
+
Disallow: /bsd?
|
118
|
+
Disallow: /linux?
|
119
|
+
Disallow: /mac?
|
120
|
+
Disallow: /microsoft?
|
121
|
+
Disallow: /unclesam?
|
122
|
+
Disallow: /answers/search?q=
|
123
|
+
Disallow: /local?
|
124
|
+
Disallow: /local_url
|
125
|
+
Disallow: /shihui?
|
126
|
+
Disallow: /shihui/
|
127
|
+
Disallow: /froogle?
|
128
|
+
Disallow: /products?
|
129
|
+
Disallow: /froogle_
|
130
|
+
Disallow: /product_
|
131
|
+
Disallow: /products_
|
132
|
+
Disallow: /products;
|
133
|
+
Disallow: /print
|
134
|
+
Disallow: /books/
|
135
|
+
Disallow: /bkshp?*q=*
|
136
|
+
Disallow: /books?*q=*
|
137
|
+
Disallow: /books?*output=*
|
138
|
+
Disallow: /books?*pg=*
|
139
|
+
Disallow: /books?*jtp=*
|
140
|
+
Disallow: /books?*jscmd=*
|
141
|
+
Disallow: /books?*buy=*
|
142
|
+
Disallow: /books?*zoom=*
|
143
|
+
Allow: /books?*q=related:*
|
144
|
+
Allow: /books?*q=editions:*
|
145
|
+
Allow: /books?*q=subject:*
|
146
|
+
Allow: /books/about
|
147
|
+
Allow: /booksrightsholders
|
148
|
+
Allow: /books?*zoom=1*
|
149
|
+
Allow: /books?*zoom=5*
|
150
|
+
Disallow: /ebooks/
|
151
|
+
Disallow: /ebooks?*q=*
|
152
|
+
Disallow: /ebooks?*output=*
|
153
|
+
Disallow: /ebooks?*pg=*
|
154
|
+
Disallow: /ebooks?*jscmd=*
|
155
|
+
Disallow: /ebooks?*buy=*
|
156
|
+
Disallow: /ebooks?*zoom=*
|
157
|
+
Allow: /ebooks?*q=related:*
|
158
|
+
Allow: /ebooks?*q=editions:*
|
159
|
+
Allow: /ebooks?*q=subject:*
|
160
|
+
Allow: /ebooks?*zoom=1*
|
161
|
+
Allow: /ebooks?*zoom=5*
|
162
|
+
Disallow: /patents?
|
163
|
+
Disallow: /patents/download/
|
164
|
+
Disallow: /patents/pdf/
|
165
|
+
Disallow: /patents/related/
|
166
|
+
Disallow: /scholar
|
167
|
+
Disallow: /citations?
|
168
|
+
Allow: /citations?user=
|
169
|
+
Disallow: /citations?*cstart=
|
170
|
+
Allow: /citations?view_op=new_profile
|
171
|
+
Allow: /citations?view_op=top_venues
|
172
|
+
Disallow: /complete
|
173
|
+
Disallow: /s?
|
174
|
+
Disallow: /sponsoredlinks
|
175
|
+
Disallow: /videosearch?
|
176
|
+
Disallow: /videopreview?
|
177
|
+
Disallow: /videoprograminfo?
|
178
|
+
Allow: /maps?*output=classic*
|
179
|
+
Allow: /maps?*file=
|
180
|
+
Allow: /maps/api/js?
|
181
|
+
Allow: /maps/d/
|
182
|
+
Disallow: /maps?
|
183
|
+
Disallow: /mapstt?
|
184
|
+
Disallow: /mapslt?
|
185
|
+
Disallow: /maps/stk/
|
186
|
+
Disallow: /maps/br?
|
187
|
+
Disallow: /mapabcpoi?
|
188
|
+
Disallow: /maphp?
|
189
|
+
Disallow: /mapprint?
|
190
|
+
Disallow: /maps/api/js/
|
191
|
+
Disallow: /maps/api/staticmap?
|
192
|
+
Disallow: /maps/api/streetview
|
193
|
+
Disallow: /mld?
|
194
|
+
Disallow: /staticmap?
|
195
|
+
Disallow: /places/
|
196
|
+
Allow: /places/$
|
197
|
+
Disallow: /maps/preview
|
198
|
+
Disallow: /maps/place
|
199
|
+
Disallow: /help/maps/streetview/partners/welcome/
|
200
|
+
Disallow: /help/maps/indoormaps/partners/
|
201
|
+
Disallow: /lochp?
|
202
|
+
Disallow: /center
|
203
|
+
Disallow: /ie?
|
204
|
+
Disallow: /sms/demo?
|
205
|
+
Disallow: /katrina?
|
206
|
+
Disallow: /blogsearch?
|
207
|
+
Disallow: /blogsearch/
|
208
|
+
Disallow: /blogsearch_feeds
|
209
|
+
Disallow: /advanced_blog_search
|
210
|
+
Disallow: /uds/
|
211
|
+
Disallow: /chart?
|
212
|
+
Disallow: /transit?
|
213
|
+
Disallow: /mbd?
|
214
|
+
Disallow: /extern_js/
|
215
|
+
Disallow: /xjs/
|
216
|
+
Disallow: /calendar/feeds/
|
217
|
+
Disallow: /calendar/ical/
|
218
|
+
Disallow: /cl2/feeds/
|
219
|
+
Disallow: /cl2/ical/
|
220
|
+
Disallow: /coop/directory
|
221
|
+
Disallow: /coop/manage
|
222
|
+
Disallow: /trends?
|
223
|
+
Disallow: /trends/music?
|
224
|
+
Disallow: /trends/hottrends?
|
225
|
+
Disallow: /trends/viz?
|
226
|
+
Disallow: /trends/embed.js?
|
227
|
+
Disallow: /trends/fetchComponent?
|
228
|
+
Disallow: /notebook/search?
|
229
|
+
Disallow: /musica
|
230
|
+
Disallow: /musicad
|
231
|
+
Disallow: /musicas
|
232
|
+
Disallow: /musicl
|
233
|
+
Disallow: /musics
|
234
|
+
Disallow: /musicsearch
|
235
|
+
Disallow: /musicsp
|
236
|
+
Disallow: /musiclp
|
237
|
+
Disallow: /browsersync
|
238
|
+
Disallow: /call
|
239
|
+
Disallow: /archivesearch?
|
240
|
+
Disallow: /archivesearch/url
|
241
|
+
Disallow: /archivesearch/advanced_search
|
242
|
+
Disallow: /base/reportbadoffer
|
243
|
+
Disallow: /urchin_test/
|
244
|
+
Disallow: /movies?
|
245
|
+
Disallow: /codesearch?
|
246
|
+
Disallow: /codesearch/feeds/search?
|
247
|
+
Disallow: /wapsearch?
|
248
|
+
Disallow: /safebrowsing
|
249
|
+
Allow: /safebrowsing/diagnostic
|
250
|
+
Allow: /safebrowsing/report_badware/
|
251
|
+
Allow: /safebrowsing/report_error/
|
252
|
+
Allow: /safebrowsing/report_phish/
|
253
|
+
Disallow: /reviews/search?
|
254
|
+
Disallow: /orkut/albums
|
255
|
+
Allow: /jsapi
|
256
|
+
Disallow: /views?
|
257
|
+
Disallow: /c/
|
258
|
+
Disallow: /cbk
|
259
|
+
Allow: /cbk?output=tile&cb_client=maps_sv
|
260
|
+
Disallow: /kh
|
261
|
+
Disallow: /vt
|
262
|
+
Disallow: /maps/vt
|
263
|
+
Disallow: /recharge/dashboard/car
|
264
|
+
Disallow: /recharge/dashboard/static/
|
265
|
+
Disallow: /translate_a/
|
266
|
+
Disallow: /translate_c
|
267
|
+
Disallow: /translate_f
|
268
|
+
Disallow: /translate_static/
|
269
|
+
Disallow: /translate_suggestion
|
270
|
+
Disallow: /profiles/me
|
271
|
+
Allow: /profiles
|
272
|
+
Disallow: /s2/profiles/me
|
273
|
+
Allow: /s2/profiles
|
274
|
+
Allow: /s2/oz
|
275
|
+
Allow: /s2/photos
|
276
|
+
Allow: /s2/search/social
|
277
|
+
Allow: /s2/static
|
278
|
+
Disallow: /s2
|
279
|
+
Disallow: /transconsole/portal/
|
280
|
+
Disallow: /gcc/
|
281
|
+
Disallow: /aclk
|
282
|
+
Disallow: /cse?
|
283
|
+
Disallow: /cse/home
|
284
|
+
Disallow: /cse/panel
|
285
|
+
Disallow: /cse/manage
|
286
|
+
Disallow: /tbproxy/
|
287
|
+
Disallow: /imesync/
|
288
|
+
Disallow: /shenghuo/search?
|
289
|
+
Disallow: /support/forum/search?
|
290
|
+
Disallow: /reviews/polls/
|
291
|
+
Disallow: /hosted/images/
|
292
|
+
Disallow: /ppob/?
|
293
|
+
Disallow: /ppob?
|
294
|
+
Disallow: /adwordsresellers
|
295
|
+
Disallow: /accounts/ClientLogin
|
296
|
+
Disallow: /accounts/ClientAuth
|
297
|
+
Disallow: /accounts/o8
|
298
|
+
Allow: /accounts/o8/id
|
299
|
+
Disallow: /topicsearch?q=
|
300
|
+
Disallow: /xfx7/
|
301
|
+
Disallow: /squared/api
|
302
|
+
Disallow: /squared/search
|
303
|
+
Disallow: /squared/table
|
304
|
+
Disallow: /toolkit/
|
305
|
+
Allow: /toolkit/*.html
|
306
|
+
Disallow: /globalmarketfinder/
|
307
|
+
Allow: /globalmarketfinder/*.html
|
308
|
+
Disallow: /qnasearch?
|
309
|
+
Disallow: /app/updates
|
310
|
+
Disallow: /sidewiki/entry/
|
311
|
+
Disallow: /quality_form?
|
312
|
+
Disallow: /labs/popgadget/search
|
313
|
+
Disallow: /buzz/post
|
314
|
+
Disallow: /compressiontest/
|
315
|
+
Disallow: /analytics/reporting/
|
316
|
+
Disallow: /analytics/admin/
|
317
|
+
Disallow: /analytics/web/
|
318
|
+
Disallow: /analytics/feeds/
|
319
|
+
Disallow: /analytics/settings/
|
320
|
+
Allow: /alerts/manage
|
321
|
+
Allow: /alerts/remove
|
322
|
+
Disallow: /alerts/
|
323
|
+
Allow: /alerts/$
|
324
|
+
Disallow: /ads/search?
|
325
|
+
Disallow: /ads/plan/action_plan?
|
326
|
+
Disallow: /ads/plan/api/
|
327
|
+
Disallow: /ads/hotels/partners
|
328
|
+
Disallow: /phone/compare/?
|
329
|
+
Disallow: /travel/clk
|
330
|
+
Disallow: /hotelfinder/rpc
|
331
|
+
Disallow: /hotels/rpc
|
332
|
+
Disallow: /flights/rpc
|
333
|
+
Disallow: /commercesearch/services/
|
334
|
+
Disallow: /evaluation/
|
335
|
+
Disallow: /chrome/browser/mobile/tour
|
336
|
+
Disallow: /compare/*/apply*
|
337
|
+
Disallow: /forms/perks/
|
338
|
+
Disallow: /baraza/*/search
|
339
|
+
Disallow: /baraza/*/report
|
340
|
+
Disallow: /shopping/suppliers/search
|
341
|
+
Disallow: /ct/
|
342
|
+
Disallow: /edu/cs4hs/
|
343
|
+
Disallow: /trustedstores/s/
|
344
|
+
Disallow: /trustedstores/tm2
|
345
|
+
Disallow: /trustedstores/verify
|
346
|
+
Disallow: /adwords/proposal
|
347
|
+
Disallow: /shopping/product/
|
348
|
+
Disallow: /shopping/seller
|
349
|
+
Disallow: /shopping/reviewer
|
350
|
+
Disallow: /about/careers/apply/
|
351
|
+
Disallow: /about/careers/applications/
|
352
|
+
Disallow: /landing/signout.html
|
353
|
+
Disallow: /webmasters/sitemaps/ping?
|
354
|
+
Disallow: /ping?
|
355
|
+
Allow: /gb/images
|
356
|
+
Allow: /gb/js
|
357
|
+
Disallow: /gallery/
|
358
|
+
Allow: /chromecast/setup$
|
359
|
+
Allow: /chromecast/setup/$
|
360
|
+
Disallow: /landing/now/ontap/
|
361
|
+
Sitemap: http://www.gstatic.com/culturalinstitute/sitemaps/www_google_com_culturalinstitute/sitemap-index.xml
|
362
|
+
Sitemap: http://www.gstatic.com/dictionary/static/sitemaps/sitemap_index.xml
|
363
|
+
Sitemap: http://www.gstatic.com/earth/gallery/sitemaps/sitemap.xml
|
364
|
+
Sitemap: http://www.gstatic.com/s2/sitemaps/profiles-sitemap.xml
|
365
|
+
Sitemap: http://www.gstatic.com/trends/websites/sitemaps/sitemapindex.xml
|
366
|
+
Sitemap: https://www.google.com/sitemap.xml
|
367
|
+
|
368
|
+
http_version:
|
369
|
+
recorded_at: Mon, 04 Jan 2016 13:39:15 GMT
|
370
|
+
- request:
|
371
|
+
method: get
|
372
|
+
uri: https://www.yahoo.com/robots.txt
|
373
|
+
body:
|
374
|
+
encoding: US-ASCII
|
375
|
+
string: ''
|
376
|
+
headers:
|
377
|
+
User-Agent:
|
378
|
+
- TestBot
|
379
|
+
Accept-Encoding:
|
380
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
381
|
+
Accept:
|
382
|
+
- "*/*"
|
383
|
+
response:
|
384
|
+
status:
|
385
|
+
code: 200
|
386
|
+
message: OK
|
387
|
+
headers:
|
388
|
+
Date:
|
389
|
+
- Mon, 04 Jan 2016 13:39:16 GMT
|
390
|
+
P3p:
|
391
|
+
- policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
|
392
|
+
TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
|
393
|
+
ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
|
394
|
+
Cache-Control:
|
395
|
+
- private
|
396
|
+
Last-Modified:
|
397
|
+
- Thu, 19 Nov 2015 00:31:02 GMT
|
398
|
+
Accept-Ranges:
|
399
|
+
- bytes
|
400
|
+
Vary:
|
401
|
+
- Accept-Encoding
|
402
|
+
Content-Type:
|
403
|
+
- text/plain; charset=utf-8
|
404
|
+
Age:
|
405
|
+
- '2'
|
406
|
+
Via:
|
407
|
+
- http/1.1 usproxy2.fp.gq1.yahoo.com (ApacheTrafficServer), http/1.1 ir2.fp.sg3.yahoo.com
|
408
|
+
(ApacheTrafficServer)
|
409
|
+
Server:
|
410
|
+
- ATS
|
411
|
+
Transfer-Encoding:
|
412
|
+
- chunked
|
413
|
+
Connection:
|
414
|
+
- keep-alive
|
415
|
+
Y-Trace:
|
416
|
+
- BAEAQAAAAAADb4_wm_pNEAAAAAAAAAAAGXeCK6w0SUwAAAAAAAAAAAAFKII_Uu55AAUogj9WSEhTfIBlAAAAAA--
|
417
|
+
body:
|
418
|
+
encoding: ASCII-8BIT
|
419
|
+
string: |
|
420
|
+
User-agent: *
|
421
|
+
Disallow: /p/
|
422
|
+
Disallow: /r/
|
423
|
+
Disallow: /bin/
|
424
|
+
Disallow: /includes/
|
425
|
+
Disallow: /blank.html
|
426
|
+
Disallow: /_td_api
|
427
|
+
Disallow: /_tdpp_api
|
428
|
+
Disallow: /_remote
|
429
|
+
Disallow: /_multiremote
|
430
|
+
Disallow: /_tdhl_api
|
431
|
+
|
432
|
+
Sitemap: https://www.yahoo.com/food/sitemaps/sitemap_index_us_en-US.xml.gz
|
433
|
+
Sitemap: https://www.yahoo.com/tech/sitemaps/sitemap_index_us_en-US.xml.gz
|
434
|
+
Sitemap: https://www.yahoo.com/travel/sitemaps/sitemap_index_us_en-US.xml.gz
|
435
|
+
Sitemap: https://www.yahoo.com/movies/sitemaps/sitemap_index_us_en-US.xml.gz
|
436
|
+
Sitemap: https://www.yahoo.com/beauty/sitemaps/sitemap_index_us_en-US.xml.gz
|
437
|
+
Sitemap: https://www.yahoo.com/health/sitemaps/sitemap_index_us_en-US.xml.gz
|
438
|
+
Sitemap: https://www.yahoo.com/style/sitemaps/sitemap_index_us_en-US.xml.gz
|
439
|
+
Sitemap: https://www.yahoo.com/makers/sitemaps/sitemap_index_us_en-US.xml.gz
|
440
|
+
Sitemap: https://www.yahoo.com/parenting/sitemaps/sitemap_index_us_en-US.xml.gz
|
441
|
+
Sitemap: https://www.yahoo.com/music/sitemaps/sitemap_index_us_en-US.xml.gz
|
442
|
+
Sitemap: https://www.yahoo.com/tv/sitemaps/sitemap_index_us_en-US.xml.gz
|
443
|
+
Sitemap: https://www.yahoo.com/politics/sitemaps/sitemap_index_us_en-US.xml.gz
|
444
|
+
Sitemap: https://www.yahoo.com/autos/sitemaps/sitemap_index_us_en-US.xml.gz
|
445
|
+
Sitemap: https://www.yahoo.com/katiecouric/sitemaps/sitemap_index_us_en-US.xml.gz
|
446
|
+
Sitemap: https://www.yahoo.com/digest/sitemap.xml
|
447
|
+
http_version:
|
448
|
+
recorded_at: Mon, 04 Jan 2016 13:39:17 GMT
|
449
|
+
- request:
|
450
|
+
method: get
|
451
|
+
uri: http://www.apple.com/robots.txt
|
452
|
+
body:
|
453
|
+
encoding: US-ASCII
|
454
|
+
string: ''
|
455
|
+
headers:
|
456
|
+
User-Agent:
|
457
|
+
- TestBot
|
458
|
+
Accept-Encoding:
|
459
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
460
|
+
Accept:
|
461
|
+
- "*/*"
|
462
|
+
response:
|
463
|
+
status:
|
464
|
+
code: 200
|
465
|
+
message: OK
|
466
|
+
headers:
|
467
|
+
Last-Modified:
|
468
|
+
- Thu, 22 Oct 2015 00:20:47 GMT
|
469
|
+
Server:
|
470
|
+
- Apache
|
471
|
+
Nncoection:
|
472
|
+
- close
|
473
|
+
Accept-Ranges:
|
474
|
+
- bytes
|
475
|
+
Content-Length:
|
476
|
+
- '6902'
|
477
|
+
Content-Type:
|
478
|
+
- text/plain; charset=UTF-8
|
479
|
+
Cache-Control:
|
480
|
+
- max-age=561
|
481
|
+
Expires:
|
482
|
+
- Mon, 04 Jan 2016 13:48:38 GMT
|
483
|
+
Date:
|
484
|
+
- Mon, 04 Jan 2016 13:39:17 GMT
|
485
|
+
Connection:
|
486
|
+
- keep-alive
|
487
|
+
body:
|
488
|
+
encoding: UTF-8
|
489
|
+
string: "# robots.txt for http://www.apple.com/\n\nUser-agent: *\nDisallow:
|
490
|
+
/*/includes/*\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
491
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
492
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
493
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/answer/vote*\nDisallow: /*/shop/bag*\nDisallow:
|
494
|
+
/*/shop/browse/campaigns/mobile_overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
495
|
+
/*/shop/favorites*\nDisallow: /*/shop/mobile/olss_error*\nDisallow: /*/shop/mobilex/*\nDisallow:
|
496
|
+
/*/shop/order/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
497
|
+
/*/shop/question/unsubscribe/\nDisallow: /*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow:
|
498
|
+
/*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
499
|
+
/*/shop/store/feeds/*\nDisallow: /*/shop/variationSelection\nDisallow: /*_adc_*/shop/\nDisallow:
|
500
|
+
/*_aoc_*/shop/\nDisallow: /*_edu_*/shop/\nDisallow: /*_enterprise*/shop/\nDisallow:
|
501
|
+
/*_internal-epp-discounted*/shop/\nDisallow: /*_k12nonbts*/shop/\nDisallow:
|
502
|
+
/*_kiosk*/shop/\nDisallow: /*_nonbts*/shop/\nDisallow: /*_qpromo*/shop/\nDisallow:
|
503
|
+
/*_refurb-discounted*/shop/\nDisallow: /cn/se/*\nDisallow: /retail/availability*\nDisallow:
|
504
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
505
|
+
/search/*\nDisallow: /shop/*signed_in_account*\nDisallow: /shop/*sign_in*\nDisallow:
|
506
|
+
/shop/*sign_out*\nDisallow: /shop/*WebObjects/*\nDisallow: /shop/1-800-MY-APPLE/*\nDisallow:
|
507
|
+
/shop/answer/vote*\nDisallow: /shop/bag*\nDisallow: /shop/browse/campaigns/mobile_overlay*\nDisallow:
|
508
|
+
/shop/button_availability*\nDisallow: /shop/favorites*\nDisallow: /shop/mobile/olss_error*\nDisallow:
|
509
|
+
/shop/mobilex/\nDisallow: /shop/order/*\nDisallow: /shop/question/answer/report*\nDisallow:
|
510
|
+
/shop/question/subscribe*\nDisallow: /shop/question/unsubscribe/\nDisallow:
|
511
|
+
/shop/review/vote*\nDisallow: /shop/reviews/report*\nDisallow: /shop/rs-mvt/rel/*\nDisallow:
|
512
|
+
/shop/search/*\nDisallow: /shop/sentry*\nDisallow: /shop/socialsharing/*\nDisallow:
|
513
|
+
/shop/store/feeds/*\nDisallow: /shop/variationSelection*\nDisallow: /tmall*\nAllow:
|
514
|
+
/ac/globalnav/2.0/*/images/ac-globalnav/globalnav/search/* \t\n\nUser-agent:
|
515
|
+
Baiduspider\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
516
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
517
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
518
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
519
|
+
/*/shop/browse/overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
520
|
+
/*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow: /*/shop/checkout*\nDisallow:
|
521
|
+
/*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow: /*/shop/identify_user*\nDisallow:
|
522
|
+
/*/shop/mobile/checkout/start*\nDisallow: /*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow:
|
523
|
+
/*/shop/question/subscribe*\nDisallow: /*/shop/question/unsubscribe/*\nDisallow:
|
524
|
+
/*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow:
|
525
|
+
/*/shop/sentry*\nDisallow: /*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
526
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
527
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
528
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
529
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/vieworder*\nDisallow: /*/variationSelection*\nDisallow:
|
530
|
+
/ae/*\nDisallow: /am/*\nDisallow: /asia/*\nDisallow: /at/*\nDisallow: /au/*\nDisallow:
|
531
|
+
/befr/*\nDisallow: /benl/*\nDisallow: /bg/*\nDisallow: /bh/*\nDisallow: /br/*\nDisallow:
|
532
|
+
/bw/*\nDisallow: /ca/*\nDisallow: /ca/fr/*\nDisallow: /cf/*\nDisallow: /chde/*\nDisallow:
|
533
|
+
/chfr/*\nDisallow: /ci/*\nDisallow: /cl/*\nDisallow: /cm/*\nDisallow: /cn/se/*\nDisallow:
|
534
|
+
/co/*\nDisallow: /cz/*\nDisallow: /de/*\nDisallow: /dk/*\nDisallow: /ee/*\nDisallow:
|
535
|
+
/eg/*\nDisallow: /es/*\nDisallow: /fi/*\nDisallow: /fr/*\nDisallow: /gn/*\nDisallow:
|
536
|
+
/gq/*\nDisallow: /gr/*\nDisallow: /gw/*\nDisallow: /hk/*\nDisallow: /hk/en/*\nDisallow:
|
537
|
+
/hr/*\nDisallow: /hu/*\nDisallow: /id/*\nDisallow: /ie/*\nDisallow: /il/*\nDisallow:
|
538
|
+
/in/*\nDisallow: /it/*\nDisallow: /jo/*\nDisallow: /jp/*\nDisallow: /ke/*\nDisallow:
|
539
|
+
/kr/*\nDisallow: /kw/*\nDisallow: /la/*\nDisallow: /lae/*\nDisallow: /li/*\nDisallow:
|
540
|
+
/lt/*\nDisallow: /lu/*\nDisallow: /lv/*\nDisallow: /ma/*\nDisallow: /md/*\nDisallow:
|
541
|
+
/me/*\nDisallow: /mg/*\nDisallow: /mk/*\nDisallow: /ml/*\nDisallow: /mt/*\nDisallow:
|
542
|
+
/mu/*\nDisallow: /mx/*\nDisallow: /my/*\nDisallow: /mz/*\nDisallow: /ne/*\nDisallow:
|
543
|
+
/ng/*\nDisallow: /nl/*\nDisallow: /no/*\nDisallow: /nz/*\nDisallow: /om/*\nDisallow:
|
544
|
+
/ph/*\nDisallow: /pl/*\nDisallow: /pt/*\nDisallow: /qa/*\nDisallow: /retail/availability*\nDisallow:
|
545
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
546
|
+
/ro/*\nDisallow: /ru/*\nDisallow: /sa/*\nDisallow: /se/*\nDisallow: /search/*\nDisallow:
|
547
|
+
/sg/*\nDisallow: /shop/*\nDisallow: /si/*\nDisallow: /sk/*\nDisallow: /sn/*\nDisallow:
|
548
|
+
/th/*\nDisallow: /tmall/*\nDisallow: /tn/*\nDisallow: /tr/*\nDisallow: /tw/*\nDisallow:
|
549
|
+
/ug/*\nDisallow: /uk/*\nDisallow: /vn/*\nDisallow: /za/*\n\nUser-agent: HaoSouSpider\nDisallow:
|
550
|
+
/*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
551
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
552
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
553
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
554
|
+
/*/shop/button_availability*\nDisallow: /*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow:
|
555
|
+
/*/shop/checkout*\nDisallow: /*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow:
|
556
|
+
/*/shop/identify_user*\nDisallow: /*/shop/mobile/checkout/start*\nDisallow:
|
557
|
+
/*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
558
|
+
/*/shop/question/unsubscribe/*\nDisallow: /*/shop/review/vote*\nDisallow:
|
559
|
+
/*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow:
|
560
|
+
/*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
561
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
562
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
563
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
564
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/variationSelection*\nDisallow: /*/shop/vieworder*\nDisallow:
|
565
|
+
/cn/se/*\nDisallow: /retail/availability*\nDisallow: /retail/availabilitySearch*\nDisallow:
|
566
|
+
/retail/pickupEligibility*\nDisallow: /search/*\nDisallow: /shop/bag*\nDisallow:
|
567
|
+
/shop/search/*\nDisallow: /tmall/*\n\nSitemap: http://www.apple.com/shop/sitemap.xml\nSitemap:
|
568
|
+
http://www.apple.com/sitemap.xml\n"
|
569
|
+
http_version:
|
570
|
+
recorded_at: Mon, 04 Jan 2016 13:39:17 GMT
|
571
|
+
- request:
|
572
|
+
method: get
|
573
|
+
uri: http://www.apple.com/robots.txt
|
574
|
+
body:
|
575
|
+
encoding: US-ASCII
|
576
|
+
string: ''
|
577
|
+
headers:
|
578
|
+
User-Agent:
|
579
|
+
- TestBaiduspider
|
580
|
+
Accept-Encoding:
|
581
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
582
|
+
Accept:
|
583
|
+
- "*/*"
|
584
|
+
response:
|
585
|
+
status:
|
586
|
+
code: 200
|
587
|
+
message: OK
|
588
|
+
headers:
|
589
|
+
Last-Modified:
|
590
|
+
- Thu, 22 Oct 2015 00:20:47 GMT
|
591
|
+
Server:
|
592
|
+
- Apache
|
593
|
+
Nncoection:
|
594
|
+
- close
|
595
|
+
Accept-Ranges:
|
596
|
+
- bytes
|
597
|
+
Content-Length:
|
598
|
+
- '6902'
|
599
|
+
Content-Type:
|
600
|
+
- text/plain; charset=UTF-8
|
601
|
+
Cache-Control:
|
602
|
+
- max-age=417
|
603
|
+
Expires:
|
604
|
+
- Mon, 04 Jan 2016 13:46:14 GMT
|
605
|
+
Date:
|
606
|
+
- Mon, 04 Jan 2016 13:39:17 GMT
|
607
|
+
Connection:
|
608
|
+
- keep-alive
|
609
|
+
body:
|
610
|
+
encoding: UTF-8
|
611
|
+
string: "# robots.txt for http://www.apple.com/\n\nUser-agent: *\nDisallow:
|
612
|
+
/*/includes/*\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
613
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
614
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
615
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/answer/vote*\nDisallow: /*/shop/bag*\nDisallow:
|
616
|
+
/*/shop/browse/campaigns/mobile_overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
617
|
+
/*/shop/favorites*\nDisallow: /*/shop/mobile/olss_error*\nDisallow: /*/shop/mobilex/*\nDisallow:
|
618
|
+
/*/shop/order/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
619
|
+
/*/shop/question/unsubscribe/\nDisallow: /*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow:
|
620
|
+
/*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
621
|
+
/*/shop/store/feeds/*\nDisallow: /*/shop/variationSelection\nDisallow: /*_adc_*/shop/\nDisallow:
|
622
|
+
/*_aoc_*/shop/\nDisallow: /*_edu_*/shop/\nDisallow: /*_enterprise*/shop/\nDisallow:
|
623
|
+
/*_internal-epp-discounted*/shop/\nDisallow: /*_k12nonbts*/shop/\nDisallow:
|
624
|
+
/*_kiosk*/shop/\nDisallow: /*_nonbts*/shop/\nDisallow: /*_qpromo*/shop/\nDisallow:
|
625
|
+
/*_refurb-discounted*/shop/\nDisallow: /cn/se/*\nDisallow: /retail/availability*\nDisallow:
|
626
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
627
|
+
/search/*\nDisallow: /shop/*signed_in_account*\nDisallow: /shop/*sign_in*\nDisallow:
|
628
|
+
/shop/*sign_out*\nDisallow: /shop/*WebObjects/*\nDisallow: /shop/1-800-MY-APPLE/*\nDisallow:
|
629
|
+
/shop/answer/vote*\nDisallow: /shop/bag*\nDisallow: /shop/browse/campaigns/mobile_overlay*\nDisallow:
|
630
|
+
/shop/button_availability*\nDisallow: /shop/favorites*\nDisallow: /shop/mobile/olss_error*\nDisallow:
|
631
|
+
/shop/mobilex/\nDisallow: /shop/order/*\nDisallow: /shop/question/answer/report*\nDisallow:
|
632
|
+
/shop/question/subscribe*\nDisallow: /shop/question/unsubscribe/\nDisallow:
|
633
|
+
/shop/review/vote*\nDisallow: /shop/reviews/report*\nDisallow: /shop/rs-mvt/rel/*\nDisallow:
|
634
|
+
/shop/search/*\nDisallow: /shop/sentry*\nDisallow: /shop/socialsharing/*\nDisallow:
|
635
|
+
/shop/store/feeds/*\nDisallow: /shop/variationSelection*\nDisallow: /tmall*\nAllow:
|
636
|
+
/ac/globalnav/2.0/*/images/ac-globalnav/globalnav/search/* \t\n\nUser-agent:
|
637
|
+
Baiduspider\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
638
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
639
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
640
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
641
|
+
/*/shop/browse/overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
642
|
+
/*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow: /*/shop/checkout*\nDisallow:
|
643
|
+
/*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow: /*/shop/identify_user*\nDisallow:
|
644
|
+
/*/shop/mobile/checkout/start*\nDisallow: /*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow:
|
645
|
+
/*/shop/question/subscribe*\nDisallow: /*/shop/question/unsubscribe/*\nDisallow:
|
646
|
+
/*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow:
|
647
|
+
/*/shop/sentry*\nDisallow: /*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
648
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
649
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
650
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
651
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/vieworder*\nDisallow: /*/variationSelection*\nDisallow:
|
652
|
+
/ae/*\nDisallow: /am/*\nDisallow: /asia/*\nDisallow: /at/*\nDisallow: /au/*\nDisallow:
|
653
|
+
/befr/*\nDisallow: /benl/*\nDisallow: /bg/*\nDisallow: /bh/*\nDisallow: /br/*\nDisallow:
|
654
|
+
/bw/*\nDisallow: /ca/*\nDisallow: /ca/fr/*\nDisallow: /cf/*\nDisallow: /chde/*\nDisallow:
|
655
|
+
/chfr/*\nDisallow: /ci/*\nDisallow: /cl/*\nDisallow: /cm/*\nDisallow: /cn/se/*\nDisallow:
|
656
|
+
/co/*\nDisallow: /cz/*\nDisallow: /de/*\nDisallow: /dk/*\nDisallow: /ee/*\nDisallow:
|
657
|
+
/eg/*\nDisallow: /es/*\nDisallow: /fi/*\nDisallow: /fr/*\nDisallow: /gn/*\nDisallow:
|
658
|
+
/gq/*\nDisallow: /gr/*\nDisallow: /gw/*\nDisallow: /hk/*\nDisallow: /hk/en/*\nDisallow:
|
659
|
+
/hr/*\nDisallow: /hu/*\nDisallow: /id/*\nDisallow: /ie/*\nDisallow: /il/*\nDisallow:
|
660
|
+
/in/*\nDisallow: /it/*\nDisallow: /jo/*\nDisallow: /jp/*\nDisallow: /ke/*\nDisallow:
|
661
|
+
/kr/*\nDisallow: /kw/*\nDisallow: /la/*\nDisallow: /lae/*\nDisallow: /li/*\nDisallow:
|
662
|
+
/lt/*\nDisallow: /lu/*\nDisallow: /lv/*\nDisallow: /ma/*\nDisallow: /md/*\nDisallow:
|
663
|
+
/me/*\nDisallow: /mg/*\nDisallow: /mk/*\nDisallow: /ml/*\nDisallow: /mt/*\nDisallow:
|
664
|
+
/mu/*\nDisallow: /mx/*\nDisallow: /my/*\nDisallow: /mz/*\nDisallow: /ne/*\nDisallow:
|
665
|
+
/ng/*\nDisallow: /nl/*\nDisallow: /no/*\nDisallow: /nz/*\nDisallow: /om/*\nDisallow:
|
666
|
+
/ph/*\nDisallow: /pl/*\nDisallow: /pt/*\nDisallow: /qa/*\nDisallow: /retail/availability*\nDisallow:
|
667
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
668
|
+
/ro/*\nDisallow: /ru/*\nDisallow: /sa/*\nDisallow: /se/*\nDisallow: /search/*\nDisallow:
|
669
|
+
/sg/*\nDisallow: /shop/*\nDisallow: /si/*\nDisallow: /sk/*\nDisallow: /sn/*\nDisallow:
|
670
|
+
/th/*\nDisallow: /tmall/*\nDisallow: /tn/*\nDisallow: /tr/*\nDisallow: /tw/*\nDisallow:
|
671
|
+
/ug/*\nDisallow: /uk/*\nDisallow: /vn/*\nDisallow: /za/*\n\nUser-agent: HaoSouSpider\nDisallow:
|
672
|
+
/*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
673
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
674
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
675
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
676
|
+
/*/shop/button_availability*\nDisallow: /*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow:
|
677
|
+
/*/shop/checkout*\nDisallow: /*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow:
|
678
|
+
/*/shop/identify_user*\nDisallow: /*/shop/mobile/checkout/start*\nDisallow:
|
679
|
+
/*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
680
|
+
/*/shop/question/unsubscribe/*\nDisallow: /*/shop/review/vote*\nDisallow:
|
681
|
+
/*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow:
|
682
|
+
/*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
683
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
684
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
685
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
686
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/variationSelection*\nDisallow: /*/shop/vieworder*\nDisallow:
|
687
|
+
/cn/se/*\nDisallow: /retail/availability*\nDisallow: /retail/availabilitySearch*\nDisallow:
|
688
|
+
/retail/pickupEligibility*\nDisallow: /search/*\nDisallow: /shop/bag*\nDisallow:
|
689
|
+
/shop/search/*\nDisallow: /tmall/*\n\nSitemap: http://www.apple.com/shop/sitemap.xml\nSitemap:
|
690
|
+
http://www.apple.com/sitemap.xml\n"
|
691
|
+
http_version:
|
692
|
+
recorded_at: Mon, 04 Jan 2016 13:39:17 GMT
|
693
|
+
- request:
|
694
|
+
method: get
|
695
|
+
uri: https://github.com/robots.txt
|
696
|
+
body:
|
697
|
+
encoding: US-ASCII
|
698
|
+
string: ''
|
699
|
+
headers:
|
700
|
+
User-Agent:
|
701
|
+
- TestBot
|
702
|
+
Accept-Encoding:
|
703
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
704
|
+
Accept:
|
705
|
+
- "*/*"
|
706
|
+
response:
|
707
|
+
status:
|
708
|
+
code: 200
|
709
|
+
message: OK
|
710
|
+
headers:
|
711
|
+
Server:
|
712
|
+
- GitHub.com
|
713
|
+
Date:
|
714
|
+
- Mon, 04 Jan 2016 13:39:18 GMT
|
715
|
+
Content-Type:
|
716
|
+
- text/plain
|
717
|
+
Last-Modified:
|
718
|
+
- Mon, 04 Jan 2016 13:28:38 GMT
|
719
|
+
Transfer-Encoding:
|
720
|
+
- chunked
|
721
|
+
Etag:
|
722
|
+
- W/"568a7386-6e36"
|
723
|
+
Vary:
|
724
|
+
- Accept-Encoding
|
725
|
+
X-Served-By:
|
726
|
+
- a568c03544f42dddf712bab3bfd562fd
|
727
|
+
X-Github-Request-Id:
|
728
|
+
- 7C27244A:448A:3EB799EF:568A7605
|
729
|
+
body:
|
730
|
+
encoding: ASCII-8BIT
|
731
|
+
string: |
|
732
|
+
# If you would like to crawl GitHub contact us at support@github.com.
|
733
|
+
# We also provide an extensive API: https://developer.github.com/
|
734
|
+
|
735
|
+
User-agent: CCBot
|
736
|
+
Allow: /*/*/tree/master
|
737
|
+
Allow: /*/*/blob/master
|
738
|
+
Disallow: /ekansa/Open-Context-Data
|
739
|
+
Disallow: /ekansa/opencontext-*
|
740
|
+
Disallow: /*/*/pulse
|
741
|
+
Disallow: /*/*/tree/*
|
742
|
+
Disallow: /*/*/blob/*
|
743
|
+
Disallow: /*/*/wiki/*/*
|
744
|
+
Disallow: /gist/*/*/*
|
745
|
+
Disallow: /oembed
|
746
|
+
Disallow: /*/forks
|
747
|
+
Disallow: /*/stars
|
748
|
+
Disallow: /*/download
|
749
|
+
Disallow: /*/revisions
|
750
|
+
Disallow: /*/*/issues/new
|
751
|
+
Disallow: /*/*/issues/search
|
752
|
+
Disallow: /*/*/commits/*/*
|
753
|
+
Disallow: /*/*/commits/*?author
|
754
|
+
Disallow: /*/*/commits/*?path
|
755
|
+
Disallow: /*/*/branches
|
756
|
+
Disallow: /*/*/tags
|
757
|
+
Disallow: /*/*/contributors
|
758
|
+
Disallow: /*/*/comments
|
759
|
+
Disallow: /*/*/stargazers
|
760
|
+
Disallow: /*/*/search
|
761
|
+
Disallow: /*/tarball/
|
762
|
+
Disallow: /*/zipball/
|
763
|
+
Disallow: /*/*/archive/
|
764
|
+
Disallow: /raw/*
|
765
|
+
Disallow: /*/followers
|
766
|
+
Disallow: /*/following
|
767
|
+
Disallow: /stars/*
|
768
|
+
Disallow: /*/blame/
|
769
|
+
Disallow: /*/watchers
|
770
|
+
Disallow: /*/network
|
771
|
+
Disallow: /*/graphs
|
772
|
+
Disallow: /*/raw/
|
773
|
+
Disallow: /*/compare/
|
774
|
+
Disallow: /*/cache/
|
775
|
+
Disallow: /*/*/blame/
|
776
|
+
Disallow: /*/*/watchers
|
777
|
+
Disallow: /*/*/network
|
778
|
+
Disallow: /*/*/graphs
|
779
|
+
Disallow: /*/*/raw/
|
780
|
+
Disallow: /*/*/compare/
|
781
|
+
Disallow: /*/*/cache/
|
782
|
+
Disallow: /*.git
|
783
|
+
Disallow: /*.git/
|
784
|
+
Disallow: /search/advanced
|
785
|
+
Disallow: /search
|
786
|
+
Disallow: /*q=
|
787
|
+
Disallow: /*.atom
|
788
|
+
Disallow: /login
|
789
|
+
|
790
|
+
User-agent: coccoc
|
791
|
+
Allow: /*/*/tree/master
|
792
|
+
Allow: /*/*/blob/master
|
793
|
+
Disallow: /ekansa/Open-Context-Data
|
794
|
+
Disallow: /ekansa/opencontext-*
|
795
|
+
Disallow: /*/*/pulse
|
796
|
+
Disallow: /*/*/tree/*
|
797
|
+
Disallow: /*/*/blob/*
|
798
|
+
Disallow: /*/*/wiki/*/*
|
799
|
+
Disallow: /gist/*/*/*
|
800
|
+
Disallow: /oembed
|
801
|
+
Disallow: /*/forks
|
802
|
+
Disallow: /*/stars
|
803
|
+
Disallow: /*/download
|
804
|
+
Disallow: /*/revisions
|
805
|
+
Disallow: /*/*/issues/new
|
806
|
+
Disallow: /*/*/issues/search
|
807
|
+
Disallow: /*/*/commits/*/*
|
808
|
+
Disallow: /*/*/commits/*?author
|
809
|
+
Disallow: /*/*/commits/*?path
|
810
|
+
Disallow: /*/*/branches
|
811
|
+
Disallow: /*/*/tags
|
812
|
+
Disallow: /*/*/contributors
|
813
|
+
Disallow: /*/*/comments
|
814
|
+
Disallow: /*/*/stargazers
|
815
|
+
Disallow: /*/*/search
|
816
|
+
Disallow: /*/tarball/
|
817
|
+
Disallow: /*/zipball/
|
818
|
+
Disallow: /*/*/archive/
|
819
|
+
Disallow: /raw/*
|
820
|
+
Disallow: /*/followers
|
821
|
+
Disallow: /*/following
|
822
|
+
Disallow: /stars/*
|
823
|
+
Disallow: /*/blame/
|
824
|
+
Disallow: /*/watchers
|
825
|
+
Disallow: /*/network
|
826
|
+
Disallow: /*/graphs
|
827
|
+
Disallow: /*/raw/
|
828
|
+
Disallow: /*/compare/
|
829
|
+
Disallow: /*/cache/
|
830
|
+
Disallow: /*/*/blame/
|
831
|
+
Disallow: /*/*/watchers
|
832
|
+
Disallow: /*/*/network
|
833
|
+
Disallow: /*/*/graphs
|
834
|
+
Disallow: /*/*/raw/
|
835
|
+
Disallow: /*/*/compare/
|
836
|
+
Disallow: /*/*/cache/
|
837
|
+
Disallow: /*.git
|
838
|
+
Disallow: /*.git/
|
839
|
+
Disallow: /search/advanced
|
840
|
+
Disallow: /search
|
841
|
+
Disallow: /*q=
|
842
|
+
Disallow: /*.atom
|
843
|
+
Disallow: /login
|
844
|
+
|
845
|
+
User-agent: dotbot
|
846
|
+
Allow: /*/*/tree/master
|
847
|
+
Allow: /*/*/blob/master
|
848
|
+
Disallow: /ekansa/Open-Context-Data
|
849
|
+
Disallow: /ekansa/opencontext-*
|
850
|
+
Disallow: /*/*/pulse
|
851
|
+
Disallow: /*/*/tree/*
|
852
|
+
Disallow: /*/*/blob/*
|
853
|
+
Disallow: /*/*/wiki/*/*
|
854
|
+
Disallow: /gist/*/*/*
|
855
|
+
Disallow: /oembed
|
856
|
+
Disallow: /*/forks
|
857
|
+
Disallow: /*/stars
|
858
|
+
Disallow: /*/download
|
859
|
+
Disallow: /*/revisions
|
860
|
+
Disallow: /*/*/issues/new
|
861
|
+
Disallow: /*/*/issues/search
|
862
|
+
Disallow: /*/*/commits/*/*
|
863
|
+
Disallow: /*/*/commits/*?author
|
864
|
+
Disallow: /*/*/commits/*?path
|
865
|
+
Disallow: /*/*/branches
|
866
|
+
Disallow: /*/*/tags
|
867
|
+
Disallow: /*/*/contributors
|
868
|
+
Disallow: /*/*/comments
|
869
|
+
Disallow: /*/*/stargazers
|
870
|
+
Disallow: /*/*/search
|
871
|
+
Disallow: /*/tarball/
|
872
|
+
Disallow: /*/zipball/
|
873
|
+
Disallow: /*/*/archive/
|
874
|
+
Disallow: /raw/*
|
875
|
+
Disallow: /*/followers
|
876
|
+
Disallow: /*/following
|
877
|
+
Disallow: /stars/*
|
878
|
+
Disallow: /*/blame/
|
879
|
+
Disallow: /*/watchers
|
880
|
+
Disallow: /*/network
|
881
|
+
Disallow: /*/graphs
|
882
|
+
Disallow: /*/raw/
|
883
|
+
Disallow: /*/compare/
|
884
|
+
Disallow: /*/cache/
|
885
|
+
Disallow: /*/*/blame/
|
886
|
+
Disallow: /*/*/watchers
|
887
|
+
Disallow: /*/*/network
|
888
|
+
Disallow: /*/*/graphs
|
889
|
+
Disallow: /*/*/raw/
|
890
|
+
Disallow: /*/*/compare/
|
891
|
+
Disallow: /*/*/cache/
|
892
|
+
Disallow: /*.git
|
893
|
+
Disallow: /*.git/
|
894
|
+
Disallow: /search/advanced
|
895
|
+
Disallow: /search
|
896
|
+
Disallow: /*q=
|
897
|
+
Disallow: /*.atom
|
898
|
+
Disallow: /login
|
899
|
+
|
900
|
+
User-agent: duckduckbot
|
901
|
+
Allow: /*/*/tree/master
|
902
|
+
Allow: /*/*/blob/master
|
903
|
+
Disallow: /ekansa/Open-Context-Data
|
904
|
+
Disallow: /ekansa/opencontext-*
|
905
|
+
Disallow: /*/*/pulse
|
906
|
+
Disallow: /*/*/tree/*
|
907
|
+
Disallow: /*/*/blob/*
|
908
|
+
Disallow: /*/*/wiki/*/*
|
909
|
+
Disallow: /gist/*/*/*
|
910
|
+
Disallow: /oembed
|
911
|
+
Disallow: /*/forks
|
912
|
+
Disallow: /*/stars
|
913
|
+
Disallow: /*/download
|
914
|
+
Disallow: /*/revisions
|
915
|
+
Disallow: /*/*/issues/new
|
916
|
+
Disallow: /*/*/issues/search
|
917
|
+
Disallow: /*/*/commits/*/*
|
918
|
+
Disallow: /*/*/commits/*?author
|
919
|
+
Disallow: /*/*/commits/*?path
|
920
|
+
Disallow: /*/*/branches
|
921
|
+
Disallow: /*/*/tags
|
922
|
+
Disallow: /*/*/contributors
|
923
|
+
Disallow: /*/*/comments
|
924
|
+
Disallow: /*/*/stargazers
|
925
|
+
Disallow: /*/*/search
|
926
|
+
Disallow: /*/tarball/
|
927
|
+
Disallow: /*/zipball/
|
928
|
+
Disallow: /*/*/archive/
|
929
|
+
Disallow: /raw/*
|
930
|
+
Disallow: /*/followers
|
931
|
+
Disallow: /*/following
|
932
|
+
Disallow: /stars/*
|
933
|
+
Disallow: /*/blame/
|
934
|
+
Disallow: /*/watchers
|
935
|
+
Disallow: /*/network
|
936
|
+
Disallow: /*/graphs
|
937
|
+
Disallow: /*/raw/
|
938
|
+
Disallow: /*/compare/
|
939
|
+
Disallow: /*/cache/
|
940
|
+
Disallow: /*/*/blame/
|
941
|
+
Disallow: /*/*/watchers
|
942
|
+
Disallow: /*/*/network
|
943
|
+
Disallow: /*/*/graphs
|
944
|
+
Disallow: /*/*/raw/
|
945
|
+
Disallow: /*/*/compare/
|
946
|
+
Disallow: /*/*/cache/
|
947
|
+
Disallow: /*.git
|
948
|
+
Disallow: /*.git/
|
949
|
+
Disallow: /search/advanced
|
950
|
+
Disallow: /search
|
951
|
+
Disallow: /*q=
|
952
|
+
Disallow: /*.atom
|
953
|
+
Disallow: /login
|
954
|
+
|
955
|
+
User-agent: EtaoSpider
|
956
|
+
Allow: /*/*/tree/master
|
957
|
+
Allow: /*/*/blob/master
|
958
|
+
Disallow: /ekansa/Open-Context-Data
|
959
|
+
Disallow: /ekansa/opencontext-*
|
960
|
+
Disallow: /*/*/pulse
|
961
|
+
Disallow: /*/*/tree/*
|
962
|
+
Disallow: /*/*/blob/*
|
963
|
+
Disallow: /*/*/wiki/*/*
|
964
|
+
Disallow: /gist/*/*/*
|
965
|
+
Disallow: /oembed
|
966
|
+
Disallow: /*/forks
|
967
|
+
Disallow: /*/stars
|
968
|
+
Disallow: /*/download
|
969
|
+
Disallow: /*/revisions
|
970
|
+
Disallow: /*/*/issues/new
|
971
|
+
Disallow: /*/*/issues/search
|
972
|
+
Disallow: /*/*/commits/*/*
|
973
|
+
Disallow: /*/*/commits/*?author
|
974
|
+
Disallow: /*/*/commits/*?path
|
975
|
+
Disallow: /*/*/branches
|
976
|
+
Disallow: /*/*/tags
|
977
|
+
Disallow: /*/*/contributors
|
978
|
+
Disallow: /*/*/comments
|
979
|
+
Disallow: /*/*/stargazers
|
980
|
+
Disallow: /*/*/search
|
981
|
+
Disallow: /*/tarball/
|
982
|
+
Disallow: /*/zipball/
|
983
|
+
Disallow: /*/*/archive/
|
984
|
+
Disallow: /raw/*
|
985
|
+
Disallow: /*/followers
|
986
|
+
Disallow: /*/following
|
987
|
+
Disallow: /stars/*
|
988
|
+
Disallow: /*/blame/
|
989
|
+
Disallow: /*/watchers
|
990
|
+
Disallow: /*/network
|
991
|
+
Disallow: /*/graphs
|
992
|
+
Disallow: /*/raw/
|
993
|
+
Disallow: /*/compare/
|
994
|
+
Disallow: /*/cache/
|
995
|
+
Disallow: /*/*/blame/
|
996
|
+
Disallow: /*/*/watchers
|
997
|
+
Disallow: /*/*/network
|
998
|
+
Disallow: /*/*/graphs
|
999
|
+
Disallow: /*/*/raw/
|
1000
|
+
Disallow: /*/*/compare/
|
1001
|
+
Disallow: /*/*/cache/
|
1002
|
+
Disallow: /*.git
|
1003
|
+
Disallow: /*.git/
|
1004
|
+
Disallow: /search/advanced
|
1005
|
+
Disallow: /search
|
1006
|
+
Disallow: /*q=
|
1007
|
+
Disallow: /*.atom
|
1008
|
+
Disallow: /login
|
1009
|
+
|
1010
|
+
User-agent: Googlebot
|
1011
|
+
Allow: /*/*/tree/master
|
1012
|
+
Allow: /*/*/blob/master
|
1013
|
+
Disallow: /ekansa/Open-Context-Data
|
1014
|
+
Disallow: /ekansa/opencontext-*
|
1015
|
+
Disallow: /*/*/pulse
|
1016
|
+
Disallow: /*/*/tree/*
|
1017
|
+
Disallow: /*/*/blob/*
|
1018
|
+
Disallow: /*/*/wiki/*/*
|
1019
|
+
Disallow: /gist/*/*/*
|
1020
|
+
Disallow: /oembed
|
1021
|
+
Disallow: /*/forks
|
1022
|
+
Disallow: /*/stars
|
1023
|
+
Disallow: /*/download
|
1024
|
+
Disallow: /*/revisions
|
1025
|
+
Disallow: /*/*/issues/new
|
1026
|
+
Disallow: /*/*/issues/search
|
1027
|
+
Disallow: /*/*/commits/*/*
|
1028
|
+
Disallow: /*/*/commits/*?author
|
1029
|
+
Disallow: /*/*/commits/*?path
|
1030
|
+
Disallow: /*/*/branches
|
1031
|
+
Disallow: /*/*/tags
|
1032
|
+
Disallow: /*/*/contributors
|
1033
|
+
Disallow: /*/*/comments
|
1034
|
+
Disallow: /*/*/stargazers
|
1035
|
+
Disallow: /*/*/search
|
1036
|
+
Disallow: /*/tarball/
|
1037
|
+
Disallow: /*/zipball/
|
1038
|
+
Disallow: /*/*/archive/
|
1039
|
+
Disallow: /raw/*
|
1040
|
+
Disallow: /*/followers
|
1041
|
+
Disallow: /*/following
|
1042
|
+
Disallow: /stars/*
|
1043
|
+
Disallow: /*/blame/
|
1044
|
+
Disallow: /*/watchers
|
1045
|
+
Disallow: /*/network
|
1046
|
+
Disallow: /*/graphs
|
1047
|
+
Disallow: /*/raw/
|
1048
|
+
Disallow: /*/compare/
|
1049
|
+
Disallow: /*/cache/
|
1050
|
+
Disallow: /*/*/blame/
|
1051
|
+
Disallow: /*/*/watchers
|
1052
|
+
Disallow: /*/*/network
|
1053
|
+
Disallow: /*/*/graphs
|
1054
|
+
Disallow: /*/*/raw/
|
1055
|
+
Disallow: /*/*/compare/
|
1056
|
+
Disallow: /*/*/cache/
|
1057
|
+
Disallow: /*.git
|
1058
|
+
Disallow: /*.git/
|
1059
|
+
Disallow: /search/advanced
|
1060
|
+
Disallow: /search
|
1061
|
+
Disallow: /*q=
|
1062
|
+
Disallow: /*.atom
|
1063
|
+
Disallow: /login
|
1064
|
+
|
1065
|
+
User-agent: HTTrack
|
1066
|
+
Allow: /*/*/tree/master
|
1067
|
+
Allow: /*/*/blob/master
|
1068
|
+
Disallow: /ekansa/Open-Context-Data
|
1069
|
+
Disallow: /ekansa/opencontext-*
|
1070
|
+
Disallow: /*/*/pulse
|
1071
|
+
Disallow: /*/*/tree/*
|
1072
|
+
Disallow: /*/*/blob/*
|
1073
|
+
Disallow: /*/*/wiki/*/*
|
1074
|
+
Disallow: /gist/*/*/*
|
1075
|
+
Disallow: /oembed
|
1076
|
+
Disallow: /*/forks
|
1077
|
+
Disallow: /*/stars
|
1078
|
+
Disallow: /*/download
|
1079
|
+
Disallow: /*/revisions
|
1080
|
+
Disallow: /*/*/issues/new
|
1081
|
+
Disallow: /*/*/issues/search
|
1082
|
+
Disallow: /*/*/commits/*/*
|
1083
|
+
Disallow: /*/*/commits/*?author
|
1084
|
+
Disallow: /*/*/commits/*?path
|
1085
|
+
Disallow: /*/*/branches
|
1086
|
+
Disallow: /*/*/tags
|
1087
|
+
Disallow: /*/*/contributors
|
1088
|
+
Disallow: /*/*/comments
|
1089
|
+
Disallow: /*/*/stargazers
|
1090
|
+
Disallow: /*/*/search
|
1091
|
+
Disallow: /*/tarball/
|
1092
|
+
Disallow: /*/zipball/
|
1093
|
+
Disallow: /*/*/archive/
|
1094
|
+
Disallow: /raw/*
|
1095
|
+
Disallow: /*/followers
|
1096
|
+
Disallow: /*/following
|
1097
|
+
Disallow: /stars/*
|
1098
|
+
Disallow: /*/blame/
|
1099
|
+
Disallow: /*/watchers
|
1100
|
+
Disallow: /*/network
|
1101
|
+
Disallow: /*/graphs
|
1102
|
+
Disallow: /*/raw/
|
1103
|
+
Disallow: /*/compare/
|
1104
|
+
Disallow: /*/cache/
|
1105
|
+
Disallow: /*/*/blame/
|
1106
|
+
Disallow: /*/*/watchers
|
1107
|
+
Disallow: /*/*/network
|
1108
|
+
Disallow: /*/*/graphs
|
1109
|
+
Disallow: /*/*/raw/
|
1110
|
+
Disallow: /*/*/compare/
|
1111
|
+
Disallow: /*/*/cache/
|
1112
|
+
Disallow: /*.git
|
1113
|
+
Disallow: /*.git/
|
1114
|
+
Disallow: /search/advanced
|
1115
|
+
Disallow: /search
|
1116
|
+
Disallow: /*q=
|
1117
|
+
Disallow: /*.atom
|
1118
|
+
Disallow: /login
|
1119
|
+
|
1120
|
+
User-agent: ia_archiver
|
1121
|
+
Allow: /*/*/tree/master
|
1122
|
+
Allow: /*/*/blob/master
|
1123
|
+
Disallow: /ekansa/Open-Context-Data
|
1124
|
+
Disallow: /ekansa/opencontext-*
|
1125
|
+
Disallow: /*/*/pulse
|
1126
|
+
Disallow: /*/*/tree/*
|
1127
|
+
Disallow: /*/*/blob/*
|
1128
|
+
Disallow: /*/*/wiki/*/*
|
1129
|
+
Disallow: /gist/*/*/*
|
1130
|
+
Disallow: /oembed
|
1131
|
+
Disallow: /*/forks
|
1132
|
+
Disallow: /*/stars
|
1133
|
+
Disallow: /*/download
|
1134
|
+
Disallow: /*/revisions
|
1135
|
+
Disallow: /*/*/issues/new
|
1136
|
+
Disallow: /*/*/issues/search
|
1137
|
+
Disallow: /*/*/commits/*/*
|
1138
|
+
Disallow: /*/*/commits/*?author
|
1139
|
+
Disallow: /*/*/commits/*?path
|
1140
|
+
Disallow: /*/*/branches
|
1141
|
+
Disallow: /*/*/tags
|
1142
|
+
Disallow: /*/*/contributors
|
1143
|
+
Disallow: /*/*/comments
|
1144
|
+
Disallow: /*/*/stargazers
|
1145
|
+
Disallow: /*/*/search
|
1146
|
+
Disallow: /*/tarball/
|
1147
|
+
Disallow: /*/zipball/
|
1148
|
+
Disallow: /*/*/archive/
|
1149
|
+
Disallow: /raw/*
|
1150
|
+
Disallow: /*/followers
|
1151
|
+
Disallow: /*/following
|
1152
|
+
Disallow: /stars/*
|
1153
|
+
Disallow: /*/blame/
|
1154
|
+
Disallow: /*/watchers
|
1155
|
+
Disallow: /*/network
|
1156
|
+
Disallow: /*/graphs
|
1157
|
+
Disallow: /*/raw/
|
1158
|
+
Disallow: /*/compare/
|
1159
|
+
Disallow: /*/cache/
|
1160
|
+
Disallow: /*/*/blame/
|
1161
|
+
Disallow: /*/*/watchers
|
1162
|
+
Disallow: /*/*/network
|
1163
|
+
Disallow: /*/*/graphs
|
1164
|
+
Disallow: /*/*/raw/
|
1165
|
+
Disallow: /*/*/compare/
|
1166
|
+
Disallow: /*/*/cache/
|
1167
|
+
Disallow: /*.git
|
1168
|
+
Disallow: /*.git/
|
1169
|
+
Disallow: /search/advanced
|
1170
|
+
Disallow: /search
|
1171
|
+
Disallow: /*q=
|
1172
|
+
Disallow: /*.atom
|
1173
|
+
Disallow: /login
|
1174
|
+
|
1175
|
+
User-agent: IntuitGSACrawler
|
1176
|
+
Allow: /*/*/tree/master
|
1177
|
+
Allow: /*/*/blob/master
|
1178
|
+
Disallow: /ekansa/Open-Context-Data
|
1179
|
+
Disallow: /ekansa/opencontext-*
|
1180
|
+
Disallow: /*/*/pulse
|
1181
|
+
Disallow: /*/*/tree/*
|
1182
|
+
Disallow: /*/*/blob/*
|
1183
|
+
Disallow: /*/*/wiki/*/*
|
1184
|
+
Disallow: /gist/*/*/*
|
1185
|
+
Disallow: /oembed
|
1186
|
+
Disallow: /*/forks
|
1187
|
+
Disallow: /*/stars
|
1188
|
+
Disallow: /*/download
|
1189
|
+
Disallow: /*/revisions
|
1190
|
+
Disallow: /*/*/issues/new
|
1191
|
+
Disallow: /*/*/issues/search
|
1192
|
+
Disallow: /*/*/commits/*/*
|
1193
|
+
Disallow: /*/*/commits/*?author
|
1194
|
+
Disallow: /*/*/commits/*?path
|
1195
|
+
Disallow: /*/*/branches
|
1196
|
+
Disallow: /*/*/tags
|
1197
|
+
Disallow: /*/*/contributors
|
1198
|
+
Disallow: /*/*/comments
|
1199
|
+
Disallow: /*/*/stargazers
|
1200
|
+
Disallow: /*/*/search
|
1201
|
+
Disallow: /*/tarball/
|
1202
|
+
Disallow: /*/zipball/
|
1203
|
+
Disallow: /*/*/archive/
|
1204
|
+
Disallow: /raw/*
|
1205
|
+
Disallow: /*/followers
|
1206
|
+
Disallow: /*/following
|
1207
|
+
Disallow: /stars/*
|
1208
|
+
Disallow: /*/blame/
|
1209
|
+
Disallow: /*/watchers
|
1210
|
+
Disallow: /*/network
|
1211
|
+
Disallow: /*/graphs
|
1212
|
+
Disallow: /*/raw/
|
1213
|
+
Disallow: /*/compare/
|
1214
|
+
Disallow: /*/cache/
|
1215
|
+
Disallow: /*/*/blame/
|
1216
|
+
Disallow: /*/*/watchers
|
1217
|
+
Disallow: /*/*/network
|
1218
|
+
Disallow: /*/*/graphs
|
1219
|
+
Disallow: /*/*/raw/
|
1220
|
+
Disallow: /*/*/compare/
|
1221
|
+
Disallow: /*/*/cache/
|
1222
|
+
Disallow: /*.git
|
1223
|
+
Disallow: /*.git/
|
1224
|
+
Disallow: /search/advanced
|
1225
|
+
Disallow: /search
|
1226
|
+
Disallow: /*q=
|
1227
|
+
Disallow: /*.atom
|
1228
|
+
Disallow: /login
|
1229
|
+
|
1230
|
+
User-agent: Mail.RU_Bot
|
1231
|
+
Allow: /*/*/tree/master
|
1232
|
+
Allow: /*/*/blob/master
|
1233
|
+
Disallow: /ekansa/Open-Context-Data
|
1234
|
+
Disallow: /ekansa/opencontext-*
|
1235
|
+
Disallow: /*/*/pulse
|
1236
|
+
Disallow: /*/*/tree/*
|
1237
|
+
Disallow: /*/*/blob/*
|
1238
|
+
Disallow: /*/*/wiki/*/*
|
1239
|
+
Disallow: /gist/*/*/*
|
1240
|
+
Disallow: /oembed
|
1241
|
+
Disallow: /*/forks
|
1242
|
+
Disallow: /*/stars
|
1243
|
+
Disallow: /*/download
|
1244
|
+
Disallow: /*/revisions
|
1245
|
+
Disallow: /*/*/issues/new
|
1246
|
+
Disallow: /*/*/issues/search
|
1247
|
+
Disallow: /*/*/commits/*/*
|
1248
|
+
Disallow: /*/*/commits/*?author
|
1249
|
+
Disallow: /*/*/commits/*?path
|
1250
|
+
Disallow: /*/*/branches
|
1251
|
+
Disallow: /*/*/tags
|
1252
|
+
Disallow: /*/*/contributors
|
1253
|
+
Disallow: /*/*/comments
|
1254
|
+
Disallow: /*/*/stargazers
|
1255
|
+
Disallow: /*/*/search
|
1256
|
+
Disallow: /*/tarball/
|
1257
|
+
Disallow: /*/zipball/
|
1258
|
+
Disallow: /*/*/archive/
|
1259
|
+
Disallow: /raw/*
|
1260
|
+
Disallow: /*/followers
|
1261
|
+
Disallow: /*/following
|
1262
|
+
Disallow: /stars/*
|
1263
|
+
Disallow: /*/blame/
|
1264
|
+
Disallow: /*/watchers
|
1265
|
+
Disallow: /*/network
|
1266
|
+
Disallow: /*/graphs
|
1267
|
+
Disallow: /*/raw/
|
1268
|
+
Disallow: /*/compare/
|
1269
|
+
Disallow: /*/cache/
|
1270
|
+
Disallow: /*/*/blame/
|
1271
|
+
Disallow: /*/*/watchers
|
1272
|
+
Disallow: /*/*/network
|
1273
|
+
Disallow: /*/*/graphs
|
1274
|
+
Disallow: /*/*/raw/
|
1275
|
+
Disallow: /*/*/compare/
|
1276
|
+
Disallow: /*/*/cache/
|
1277
|
+
Disallow: /*.git
|
1278
|
+
Disallow: /*.git/
|
1279
|
+
Disallow: /search/advanced
|
1280
|
+
Disallow: /search
|
1281
|
+
Disallow: /*q=
|
1282
|
+
Disallow: /*.atom
|
1283
|
+
Disallow: /login
|
1284
|
+
|
1285
|
+
User-agent: msnbot
|
1286
|
+
Allow: /*/*/tree/master
|
1287
|
+
Allow: /*/*/blob/master
|
1288
|
+
Disallow: /ekansa/Open-Context-Data
|
1289
|
+
Disallow: /ekansa/opencontext-*
|
1290
|
+
Disallow: /*/*/pulse
|
1291
|
+
Disallow: /*/*/tree/*
|
1292
|
+
Disallow: /*/*/blob/*
|
1293
|
+
Disallow: /*/*/wiki/*/*
|
1294
|
+
Disallow: /gist/*/*/*
|
1295
|
+
Disallow: /oembed
|
1296
|
+
Disallow: /*/forks
|
1297
|
+
Disallow: /*/stars
|
1298
|
+
Disallow: /*/download
|
1299
|
+
Disallow: /*/revisions
|
1300
|
+
Disallow: /*/*/issues/new
|
1301
|
+
Disallow: /*/*/issues/search
|
1302
|
+
Disallow: /*/*/commits/*/*
|
1303
|
+
Disallow: /*/*/commits/*?author
|
1304
|
+
Disallow: /*/*/commits/*?path
|
1305
|
+
Disallow: /*/*/branches
|
1306
|
+
Disallow: /*/*/tags
|
1307
|
+
Disallow: /*/*/contributors
|
1308
|
+
Disallow: /*/*/comments
|
1309
|
+
Disallow: /*/*/stargazers
|
1310
|
+
Disallow: /*/*/search
|
1311
|
+
Disallow: /*/tarball/
|
1312
|
+
Disallow: /*/zipball/
|
1313
|
+
Disallow: /*/*/archive/
|
1314
|
+
Disallow: /raw/*
|
1315
|
+
Disallow: /*/followers
|
1316
|
+
Disallow: /*/following
|
1317
|
+
Disallow: /stars/*
|
1318
|
+
Disallow: /*/blame/
|
1319
|
+
Disallow: /*/watchers
|
1320
|
+
Disallow: /*/network
|
1321
|
+
Disallow: /*/graphs
|
1322
|
+
Disallow: /*/raw/
|
1323
|
+
Disallow: /*/compare/
|
1324
|
+
Disallow: /*/cache/
|
1325
|
+
Disallow: /*/*/blame/
|
1326
|
+
Disallow: /*/*/watchers
|
1327
|
+
Disallow: /*/*/network
|
1328
|
+
Disallow: /*/*/graphs
|
1329
|
+
Disallow: /*/*/raw/
|
1330
|
+
Disallow: /*/*/compare/
|
1331
|
+
Disallow: /*/*/cache/
|
1332
|
+
Disallow: /*.git
|
1333
|
+
Disallow: /*.git/
|
1334
|
+
Disallow: /search/advanced
|
1335
|
+
Disallow: /search
|
1336
|
+
Disallow: /*q=
|
1337
|
+
Disallow: /*.atom
|
1338
|
+
Disallow: /login
|
1339
|
+
|
1340
|
+
User-agent: Bingbot
|
1341
|
+
Allow: /*/*/tree/master
|
1342
|
+
Allow: /*/*/blob/master
|
1343
|
+
Disallow: /ekansa/Open-Context-Data
|
1344
|
+
Disallow: /ekansa/opencontext-*
|
1345
|
+
Disallow: /*/*/pulse
|
1346
|
+
Disallow: /*/*/tree/*
|
1347
|
+
Disallow: /*/*/blob/*
|
1348
|
+
Disallow: /*/*/wiki/*/*
|
1349
|
+
Disallow: /gist/*/*/*
|
1350
|
+
Disallow: /oembed
|
1351
|
+
Disallow: /*/forks
|
1352
|
+
Disallow: /*/stars
|
1353
|
+
Disallow: /*/download
|
1354
|
+
Disallow: /*/revisions
|
1355
|
+
Disallow: /*/*/issues/new
|
1356
|
+
Disallow: /*/*/issues/search
|
1357
|
+
Disallow: /*/*/commits/*/*
|
1358
|
+
Disallow: /*/*/commits/*?author
|
1359
|
+
Disallow: /*/*/commits/*?path
|
1360
|
+
Disallow: /*/*/branches
|
1361
|
+
Disallow: /*/*/tags
|
1362
|
+
Disallow: /*/*/contributors
|
1363
|
+
Disallow: /*/*/comments
|
1364
|
+
Disallow: /*/*/stargazers
|
1365
|
+
Disallow: /*/*/search
|
1366
|
+
Disallow: /*/tarball/
|
1367
|
+
Disallow: /*/zipball/
|
1368
|
+
Disallow: /*/*/archive/
|
1369
|
+
Disallow: /raw/*
|
1370
|
+
Disallow: /*/followers
|
1371
|
+
Disallow: /*/following
|
1372
|
+
Disallow: /stars/*
|
1373
|
+
Disallow: /*/blame/
|
1374
|
+
Disallow: /*/watchers
|
1375
|
+
Disallow: /*/network
|
1376
|
+
Disallow: /*/graphs
|
1377
|
+
Disallow: /*/raw/
|
1378
|
+
Disallow: /*/compare/
|
1379
|
+
Disallow: /*/cache/
|
1380
|
+
Disallow: /*/*/blame/
|
1381
|
+
Disallow: /*/*/watchers
|
1382
|
+
Disallow: /*/*/network
|
1383
|
+
Disallow: /*/*/graphs
|
1384
|
+
Disallow: /*/*/raw/
|
1385
|
+
Disallow: /*/*/compare/
|
1386
|
+
Disallow: /*/*/cache/
|
1387
|
+
Disallow: /*.git
|
1388
|
+
Disallow: /*.git/
|
1389
|
+
Disallow: /search/advanced
|
1390
|
+
Disallow: /search
|
1391
|
+
Disallow: /*q=
|
1392
|
+
Disallow: /*.atom
|
1393
|
+
Disallow: /login
|
1394
|
+
|
1395
|
+
User-agent: naverbot
|
1396
|
+
Allow: /*/*/tree/master
|
1397
|
+
Allow: /*/*/blob/master
|
1398
|
+
Disallow: /ekansa/Open-Context-Data
|
1399
|
+
Disallow: /ekansa/opencontext-*
|
1400
|
+
Disallow: /*/*/pulse
|
1401
|
+
Disallow: /*/*/tree/*
|
1402
|
+
Disallow: /*/*/blob/*
|
1403
|
+
Disallow: /*/*/wiki/*/*
|
1404
|
+
Disallow: /gist/*/*/*
|
1405
|
+
Disallow: /oembed
|
1406
|
+
Disallow: /*/forks
|
1407
|
+
Disallow: /*/stars
|
1408
|
+
Disallow: /*/download
|
1409
|
+
Disallow: /*/revisions
|
1410
|
+
Disallow: /*/*/issues/new
|
1411
|
+
Disallow: /*/*/issues/search
|
1412
|
+
Disallow: /*/*/commits/*/*
|
1413
|
+
Disallow: /*/*/commits/*?author
|
1414
|
+
Disallow: /*/*/commits/*?path
|
1415
|
+
Disallow: /*/*/branches
|
1416
|
+
Disallow: /*/*/tags
|
1417
|
+
Disallow: /*/*/contributors
|
1418
|
+
Disallow: /*/*/comments
|
1419
|
+
Disallow: /*/*/stargazers
|
1420
|
+
Disallow: /*/*/search
|
1421
|
+
Disallow: /*/tarball/
|
1422
|
+
Disallow: /*/zipball/
|
1423
|
+
Disallow: /*/*/archive/
|
1424
|
+
Disallow: /raw/*
|
1425
|
+
Disallow: /*/followers
|
1426
|
+
Disallow: /*/following
|
1427
|
+
Disallow: /stars/*
|
1428
|
+
Disallow: /*/blame/
|
1429
|
+
Disallow: /*/watchers
|
1430
|
+
Disallow: /*/network
|
1431
|
+
Disallow: /*/graphs
|
1432
|
+
Disallow: /*/raw/
|
1433
|
+
Disallow: /*/compare/
|
1434
|
+
Disallow: /*/cache/
|
1435
|
+
Disallow: /*/*/blame/
|
1436
|
+
Disallow: /*/*/watchers
|
1437
|
+
Disallow: /*/*/network
|
1438
|
+
Disallow: /*/*/graphs
|
1439
|
+
Disallow: /*/*/raw/
|
1440
|
+
Disallow: /*/*/compare/
|
1441
|
+
Disallow: /*/*/cache/
|
1442
|
+
Disallow: /*.git
|
1443
|
+
Disallow: /*.git/
|
1444
|
+
Disallow: /search/advanced
|
1445
|
+
Disallow: /search
|
1446
|
+
Disallow: /*q=
|
1447
|
+
Disallow: /*.atom
|
1448
|
+
Disallow: /login
|
1449
|
+
|
1450
|
+
User-agent: red-app-gsa-p-one
|
1451
|
+
Allow: /*/*/tree/master
|
1452
|
+
Allow: /*/*/blob/master
|
1453
|
+
Disallow: /ekansa/Open-Context-Data
|
1454
|
+
Disallow: /ekansa/opencontext-*
|
1455
|
+
Disallow: /*/*/pulse
|
1456
|
+
Disallow: /*/*/tree/*
|
1457
|
+
Disallow: /*/*/blob/*
|
1458
|
+
Disallow: /*/*/wiki/*/*
|
1459
|
+
Disallow: /gist/*/*/*
|
1460
|
+
Disallow: /oembed
|
1461
|
+
Disallow: /*/forks
|
1462
|
+
Disallow: /*/stars
|
1463
|
+
Disallow: /*/download
|
1464
|
+
Disallow: /*/revisions
|
1465
|
+
Disallow: /*/*/issues/new
|
1466
|
+
Disallow: /*/*/issues/search
|
1467
|
+
Disallow: /*/*/commits/*/*
|
1468
|
+
Disallow: /*/*/commits/*?author
|
1469
|
+
Disallow: /*/*/commits/*?path
|
1470
|
+
Disallow: /*/*/branches
|
1471
|
+
Disallow: /*/*/tags
|
1472
|
+
Disallow: /*/*/contributors
|
1473
|
+
Disallow: /*/*/comments
|
1474
|
+
Disallow: /*/*/stargazers
|
1475
|
+
Disallow: /*/*/search
|
1476
|
+
Disallow: /*/tarball/
|
1477
|
+
Disallow: /*/zipball/
|
1478
|
+
Disallow: /*/*/archive/
|
1479
|
+
Disallow: /raw/*
|
1480
|
+
Disallow: /*/followers
|
1481
|
+
Disallow: /*/following
|
1482
|
+
Disallow: /stars/*
|
1483
|
+
Disallow: /*/blame/
|
1484
|
+
Disallow: /*/watchers
|
1485
|
+
Disallow: /*/network
|
1486
|
+
Disallow: /*/graphs
|
1487
|
+
Disallow: /*/raw/
|
1488
|
+
Disallow: /*/compare/
|
1489
|
+
Disallow: /*/cache/
|
1490
|
+
Disallow: /*/*/blame/
|
1491
|
+
Disallow: /*/*/watchers
|
1492
|
+
Disallow: /*/*/network
|
1493
|
+
Disallow: /*/*/graphs
|
1494
|
+
Disallow: /*/*/raw/
|
1495
|
+
Disallow: /*/*/compare/
|
1496
|
+
Disallow: /*/*/cache/
|
1497
|
+
Disallow: /*.git
|
1498
|
+
Disallow: /*.git/
|
1499
|
+
Disallow: /search/advanced
|
1500
|
+
Disallow: /search
|
1501
|
+
Disallow: /*q=
|
1502
|
+
Disallow: /*.atom
|
1503
|
+
Disallow: /login
|
1504
|
+
|
1505
|
+
User-agent: rogerbot
|
1506
|
+
Allow: /*/*/tree/master
|
1507
|
+
Allow: /*/*/blob/master
|
1508
|
+
Disallow: /ekansa/Open-Context-Data
|
1509
|
+
Disallow: /ekansa/opencontext-*
|
1510
|
+
Disallow: /*/*/pulse
|
1511
|
+
Disallow: /*/*/tree/*
|
1512
|
+
Disallow: /*/*/blob/*
|
1513
|
+
Disallow: /*/*/wiki/*/*
|
1514
|
+
Disallow: /gist/*/*/*
|
1515
|
+
Disallow: /oembed
|
1516
|
+
Disallow: /*/forks
|
1517
|
+
Disallow: /*/stars
|
1518
|
+
Disallow: /*/download
|
1519
|
+
Disallow: /*/revisions
|
1520
|
+
Disallow: /*/*/issues/new
|
1521
|
+
Disallow: /*/*/issues/search
|
1522
|
+
Disallow: /*/*/commits/*/*
|
1523
|
+
Disallow: /*/*/commits/*?author
|
1524
|
+
Disallow: /*/*/commits/*?path
|
1525
|
+
Disallow: /*/*/branches
|
1526
|
+
Disallow: /*/*/tags
|
1527
|
+
Disallow: /*/*/contributors
|
1528
|
+
Disallow: /*/*/comments
|
1529
|
+
Disallow: /*/*/stargazers
|
1530
|
+
Disallow: /*/*/search
|
1531
|
+
Disallow: /*/tarball/
|
1532
|
+
Disallow: /*/zipball/
|
1533
|
+
Disallow: /*/*/archive/
|
1534
|
+
Disallow: /raw/*
|
1535
|
+
Disallow: /*/followers
|
1536
|
+
Disallow: /*/following
|
1537
|
+
Disallow: /stars/*
|
1538
|
+
Disallow: /*/blame/
|
1539
|
+
Disallow: /*/watchers
|
1540
|
+
Disallow: /*/network
|
1541
|
+
Disallow: /*/graphs
|
1542
|
+
Disallow: /*/raw/
|
1543
|
+
Disallow: /*/compare/
|
1544
|
+
Disallow: /*/cache/
|
1545
|
+
Disallow: /*/*/blame/
|
1546
|
+
Disallow: /*/*/watchers
|
1547
|
+
Disallow: /*/*/network
|
1548
|
+
Disallow: /*/*/graphs
|
1549
|
+
Disallow: /*/*/raw/
|
1550
|
+
Disallow: /*/*/compare/
|
1551
|
+
Disallow: /*/*/cache/
|
1552
|
+
Disallow: /*.git
|
1553
|
+
Disallow: /*.git/
|
1554
|
+
Disallow: /search/advanced
|
1555
|
+
Disallow: /search
|
1556
|
+
Disallow: /*q=
|
1557
|
+
Disallow: /*.atom
|
1558
|
+
Disallow: /login
|
1559
|
+
|
1560
|
+
User-agent: SandDollar
|
1561
|
+
Allow: /*/*/tree/master
|
1562
|
+
Allow: /*/*/blob/master
|
1563
|
+
Disallow: /ekansa/Open-Context-Data
|
1564
|
+
Disallow: /ekansa/opencontext-*
|
1565
|
+
Disallow: /*/*/pulse
|
1566
|
+
Disallow: /*/*/tree/*
|
1567
|
+
Disallow: /*/*/blob/*
|
1568
|
+
Disallow: /*/*/wiki/*/*
|
1569
|
+
Disallow: /gist/*/*/*
|
1570
|
+
Disallow: /oembed
|
1571
|
+
Disallow: /*/forks
|
1572
|
+
Disallow: /*/stars
|
1573
|
+
Disallow: /*/download
|
1574
|
+
Disallow: /*/revisions
|
1575
|
+
Disallow: /*/*/issues/new
|
1576
|
+
Disallow: /*/*/issues/search
|
1577
|
+
Disallow: /*/*/commits/*/*
|
1578
|
+
Disallow: /*/*/commits/*?author
|
1579
|
+
Disallow: /*/*/commits/*?path
|
1580
|
+
Disallow: /*/*/branches
|
1581
|
+
Disallow: /*/*/tags
|
1582
|
+
Disallow: /*/*/contributors
|
1583
|
+
Disallow: /*/*/comments
|
1584
|
+
Disallow: /*/*/stargazers
|
1585
|
+
Disallow: /*/*/search
|
1586
|
+
Disallow: /*/tarball/
|
1587
|
+
Disallow: /*/zipball/
|
1588
|
+
Disallow: /*/*/archive/
|
1589
|
+
Disallow: /raw/*
|
1590
|
+
Disallow: /*/followers
|
1591
|
+
Disallow: /*/following
|
1592
|
+
Disallow: /stars/*
|
1593
|
+
Disallow: /*/blame/
|
1594
|
+
Disallow: /*/watchers
|
1595
|
+
Disallow: /*/network
|
1596
|
+
Disallow: /*/graphs
|
1597
|
+
Disallow: /*/raw/
|
1598
|
+
Disallow: /*/compare/
|
1599
|
+
Disallow: /*/cache/
|
1600
|
+
Disallow: /*/*/blame/
|
1601
|
+
Disallow: /*/*/watchers
|
1602
|
+
Disallow: /*/*/network
|
1603
|
+
Disallow: /*/*/graphs
|
1604
|
+
Disallow: /*/*/raw/
|
1605
|
+
Disallow: /*/*/compare/
|
1606
|
+
Disallow: /*/*/cache/
|
1607
|
+
Disallow: /*.git
|
1608
|
+
Disallow: /*.git/
|
1609
|
+
Disallow: /search/advanced
|
1610
|
+
Disallow: /search
|
1611
|
+
Disallow: /*q=
|
1612
|
+
Disallow: /*.atom
|
1613
|
+
Disallow: /login
|
1614
|
+
|
1615
|
+
User-agent: seznambot
|
1616
|
+
Allow: /*/*/tree/master
|
1617
|
+
Allow: /*/*/blob/master
|
1618
|
+
Disallow: /ekansa/Open-Context-Data
|
1619
|
+
Disallow: /ekansa/opencontext-*
|
1620
|
+
Disallow: /*/*/pulse
|
1621
|
+
Disallow: /*/*/tree/*
|
1622
|
+
Disallow: /*/*/blob/*
|
1623
|
+
Disallow: /*/*/wiki/*/*
|
1624
|
+
Disallow: /gist/*/*/*
|
1625
|
+
Disallow: /oembed
|
1626
|
+
Disallow: /*/forks
|
1627
|
+
Disallow: /*/stars
|
1628
|
+
Disallow: /*/download
|
1629
|
+
Disallow: /*/revisions
|
1630
|
+
Disallow: /*/*/issues/new
|
1631
|
+
Disallow: /*/*/issues/search
|
1632
|
+
Disallow: /*/*/commits/*/*
|
1633
|
+
Disallow: /*/*/commits/*?author
|
1634
|
+
Disallow: /*/*/commits/*?path
|
1635
|
+
Disallow: /*/*/branches
|
1636
|
+
Disallow: /*/*/tags
|
1637
|
+
Disallow: /*/*/contributors
|
1638
|
+
Disallow: /*/*/comments
|
1639
|
+
Disallow: /*/*/stargazers
|
1640
|
+
Disallow: /*/*/search
|
1641
|
+
Disallow: /*/tarball/
|
1642
|
+
Disallow: /*/zipball/
|
1643
|
+
Disallow: /*/*/archive/
|
1644
|
+
Disallow: /raw/*
|
1645
|
+
Disallow: /*/followers
|
1646
|
+
Disallow: /*/following
|
1647
|
+
Disallow: /stars/*
|
1648
|
+
Disallow: /*/blame/
|
1649
|
+
Disallow: /*/watchers
|
1650
|
+
Disallow: /*/network
|
1651
|
+
Disallow: /*/graphs
|
1652
|
+
Disallow: /*/raw/
|
1653
|
+
Disallow: /*/compare/
|
1654
|
+
Disallow: /*/cache/
|
1655
|
+
Disallow: /*/*/blame/
|
1656
|
+
Disallow: /*/*/watchers
|
1657
|
+
Disallow: /*/*/network
|
1658
|
+
Disallow: /*/*/graphs
|
1659
|
+
Disallow: /*/*/raw/
|
1660
|
+
Disallow: /*/*/compare/
|
1661
|
+
Disallow: /*/*/cache/
|
1662
|
+
Disallow: /*.git
|
1663
|
+
Disallow: /*.git/
|
1664
|
+
Disallow: /search/advanced
|
1665
|
+
Disallow: /search
|
1666
|
+
Disallow: /*q=
|
1667
|
+
Disallow: /*.atom
|
1668
|
+
Disallow: /login
|
1669
|
+
|
1670
|
+
User-agent: Slurp
|
1671
|
+
Allow: /*/*/tree/master
|
1672
|
+
Allow: /*/*/blob/master
|
1673
|
+
Disallow: /ekansa/Open-Context-Data
|
1674
|
+
Disallow: /ekansa/opencontext-*
|
1675
|
+
Disallow: /*/*/pulse
|
1676
|
+
Disallow: /*/*/tree/*
|
1677
|
+
Disallow: /*/*/blob/*
|
1678
|
+
Disallow: /*/*/wiki/*/*
|
1679
|
+
Disallow: /gist/*/*/*
|
1680
|
+
Disallow: /oembed
|
1681
|
+
Disallow: /*/forks
|
1682
|
+
Disallow: /*/stars
|
1683
|
+
Disallow: /*/download
|
1684
|
+
Disallow: /*/revisions
|
1685
|
+
Disallow: /*/*/issues/new
|
1686
|
+
Disallow: /*/*/issues/search
|
1687
|
+
Disallow: /*/*/commits/*/*
|
1688
|
+
Disallow: /*/*/commits/*?author
|
1689
|
+
Disallow: /*/*/commits/*?path
|
1690
|
+
Disallow: /*/*/branches
|
1691
|
+
Disallow: /*/*/tags
|
1692
|
+
Disallow: /*/*/contributors
|
1693
|
+
Disallow: /*/*/comments
|
1694
|
+
Disallow: /*/*/stargazers
|
1695
|
+
Disallow: /*/*/search
|
1696
|
+
Disallow: /*/tarball/
|
1697
|
+
Disallow: /*/zipball/
|
1698
|
+
Disallow: /*/*/archive/
|
1699
|
+
Disallow: /raw/*
|
1700
|
+
Disallow: /*/followers
|
1701
|
+
Disallow: /*/following
|
1702
|
+
Disallow: /stars/*
|
1703
|
+
Disallow: /*/blame/
|
1704
|
+
Disallow: /*/watchers
|
1705
|
+
Disallow: /*/network
|
1706
|
+
Disallow: /*/graphs
|
1707
|
+
Disallow: /*/raw/
|
1708
|
+
Disallow: /*/compare/
|
1709
|
+
Disallow: /*/cache/
|
1710
|
+
Disallow: /*/*/blame/
|
1711
|
+
Disallow: /*/*/watchers
|
1712
|
+
Disallow: /*/*/network
|
1713
|
+
Disallow: /*/*/graphs
|
1714
|
+
Disallow: /*/*/raw/
|
1715
|
+
Disallow: /*/*/compare/
|
1716
|
+
Disallow: /*/*/cache/
|
1717
|
+
Disallow: /*.git
|
1718
|
+
Disallow: /*.git/
|
1719
|
+
Disallow: /search/advanced
|
1720
|
+
Disallow: /search
|
1721
|
+
Disallow: /*q=
|
1722
|
+
Disallow: /*.atom
|
1723
|
+
Disallow: /login
|
1724
|
+
|
1725
|
+
User-agent: Swiftbot
|
1726
|
+
Allow: /*/*/tree/master
|
1727
|
+
Allow: /*/*/blob/master
|
1728
|
+
Disallow: /ekansa/Open-Context-Data
|
1729
|
+
Disallow: /ekansa/opencontext-*
|
1730
|
+
Disallow: /*/*/pulse
|
1731
|
+
Disallow: /*/*/tree/*
|
1732
|
+
Disallow: /*/*/blob/*
|
1733
|
+
Disallow: /*/*/wiki/*/*
|
1734
|
+
Disallow: /gist/*/*/*
|
1735
|
+
Disallow: /oembed
|
1736
|
+
Disallow: /*/forks
|
1737
|
+
Disallow: /*/stars
|
1738
|
+
Disallow: /*/download
|
1739
|
+
Disallow: /*/revisions
|
1740
|
+
Disallow: /*/*/issues/new
|
1741
|
+
Disallow: /*/*/issues/search
|
1742
|
+
Disallow: /*/*/commits/*/*
|
1743
|
+
Disallow: /*/*/commits/*?author
|
1744
|
+
Disallow: /*/*/commits/*?path
|
1745
|
+
Disallow: /*/*/branches
|
1746
|
+
Disallow: /*/*/tags
|
1747
|
+
Disallow: /*/*/contributors
|
1748
|
+
Disallow: /*/*/comments
|
1749
|
+
Disallow: /*/*/stargazers
|
1750
|
+
Disallow: /*/*/search
|
1751
|
+
Disallow: /*/tarball/
|
1752
|
+
Disallow: /*/zipball/
|
1753
|
+
Disallow: /*/*/archive/
|
1754
|
+
Disallow: /raw/*
|
1755
|
+
Disallow: /*/followers
|
1756
|
+
Disallow: /*/following
|
1757
|
+
Disallow: /stars/*
|
1758
|
+
Disallow: /*/blame/
|
1759
|
+
Disallow: /*/watchers
|
1760
|
+
Disallow: /*/network
|
1761
|
+
Disallow: /*/graphs
|
1762
|
+
Disallow: /*/raw/
|
1763
|
+
Disallow: /*/compare/
|
1764
|
+
Disallow: /*/cache/
|
1765
|
+
Disallow: /*/*/blame/
|
1766
|
+
Disallow: /*/*/watchers
|
1767
|
+
Disallow: /*/*/network
|
1768
|
+
Disallow: /*/*/graphs
|
1769
|
+
Disallow: /*/*/raw/
|
1770
|
+
Disallow: /*/*/compare/
|
1771
|
+
Disallow: /*/*/cache/
|
1772
|
+
Disallow: /*.git
|
1773
|
+
Disallow: /*.git/
|
1774
|
+
Disallow: /search/advanced
|
1775
|
+
Disallow: /search
|
1776
|
+
Disallow: /*q=
|
1777
|
+
Disallow: /*.atom
|
1778
|
+
Disallow: /login
|
1779
|
+
|
1780
|
+
User-agent: Telefonica
|
1781
|
+
Allow: /*/*/tree/master
|
1782
|
+
Allow: /*/*/blob/master
|
1783
|
+
Disallow: /ekansa/Open-Context-Data
|
1784
|
+
Disallow: /ekansa/opencontext-*
|
1785
|
+
Disallow: /*/*/pulse
|
1786
|
+
Disallow: /*/*/tree/*
|
1787
|
+
Disallow: /*/*/blob/*
|
1788
|
+
Disallow: /*/*/wiki/*/*
|
1789
|
+
Disallow: /gist/*/*/*
|
1790
|
+
Disallow: /oembed
|
1791
|
+
Disallow: /*/forks
|
1792
|
+
Disallow: /*/stars
|
1793
|
+
Disallow: /*/download
|
1794
|
+
Disallow: /*/revisions
|
1795
|
+
Disallow: /*/*/issues/new
|
1796
|
+
Disallow: /*/*/issues/search
|
1797
|
+
Disallow: /*/*/commits/*/*
|
1798
|
+
Disallow: /*/*/commits/*?author
|
1799
|
+
Disallow: /*/*/commits/*?path
|
1800
|
+
Disallow: /*/*/branches
|
1801
|
+
Disallow: /*/*/tags
|
1802
|
+
Disallow: /*/*/contributors
|
1803
|
+
Disallow: /*/*/comments
|
1804
|
+
Disallow: /*/*/stargazers
|
1805
|
+
Disallow: /*/*/search
|
1806
|
+
Disallow: /*/tarball/
|
1807
|
+
Disallow: /*/zipball/
|
1808
|
+
Disallow: /*/*/archive/
|
1809
|
+
Disallow: /raw/*
|
1810
|
+
Disallow: /*/followers
|
1811
|
+
Disallow: /*/following
|
1812
|
+
Disallow: /stars/*
|
1813
|
+
Disallow: /*/blame/
|
1814
|
+
Disallow: /*/watchers
|
1815
|
+
Disallow: /*/network
|
1816
|
+
Disallow: /*/graphs
|
1817
|
+
Disallow: /*/raw/
|
1818
|
+
Disallow: /*/compare/
|
1819
|
+
Disallow: /*/cache/
|
1820
|
+
Disallow: /*/*/blame/
|
1821
|
+
Disallow: /*/*/watchers
|
1822
|
+
Disallow: /*/*/network
|
1823
|
+
Disallow: /*/*/graphs
|
1824
|
+
Disallow: /*/*/raw/
|
1825
|
+
Disallow: /*/*/compare/
|
1826
|
+
Disallow: /*/*/cache/
|
1827
|
+
Disallow: /*.git
|
1828
|
+
Disallow: /*.git/
|
1829
|
+
Disallow: /search/advanced
|
1830
|
+
Disallow: /search
|
1831
|
+
Disallow: /*q=
|
1832
|
+
Disallow: /*.atom
|
1833
|
+
Disallow: /login
|
1834
|
+
|
1835
|
+
User-agent: teoma
|
1836
|
+
Allow: /*/*/tree/master
|
1837
|
+
Allow: /*/*/blob/master
|
1838
|
+
Disallow: /ekansa/Open-Context-Data
|
1839
|
+
Disallow: /ekansa/opencontext-*
|
1840
|
+
Disallow: /*/*/pulse
|
1841
|
+
Disallow: /*/*/tree/*
|
1842
|
+
Disallow: /*/*/blob/*
|
1843
|
+
Disallow: /*/*/wiki/*/*
|
1844
|
+
Disallow: /gist/*/*/*
|
1845
|
+
Disallow: /oembed
|
1846
|
+
Disallow: /*/forks
|
1847
|
+
Disallow: /*/stars
|
1848
|
+
Disallow: /*/download
|
1849
|
+
Disallow: /*/revisions
|
1850
|
+
Disallow: /*/*/issues/new
|
1851
|
+
Disallow: /*/*/issues/search
|
1852
|
+
Disallow: /*/*/commits/*/*
|
1853
|
+
Disallow: /*/*/commits/*?author
|
1854
|
+
Disallow: /*/*/commits/*?path
|
1855
|
+
Disallow: /*/*/branches
|
1856
|
+
Disallow: /*/*/tags
|
1857
|
+
Disallow: /*/*/contributors
|
1858
|
+
Disallow: /*/*/comments
|
1859
|
+
Disallow: /*/*/stargazers
|
1860
|
+
Disallow: /*/*/search
|
1861
|
+
Disallow: /*/tarball/
|
1862
|
+
Disallow: /*/zipball/
|
1863
|
+
Disallow: /*/*/archive/
|
1864
|
+
Disallow: /raw/*
|
1865
|
+
Disallow: /*/followers
|
1866
|
+
Disallow: /*/following
|
1867
|
+
Disallow: /stars/*
|
1868
|
+
Disallow: /*/blame/
|
1869
|
+
Disallow: /*/watchers
|
1870
|
+
Disallow: /*/network
|
1871
|
+
Disallow: /*/graphs
|
1872
|
+
Disallow: /*/raw/
|
1873
|
+
Disallow: /*/compare/
|
1874
|
+
Disallow: /*/cache/
|
1875
|
+
Disallow: /*/*/blame/
|
1876
|
+
Disallow: /*/*/watchers
|
1877
|
+
Disallow: /*/*/network
|
1878
|
+
Disallow: /*/*/graphs
|
1879
|
+
Disallow: /*/*/raw/
|
1880
|
+
Disallow: /*/*/compare/
|
1881
|
+
Disallow: /*/*/cache/
|
1882
|
+
Disallow: /*.git
|
1883
|
+
Disallow: /*.git/
|
1884
|
+
Disallow: /search/advanced
|
1885
|
+
Disallow: /search
|
1886
|
+
Disallow: /*q=
|
1887
|
+
Disallow: /*.atom
|
1888
|
+
Disallow: /login
|
1889
|
+
|
1890
|
+
User-agent: Twitterbot
|
1891
|
+
Allow: /*/*/tree/master
|
1892
|
+
Allow: /*/*/blob/master
|
1893
|
+
Disallow: /ekansa/Open-Context-Data
|
1894
|
+
Disallow: /ekansa/opencontext-*
|
1895
|
+
Disallow: /*/*/pulse
|
1896
|
+
Disallow: /*/*/tree/*
|
1897
|
+
Disallow: /*/*/blob/*
|
1898
|
+
Disallow: /*/*/wiki/*/*
|
1899
|
+
Disallow: /gist/*/*/*
|
1900
|
+
Disallow: /oembed
|
1901
|
+
Disallow: /*/forks
|
1902
|
+
Disallow: /*/stars
|
1903
|
+
Disallow: /*/download
|
1904
|
+
Disallow: /*/revisions
|
1905
|
+
Disallow: /*/*/issues/new
|
1906
|
+
Disallow: /*/*/issues/search
|
1907
|
+
Disallow: /*/*/commits/*/*
|
1908
|
+
Disallow: /*/*/commits/*?author
|
1909
|
+
Disallow: /*/*/commits/*?path
|
1910
|
+
Disallow: /*/*/branches
|
1911
|
+
Disallow: /*/*/tags
|
1912
|
+
Disallow: /*/*/contributors
|
1913
|
+
Disallow: /*/*/comments
|
1914
|
+
Disallow: /*/*/stargazers
|
1915
|
+
Disallow: /*/*/search
|
1916
|
+
Disallow: /*/tarball/
|
1917
|
+
Disallow: /*/zipball/
|
1918
|
+
Disallow: /*/*/archive/
|
1919
|
+
Disallow: /raw/*
|
1920
|
+
Disallow: /*/followers
|
1921
|
+
Disallow: /*/following
|
1922
|
+
Disallow: /stars/*
|
1923
|
+
Disallow: /*/blame/
|
1924
|
+
Disallow: /*/watchers
|
1925
|
+
Disallow: /*/network
|
1926
|
+
Disallow: /*/graphs
|
1927
|
+
Disallow: /*/raw/
|
1928
|
+
Disallow: /*/compare/
|
1929
|
+
Disallow: /*/cache/
|
1930
|
+
Disallow: /*/*/blame/
|
1931
|
+
Disallow: /*/*/watchers
|
1932
|
+
Disallow: /*/*/network
|
1933
|
+
Disallow: /*/*/graphs
|
1934
|
+
Disallow: /*/*/raw/
|
1935
|
+
Disallow: /*/*/compare/
|
1936
|
+
Disallow: /*/*/cache/
|
1937
|
+
Disallow: /*.git
|
1938
|
+
Disallow: /*.git/
|
1939
|
+
Disallow: /search/advanced
|
1940
|
+
Disallow: /search
|
1941
|
+
Disallow: /*q=
|
1942
|
+
Disallow: /*.atom
|
1943
|
+
Disallow: /login
|
1944
|
+
|
1945
|
+
User-agent: Yandex
|
1946
|
+
Allow: /*/*/tree/master
|
1947
|
+
Allow: /*/*/blob/master
|
1948
|
+
Disallow: /ekansa/Open-Context-Data
|
1949
|
+
Disallow: /ekansa/opencontext-*
|
1950
|
+
Disallow: /*/*/pulse
|
1951
|
+
Disallow: /*/*/tree/*
|
1952
|
+
Disallow: /*/*/blob/*
|
1953
|
+
Disallow: /*/*/wiki/*/*
|
1954
|
+
Disallow: /gist/*/*/*
|
1955
|
+
Disallow: /oembed
|
1956
|
+
Disallow: /*/forks
|
1957
|
+
Disallow: /*/stars
|
1958
|
+
Disallow: /*/download
|
1959
|
+
Disallow: /*/revisions
|
1960
|
+
Disallow: /*/*/issues/new
|
1961
|
+
Disallow: /*/*/issues/search
|
1962
|
+
Disallow: /*/*/commits/*/*
|
1963
|
+
Disallow: /*/*/commits/*?author
|
1964
|
+
Disallow: /*/*/commits/*?path
|
1965
|
+
Disallow: /*/*/branches
|
1966
|
+
Disallow: /*/*/tags
|
1967
|
+
Disallow: /*/*/contributors
|
1968
|
+
Disallow: /*/*/comments
|
1969
|
+
Disallow: /*/*/stargazers
|
1970
|
+
Disallow: /*/*/search
|
1971
|
+
Disallow: /*/tarball/
|
1972
|
+
Disallow: /*/zipball/
|
1973
|
+
Disallow: /*/*/archive/
|
1974
|
+
Disallow: /raw/*
|
1975
|
+
Disallow: /*/followers
|
1976
|
+
Disallow: /*/following
|
1977
|
+
Disallow: /stars/*
|
1978
|
+
Disallow: /*/blame/
|
1979
|
+
Disallow: /*/watchers
|
1980
|
+
Disallow: /*/network
|
1981
|
+
Disallow: /*/graphs
|
1982
|
+
Disallow: /*/raw/
|
1983
|
+
Disallow: /*/compare/
|
1984
|
+
Disallow: /*/cache/
|
1985
|
+
Disallow: /*/*/blame/
|
1986
|
+
Disallow: /*/*/watchers
|
1987
|
+
Disallow: /*/*/network
|
1988
|
+
Disallow: /*/*/graphs
|
1989
|
+
Disallow: /*/*/raw/
|
1990
|
+
Disallow: /*/*/compare/
|
1991
|
+
Disallow: /*/*/cache/
|
1992
|
+
Disallow: /*.git
|
1993
|
+
Disallow: /*.git/
|
1994
|
+
Disallow: /search/advanced
|
1995
|
+
Disallow: /search
|
1996
|
+
Disallow: /*q=
|
1997
|
+
Disallow: /*.atom
|
1998
|
+
Disallow: /login
|
1999
|
+
|
2000
|
+
|
2001
|
+
User-agent: *
|
2002
|
+
Allow: /humans.txt
|
2003
|
+
Disallow: /
|
2004
|
+
http_version:
|
2005
|
+
recorded_at: Mon, 04 Jan 2016 13:39:18 GMT
|
2006
|
+
recorded_with: VCR 3.0.0
|