PageRankr 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -1
- data/PageRankr.gemspec +3 -1
- data/README.md +25 -1
- data/Rakefile +3 -1
- data/lib/page_rankr/backlinks/yahoo.rb +1 -1
- data/lib/page_rankr/version.rb +1 -1
- data/spec/edge_cases_spec.rb +5 -1
- data/spec/fixtures/vcr_cassettes/alexa_ranks_edge_case_1.yml +47 -0
- data/spec/fixtures/vcr_cassettes/failure_backlinks.yml +407 -0
- data/spec/fixtures/vcr_cassettes/failure_indexes.yml +312 -0
- data/spec/fixtures/vcr_cassettes/failure_ranks.yml +77 -0
- data/spec/fixtures/vcr_cassettes/success_backlinks.yml +1259 -0
- data/spec/fixtures/vcr_cassettes/success_indexes.yml +380 -0
- data/spec/fixtures/vcr_cassettes/success_ranks.yml +589 -0
- data/spec/page_rankr_spec.rb +30 -6
- data/spec/spec_helper.rb +6 -0
- metadata +107 -79
- data/Gemfile.lock +0 -42
data/.gitignore
CHANGED
data/PageRankr.gemspec
CHANGED
@@ -11,13 +11,15 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.description = "Easy way to retrieve Google Page Rank, Alexa Rank, backlink counts, and index counts."
|
12
12
|
|
13
13
|
s.required_rubygems_version = ">= 1.3.6"
|
14
|
+
s.add_development_dependency "rake"
|
14
15
|
s.add_development_dependency "rspec", "~> 2.1.0"
|
15
16
|
s.add_development_dependency "bundler", ">= 1.0.0"
|
16
17
|
s.add_development_dependency "fuubar", ">= 0.0.1"
|
18
|
+
s.add_development_dependency "vcr"
|
17
19
|
|
18
20
|
s.add_runtime_dependency "nokogiri", ">= 1.4.1"
|
19
21
|
s.add_runtime_dependency "json", ">= 1.4.6"
|
20
|
-
s.add_runtime_dependency "public_suffix_service", "~> 0.
|
22
|
+
s.add_runtime_dependency "public_suffix_service", "~> 0.9.0"
|
21
23
|
s.add_runtime_dependency "typhoeus", "~> 0.2.1"
|
22
24
|
|
23
25
|
s.files = `git ls-files`.split("\n")
|
data/README.md
CHANGED
@@ -19,11 +19,14 @@ Check out a little [web app][1] I wrote up that uses it or look at the [source][
|
|
19
19
|
|
20
20
|
Backlinks are the result of doing a search with a query like "link:www.google.com". The number of returned results indicates how many sites point to that url. If a site is not tracked then `nil` is returned.
|
21
21
|
|
22
|
+
``` ruby
|
22
23
|
PageRankr.backlinks('www.google.com', :google, :bing) #=> {:google=>161000, :bing=>208000000}
|
23
24
|
PageRankr.backlinks('www.google.com', :yahoo) #=> {:yahoo=>256300062}
|
25
|
+
```
|
24
26
|
|
25
27
|
If you don't specify a search engine, then all of them are used.
|
26
28
|
|
29
|
+
``` ruby
|
27
30
|
# this
|
28
31
|
PageRankr.backlinks('www.google.com')
|
29
32
|
#=> {:google=>23000, :bing=>215000000, :yahoo=>250522337, :alexa=>727036}
|
@@ -31,22 +34,28 @@ If you don't specify a search engine, then all of them are used.
|
|
31
34
|
# is equivalent to
|
32
35
|
PageRankr.backlinks('www.google.com', :google, :bing, :yahoo, :alexa)
|
33
36
|
#=> {:google=>23000, :bing=>215000000, :yahoo=>250522337, :alexa=>727036}
|
37
|
+
```
|
34
38
|
|
35
39
|
You can also use the alias `backlink` instead of `backlinks`.
|
36
40
|
|
37
41
|
Valid search engines are: `:google, :bing, :yahoo, :alexa` (altavista and alltheweb now redirect to yahoo). To get this list you can do:
|
38
42
|
|
43
|
+
``` ruby
|
39
44
|
PageRankr.backlink_trackers #=> [:alexa, :bing, :google, :yahoo]
|
45
|
+
```
|
40
46
|
|
41
47
|
### Indexes
|
42
48
|
|
43
49
|
Indexes are the result of doing a search with a query like "site:www.google.com". The number of returned results indicates how many pages of a domain are indexed by a particular search engine. If the site is not indexed `nil` is returned.
|
44
50
|
|
51
|
+
``` ruby
|
45
52
|
PageRankr.indexes('www.google.com', :google) #=> {:google=>4860000}
|
46
53
|
PageRankr.indexes('www.google.com', :bing) #=> {:bing=>2120000}
|
54
|
+
```
|
47
55
|
|
48
56
|
If you don't specify a search engine, then all of them are used.
|
49
57
|
|
58
|
+
``` ruby
|
50
59
|
# this
|
51
60
|
PageRankr.indexes('www.google.com')
|
52
61
|
#=> {:bing=>2120000, :google=>4860000}
|
@@ -54,33 +63,42 @@ If you don't specify a search engine, then all of them are used.
|
|
54
63
|
# is equivalent to
|
55
64
|
PageRankr.indexes('www.google.com', :google, :bing)
|
56
65
|
#=> {:bing=>2120000, :google=>4860000}
|
66
|
+
```
|
57
67
|
|
58
68
|
You can also use the alias `index` instead of `indexes`.
|
59
69
|
|
60
70
|
Valid search engines are: `:google, :bing`. To get this list you can do:
|
61
71
|
|
72
|
+
``` ruby
|
62
73
|
PageRankr.index_trackers #=> [:bing, :google]
|
74
|
+
```
|
63
75
|
|
64
76
|
### Ranks
|
65
77
|
|
66
78
|
Ranks are ratings assigned to specify how popular a site is. The most famous example of this is the google page rank.
|
67
79
|
|
80
|
+
``` ruby
|
68
81
|
PageRankr.ranks('www.google.com', :google) #=> {:google=>10}
|
82
|
+
```
|
69
83
|
|
70
84
|
If you don't specify a rank provider, then all of them are used.
|
71
85
|
|
86
|
+
``` ruby
|
72
87
|
PageRankr.ranks('www.google.com', :alexa_us, :alexa_global, :compete, :google)
|
73
88
|
#=> {:alexa_us=>1, :alexa_global=>1, :google=>10, :compete=>1}
|
74
89
|
|
75
90
|
# this also gives the same result
|
76
91
|
PageRankr.ranks('www.google.com')
|
77
92
|
#=> {:alexa_us=>1, :alexa_global=>1, :google=>10, :compete=>1}
|
93
|
+
```
|
78
94
|
|
79
95
|
You can also use the alias `rank` instead of `ranks`.
|
80
96
|
|
81
97
|
Valid rank trackers are: `:alexa_us, :alexa_global, :compete, :google`. To get this you can do:
|
82
98
|
|
99
|
+
``` ruby
|
83
100
|
PageRankr.rank_trackers #=> [:alexa_global, :alexa_us, :compete, :google]
|
101
|
+
```
|
84
102
|
|
85
103
|
Alexa and Compete ranks are descending where 1 is the most popular. Google page ranks are in the range 0-10 where 10 is the most popular. If a site is unindexed then the rank will be nil.
|
86
104
|
|
@@ -88,6 +106,7 @@ Alexa and Compete ranks are descending where 1 is the most popular. Google page
|
|
88
106
|
|
89
107
|
If you ever find something is broken it should now be much easier to fix it with version >= 1.3.0. For example, if the xpath used to lookup a backlink is broken, just override the method for that class to provide the correct xpath.
|
90
108
|
|
109
|
+
``` ruby
|
91
110
|
module PageRankr
|
92
111
|
class Backlinks
|
93
112
|
class Bing
|
@@ -97,11 +116,13 @@ If you ever find something is broken it should now be much easier to fix it with
|
|
97
116
|
end
|
98
117
|
end
|
99
118
|
end
|
119
|
+
```
|
100
120
|
|
101
121
|
## Extend it!
|
102
122
|
|
103
123
|
If you ever come across a site that provides a rank or backlinks you can hook that class up to automatically be use with PageRankr. PageRankr does this by looking up all the classes namespaced under Backlinks, Indexes, and Ranks.
|
104
124
|
|
125
|
+
``` ruby
|
105
126
|
module PageRankr
|
106
127
|
class Backlinks
|
107
128
|
class Foo
|
@@ -123,6 +144,7 @@ If you ever come across a site that provides a rank or backlinks you can hook th
|
|
123
144
|
end
|
124
145
|
end
|
125
146
|
end
|
147
|
+
```
|
126
148
|
|
127
149
|
Then, just make sure you require the class and PageRankr and whenever you call PageRankr.backlinks it'll be able to use your class.
|
128
150
|
|
@@ -142,17 +164,19 @@ Then, just make sure you require the class and PageRankr and whenever you call P
|
|
142
164
|
* Optionally use API keys
|
143
165
|
* Maybe allow API key cycling to get around query limits
|
144
166
|
* Google search API is deprecated
|
167
|
+
* New Compete API
|
145
168
|
* Some search engines throttle the amount of queries. It would be nice to know when this happens. Probably throw an exception.
|
146
169
|
|
147
170
|
## Contributors
|
148
171
|
* [Dru Ibarra](https://github.com/Druwerd) - Use Google Search API instead of scraping.
|
149
172
|
* [Iteration Labs, LLC](https://github.com/iterationlabs) - Compete rank tracker and domain indexes.
|
150
|
-
* [
|
173
|
+
* [Marc Seeger](http://www.marc-seeger.de) ([Acquia](http://www.acquia.com)) - Ignore invalid ranks that Alexa returns for incorrect sites.
|
151
174
|
|
152
175
|
## Shout Out
|
153
176
|
Gotta give credit where credits due!
|
154
177
|
|
155
178
|
Original inspiration from:
|
179
|
+
|
156
180
|
* [PageRankSharp](https://github.com/alexmipego/PageRankSharp)
|
157
181
|
* [Google Page Range Lookup/](http://snipplr.com/view/18329/google-page-range-lookup/)
|
158
182
|
* [AJAX PR Checker](http://www.sitetoolcenter.com/free-website-scripts/ajax-pr-checker.php)
|
data/Rakefile
CHANGED
data/lib/page_rankr/version.rb
CHANGED
data/spec/edge_cases_spec.rb
CHANGED
@@ -9,7 +9,11 @@ describe PageRankr do
|
|
9
9
|
# to slocourts.net. Clearly something is wrong with how Alexa handles this case and so in the event this
|
10
10
|
# happens we treat the results as if there were no results.
|
11
11
|
describe "when Alexa returns results for the incorrect site" do
|
12
|
-
subject
|
12
|
+
subject do
|
13
|
+
VCR.use_cassette(:alexa_ranks_edge_case_1) do
|
14
|
+
PageRankr.ranks("slocourts.net", :alexa_us, :alexa_global)
|
15
|
+
end
|
16
|
+
end
|
13
17
|
|
14
18
|
it{ should have_key(:alexa_us) }
|
15
19
|
it{ should have_key(:alexa_global) }
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://data.alexa.com:80/data?cli=10&dat=snbamz&url=slocourts.net
|
6
|
+
body: !!null
|
7
|
+
headers: !!null
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-length:
|
14
|
+
- '2474'
|
15
|
+
content-type:
|
16
|
+
- text/xml
|
17
|
+
body: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n\r\n<ALEXA VER=\"0.9\"
|
18
|
+
URL=\"slocourts.ca.gov/\" HOME=\"0\" AID=\"=\">\r\n<RLS PREFIX=\"http://\" more=\"23\">\n<RL
|
19
|
+
HREF=\"courts.countyofventura.org/\" TITLE=\"Superior Court, Ventura\"/>\n<RL
|
20
|
+
HREF=\"www.co.san-bernardino.ca.us/Courts\" TITLE=\"Superior Court, San Bernardino\"/>\n<RL
|
21
|
+
HREF=\"www.co.riverside.ca.us/depts/courts\" TITLE=\"Superior Court Of California
|
22
|
+
County Of Riverside\"/>\n<RL HREF=\"www.ci.sf.ca.us/courts\" TITLE=\"Superior
|
23
|
+
Court, San Francisco\"/>\n<RL HREF=\"www.sbcourts.org/\" TITLE=\"Superior Court,
|
24
|
+
Santa Barbara\"/>\n<RL HREF=\"www.stocktoncourt.org/courts\" TITLE=\"Superior
|
25
|
+
Court, San Joaquin County\"/>\n<RL HREF=\"www.sonomasuperiorcourt.com/\" TITLE=\"Superior
|
26
|
+
Court, Sonoma\"/>\n<RL HREF=\"www.solanocourts.com/\" TITLE=\"Superior Court,
|
27
|
+
Solano\"/>\n<RL HREF=\"www.sccsuperiorcourt.org/\" TITLE=\"Superior Court, Santa
|
28
|
+
Clara\"/>\n<RL HREF=\"www.sanmateocourt.org/\" TITLE=\"Superior Court, San Mateo\"/>\n<RL
|
29
|
+
HREF=\"www.buttonware.com/\" TITLE=\"www.buttonware.com/\"/>\n</RLS>\n<SD TITLE=\"A\"
|
30
|
+
FLAGS=\"DMOZ\" HOST=\"slocourts.ca.gov\">\n<TITLE TEXT=\"Superior Court, San
|
31
|
+
Luis Obispo\"/>\n<ADDR STREET=\"3101 Gold Camp Dr\" CITY=\"Rancho Cordova\"
|
32
|
+
STATE=\"CA\" ZIP=\"95670\" COUNTRY=\"US\" />\n<CREATED DATE=\"16-Jun-2000\"
|
33
|
+
DAY=\"16\" MONTH=\"06\" YEAR=\"2000\"/>\n<PHONE NUMBER=\"+1 916 464 4239\"/>\n<OWNER
|
34
|
+
NAME=\"State of California\"/>\n<EMAIL ADDR=\"lbatcheldor@co.slo.ca.us\"/>\n<LANG
|
35
|
+
LEX=\"en\" CODE=\"us-ascii\"/>\n<LINKSIN NUM=\"60\"/>\n<SPEED TEXT=\"738\" PCT=\"82\"/>\n<REVIEWS
|
36
|
+
AVG=\"5.0\" NUM=\"\"/>\n<CHILD SRATING=\"0\"/>\n</SD>\n\n<KEYWORDS>\n<KEYWORD
|
37
|
+
VAL=\"San Luis Obispo\"/>\n</KEYWORDS><DMOZ>\n<SITE BASE=\"slocourts.ca.gov/\"
|
38
|
+
TITLE=\"SLO County Superior Court\" DESC=\"Administrative site of the Superior
|
39
|
+
Court, with information, public notices, and bail and fee schedules.\">\n<CATS>\n<CAT
|
40
|
+
ID=\"Top/Regional/North_America/United_States/California/Government/Courts\"
|
41
|
+
TITLE=\"Government/Courts\" CID=\"620717\"/>\n<CAT ID=\"Top/Regional/North_America/United_States/California/Counties/San_Luis_Obispo/Government\"
|
42
|
+
TITLE=\"San Luis Obispo/Government\" CID=\"620510\"/>\n<CAT ID=\"Top/Regional/North_America/United_States/California\"
|
43
|
+
TITLE=\"United States/California\" CID=\"619087\"/>\n<CAT ID=\"Top/Regional/North_America/United_States/California/Government\"
|
44
|
+
TITLE=\"California/Government\" CID=\"620608\"/>\n<CAT ID=\"Top/World/Español/Regional/América/Estados_Unidos/Estados/California\"
|
45
|
+
TITLE=\"Estados/California\" CID=\"26249\"/>\n</CATS>\n</SITE>\n</DMOZ>\n<SD>\n<POPULARITY
|
46
|
+
URL=\"ca.gov/\" TEXT=\"773\"/>\n<REACH RANK=\"820\"/>\n<RANK DELTA=\"+49\"/>\n</SD>\n</ALEXA>"
|
47
|
+
http_version: '1.1'
|
@@ -0,0 +1,407 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://data.alexa.com:80/data?cli=10&dat=snbamz&url=please-dont-register-a-site-that-breaks-this-test.com
|
6
|
+
body: !!null
|
7
|
+
headers: !!null
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-length:
|
14
|
+
- '278'
|
15
|
+
content-type:
|
16
|
+
- text/xml
|
17
|
+
body: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n\r\n<ALEXA VER=\"0.9\"
|
18
|
+
URL=\"please-dont-register-a-site-that-breaks-this-test.com/\" HOME=\"0\" AID=\"=\">\r\n<RLS
|
19
|
+
PREFIX=\"http://\" more=\"0\">\n</RLS>\n<SD TITLE=\"A\" FLAGS=\"\" HOST=\"please-dont-register-a-site-that-breaks-this-test.com\">\n</SD>\n\n</ALEXA>"
|
20
|
+
http_version: '1.1'
|
21
|
+
- !ruby/struct:VCR::HTTPInteraction
|
22
|
+
request: !ruby/struct:VCR::Request
|
23
|
+
method: :get
|
24
|
+
uri: http://ajax.googleapis.com:80/ajax/services/search/web?q=link%3Aplease-dont-register-a-site-that-breaks-this-test.com&rsz=1&v=1.0
|
25
|
+
body: !!null
|
26
|
+
headers: !!null
|
27
|
+
response: !ruby/struct:VCR::Response
|
28
|
+
status: !ruby/struct:VCR::ResponseStatus
|
29
|
+
code: 200
|
30
|
+
message: OK
|
31
|
+
headers:
|
32
|
+
cache-control:
|
33
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
34
|
+
pragma:
|
35
|
+
- no-cache
|
36
|
+
expires:
|
37
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
38
|
+
date:
|
39
|
+
- Mon, 15 Aug 2011 10:07:57 GMT
|
40
|
+
content-type:
|
41
|
+
- text/javascript; charset=utf-8
|
42
|
+
x-embedded-status:
|
43
|
+
- '200'
|
44
|
+
x-content-type-options:
|
45
|
+
- nosniff
|
46
|
+
x-frame-options:
|
47
|
+
- SAMEORIGIN
|
48
|
+
x-xss-protection:
|
49
|
+
- 1; mode=block
|
50
|
+
server:
|
51
|
+
- GSE
|
52
|
+
transfer-encoding:
|
53
|
+
- chunked
|
54
|
+
body: ! '{"responseData": {"results":[],"cursor":{"moreResultsUrl":"http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dlink:please-dont-register-a-site-that-breaks-this-test.com"}},
|
55
|
+
"responseDetails": null, "responseStatus": 200}'
|
56
|
+
http_version: '1.1'
|
57
|
+
- !ruby/struct:VCR::HTTPInteraction
|
58
|
+
request: !ruby/struct:VCR::Request
|
59
|
+
method: :get
|
60
|
+
uri: http://siteexplorer.search.yahoo.com:80/search?p=please-dont-register-a-site-that-breaks-this-test.com
|
61
|
+
body: !!null
|
62
|
+
headers: !!null
|
63
|
+
response: !ruby/struct:VCR::Response
|
64
|
+
status: !ruby/struct:VCR::ResponseStatus
|
65
|
+
code: 200
|
66
|
+
message: OK
|
67
|
+
headers:
|
68
|
+
date:
|
69
|
+
- Mon, 15 Aug 2011 10:07:57 GMT
|
70
|
+
p3p:
|
71
|
+
- policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
|
72
|
+
TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
|
73
|
+
ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
|
74
|
+
cache-control:
|
75
|
+
- private
|
76
|
+
transfer-encoding:
|
77
|
+
- chunked
|
78
|
+
content-type:
|
79
|
+
- text/html; charset=UTF-8
|
80
|
+
content-encoding:
|
81
|
+
- gzip
|
82
|
+
body: ! '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
83
|
+
|
84
|
+
<html lang="en"><head><title>Site Explorer - Search Results</title><link rel="stylesheet"
|
85
|
+
type="text/css" href="http://a248.e.akamai.net/sec.yimg.com/lib/se4/ysch_se_201107042347.css"><style
|
86
|
+
type="text/css">#hd,input.ygbt,#ylogo,#main .hd,.postit,.postit ol,a.btn,span.btn,
|
87
|
+
input.btn,a.btn.sel,span.btn,.side-menu ol li a span,#main .hd h1 span,.tcap
|
88
|
+
.l,.tcap .c,.tcap .r,.bcap .l,.bcap .c,.bcap .r,ul#mysmsg li span,span.icon,#main
|
89
|
+
.bd table th,#abm span, #abf span,#sws span, #ssf span,.step1 div.icon, .step2
|
90
|
+
div.icon, .step3 div.icon,ol#feeds-submits{background-image: url(http://a248.e.akamai.net/sec.yimg.com/i/us/sch/se4/se_coresprt_20090903.png);}.side-menu,.side-menu
|
91
|
+
h2,.side-menu ol,.date-selectors .ico,.yui-calendar .calnavleft,.yui-calendar
|
92
|
+
.calnavright,.yui-calcontainer .calclose{background-image: url(http://a248.e.akamai.net/sec.yimg.com/i/us/sch/se4/se_navsprt_20101014.png);}</style><script
|
93
|
+
src="http://a248.e.akamai.net/sec.yimg.com/lib/se4/ysch_se_200912080933.js"></script></head><body
|
94
|
+
class=" UNKNOWN windows vUNKNOWN"><div id="doc"><div id="hd"><div id="ygunav"><ul><li><a
|
95
|
+
href="http://www.yahoo.com/">Yahoo!</a></li><li><a href="http://my.yahoo.com/">My
|
96
|
+
Yahoo!</a></li><li><a href="http://mail.yahoo.com/">Mail</a></li><li id="ygwel">Hello,
|
97
|
+
<strong>Guest</strong> [ <a href="http://login.yahoo.com/config/login?.src=siteexplorer&.intl=us&.done=http%3A%2F%2Fsiteexplorer.search.yahoo.com%2Fsearch%3Fei%3DUTF-8%26p%3Dplease-dont-register-a-site-that-breaks-this-test.com">Sign
|
98
|
+
In</a> ]</li><li><a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/">Help</a></li></ul></div><a
|
99
|
+
id="ylogo" href="http://siteexplorer.search.yahoo.com"><span class="off-left">Yahoo!
|
100
|
+
Site Explorer</span></a><div id="expurl"><form action="http://siteexplorer.search.yahoo.com/search"
|
101
|
+
method="get"><input type="text" value="please-dont-register-a-site-that-breaks-this-test.com"
|
102
|
+
name="p" id="seschp" class="seschp" autocomplete="on"><input type="submit" value="Explore
|
103
|
+
URL" name="y" class="ygbt"><input type="hidden" value="sfp" name="fr"></form></div></div><div
|
104
|
+
id="bd"><div id="bd-lt"><div id="side"><div class="side-menu" id="se-nav"><h2>Site
|
105
|
+
Explorer</h2><ol><li class="add_site"><a href="https://siteexplorer.search.yahoo.com/mysites?site_url=please-dont-register-a-site-that-breaks-this-test.com&.bcrumb="><span></span>Add
|
106
|
+
to MySites</a></li><li class="divisor"><span class="dots"></span></li><li class="mysites"><a
|
107
|
+
href="https://siteexplorer.search.yahoo.com/mysites"><span></span>My Sites</a></li><li
|
108
|
+
class="divisor"><span class="dots"></span></li><li class="submit"><a href="http://siteexplorer.search.yahoo.com/submit"><span></span>Submit
|
109
|
+
Your Site</a></li><li class="preferences"><a href="https://siteexplorer.search.yahoo.com/preferences?pref_done=http%3A%2F%2Fsiteexplorer.search.yahoo.com%2Fsearch%3Fei%3DUTF-8%26p%3Dplease-dont-register-a-site-that-breaks-this-test.com"><span></span>Preferences</a></li><li
|
110
|
+
class="blog"><a href="http://www.ysearchblog.com/category/site-explorer/"><span></span>Blog</a></li><li
|
111
|
+
class="badge"><a href="http://siteexplorer.search.yahoo.com/badge"><span></span>Badge</a></li><li
|
112
|
+
class="web_services"><a href="http://developer.yahoo.com/search/siteexplorer/"><span></span>Web
|
113
|
+
Service API</a></li><li class="feedback"><a href="http://suggestions.yahoo.com/?prop=SiteExplorer"><span></span>Feedback</a></li></ol></div></div></div><div
|
114
|
+
id="bd-rt"><div id="main" class="messages"><div class="hd"><div class="tcap"><div
|
115
|
+
class="l"></div><div class="c"></div><div class="r"></div></div><h1>Invalid
|
116
|
+
Request</h1></div><div class="bd"><div class="row"><h2>No Results</h2><p>We
|
117
|
+
were unable to find any results for the given URL in our index:</p><div id="errq"><em><strong>please-dont-register-a-site-that-breaks-this-test.com</strong></em></div><p>Suggestions:</p><ul><li>Check
|
118
|
+
if you have entered the URL correctly</li><li>If this is a valid URL, <a href="http://siteexplorer.search.yahoo.com/submit">Submit
|
119
|
+
it for free</a></li></ul></div></div><div class="ft"><div class="bcap"><div
|
120
|
+
class="l"></div><div class="c"></div><div class="r"></div></div></div></div></div></div><div
|
121
|
+
id="ft"><p id="legal">Copyright © 2011 Yahoo! Inc. All rights reserved.
|
122
|
+
<a href="http://info.yahoo.com/privacy/us/yahoo/search/details.html">Privacy
|
123
|
+
Policy (<span class="updt">Updated</span>)</a> - <a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html">Terms
|
124
|
+
of Service</a> - <a href="http://docs.yahoo.com/info/copyright/copyright.html">Copyright/IP
|
125
|
+
Policy</a> - <a href="http://siteexplorer.search.yahoo.com/submit">Submit Your
|
126
|
+
Site</a> - <a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/">Help</a></p></div></div></body></html>
|
127
|
+
|
128
|
+
<!-- fe01.sitex.search.ac2.yahoo.com compressed/chunked Mon Aug 15 03:07:57
|
129
|
+
PDT 2011 -->
|
130
|
+
|
131
|
+
'
|
132
|
+
http_version: '1.1'
|
133
|
+
- !ruby/struct:VCR::HTTPInteraction
|
134
|
+
request: !ruby/struct:VCR::Request
|
135
|
+
method: :get
|
136
|
+
uri: http://www.bing.com:80/search?q=link%3Aplease-dont-register-a-site-that-breaks-this-test.com
|
137
|
+
body: !!null
|
138
|
+
headers: !!null
|
139
|
+
response: !ruby/struct:VCR::Response
|
140
|
+
status: !ruby/struct:VCR::ResponseStatus
|
141
|
+
code: 200
|
142
|
+
message: OK
|
143
|
+
headers:
|
144
|
+
cache-control:
|
145
|
+
- private, max-age=0
|
146
|
+
content-type:
|
147
|
+
- text/html; charset=utf-8
|
148
|
+
content-encoding:
|
149
|
+
- gzip
|
150
|
+
expires:
|
151
|
+
- Mon, 15 Aug 2011 10:06:57 GMT
|
152
|
+
p3p:
|
153
|
+
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
|
154
|
+
date:
|
155
|
+
- Mon, 15 Aug 2011 10:07:57 GMT
|
156
|
+
transfer-encoding:
|
157
|
+
- chunked
|
158
|
+
connection:
|
159
|
+
- keep-alive
|
160
|
+
- Transfer-Encoding
|
161
|
+
vary:
|
162
|
+
- Accept-Encoding
|
163
|
+
set-cookie:
|
164
|
+
- _SS=SID=E123D8DA4006437B902B02423FC34AC1; domain=.bing.com; path=/
|
165
|
+
- MUID=10964EC1599148A0A9DF8900E23DF362; expires=Wed, 14-Aug-2013 10:07:56 GMT;
|
166
|
+
domain=.bing.com; path=/
|
167
|
+
- OrigMUID=10964EC1599148A0A9DF8900E23DF362%2cb1cb6aa3948042678324ad5dd5dbde68;
|
168
|
+
expires=Wed, 14-Aug-2013 10:07:56 GMT; domain=.bing.com; path=/
|
169
|
+
- OVR=flt=0&flt2=0&flt3=0&flt4=0&flt5=0&flt6=0&flt7=0&flt8=0&flt9=0&flt10=0&flt11=0&ramp1=0&release=or3&preallocation=0&R=1;
|
170
|
+
domain=.bing.com; path=/
|
171
|
+
- SRCHD=D=1904287&MS=1904287&AF=NOFORM; expires=Wed, 14-Aug-2013 10:07:56 GMT;
|
172
|
+
domain=.bing.com; path=/
|
173
|
+
- SRCHUID=V=2&GUID=8449B3BD682D4AF4AA8998C9B618415F; expires=Wed, 14-Aug-2013
|
174
|
+
10:07:56 GMT; path=/
|
175
|
+
- SRCHUSR=AUTOREDIR=0&GEOVAR=&DOB=20110815; expires=Wed, 14-Aug-2013 10:07:56
|
176
|
+
GMT; domain=.bing.com; path=/
|
177
|
+
body: ! '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html
|
178
|
+
lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:Web="http://schemas.live.com/Web/"><head><meta
|
179
|
+
content="text/html; charset=utf-8" http-equiv="content-type" /><script type="text/javascript">//<![CDATA[
|
180
|
+
|
181
|
+
si_ST=new Date
|
182
|
+
|
183
|
+
//]]></script><script type="text/javascript">//<![CDATA[
|
184
|
+
|
185
|
+
_G={ST:(si_ST?si_ST:new Date),Mkt:"en-US",RTL:false,Ver:"7_07_0_1019875",IG:"b1cb6aa3948042678324ad5dd5dbde68",EventID:"DBE455AF041946959B5CF84BAD553B8E",P:"SERP",DA:"Bl2",CID:"10964EC1599148A0A9DF8900E23DF362",SUIH:"jJTGX96DAdzxh_CUjypGzA",PCId:"1",cUrl:"http:\/\/c.bing.com\/c.gif?DI=15074",akamaiSyncUrl:"http:\/\/cms.abmr.net\/pix?cid=1237&uid=",gpUrl:"\/fd\/ls\/GLinkPing.aspx?"};_G.lsUrl="/fd/ls/l?IG="+_G.IG+"&CID="+_G.CID+"&PM=Y";curUrl="http:\/\/www.bing.com\/search";function
|
186
|
+
si_T(a){if(document.images){_G.GPImg=new Image;_G.GPImg.src=_G.gpUrl+''IG=''+_G.IG+''&CID=''+_G.CID+''&PM=Y''+a;}return
|
187
|
+
true;};sb_gh=function(){return location.hash};sb_sh=function(a){location.hash=a};_w=window;_d=document;sb_de=_d.documentElement;sb_ie=!!_w.ActiveXObject;sb_i6=sb_ie&&!_w.XMLHttpRequest;function
|
188
|
+
_ge(a){return _d.getElementById(a)}sb_st=_w.setTimeout;sb_ct=_w.clearTimeout;sb_gt=function(){return(new
|
189
|
+
Date).getTime()};function si_PP(e,c){if(!_G.PPS){for(var d=''"'',b=["PC","FC","BC","BS","H","FE","LE","C1","C2","BP","KP"],a=0;a<b.length;a++)d+='',"''+b[a]+''":''+(_G[b[a]+"T"]?_G[b[a]+"T"]-_G.ST:-1);_G.PPImg=new
|
190
|
+
Image;_G.PPImg.src=_G.lsUrl+''&Type=Event.CPT&DATA={"pp":{"S":"''+(c?c:"L")+d+'',"CT":''+(e-_G.ST)+'',"IL":''+_d.images.length+(_w.sb_ppCPL?'',"CP":1'':"")+"}}"+(_G.P?"&P="+_G.P:"")+(_G.DA?"&DA="+_G.DA:"");_G.PPS=1;sb_st(function(){sj_evt.fire("onPP")},1)}}_w.onbeforeunload=function(){si_PP(new
|
191
|
+
Date,"A")};sj_evt=new function(){var a={},b=this;function c(b){return a[b]||(a[b]=[])}b.fire=function(e){for(var
|
192
|
+
a=c(e),d=a.e=arguments,b=0;b<a.length;b++)if(a[b].d)sb_st(sj_wf(a[b],d),a[b].d);else
|
193
|
+
a[b](d)};b.bind=function(f,a,d,e){var b=c(f);a.d=e;b.push(a);d&&b.e&&a(b.e)};b.unbind=function(e,d){for(var
|
194
|
+
c=0,b=a[e];b&&c<b.length;c++)if(b[c]==d){b.splice(c,1);break}}};
|
195
|
+
|
196
|
+
//]]></script><style type="text/css">body{color:#000;background:#fff url(/fd/s/a/sw1.png)
|
197
|
+
repeat-x 0 -91px;font:small/normal Arial,Helvetica,Sans-Serif;margin:0;min-width:987px}a{color:#04c;text-decoration:none}a:visited{color:#639}a:hover,h3
|
198
|
+
a{text-decoration:underline}h1,h2,h3,h4,h5,h6{font-size:small;font-weight:200;margin:0}h1{font-size:93%}h2,h3{font-size:125%}h1,h1
|
199
|
+
a,h1 a:visited,h2,h2 a,h2 a:visited{color:#e66400}h2{margin:0 0 .62em}img{border:0}cite,.sb_cite{color:#388222;font-style:normal;word-wrap:break-word}strong{font-weight:700}.sb_count,.sb_meta{color:#737373}.sb_meta
|
200
|
+
a,.sb_meta a:visited{color:#5077bb}.sb_alert{color:#d90026}.sb_alert a{font-style:italic}#sw_hdr,#sw_content,#sw_main,#sw_foot{width:100%;float:left}#sw_content{position:static;z-index:3;min-height:344px}#sw_canvas{padding:0
|
201
|
+
0 0 15px;clear:both}#sw_main{_display:inline;margin:0 0 0 -15px;padding:0 0
|
202
|
+
1.54em 15px}.sb_results,.sb_results ul,.sb_results li{list-style-type:none;margin:0;padding:0}.sb_results
|
203
|
+
p,.sb_results .sb_meta{margin:0;line-height:1.2em;word-wrap:break-word}.sp_pss
|
204
|
+
li{display:inline}.sb_pag{padding:0;margin:0;width:100%;float:left}.sb_pag ul,.sb_pag
|
205
|
+
li{list-style:none;margin:0;padding:0}.sb_pag li{float:left}.sb_pag h4{display:none}.sb_pag
|
206
|
+
a,.sb_pag span{display:block;padding:.3em .7em;margin:0 .38em 0 0;text-align:center}a.sb_pagP,a.sb_pagN,span.sb_pagSp{padding:.38em
|
207
|
+
.5em}.sb_pag a:hover,a.sb_pagS{text-decoration:none;background:#ededed}a.sb_pagS{color:#000}a.sb_pagP{margin-right:.7em;padding-left:0}a:hover.sb_pagP,a:hover.sb_pagN{text-decoration:underline;background-color:transparent}a.sb_pagP:visited,a.sb_pagN:visited{color:#04c}#sw_hdr{min-height:70px;_height:70px;padding:0
|
208
|
+
0 30px 0}#sw_im{position:absolute;z-index:-1;height:100px;width:620px;top:0;left:190px;background:no-repeat;opacity:0;filter:alpha(opacity=0)}.sw_logo{background:url(/fd/s/a/sw1.png)
|
209
|
+
no-repeat 0 -48px;_display:inline;height:40px;width:112px;margin:-39px 52px
|
210
|
+
0 20px;float:left}.sw_logoT{color:#000;font-size:170%;line-height:normal;position:absolute;z-index:-1}#sw_hdr
|
211
|
+
.sw_box{padding:49px 0 0;margin:0;float:left;position:relative;z-index:1001;width:100%;line-height:1.38em}#sw_hdr
|
212
|
+
.sw_bd{margin-top:-2.43em}.sb_form_align{margin:-50px 0 0 600px;padding:0 0
|
213
|
+
0 .53em}.sw_box .sb_form_align{text-align:right;padding:0}.sw_t,.sw_t *,.sw_t
|
214
|
+
a:visited{color:#fff}.sw_t{line-height:1.52em;width:100%;float:left}.sw_tc{background:#525051
|
215
|
+
url(/fd/s/a/sw1.png) 0 -91px;background:-webkit-gradient(linear,left top,left
|
216
|
+
bottom,from(#768b9e),to(#9fabb9));position:absolute;left:0;z-index:-2;height:1.5em;width:100%}.sw_t
|
217
|
+
ul{float:left;margin:0;padding:0 0 0 20px}.sw_t li{padding:0 .85em 0 0;display:inline;zoom:1}ul.sw_tm{padding:0}ul.sw_tn{float:right;white-space:nowrap;padding:0
|
218
|
+
20px}.sw_tn li,.sw_tl{padding:0 0 0 .85em}.sw_u{font-weight:bold;padding:0 .77em
|
219
|
+
0 0}.sw_tl{position:relative;display:inline;z-index:1003}.sw_tl a:hover,.sw_tl
|
220
|
+
a:hover .sw_tla{text-decoration:none}.sw_tl a:hover span{text-decoration:underline}#sw_tll
|
221
|
+
span{margin:0 0 -2px .38em}.sw_tlia,.sw_tliw,.sw_tlif{width:17px;height:16px;display:-moz-inline-box;display:inline-block;vertical-align:middle;background:url(/fd/s/a/sw1.png)
|
222
|
+
-77px -12px}.sw_tlif{width:13px;height:13px;background-position:0 -29px}#sw_tlm,.sw_tlin,#sw_tfbb{display:none}.sw_tla{font-size:75%;margin-left:.38em}.sw_me{width:4.5em;text-align:center}#sw_meCtrl
|
223
|
+
.sw_meIc{background:url(/fd/s/a/sw1.png) -43px -12px;display:inline-block;height:15px;margin:0
|
224
|
+
.08em 0 .33em;width:15px;vertical-align:middle}#hp_sw_hdr .sw_meWrap{margin-right:.85em;padding-left:.85em}#sw_meCtrl
|
225
|
+
span{margin:0}a#sw_meCtrl{padding:0 5px}.sw_bd{position:relative;float:left;font-size:medium}.sw_b{float:left;border:1px
|
226
|
+
#e5e5e5 solid;background:#fff;padding:.19em .19em 1.06em 0}.sw_b input{float:left;border:0;margin:0
|
227
|
+
0 -.88em;font-size:100%;padding:.19em .31em .25em .56em;height:1.25em;line-height:1.25em;width:23.45em;-webkit-appearance:none;outline:none}.sw_b
|
228
|
+
.sw_qbtn{background:#e66400 url(/fd/s/a/sw1.png) 0 -1px;cursor:pointer;height:27px;width:27px;padding:27px
|
229
|
+
0 0;margin:0 0 -14px;overflow:hidden;font-size:0}#sw_as{left:-1px;position:relative;clear:both;display:none;font-size:small}</style><script
|
230
|
+
type="text/javascript">//<![CDATA[
|
231
|
+
|
232
|
+
function sj_wf(a){var b=arguments;return function(){a.apply(null,[].slice.apply(b).slice(1))}};function
|
233
|
+
sj_be(a,b,c,d){if(a.addEventListener)a.addEventListener(b,c,d);else if(a.attachEvent)a.attachEvent("on"+b,c);else
|
234
|
+
a["on"+b]=c}function sj_ue(a,b,c,d){if(a.removeEventListener)a.removeEventListener(b,c,d);else
|
235
|
+
if(a.detachEvent)a.detachEvent("on"+b,c);else a["on"+b]=null};function sj_anim(k){var
|
236
|
+
a=this,j,d,h,g,c,e,i,b,f;a.init=function(m,g,k,l,h){j=m;c=g;e=k;i=l;f=h;if(!b)b=c;!d&&a.start()};a.start=function(){h=sb_gt();g=Math.abs(e-c-b)/i*25;d=setInterval(a.next,25)};a.stop=function(){clearInterval(d);d=0};a.next=function(){var
|
237
|
+
d=sb_gt()-h;b=c+(e-c)*d/g;if(d>=g){a.stop();b=e;f&&f()}k(j,b)}};function sj_so(b,a){b.style.filter=a>=100?"":"alpha(opacity="+a+")";b.style.opacity=a/100};function
|
238
|
+
sj_fader(){return new sj_anim(function(b,a){sj_so(b,a)})};function sj_ce(d,c,b){var
|
239
|
+
a=_d.createElement(d);if(c)a.id=c;if(b)a.className=b;return a};function sj_jb(h,f){for(var
|
240
|
+
b=arguments,e,d,a=2,g={n:h};a<b.length;a+=2){e=b[a];d=b[a+1];sj_be(e,d,sj_wf(c,g,f,e,d))}a<3&&c(g,f);function
|
241
|
+
c(a,d,b,e){b&&sj_ue(b,e,c);sj_evt.bind("onP1",function(){if(!a.l){a.l=1;var
|
242
|
+
b=sj_ce("script");b.src=(d?"/fd/sa/"+_G.Ver:"/sa/"+_G.AppVer)+"/"+a.n+".js";sj_b.appendChild(b)}},1,5)}};function
|
243
|
+
sj_gx(){return sb_i6?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest};function
|
244
|
+
sj_sp(a){if(sb_ie)a.cancelBubble=true;else a.stopPropagation()};function sj_ev(a){return
|
245
|
+
sb_ie?event:a}function sj_et(a){return sb_ie?event.srcElement:a.target}function
|
246
|
+
sj_mi(a){return sb_ie?event.fromElement:a.relatedTarget}function sj_mo(a){return
|
247
|
+
sb_ie?event.toElement:a.relatedTarget};function sj_pd(a){if(sb_ie)event.returnValue=false;else
|
248
|
+
a.preventDefault()};function sj_we(a,c,b){while(a&&a!=(b||sj_b)){if(a==c)return!0;a=a.parentNode}return!1};function
|
249
|
+
sj_go(a,c,d){var b=0;while(a.offsetParent&&a!=(d||sj_b)){b+=a["offset"+c];a=a.offsetParent}return
|
250
|
+
b};function si_fbInit(d,c,e){var a=this;a.appNs=d;a.wfId=e;var b=0;a.loadCard=function(){if(!b){sj_jb(c,1);b=1}};a.openCard=function(){}};(function(){var
|
251
|
+
e,a=0,c=sj_evt,b=[];_w.si_PP&&b.push("onPP");for(;a<b.length;a++)c.bind(b[e=a],d,1);!a&&d();function
|
252
|
+
d(){--e<1&&c.fire("onP1")}})();function lb(){var e=sj_evt,f="onSbBusy",b;e.bind(f,d,1);function
|
253
|
+
d(a){b=a[1];e.unbind(f,d)}for(var a=1;a<4;++a){var g="sb_form"+(a>1?a:""),c=_ge(g);c&&!(b&&_ge(g+"_q")==b)&&c.reset&&c.reset()}_w.si_sendCReq&&sb_st(si_sendCReq,800);_w.lbc&&lbc()}(function(){var
|
254
|
+
a=sj_evt,c="onSbBusy",b=null;a.bind(c,function(){sb_ct(b);b=sb_st(sj_wf(a.fire,"onSbIdle"),1100)});sj_be(_d,"keydown",function(b){a.fire(c,sj_et(b))})})();sj_evt.bind("onHTML",function(){var
|
255
|
+
a=_ge("sb_form");a&&sj_be(a,"submit",sj_wf(sj_evt.fire,"onSearch",a))});function
|
256
|
+
init(){};
|
257
|
+
|
258
|
+
//]]></script><title>link:please-dont-register-a-site-that-breaks-this-test.com
|
259
|
+
- Bing</title><style type="text/css">#content{margin:0 0 0 -15px;padding:0 271px
|
260
|
+
0 0;max-width:666px}#results_area{float:left;width:100%}#results_container{padding:0
|
261
|
+
15px}#sidebar{float:left;margin:0 -271px 0 0;padding:0 15px 0 26px;width:230px;word-wrap:break-word}.sb_vdl{width:100%;margin-top:.4em}#results:after,.sb_vdl:after{clear:both;content:''.'';display:block;height:0;visibility:hidden}.sb_vdl
|
262
|
+
ul{max-width:34%;_width:34%;margin:0 1.51em 0 3.11em;_margin:0 2.55em 0 1.18em;float:left}.sb_vdl
|
263
|
+
li{text-indent:-.77em;_text-indent:0;a:0}.sb_ph{margin:0 0 .93em;text-align:right;color:#737373}.sb_ph
|
264
|
+
h1{float:left;color:#737373;text-transform:uppercase}.sc_bullet{margin:0 0 0
|
265
|
+
.47em;font-size:93%}.sb_ph a{color:#737373;text-decoration:underline}</style><link
|
266
|
+
href="/s/wlflag.ico" rel="icon"/><link href="/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&format=rss"
|
267
|
+
rel="alternate" title="XML" type="text/xml"/><link href="/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&format=rss"
|
268
|
+
rel="alternate" title="RSS" type="application/rss+xml"/><!-- FD: 9B48DD9DED2022CA4D7362BFA160A274
|
269
|
+
--></head><body class="en en-US" onload="if(_w.lb)lb();"><script type="text/javascript">//<![CDATA[
|
270
|
+
|
271
|
+
_G.PCT=new Date
|
272
|
+
|
273
|
+
//]]></script><script type="text/javascript">//<![CDATA[
|
274
|
+
|
275
|
+
si_fb=new si_fbInit(''FD.1'',''fbbsqr_c'',''wf11'');sj_b=_d.body;
|
276
|
+
|
277
|
+
//]]></script><!--snr2--><script type="text/javascript">//<![CDATA[
|
278
|
+
|
279
|
+
_G.AppVer="7_07_0_1019990";
|
280
|
+
|
281
|
+
//]]></script><div id="sw_page"><div id="sw_width"><div id="sw_hdr"><div id="sw_im"></div><div
|
282
|
+
class="sw_t"><div class="sw_tc"></div><ul id="sch_scopes"><li><a href="/?scope=web&FORM=Z9FD"
|
283
|
+
onmousedown="return si_T(''&ID=FD,23.1'')">Web</a></li><li><a href="/images/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&FORM=BIFD"
|
284
|
+
onmousedown="return si_T(''&ID=FD,25.1'')">Images</a></li><li><a href="/videos/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&FORM=BVFD"
|
285
|
+
onmousedown="return si_T(''&ID=FD,27.1'')">Videos</a></li><li><a href="/shopping/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&mkt=en-US&FORM=BPFD"
|
286
|
+
onmousedown="return si_T(''&ID=FD,29.1'')">Shopping</a></li><li><a href="/news/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&FORM=BNFD"
|
287
|
+
onmousedown="return si_T(''&ID=FD,31.1'')">News</a></li><li><a href="/maps/default.aspx?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&mkt=en-US&FORM=BYFD"
|
288
|
+
onmousedown="return si_T(''&ID=FD,33.1'')">Maps</a></li><li><a href="/explore?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&FORM=BXFD"
|
289
|
+
onmousedown="return si_T(''&ID=FD,35.1'')">More</a></li></ul><ul class="sw_tm"><li>|</li><li><a
|
290
|
+
href="http://www.msn.com/" onmousedown="return si_T(''&ID=FD,39.1'')">MSN</a></li><li><a
|
291
|
+
href="http://mail.live.com/" onmousedown="return si_T(''&ID=FD,41.1'')">Hotmail</a></li></ul><ul
|
292
|
+
class="sw_tn"><li><div class="sw_tl"><a href="javascript:void(0)" id="sw_tll"><span>Sign
|
293
|
+
in</span><span class="sw_tla">▼</span></a><ul _IID="FD.2" id="sw_tlm"
|
294
|
+
onmouseout="this._m=false;" onmouseover="this._m=true;"></ul></div></li><li><div
|
295
|
+
class="sw_tl sw_meWrap"><a href="/rewards/signup/web?publ=BING&crea=ME"
|
296
|
+
id="sw_meCtrl" onmousedown="return si_T(''&ID=FD,50.1'')"><span class="sw_me"
|
297
|
+
id="sw_meTxt">Rewards</span><span class="sw_meIc"></span></a></div></li><li><a
|
298
|
+
href="/settings.aspx?ru=http%3a%2f%2fwww.bing.com%3a80%2fsearch%3fq%3dlink%253Aplease-dont-register-a-site-that-breaks-this-test.com&SH=1&FORM=SEFD"
|
299
|
+
onmousedown="return si_T(''&ID=FD,43.1'')">Brookline, Massachusetts</a></li><li><a
|
300
|
+
href="/settings.aspx?ru=http%3a%2f%2fwww.bing.com%3a80%2fsearch%3fq%3dlink%253Aplease-dont-register-a-site-that-breaks-this-test.com&FORM=SEFD1"
|
301
|
+
onmousedown="return si_T(''&ID=FD,42.1'')">Preferences</a></li></ul><div
|
302
|
+
id="sw_tfbb"></div></div><form action="/search" class="sw_box" id="sb_form"><a
|
303
|
+
href="/?FORM=Z9FD1" class="sw_logo" onmousedown="return si_T(''&ID=FD,37.1'')"><span
|
304
|
+
class="sw_logoT">Bing</span></a><div class="sw_bd"><div class="sw_b"><input
|
305
|
+
class="sw_qbox" id="sb_form_q" name="q" title="Enter your search term" type="text"
|
306
|
+
value="link:please-dont-register-a-site-that-breaks-this-test.com" /><input
|
307
|
+
class="sw_qbtn" id="sb_form_go" name="go" tabindex="0" title="Search" type="submit"
|
308
|
+
value="" /></div><input id="sa_qs" name="qs" type="hidden" value="ns" /><div
|
309
|
+
id="sw_as"></div></div><input name="form" type="hidden" value="QBRE" /></form></div><div
|
310
|
+
id="sw_content"><div></div><script type="text/javascript">//<![CDATA[
|
311
|
+
|
312
|
+
_G.FCT=new Date
|
313
|
+
|
314
|
+
//]]></script><script type="text/javascript">//<![CDATA[
|
315
|
+
|
316
|
+
_G.BCT=new Date
|
317
|
+
|
318
|
+
//]]></script><style type="text/css">#no_results h1{color:#000;font-size:125%;margin:10px
|
319
|
+
0 30px;word-wrap:break-word}#no_results h2{font-size:small;font-weight:bold;color:#000;margin:15px
|
320
|
+
0 0;float:none}#sw_content{background:#fff;padding:0 0 29px;min-height:320px}#content{padding:7px
|
321
|
+
254px 0 20px;min-height:200px;margin:0}#results_area{width:590px}#sidebar{margin:0
|
322
|
+
-230px 0 22px}#no_results ul,#no_results ul li{display:block}#no_results ul{clear:both;margin:0;padding:0;list-style-type:none}#no_results
|
323
|
+
ul li{font-size:small;margin:6px 0 0}#no_results ul li span{color:#000}#no_results
|
324
|
+
.ans li{background:none;padding:0}#content .sb_alert{color:#000;border:none;font-size:small}#content
|
325
|
+
.sb_alert a{font-weight:normal;font-style:normal}#content .sb_alert strong{font-style:normal}#no_results
|
326
|
+
.qscolumn{float:none;max-width:100%}#sb_foot{font-size:83.9%;clear:both;float:left;width:100%;border-top:solid
|
327
|
+
1px #e5e5e5}#sw_footL,#sw_footL a{color:#737373}#sb_foot ul{display:block;list-style:none;margin:5px
|
328
|
+
10px;padding:0;float:right}#sb_foot li{display:inline}#sb_foot a{margin:.4em}a#sb_feedback{color:#e66400}#sw_canvas{padding-top:1.2em}.sb_pt{color:#e66400;border-bottom:#e6e6e6
|
329
|
+
solid 1px;float:left;font-size:medium;line-height:1.69em;margin:-1.89em 0 0;position:relative;width:100%;min-height:1.69em}.sb_pt
|
330
|
+
h1,.sb_pt .sb_ptn{min-width:140px;_width:140px;float:left;font-size:125%;padding:0
|
331
|
+
20px;white-space:nowrap}.sb_ptr{font-size:81%;position:absolute;right:20px;top:.5em}.sb_ptr
|
332
|
+
a,.sb_ptr a:visited{color:#000;padding:0 0 0 .77em}.sb_pt sup{font-size:50%;margin-left:.4em}</style><style
|
333
|
+
type="text/css">.sw_a{margin-right:15em}</style><div class="sb_pt" id="sw_abar"><h1><a
|
334
|
+
href="/" onmousedown="return si_T(''&ID=FD,2.1'')">Web</a></h1></div><div><!--
|
335
|
+
snr --><div id="content"><div id="results_area"><div id="results"><div id="no_results"><h1>No
|
336
|
+
results found for <strong>link:please-dont-register-a-site-that-breaks-this-test.com</strong>.</h1><h2>Search
|
337
|
+
tips:</h2><ul><li><span>Ensure words are spelled correctly.</span></li><li><span>Try
|
338
|
+
rephrasing keywords or using synonyms.</span></li><li><span>Try less specific
|
339
|
+
keywords.</span></li><li><span>Make your queries as concise as possible.</span></li></ul><h2>Other
|
340
|
+
resources that may help you:</h2><ul><li><span>Get additional search tips by
|
341
|
+
visiting <a href="http://onlinehelp.microsoft.com/en-US/bing/ff808535.aspx"
|
342
|
+
onmousedown="return si_T(''&ID=SERP,5046.1'')">Web Search Help</a>.</span></li><li><span>If
|
343
|
+
you cannot find a page that you know exists, <a href="/docs/submit.aspx?FORM=SURE"
|
344
|
+
onmousedown="return si_T(''&ID=SERP,5047.1'')">send the address to us</a>.</span></li></ul></div></div></div><div
|
345
|
+
id="sidebar"></div><br> </br><div><a href="http://go.microsoft.com/fwlink/?LinkId=74170"
|
346
|
+
target="_blank" onmousedown="return si_T(''&ID=SERP,5044.1'')">Bing Privacy
|
347
|
+
Policy</a></div></div></div></div><div id="sb_foot" onmouseover="si_fb.loadCard()"><ul
|
348
|
+
id="sw_footL"><li><span>© 2011 Microsoft</span> | </li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"
|
349
|
+
onmousedown="return si_T(''&ID=FD,61.1'')">Privacy</a> | </li><li><a href="http://g.msn.com/0TO_/enus"
|
350
|
+
onmousedown="return si_T(''&ID=FD,63.1'')">Legal</a> | </li><li><a href="http://advertising.microsoft.com/advertise-on-bing"
|
351
|
+
onmousedown="return si_T(''&ID=FD,65.1'')">Advertise</a> | </li><li><a href="http://g.msn.com/AIPRIV/en-us"
|
352
|
+
target="_blank" onmousedown="return si_T(''&ID=FD,67.1'')">About our ads</a>
|
353
|
+
| </li><li><a href="http://onlinehelp.microsoft.com/en-US/bing/ff808535.aspx"
|
354
|
+
id="sb_help" target="_blank" onmousedown="return si_T(''&ID=FD,69.1'')">Help</a>
|
355
|
+
| </li><li><a href="https://feedback.live.com/default.aspx?locale=en-US&productkey=wlsearchweb&P1=dsatnoresultsweb&P2=link%3aplease-dont-register-a-site-that-breaks-this-test.com&P3=0&P4=NOFORM&P5=10964EC1599148A0A9DF8900E23DF362&P6=Brookline,
|
356
|
+
Massachusetts&P9=42.343341827%2f-71.122756958&P10=0&P11=&searchtype=Web+Search&optl1=1&backurl=http%3a%2f%2fwww.bing.com%2fsearch%3fq%3dlink%3aplease-dont-register-a-site-that-breaks-this-test.com%26FORM%3dFEEDTU"
|
357
|
+
id="sb_feedback" onclick="si_fb.openCard(this);return false" onfocus="si_fb.loadCard()"
|
358
|
+
onmousedown="return si_T(''&ID=FD,71.1'')">Tell us what you think</a></li></ul></div></div></div><div
|
359
|
+
id="sb_fb"></div><script type="text/javascript">//<![CDATA[
|
360
|
+
|
361
|
+
_G.BST=new Date
|
362
|
+
|
363
|
+
//]]></script><script type="text/javascript">//<![CDATA[
|
364
|
+
|
365
|
+
sj_cook=new function(){var a=this;a.get=function(d,c){var a=_d.cookie.match(new
|
366
|
+
RegExp("\\b"+d+"=[^;]+"));if(c&&a){var b=a[0].match(new RegExp("\\b"+c+"=([^&]*)"));return
|
367
|
+
b?b[1]:null}return a?a[0]:null};a.set=function(c,d,m,k,j,g){var e,f=d+"="+m,b=a.get(c);if(b){var
|
368
|
+
h=a.get(c,d);e=h?b.replace(d+"="+h,f):b+"&"+f}else e=c+"="+f;var i=location.hostname.match(/([^.]+\.[^.]*)$/),l=g&&g>0?g*6e4:6.3072e10;_d.cookie=e+(i?";domain="+i[0]:"")+(k?";expires="+(new
|
369
|
+
Date((new Date).getTime()+Math.min(l,6.3072e10))).toGMTString():"")+(j?";path="+j:"")}};sc_fadeCb=function(){};function
|
370
|
+
sc_bgL(){var a=g_img,b=_ge(a.id),d=sj_evt,c=d.bind,f=d.unbind,i=d.fire,e="onBgLoad",g="onSbBusy",h="onSbIdle";c("onP1",j,1,500);function
|
371
|
+
j(){var d=new Image,o=sj_fader(),m=0,p=0,j;c("onSearch",function(){a.x=true;d=null;o.stop();sb_ct(j)});function
|
372
|
+
l(){f(g,l);if(!m){sb_ct(j);f(e,n);c(h,k)}}function k(){c(e,n,1);f(h,k);c(g,l)}k();function
|
373
|
+
n(e){m=1;function c(){b.style.backgroundImage="url(''"+d.src+"'')";b.className+="
|
374
|
+
sw_imLd";i("onBgSet")}d.onerror=d.onload=null;if(e[2]>a.d){sj_so(b,0);c();j=sb_st(sj_wf(o.init,b,0,100,10,sc_fadeCb),500)}else{c();sj_so(b,100);sc_fadeCb()}sj_cook.set(a.cN,a.crN,a.hash,0,"/")}d.onload=function(){p=sb_gt()-q;i(e,d,p)};var
|
375
|
+
q=sb_gt();d.src=a.url}}sj_evt.bind("onP1",function(){!(_w.g_img&&g_img.cN)&&sj_evt.fire("onBgSet")},1);g_img={url:''\/fd\/hpk2\/Busan_EN-US67002425o.jpg'',id:''sw_im'',d:10,cN:''_SS'',crN:''hIm'',hash:''425''};sc_bgL();;sj_evt.bind("onP1",function(){var
|
376
|
+
a=_ge("sw_tll");a&&sj_jb("multipleLogins_c",1,a,"mouseover",a,"click")},1,5);function
|
377
|
+
sj_ic(b){var a=sj_ce("style");_d.getElementsByTagName("head")[0].appendChild(a);if(sb_ie)a.styleSheet.cssText=b;else
|
378
|
+
a.appendChild(_d.createTextNode(b))};_ge("sa_qs").value="bs";sj_evt.bind("onASConfig",function(d){var
|
379
|
+
b=d[1],a=_ge(b.i),c=sj_evt.fire;a.setAttribute("autocomplete","off");sj_be(a,"keyup",function(a){c("onASKeyup"+b.i,a.keyCode)});sj_be(a,"click",sj_wf(c,"onASClick"+b.i));sj_jb.apply(null,[b.r,1,a,"mousedown",a,"keydown"].concat(b.ol?[_w,"load"]:[]))},1);sj_evt.fire(''onASConfig'',{r:''AutoSug'',lmh:''\/profile\/history?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com'',ePN:1,eAN:1,eLO:1,h:1,m:8,mkt:''en-US'',ml:45,mh:128,d:100,t:1,u:''http:\/\/api.bing.com\/qsonhs.aspx?FORM=ASAPIW'',f:''sb_form'',i:''sb_form_q'',c:''sw_as'',p0:''DN,AN'',eHS:1,cHS:3,sid:''E123D8DA4006437B902B02423FC34AC1''});sa_loc={H_PN:''Popular
|
380
|
+
now'',H_AS:''Web results'',L_MH:''Manage search history'',L_P:''Preferences'',T_SQ:''Trending''};;sj_evt.bind(''onP1'',function(){sa_DNS=new
|
381
|
+
Image;sa_DNS.src=''http://api.bing.com/qsonhs.aspx?FORM=ASAPIW&q=''},1,5);sj_evt.fire("onHTML");function
|
382
|
+
si_sendCReq(){_G.muidI=new Image;_G.muidI.onload=function(){var d=_d.cookie;if(/\bTUID\b/i.test(d))return
|
383
|
+
1;_G.muidI2=new Image;_G.muidI2.src=_G.gpUrl+"CM=TMF&IG="+_G.IG+(_G.CID?"&CID="+_G.CID:"");_G.muidI3=new
|
384
|
+
Image;var b="MUID",a=sj_cook.get(b),c=a.substring(b.length+1,a.length);_G.muidI3.src=_G.akamaiSyncUrl.replace(/&/g,"&")+c;return
|
385
|
+
1};_G.muidI.src=_G.cUrl};sf_fbCfg={sId:"0"};sj_evt.bind("onP1",function(){_w.logfb&&_w.logfb("fi");var
|
386
|
+
a=sj_ce("iframe");a.height=0;a.width=0;a.frameBorder=a.scrolling="no";sj_b.appendChild(a);a.src="/fd/fb/r?v="+_G.Ver+"&sId="+sf_fbCfg.sId},1,_w.sf_fbCfg&&sf_fbCfg.wt?sf_fbCfg.wt:1500);sj_evt.bind("xd:fba:checkbar",function(b){if(b&&b.length>=2){var
|
387
|
+
a=sj_ce("iframe");a.id="sw_tfbbi";var c=_ge("sw_tfbb");if(c){a.height="0";a.scrolling=a.frameBorder="no";a.src="/fd/fb/b?fv="+_G.Ver+"#"+b[1];c.appendChild(a)}}});RMS2=new
|
388
|
+
function(){var b=[],d="",g="readyState",e="onreadystatechange",f,h,a=_w.RmsConfig||{};this.RegisterResources=function(c,h,g,e){d=_d.domain;for(var
|
389
|
+
a=0;a<c.length;a++)b.push({n:g,u:c[a],c:e[a]});if(!f){f=true;sj_evt.bind("onP1",j,1,1e3)}};function
|
390
|
+
i(e,g){var d=6,c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",a=e?e.split(""):[],f,b=~~(g/d);while(a.length<=b)a.push(c.charAt(0));f=c.indexOf(a[b])|1<<g%d;a[b]=c.charAt(f);return
|
391
|
+
a.join("")}function k(a){var b=sj_cook.get("RMS",a.n);sj_cook.set("RMS",a.n,i(b,a.c),0,"/",0)}function
|
392
|
+
j(){if(_d.domain!=d)return;a.P&&a.P();h=new Date;c(0)}function c(f){var i=b[f];if(i){var
|
393
|
+
d=sj_gx();if(!d)return;d.open("get",i.u,true);var j=sb_st(function(){if(d[g]!=4){d[e]=function(){};d.abort();c(f+1)}},5e3);d[e]=function(){if(d[g]==4){sb_ct(j);k(b[f]);c(f+1)}};d.send(null)}else
|
394
|
+
a.I&&a.I(h)}};RMS2.RegisterResources([''\/fd\/sa\/1112031442\/brand4_c.css'',''\/fd\/sa\/0908192802\/noResults2_c.css'',''\/fd\/sa\/0721115826\/Shared.js'',''\/fd\/sa\/0108182120\/PostContent.js''],[],''F'',[3,9,1,2]);;
|
395
|
+
|
396
|
+
//]]></script><script type="text/javascript">//<![CDATA[
|
397
|
+
|
398
|
+
RMS2.RegisterResources([''/sa/1030222733/serpAll_c.css''],[],''A'',[4]);;
|
399
|
+
|
400
|
+
//]]></script><script type="text/javascript">//<![CDATA[
|
401
|
+
|
402
|
+
(function(){function a(){!_w.sb_ppCPL&&sb_st(function(){si_PP(new Date)},0)}var
|
403
|
+
b=_w.onload||function(){};onload=function(c){_G.BPT=new Date;b(c);a()};_G.HT=new
|
404
|
+
Date})()
|
405
|
+
|
406
|
+
//]]></script></body></html>'
|
407
|
+
http_version: '1.1'
|