PageRankr 2.0.4 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +10 -0
- data/Gemfile +3 -1
- data/PageRankr.gemspec +1 -0
- data/README.md +48 -12
- data/lib/page_rankr.rb +6 -5
- data/lib/page_rankr/backlink.rb +4 -19
- data/lib/page_rankr/backlinks.rb +6 -6
- data/lib/page_rankr/backlinks/alexa.rb +7 -4
- data/lib/page_rankr/backlinks/bing.rb +9 -6
- data/lib/page_rankr/backlinks/google.rb +11 -15
- data/lib/page_rankr/backlinks/yahoo.rb +6 -4
- data/lib/page_rankr/index.rb +4 -17
- data/lib/page_rankr/indexes.rb +4 -4
- data/lib/page_rankr/indexes/bing.rb +7 -4
- data/lib/page_rankr/indexes/google.rb +10 -16
- data/lib/page_rankr/rank.rb +5 -16
- data/lib/page_rankr/ranks.rb +6 -6
- data/lib/page_rankr/ranks/alexa_global.rb +9 -7
- data/lib/page_rankr/ranks/alexa_us.rb +9 -7
- data/lib/page_rankr/ranks/compete.rb +5 -10
- data/lib/page_rankr/ranks/google.rb +12 -16
- data/lib/page_rankr/site.rb +6 -2
- data/lib/page_rankr/tracker.rb +54 -33
- data/lib/page_rankr/trackers.rb +48 -0
- data/lib/page_rankr/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/alexa_ranks_edge_case_1.yml +6 -6
- data/spec/fixtures/vcr_cassettes/failure_backlinks.yml +87 -77
- data/spec/fixtures/vcr_cassettes/failure_indexes.yml +58 -48
- data/spec/fixtures/vcr_cassettes/failure_ranks.yml +20 -20
- data/spec/fixtures/vcr_cassettes/success_backlinks.yml +70 -62
- data/spec/fixtures/vcr_cassettes/success_indexes.yml +73 -67
- data/spec/fixtures/vcr_cassettes/success_ranks.yml +94 -73
- data/spec/page_rankr_spec.rb +8 -2
- data/spec/spec_helper.rb +1 -1
- metadata +32 -20
@@ -1,11 +1,18 @@
|
|
1
|
-
require '
|
2
|
-
require 'nokogiri'
|
1
|
+
require File.expand_path('../../rank', __FILE__)
|
3
2
|
|
4
3
|
module PageRankr
|
5
4
|
class Ranks
|
6
5
|
class AlexaGlobal
|
7
6
|
include Rank
|
8
7
|
|
8
|
+
def url
|
9
|
+
"http://data.alexa.com/data"
|
10
|
+
end
|
11
|
+
|
12
|
+
def params
|
13
|
+
{:cli => 10, :dat => "snbamz", :url => @site.to_s}
|
14
|
+
end
|
15
|
+
|
9
16
|
# Alexa may sometimes return a result for the incorrect site and thus it is necessary to check if
|
10
17
|
# the results returned are for the site we want.
|
11
18
|
#
|
@@ -15,11 +22,6 @@ module PageRankr
|
|
15
22
|
def xpath
|
16
23
|
"//popularity[contains(@url, '#{@site.domain}')]/@text"
|
17
24
|
end
|
18
|
-
|
19
|
-
def request
|
20
|
-
@request ||= Typhoeus::Request.new("http://data.alexa.com/data",
|
21
|
-
:params => {:cli => 10, :dat => "snbamz", :url => @site.to_s})
|
22
|
-
end
|
23
25
|
end
|
24
26
|
end
|
25
27
|
end
|
@@ -1,11 +1,18 @@
|
|
1
|
-
require '
|
2
|
-
require 'nokogiri'
|
1
|
+
require File.expand_path('../../rank', __FILE__)
|
3
2
|
|
4
3
|
module PageRankr
|
5
4
|
class Ranks
|
6
5
|
class AlexaUs
|
7
6
|
include Rank
|
8
7
|
|
8
|
+
def url
|
9
|
+
"http://data.alexa.com/data"
|
10
|
+
end
|
11
|
+
|
12
|
+
def params
|
13
|
+
{:cli => 10, :dat => "snbamz", :url => @site.to_s}
|
14
|
+
end
|
15
|
+
|
9
16
|
# Alexa may sometimes return a result for the incorrect site and thus it is necessary to check if
|
10
17
|
# the results returned are for the site we want.
|
11
18
|
#
|
@@ -15,11 +22,6 @@ module PageRankr
|
|
15
22
|
def xpath
|
16
23
|
"//popularity[contains(@url, '#{@site.domain}')]/../reach/@rank"
|
17
24
|
end
|
18
|
-
|
19
|
-
def request
|
20
|
-
@request ||= Typhoeus::Request.new("http://data.alexa.com/data",
|
21
|
-
:params => {:cli => 10, :dat => "snbamz", :url => @site.to_s})
|
22
|
-
end
|
23
25
|
end
|
24
26
|
end
|
25
27
|
end
|
@@ -1,23 +1,18 @@
|
|
1
|
-
require '
|
1
|
+
require File.expand_path('../../rank', __FILE__)
|
2
2
|
require 'cgi'
|
3
|
-
require 'nokogiri'
|
4
3
|
|
5
4
|
module PageRankr
|
6
5
|
class Ranks
|
7
6
|
class Compete
|
8
7
|
include Rank
|
9
8
|
|
9
|
+
def url
|
10
|
+
"http://siteanalytics.compete.com/#{CGI.escape(@site.domain)}/"
|
11
|
+
end
|
12
|
+
|
10
13
|
def xpath
|
11
14
|
"//div[@class='section score']/h4[2]/text()"
|
12
15
|
end
|
13
|
-
|
14
|
-
def request
|
15
|
-
@request ||= Typhoeus::Request.new("http://siteanalytics.compete.com/#{CGI.escape(@site.domain)}/")
|
16
|
-
end
|
17
|
-
|
18
|
-
def clean(rank)
|
19
|
-
rank.to_s.gsub(/[#,]/, '').to_i
|
20
|
-
end
|
21
16
|
end
|
22
17
|
end
|
23
18
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
require '
|
2
|
-
require File.
|
1
|
+
require File.expand_path('../../rank', __FILE__)
|
2
|
+
require File.expand_path('../google/checksum', __FILE__)
|
3
3
|
|
4
4
|
module PageRankr
|
5
5
|
class Ranks
|
@@ -7,25 +7,21 @@ module PageRankr
|
|
7
7
|
include Rank
|
8
8
|
|
9
9
|
def initialize(site)
|
10
|
-
@
|
11
|
-
|
10
|
+
@checksum = Checksum.generate(site.to_s)
|
11
|
+
|
12
|
+
super(site)
|
13
|
+
end
|
12
14
|
|
13
|
-
|
14
|
-
|
15
|
-
clean($1)
|
16
|
-
else
|
17
|
-
nil
|
18
|
-
end
|
19
|
-
end
|
15
|
+
def url
|
16
|
+
"http://toolbarqueries.google.com/tbr"
|
20
17
|
end
|
21
18
|
|
22
|
-
def
|
23
|
-
|
19
|
+
def params
|
20
|
+
{:client => "navclient-auto", :ch => @checksum, :features => "Rank", :q => "info:#{@site.to_s}"}
|
24
21
|
end
|
25
22
|
|
26
|
-
def
|
27
|
-
|
28
|
-
:params => {:client => "navclient-auto", :ch => @checksum, :features => "Rank", :q => "info:#{@site.to_s}"})
|
23
|
+
def regex
|
24
|
+
/Rank_\d+:\d+:(\d+)/
|
29
25
|
end
|
30
26
|
end
|
31
27
|
end
|
data/lib/page_rankr/site.rb
CHANGED
@@ -2,8 +2,6 @@ require 'public_suffix_service'
|
|
2
2
|
require 'delegate'
|
3
3
|
|
4
4
|
module PageRankr
|
5
|
-
class DomainInvalid < StandardError; end
|
6
|
-
|
7
5
|
class Site < DelegateClass(PublicSuffixService::Domain)
|
8
6
|
def initialize(site)
|
9
7
|
super(PublicSuffixService.parse(clean(site)))
|
@@ -18,4 +16,10 @@ module PageRankr
|
|
18
16
|
site.split("?").first # remove params
|
19
17
|
end
|
20
18
|
end
|
19
|
+
|
20
|
+
class << self
|
21
|
+
def Site(site)
|
22
|
+
site.respond_to?(:domain) ? site : Site.new(site)
|
23
|
+
end
|
24
|
+
end
|
21
25
|
end
|
data/lib/page_rankr/tracker.rb
CHANGED
@@ -1,48 +1,69 @@
|
|
1
1
|
require 'typhoeus'
|
2
|
+
require 'nokogiri'
|
3
|
+
require 'json'
|
4
|
+
require 'jsonpath'
|
5
|
+
require File.expand_path('../site', __FILE__)
|
2
6
|
|
3
7
|
module PageRankr
|
4
8
|
module Tracker
|
5
|
-
attr_accessor :
|
6
|
-
|
7
|
-
|
8
|
-
@site_trackers = self.class.constants.collect{|tracker| symbol_for(tracker)}
|
9
|
-
end
|
9
|
+
attr_accessor :tracked
|
10
|
+
attr_accessor :raw
|
11
|
+
attr_accessor :body
|
10
12
|
|
11
|
-
def
|
12
|
-
|
13
|
-
|
14
|
-
tracked = {}
|
15
|
-
hydra = Typhoeus::Hydra.new
|
16
|
-
trackers.each do |tracker|
|
17
|
-
name, klass = constant_name(tracker), self.class
|
18
|
-
|
19
|
-
next unless klass.const_defined? name
|
13
|
+
def initialize(site, options = {})
|
14
|
+
@site = PageRankr::Site(site)
|
20
15
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
hydra.run
|
16
|
+
@options = {:method => method}
|
17
|
+
@options[:params] = params if respond_to? :params
|
18
|
+
@options.merge!(options)
|
25
19
|
|
26
|
-
|
27
|
-
|
20
|
+
request.on_complete do |response|
|
21
|
+
self.body = response.body
|
22
|
+
self.raw = content(body)
|
23
|
+
self.tracked = clean(raw)
|
28
24
|
end
|
29
|
-
|
25
|
+
end
|
26
|
+
|
27
|
+
def request
|
28
|
+
@request ||= Typhoeus::Request.new(url, @options)
|
29
|
+
end
|
30
|
+
|
31
|
+
def url
|
32
|
+
raise PageRankr::MethodRequired, "A url method defining the url to the service with the value you wish to extract must be defined."
|
33
|
+
end
|
34
|
+
|
35
|
+
def method
|
36
|
+
:get
|
37
|
+
end
|
38
|
+
|
39
|
+
def run
|
40
|
+
hydra = Typhoeus::Hydra.new
|
41
|
+
hydra.queue request
|
42
|
+
hydra.run
|
43
|
+
|
30
44
|
tracked
|
31
45
|
end
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
46
|
+
|
47
|
+
def content(body)
|
48
|
+
if respond_to? :xpath
|
49
|
+
Nokogiri::HTML(body).at(xpath)
|
50
|
+
elsif respond_to? :jsonpath
|
51
|
+
JsonPath.new(jsonpath).first(JSON.parse(body))
|
52
|
+
elsif respond_to? :regex
|
53
|
+
body =~ regex ? $1 : nil
|
54
|
+
else
|
55
|
+
raise PageRankr::MethodRequired, "A method for extracting the value must be defined. Either xpath, jsonpath, or regex."
|
56
|
+
end.to_s
|
42
57
|
end
|
43
58
|
|
44
|
-
def
|
45
|
-
|
59
|
+
def clean(content)
|
60
|
+
cleaned_content = content.to_s.gsub(/\D/, '')
|
61
|
+
|
62
|
+
if cleaned_content.strip == ''
|
63
|
+
nil
|
64
|
+
else
|
65
|
+
cleaned_content.to_i
|
66
|
+
end
|
46
67
|
end
|
47
68
|
end
|
48
69
|
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'typhoeus'
|
2
|
+
|
3
|
+
module PageRankr
|
4
|
+
module Trackers
|
5
|
+
attr_accessor :site_trackers
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@site_trackers = self.class.constants.collect{|tracker| symbol_for(tracker)}
|
9
|
+
end
|
10
|
+
|
11
|
+
def lookup(site, *trackers)
|
12
|
+
trackers = site_trackers if trackers.empty?
|
13
|
+
|
14
|
+
tracked = {}
|
15
|
+
hydra = Typhoeus::Hydra.new
|
16
|
+
trackers.each do |tracker|
|
17
|
+
name, klass = constant_name(tracker), self.class
|
18
|
+
|
19
|
+
next unless klass.const_defined? name
|
20
|
+
|
21
|
+
tracked[tracker] = klass.const_get(name).new(site)
|
22
|
+
hydra.queue tracked[tracker].request
|
23
|
+
end
|
24
|
+
hydra.run
|
25
|
+
|
26
|
+
tracked.keys.each do |tracker|
|
27
|
+
tracked[tracker] = tracked[tracker].tracked
|
28
|
+
end
|
29
|
+
|
30
|
+
tracked
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def symbol_for(klass)
|
36
|
+
word = klass.to_s.dup
|
37
|
+
word.gsub!(/([A-Z]+)([A-Z][a-z])/){|match| "#{$1}_#{$2}" }
|
38
|
+
word.gsub!(/([a-z\d])([A-Z])/){|match| "#{$1}_#{$2}" }
|
39
|
+
word.tr!("-", "_")
|
40
|
+
word.downcase!
|
41
|
+
word.to_sym
|
42
|
+
end
|
43
|
+
|
44
|
+
def constant_name(sym)
|
45
|
+
sym.to_s.split('_').collect{|str| str.capitalize}.join
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/lib/page_rankr/version.rb
CHANGED
@@ -10,10 +10,10 @@
|
|
10
10
|
code: 200
|
11
11
|
message: OK
|
12
12
|
headers:
|
13
|
+
content-length:
|
14
|
+
- "2455"
|
13
15
|
content-type:
|
14
16
|
- text/xml
|
15
|
-
content-length:
|
16
|
-
- "2454"
|
17
17
|
body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n\
|
18
18
|
\r\n\
|
19
19
|
<ALEXA VER=\"0.9\" URL=\"slocourts.ca.gov/\" HOME=\"0\" AID=\"=\">\r\n\
|
@@ -39,7 +39,7 @@
|
|
39
39
|
<EMAIL ADDR=\"lbatcheldor@co.slo.ca.us\"/>\n\
|
40
40
|
<LANG LEX=\"en\" CODE=\"us-ascii\"/>\n\
|
41
41
|
<LINKSIN NUM=\"60\"/>\n\
|
42
|
-
<SPEED TEXT=\"
|
42
|
+
<SPEED TEXT=\"723\" PCT=\"83\"/>\n\
|
43
43
|
<REVIEWS AVG=\"5.0\" NUM=\"\"/>\n\
|
44
44
|
<CHILD SRATING=\"0\"/>\n\
|
45
45
|
</SD>\n\n\
|
@@ -57,9 +57,9 @@
|
|
57
57
|
</SITE>\n\
|
58
58
|
</DMOZ>\n\
|
59
59
|
<SD>\n\
|
60
|
-
<POPULARITY URL=\"ca.gov/\" TEXT=\"
|
61
|
-
<REACH RANK=\"
|
62
|
-
<RANK DELTA=\"
|
60
|
+
<POPULARITY URL=\"ca.gov/\" TEXT=\"748\"/>\n\
|
61
|
+
<REACH RANK=\"802\"/>\n\
|
62
|
+
<RANK DELTA=\"-30\"/>\n\
|
63
63
|
</SD>\n\
|
64
64
|
</ALEXA>"
|
65
65
|
http_version: "1.1"
|
@@ -10,10 +10,10 @@
|
|
10
10
|
code: 200
|
11
11
|
message: OK
|
12
12
|
headers:
|
13
|
-
content-type:
|
14
|
-
- text/xml
|
15
13
|
content-length:
|
16
14
|
- "278"
|
15
|
+
content-type:
|
16
|
+
- text/xml
|
17
17
|
body: |-
|
18
18
|
<?xml version="1.0" encoding="UTF-8"?>
|
19
19
|
|
@@ -28,7 +28,7 @@
|
|
28
28
|
- !ruby/struct:VCR::HTTPInteraction
|
29
29
|
request: !ruby/struct:VCR::Request
|
30
30
|
method: :get
|
31
|
-
uri: http://
|
31
|
+
uri: http://www.google.com:80/search?q=link%3Aplease-dont-register-a-site-that-breaks-this-test.com
|
32
32
|
body:
|
33
33
|
headers:
|
34
34
|
response: !ruby/struct:VCR::Response
|
@@ -36,34 +36,47 @@
|
|
36
36
|
code: 200
|
37
37
|
message: OK
|
38
38
|
headers:
|
39
|
-
|
40
|
-
-
|
41
|
-
x-frame-options:
|
42
|
-
- SAMEORIGIN
|
39
|
+
date:
|
40
|
+
- Sat, 08 Oct 2011 19:36:06 GMT
|
43
41
|
expires:
|
44
|
-
-
|
45
|
-
|
46
|
-
-
|
42
|
+
- "-1"
|
43
|
+
cache-control:
|
44
|
+
- private, max-age=0
|
47
45
|
content-type:
|
48
|
-
- text/
|
46
|
+
- text/html; charset=ISO-8859-1
|
47
|
+
set-cookie:
|
48
|
+
- PREF=ID=3827873a245013e4:FF=0:TM=1318102566:LM=1318102566:S=TJNGqUd26fNp5fWS; expires=Mon, 07-Oct-2013 19:36:06 GMT; path=/; domain=.google.com
|
49
|
+
- NID=51=FPeTya5jmxq5EjlKwbklfUGanqnLETI5eNLVdDzohKjCdpnZQWgbk1HAUEqMlh6u_1-cICtt7JGVSCSSPu6bI0rHK9EfVr9ARFzdXLzuwZsuENHs3DSCmMf7sQnjPEXI; expires=Sun, 08-Apr-2012 19:36:06 GMT; path=/; domain=.google.com; HttpOnly
|
49
50
|
server:
|
50
|
-
-
|
51
|
-
date:
|
52
|
-
- Mon, 19 Sep 2011 16:01:02 GMT
|
51
|
+
- gws
|
53
52
|
x-xss-protection:
|
54
53
|
- 1; mode=block
|
55
|
-
cache-control:
|
56
|
-
- no-cache, no-store, max-age=0, must-revalidate
|
57
|
-
pragma:
|
58
|
-
- no-cache
|
59
54
|
transfer-encoding:
|
60
55
|
- chunked
|
61
|
-
body:
|
56
|
+
body: |-
|
57
|
+
<!doctype html><head><title>link:please-dont-register-a-site-that-breaks-this-test.com - Google Search</title><script>window.google={kEI:"JqaQTvPJGcfg0QGRto2JAw",getEI:function(a){var b;while(a&&!(a.getAttribute&&(b=a.getAttribute("eid"))))a=a.parentNode;return b||google.kEI},kEXPI:"28936,32034,32410,33067,33076,33104,33345,33408,33446",kCSI:{e:"28936,32034,32410,33067,33076,33104,33345,33408,33446",ei:"JqaQTvPJGcfg0QGRto2JAw"},authuser:0,ml:function(){},kHL:"en",time:function(){return(new Date).getTime()},log:function(a,b,c,e){var d=new Image,f=google,h=f.lc,g=f.li,i="";d.onerror=(d.onload=(d.onabort=function(){delete h[g]}));h[g]=d;if(!c&&b.search("&ei=")==-1)i="&ei="+google.getEI(e);var j=c||"/gen_204?atyp=i&ct="+a+"&cad="+b+i+"&zx="+google.time();d.src=j;f.li=g+1},lc:[],li:0,Toolbelt:{},y:{},x:function(a,b){google.y[a.id]=[a,b];return false}};
|
58
|
+
|
59
|
+
window.google.sn="web";var i=window.google.timers={};window.google.startTick=function(a,b){i[a]={t:{start:(new Date).getTime()},bfr:!(!b)}};window.google.tick=function(a,b,c){if(!i[a])google.startTick(a);i[a].t[b]=c||(new Date).getTime()};google.startTick("load",true);try{}catch(v){}
|
60
|
+
var _gjwl=location;function _gjuc(){var e=_gjwl.href.indexOf("#");if(e>=0){var a=_gjwl.href.substring(e);if(a.indexOf("&q=")>0||a.indexOf("#q=")>=0){a=a.substring(1);if(a.indexOf("#")==-1){for(var c=0;c<a.length;){var d=c;if(a.charAt(d)=="&")++d;var b=a.indexOf("&",d);if(b==-1)b=a.length;var f=a.substring(d,b);if(f.indexOf("fp=")==0){a=a.substring(0,c)+a.substring(b,a.length);b=c}else if(f=="cad=h")return 0;c=b}_gjwl.href="/search?"+a+"&cad=h";return 1}}}return 0}function _gjp(){!(window._gjwl.hash&&
|
61
|
+
window._gjuc())&&setTimeout(_gjp,500)};
|
62
|
+
window._gjp && _gjp()</script><style>#gbar,#guser{font-size:13px;padding-top:1px !important}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}</style><style id=gstyle>body{color:#000;margin:3px 0;overflow-y:scroll}body,#leftnav,#tbdi,#atd,#tsf,#hidden_modes,#hmp{background:#fff}a.gb1,a.gb2,a.gb3,.link{color:#2200C1!important}.ts{border-collapse:collapse}.ts td{padding:0}.ti,.bl,#res h3{display:inline}.ti{display:inline-table}#tads a.mblink,#tads a.mblink b,#tadsb a.mblink,#tadsb a.mblink b,#tadsto a.mblink,#tadsto a.mblink b,#rhs a.mblink,#rhs a.mblink b{color:#2200C1!important}a:link,.w,#prs a:visited,#prs a:active,.q:active,.q:visited,.kl:active{color:#2200C1}.mblink:visited,a:visited{color:#551a8b}.vst:link{color:#551a8b}.cur,.b{font-weight:bold}.j{width:42em;font-size:82%}.s{max-width:42em}.sl{font-size:82%}.hd{position:absolute;width:1px;height:1px;top:-1000em;overflow:hidden}.gl,.f,.m,.c h2,#mbEnd h2,#tads h2,#tadsb h2,#tadsto h2,.descbox{color:#767676}.a,cite,cite a:link,cite a:visited,.cite,.cite:link,#mbEnd cite b,#tads cite b,#tadsb cite b,#tadsto cite b,#ans>i{color:#0e774a;font-style:normal}.ng{color:#c11}h1,ol,ul,li{margin:0;padding:0}li.g,body,html,.std,.c h2,#mbEnd h2,h1{font-size:small;font-family:arial,sans-serif}.c h2,#mbEnd h2,h1{font-weight:normal}.clr{clear:both;margin:0 8px}.blk a{color:#000}#nav a{display:block}#nav .i{color:#a90a08;font-weight:bold}.csb,.ss,.play_icon,.mini_play_icon,.micon,.licon,.close_btn,#tbp,.mbi,.inline_close_btn{background:url(/images/srpr/nav_logo80.png) no-repeat;overflow:hidden}.csb,.ss{background-position:0 0;height:40px;display:block}.ss{background-position:0 -91px;position:absolute;left:0;top:0}.cps{height:18px;overflow:hidden;width:114px}.spell{font-size:16px}.spell_orig{font-size:13px;text-decoration:none}a.spell_orig:hover{text-decoration:underline}.mbi{background-position:-153px -70px;display:inline-block;float:left;height:13px;margin-right:3px;margin-top:1px;width:13px}#nav td{padding:0;text-align:center}#logo span,.lsb{background:url(/images/srpr/nav_logo80.png) no-repeat;overflow:hidden}#logo{color:#fff;display:block;height:49px;margin:9px 0 0;overflow:hidden;position:relative;width:137px}#logo img{border:0;left:-0px;position:absolute;top:-41px}#logo span{cursor:pointer}.lst-b,.lst{border:1px solid #ccc;border-bottom:none;height:26px;padding:4px 0 0}.lst{-moz-box-sizing:content-box;background:#fff;color:#000;float:left;padding-left:6px;padding-right:10px;vertical-align:top;width:100%}.lst-b{border-right:none}.lst-td{border-bottom:1px solid #999;padding-right:16px}.lst:focus{outline:none}.gsfi,.lst{font:18px arial,sans-serif}.gsfs{font:17px arial,sans-serif}.ds{border-right:1px solid #e7e7e7;position:relative;height:32px;z-index:100}.lsbb{background:#eee;border:1px solid #999;border-top-color:#ccc;border-left-color:#ccc;height:30px}.lsb{font:15px arial,sans-serif;background-position:bottom;border:0;color:#000;cursor:pointer;height:30px;margin:0;vertical-align:top}.lsb:active{background:#ccc}form{display:inline}input{-moz-box-sizing:content-box;-moz-padding-start:0;-moz-padding-end:0}.tia input{border-right:none;padding-right:0}.lsd{font-size:11px;position:absolute;top:3px;left:16px}.ch{cursor:pointer}h3,.med{font-size:medium;font-weight:normal;padding:0;margin:0}.e{margin:2px 0 .75em}.slk div{padding-left:12px;text-indent:-10px}.fc{margin-top:.5em;padding-left:16px}#mbEnd cite{text-align:left}#rhs_block{margin-bottom:-20px}#bsf,.blk{border-top:1px solid #6b90da;background:#f0f7f9}#bsf{border-bottom:1px solid #6b90da}#cnt{clear:both}#res{padding-right:1em;margin:0 16px}.c{background:#fff8e7;margin:0 8px}.c li{padding:0 3px 0 8px;margin:0}#mbEnd li{margin:1em 0;padding:0}.xsm{font-size:x-small}ol li{list-style:none}#ncm ul li{list-style-type:disc}.sm li{margin:0}.gl,#foot a,.nobr{white-space:nowrap}#mbEnd .med{white-space:normal}.sl,.r{display:inline;font-weight:normal;margin:0}.r{font-size:medium}h4.r{font-size:small}.mr{margin-top:6px}h3.tbpr{margin-top:.4em;margin-bottom:1.2em}img.tbpr{border:0px;width:15px;height:15px;margin-right:3px}.jsb{display:block}.nojsb{display:none}.nwd{font-size:10px;padding:16px;text-align:center}.ri_cb{left:0;margin:6px;position:absolute;top:0;z-index:1}.ri_sp{display:-moz-inline-box;display:inline-block;text-align:center;vertical-align:top;margin-bottom:6px}.ri_of{opacity:0.40;}.ri_sp img{vertical-align:bottom}.so{margin-top:2px;position:relative;white-space:normal}.so img{border:0;margin-left:0;margin-right:1px;vertical-align:top}.son{position:relative}.so .soh{background-color:#FFFFD2;border:1px solid #FDF0BF;color:#000;display:none;font-size:8pt;padding:3px;position:absolute;white-space:nowrap;z-index:10}.soi{background:#ebeff9;line-height:22px;padding:0 4px;position:static;vertical-align:middle}.soi a{white-space:nowrap}.soi img{margin-top:-3px;vertical-align:middle}.soi .lsbb{display:inline-block;height:20px;margin-bottom:4px}.soi .lsb{background-repeat:repeat-x;font-size:small;height:20px;padding:0 5px}#rhs_block .so{display:block;font-size:11px}.siw{display:inline-block;position:relative}.sia{background-color:#4c4c4c;bottom:0;font-size:11px;margin:4px;padding-left:2px;position:absolute}.sia .f, .sia a.fl:link, .sia a.fl:visited{color:white!important;overflow:hidden;text-overflow:ellipsis;width:100%;white-space:nowrap}.ps-map{float:left}.ps-map img{border:1px solid #00c}a.tiny-pin,a.tiny-pin:link,a.tiny-pin:hover{text-decoration:none;color:#36c}a.tiny-pin:hover span{text-decoration:underline}.tiny-pin table{vertical-align:middle}.tiny-pin p{background-image:url(/images/srpr/nav_logo80.png);background-position:-117px -91px;height:15px;margin:0;padding:0;top:-1px;overflow:hidden;position:relative;width:9px;}.pspa-price{font-size:medium;font-weight:bold}.pspa-call-price{font-size:small;font-weight:bold}.pspa-store-avail{color:#282}.pspa-out-of-stock{color:#c11}li.ppl{margin-bottom:11px;padding:6px;position:relative}#ppldir #ppldone, #ppldir #pplundo, #ppldir #pplcancel{color:#00f;cursor:pointer;text-decoration:underline}#ppldir{background:rgb(247,243,181);display:none;line-height:1.5em;outline:1px solid rgb(255,185,23);padding:6px 4px 6px 6px;position:absolute;width:90%;z-index:20}#ppldir.working{display:block}.pplclustered .pplclusterhide{visibility:hidden}.pplclustered .pplfeedback, .pplclustered .pplclusterdrop{display:none !important}.pplfeedback{right:5px;background:rgba(235, 242, 252, 1.0);border:1px solid #afafaf;color:#333 !important;cursor:pointer;display:none;font-size:1.0em;float:right;margin-top:5px;margin-right:5px;opacity:1.0;padding:5px 10px;position:absolute;text-decoration:none;top:5px;vertical-align:middle;white-space:nowrap}.pplfeedback:active{background-color:rgba(255, 255, 255, 1.0)}li.ppl:hover .pplfeedback{opacity:1.0}.pplclustered:hover{border:0px;background-color:'' !important;margin-left:0px !important}li.ppl:hover{background-color:#ebf2fc;border:1px solid #cddcf9;padding:5px}.pplselected{background-color:#EBF2FC}.ppldragging{background-color:#B2D2FF}li.g.ppld{margin-bottom:0px;padding:3px}li.g.ppld:hover{padding:2px}.ppl_thumb_src{color:#767676;font-size:0.8em;line-height:1.3em;overflow:hidden;text-overflow:ellipsis;padding:0;text-align:center;width:70px}a.pplatt:link{color:#767676;text-decoration:none}a.pplatt:hover{color:#767676;text-decoration:underline}li.ppl:hover .pplfeedback{display:block}.ppl_thy{color:#767676;margin-left:3px}.ppl_crc{margin:35px 10px 0px 0px;display:none}.fbbtn{margin-left:5px;width:35px}.uh_h,.uh_hp,.uh_hv{display:none;position:fixed;visibility:hidden}.uh_h {height:0px;left:0px;top:0px;width:0px;}.uh_hv{background:#fff;border:1px solid #999;-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.5);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0,0.5);box-shadow:2px 2px 5px rgba(0,0,0,0.5);margin:-8px;padding:8px;background-color:#fff;visibility:visible}.uh_hp,.uh_hv,#uh_hp.v{display:block;z-index:5000}#uh_hp{-moz-box-shadow:1px 1px 5px #000;-webkit-box-shadow:1px 1px 5px #000;box-shadow:1px 1px 5px #000;display:none;opacity:.7;position:fixed}#uh_hpl{cursor:pointer;display:block;height:100%;outline-color:-moz-use-text-color;outline-style:none;outline-width:medium;width:100%}.uh_hi {border:0;display:block;margin:0 auto 4px}.uh_hx {opacity:0.5}.uh_hx:hover {opacity:1}.uh_hn,.uh_hr,.uh_ht,.uh_ha{margin:0 1px -1px;padding-bottom:1px;overflow:hidden}.uh_ht{font-size:123%;line-height:120%;max-height:1.2em;word-wrap:break-word}.uh_hn{line-height:120%;max-height:2.4em}.uh_hr{color:#0E774A;white-space:nowrap}.uh_ha{color:#777;white-space:nowrap}a.uh_hal{color:#36c;text-decoration:none}a:hover.uh_hal {text-decoration:underline}.speaker-icon-listen-off{background:url(//ssl.gstatic.com/dictionary/static/images/icons/1/pronunciation.png);opacity:0.55;filter:alpha(opacity=55);border:1px solid transparent;display:inline-block;float:none;height:16px;vertical-align:bottom;width:16px}.speaker-icon-listen-off:hover{opacity:1.0;filter:alpha(opacity=100);cursor:pointer;}.speaker-icon-listen-on{background:url(//ssl.gstatic.com/dictionary/static/images/icons/1/pronunciation.png);opacity:1.0;filter:alpha(opacity=100);border:1px solid transparent;display:inline-block;float:none;height:16px;vertical-align:bottom;width:16px}.speaker-icon-listen-on:hover{opacity:1.0;filter:alpha(opacity=100);cursor:pointer;}ul.lsnip{font-size:90%}.lsnip > li{overflow:hidden;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;white-space:nowrap}table.tsnip{font-size:90%;border-spacing:0;border-collapse:collapse;border-style:hidden;margin:2px 0 0}table.tsnip td,table.tsnip th{padding:0 10px 0 0;border-top:1px solid #ddd;margin:0;line-height:15px;text-align:left}table.tsnip th{color:#777;font-weight:normal}.rsw-remove-inactive{visibility:hidden}.rsw-remove-active{background:url("/images/srpr/nav_logo80.png") no-repeat scroll -124px -230px transparent;height:7px;width:7px}.rsw-remove-active:hover{background-position:-132px -230px}.rsw-starred,.rsw-half-starred,.rsw-unstarred{background:url("/images/srpr/nav_logo80.png") no-repeat scroll transparent;float:left;overflow:hidden;position:relative;height:13px;width:12px}.rsw-unstarred{background-position:0px -110px}.rsw-starred{background-position:-60px -192px}.rsw-half-starred{background-position:-131px -192px}.rsw-angry-active,.rsw-angry-inactive,.rsw-happy-active,.rsw-happy-inactive{background:url("/images/srpr/nav_logo80.png") no-repeat scroll transparent;height:12px;width:12px}.rsw-angry-active{background-position:-76px -243px}.rsw-angry-inactive{background-position:-102px -243px}.rsw-angry-inactive:hover{background-position:-89px -243px}.rsw-happy-active{background-position:-88px -111px}.rsw-happy-inactive{background-position:-63px -243px}.rsw-happy-inactive:hover{background-position:-50px -243px}.comment-box-tip{color:#666}.comment-box-readonly-quoted{font-style:italic}.mbl{margin:1em 0 0}em{font-weight:bold;font-style:normal}li.w0 .ws,td.w0 .ws{opacity:0.5}li.w0:hover .ws,td.w0:hover .ws{opacity:1}ol,ul,li{border:0;margin:0;padding:0}li{line-height:1.2}li.g{margin-top:0;margin-bottom:14px}.ibk,#productbox .fmg{display:-moz-inline-box;display:inline-block;*display:inline;vertical-align:top;zoom:1}.tsw{width:595px}#cnt{min-width:780px;max-width:1144px;margin:0 auto;padding-top:17px;}.gbh{top:24px}#gbar{margin-left:8px;height:20px}#guser{margin-right:8px;padding-bottom:5px!important}#rhs{width:264px}.tsf-p{margin-left:168px;margin-right:272px;max-width:711px}.mbi{margin-bottom:-1px}.uc{margin-left:159px}#center_col,#foot{margin-left:159px;margin-right:264px;padding:0 8px}#subform_ctrl{font-size:11px;min-height:26px;margin-left:176px;margin-right:272px;max-width:695px;padding-top:3px;}#subform_ctrl a.gl{color:#36c}#center_col{border-left:1px solid #d3e1f9;clear:both}#brs p{margin:0;padding-top:5px}.brs_col{display:inline-block;float:left;font-size:small;white-space:nowrap;padding-right:16px;margin-top:-1px;padding-bottom:1px}#tads,#tadsb,#tadsto{margin-bottom:8px!important;z-index:0}#tads li,#tadsb li,#tadsto li{padding:1px 0}#tads li.taf,#tadsb li.taf,#tadsto li.taf{padding:1px 0 0}#tads li.tam,#tadsb li.tam,#tadsto li.tam{padding:14px 0 0}#tads li.tal,#tadsb li.tal,#tadsto li.tal{padding:14px 0 1px}#res{border:0;margin:0;padding:4px 8px 0}#ires{padding-top:1px}.mbl{margin-top:5px}.play_icon{background-position:;height:px;margin-left:64px;margin-top:44px;width:px}#leftnav li{display:block}.micon,.licon,.close_btn,.inline_close_btn{border:0}#leftnav h2{font-size:small;color:#767676;font-weight:normal;margin:8px 0 0;padding-left:8px;width:143px}#tbbc dfn{padding:4px}#tbbc.bigger .std{font-size:154%;font-weight:bold;text-decoration:none}.close_btn{background-position:-138px -84px;float:right;height:14px;width:14px}.inline_close_btn{display:inline-block;vertical-align:text_bottom;background-position:-138px -84px;height:14px;width:14px}.videobox{padding-bottom:3px}#leftnav a{text-decoration:none}#leftnav a:hover{text-decoration:underline}.mitem,#showmodes{font-size:15px;line-height:24px;padding-left:8px}.mitem{margin-bottom:2px}.mitem .q{display:block}.msel{height:22px;padding-bottom:2px;margin-bottom:0;font-weight:bold}.micon{float:left;height:19px;margin-top:2px;margin-right:6px;outline:none;width:19px}#showmodes .micon{background-position:-150px -114px;height:17px;margin-left:1px;margin-right:6px;width:17px}.licon{background-position:-153px -99px;float:left;height:14px;margin-right:3px;width:14px}.open #showmodes .micon{background-position:-132px -114px}.open .msm,.msl{display:none}.open .msl{display:inline}.open #hidden_modes,.open #hmp{display:block}#swr li{border:0;font-size:13px;line-height:1.2;margin:0 0 4px;margin-right:8px;padding-left:1px}#tbd,#atd{display:block;margin-top:8px;min-height:1px}.tbt{font-size:13px;line-height:1.2}.tbnow{white-space:nowrap}.tbou,.tbos,.tbots,.tbotu{margin-right:8px;padding-left:16px;padding-bottom:3px;text-indent:-8px}.tbos,.tbots{font-weight:bold}#leftnav .tbots a{color:#000!important;cursor:default;text-decoration:none}.tbfo .tbt,.tbpd,.tbst ul{margin-bottom:8px}.tbst{margin-top:8px}#season_{margin-top:8px}#iszlt_sel.tbcontrol_vis{margin-left:0}.tbpc,.tbpo,.lcsc,.lcso{font-size:13px}.tbpc,.tbo .tbpo,.lco .lcsc{display:inline}.tbo .tbpc,.tbpo,.lco .lcso,.lcsc,#set_location_section{display:none}.lco #set_location_section{display:block}.lcot{margin:0 8px;}.tbo #tbp,.lco .licon,.obsmo #obsmti{background-position:-138px -99px!important}#prc_opt label,#prc_ttl{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}#cdr_opt,#loc_opt,#prc_opt{padding-left:8px;text-indent:0}.tbou #cdr_frm,.tbou #cloc_frm {display:none}#cdr_frm,#cdr_min,#cdr_max{}#cdr_min,#cdr_max{font-family:arial,sans-serif;width:100%}#cdr_opt label{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}.cdr_lbl{float:left;padding-top:5px}.cdr_hl{height:0;visibility:hidden}.cdr_inp{min-width:64px;overflow:hidden;padding-right:6px}.cdr_ctr{clear:both;overflow:hidden;padding:1px 0}.cdr_inp.cdr_hint{font-size:84%;font-weight:normal;min-width:70px;padding-bottom:2px;padding-right:0}.cdr_inp.cdr_btn{min-width:70px;padding-right:0}.cdr_err{color:red;font-size:84%;font-weight:normal}.gb-button,.gb-button-hilite {border: solid 1px #aaa;border-radius: 2px;cursor: pointer;display: -moz-inline-box;display: inline-block;font: normal normal normal 13px/140% 'arial', 'sans-serif';margin: 0 0 4px 0;outline: none;padding: 1px 10px;position: relative;text-decoration: none !important;vertical-align: middle;text-align: center;user-select: none;text-shadow: none;white-space: nowrap;width: 80px;-webkit-border-radius: 3px;-webkit-user-select: none;-moz-border-radius: 3px;-moz-user-select: none;}* html .gb-button,* html .gb-button-hilite {display: inline;margin-bottom: 0;}* html input.gb-button,* html input.gb-button-hilite {padding: 0;height: 23px;}*:first-child+html .gb-button,*:first-child+html .gb-button-hilite {display: inline;margin-bottom: 0;}*:first-child+html input.gb-button,*:first-child+html input.gb-button-hilite {padding: 0;height: 23px;}.gb-button {background: #f0f0f0;background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#F9F9F9), to(#E3E3E3));background-image: -moz-linear-gradient(center top, #F9F9F9 25%, #E3E3E3 75%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9, endColorstr=#E3E3E3);-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9, endColorstr=#E3E3E3)";border-color: #ccc #ccc #a0a0a0 #ccc;color: #000 !important;text-shadow: 0 0 1px #eee;-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);box-shadow: inset inset 0 1px 1px rgba(0,0,0,0.1);}.gb-button:active {background: #E3E3E3;background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#E3E3E3), to(#F9F9F9));background-image: -moz-linear-gradient(center top, #E3E3E3 25%, #F9F9F9 75%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#E3E3E3, endColorstr=#F9F9F9);-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#E3E3E3, endColorstr=#F9F9F9)";}.gb-button:hover {border-color: #666 #666 #444 #666;}.gb-button-hilite {background: #3d79d0;background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#4c91e8), to(#336ac1));background-image: -moz-linear-gradient(center top, #4c91e8 25%, #336ac1 75%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c91e8, endColorstr=#336ac1);-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c91e8, endColorstr=#336ac1)";border-color: #2525ea #2525ea #151596 #2525ea;color: #fff !important;font-weight: bold;-moz-box-shadow: inset 0 1px 1px rgba(255,255,255,0.5);-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.5);box-shadow: inset 0 1px 1px rgba(255,255,255,0.5);}.gb-button-hilite:active {background: #336ac1;background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#336ac1), to(#4c91e8));background-image: -moz-linear-gradient(center top, #336ac1 25%, #4c91e8 75%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#336ac1, endColorstr=#4c91e8);-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#336ac1, endColorstr=#4c91e8)";}.gb-button-hilite:hover {border-color: #0f0f68 #0f0f68 #08083a #0f0f68;}#mbEnd,.rhss{margin:0 0 32px;margin-left:8px}#mbEnd{margin-top:5px}#mbEnd h2{color:#767676}#mbEnd li{margin:12px 0 0}a:link,.w,.q:active,.q:visited,.tbotu{color:#2200C1;cursor:pointer}a.fl:link,.fl a,.flt,a.flt,.gl a:link,a.mblink,.mblink b{color:#36c}.osl a,.gl a,#tsf a,a.mblink,a.gl,a.fl,.slk a,.bc a,.flt,a.flt u,.oslk a,#tads .ac a,#tadsb .ac a,#rhs .ac a,.blg a{text-decoration:none}.osl a:hover,.gl a:hover,#tsf a:hover,a.mblink:hover,a.gl:hover,a.fl:hover,.slk a:hover,.bc a:hover,.flt:hover,a.flt:hover u,.oslk a:hover,.tbotu:hover,#tads .ac a:hover,#tadsb .ac a:hover,#rhs .ac a:hover,.blg a:hover{text-decoration:underline}#ss-box a:hover{text-decoration:none}#tads .mblink,#tadsb .mblink,#tadsto .mblink,#rhs .mblink{text-decoration:underline}.hpn,.osl{color:#767676}div#gbi,div#gbg{border-color:#a2bff0 #558be3 #558be3 #a2bff0}div#gbi a.gb2:hover,div#gbg a.gb2:hover,.mi:hover{background-color:#558be3}#guser a.gb2:hover,.mi:hover,.mi:hover *{color:#fff!important}#guser{color:#000}#imagebox_big img{padding:2px!important}#imagebox_bigimages .th{border:0}#productbox .fmg{margin-top:7px;padding-right:4px;text-align:left}#productbox .lfmg{padding-right:0}#foot .ftl{margin-right:12px}#foot a.slink{text-decoration:none;color:#36c}#fll a,#bfl a{color:#36c;margin:0 12px;text-decoration:none}#foot a:hover{text-decoration:underline}#foot a.slink:visited{color:#551a8b}#blurbbox_bottom{color:#767676}.stp{margin:7px 0 17px}.ssp{margin:.33em 0 17px}#mss {margin:.33em 0 0;padding:0;display:table}.mss_col {display:inline-block;float:left;font-size:small;white-space:nowrap;padding-right:16px;}#mss p{margin:0;padding-top:5px}#gsr a:active,a.fl:active,.fl a:active,.gl a:active{color:#c11}.obsmo #obsmtxt, #obsltxt{display:none}.obsmo #obsltxt{display:inline}#obsmtc a{text-decoration:none}#obsmtc a:hover{text-decoration:underline}.authorship_aff{color:gray;display:block;}.authorship_link{color:#2b65ec;text-decoration:none;}.authorship_link:hover{cursor:pointer;text-decoration:underline;}.authorship_note{color:black;display:block;}.authorship_popup{background-color:white;border:solid #888888 1px;box-shadow:2px 2px 3px #cbc8c8;float:left;font-size:12px;left:0;padding:2px;position:absolute;text-align:left;text-decoration:none;top:0.2em;width:325px;z-index:300;-moz-box-shadow:2px 2px 3px #cbc8c8;-webkit-box-shadow:2px 2px 3px #cbc8c8;}.authorship_popup a:hover{cursor:pointer}.authorship_slk{color:#2b65ec;display:block;text-decoration:none;}.authorship_table{vertical-align:top}.authorship_title{color:#7a5dc7;display:block;font-size:13px;font-weight:bold}</style><noscript><style>.jsb{display:none}.nojsb{display:block}.nojsv{visibility:visible}</style></noscript><script></script></head><body id=gsr topmargin=3 marginheight=3><div id=mngb><div id=gbar><nobr><b class=gb1>Web</b> <a class=gb1 href="http://www.google.com/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&um=1&ie=UTF-8&hl=en&tbm=isch&source=og&sa=N&tab=wi">Images</a> <a class=gb1 href="http://www.google.com/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=wv">Videos</a> <a class=gb1 href="http://maps.google.com/maps?q=link:please-dont-register-a-site-that-breaks-this-test.com&um=1&ie=UTF-8&hl=en&sa=N&tab=wl">Maps</a> <a class=gb1 href="http://www.google.com/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&um=1&ie=UTF-8&hl=en&tbo=u&tbm=nws&source=og&sa=N&tab=wn">News</a> <a class=gb1 href="http://www.google.com/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&um=1&ie=UTF-8&hl=en&tbo=u&tbm=shop&source=og&sa=N&tab=wf">Shopping</a> <a class=gb1 href="https://mail.google.com/mail/?hl=en&tab=wm">Gmail</a> <a class=gb1 style="text-decoration:none" href="http://www.google.com/intl/en/options/"><u>More</u> »</a></nobr></div><div id=guser width=100%><nobr><span id=gbn class=gbi></span><span id=gbf class=gbf></span><span id=gbe></span><a href="http://www.google.com/history/optout?hl=en" class=gb4>Web History</a> | <a href="/preferences?hl=en" class=gb4>Settings</a> | <a id=gb_70 href="https://www.google.com/accounts/ServiceLogin?hl=en&continue=http://www.google.com/search%3Fq%3Dlink:please-dont-register-a-site-that-breaks-this-test.com" class=gb4>Sign in</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div></div><textarea id=csi style=display:none></textarea><textarea id=wwcache style=display:none></textarea><div id=cnt><div id=sfcnt><form action="/search" id=tsf method=GET name=gs onsubmit="return q.value!=''" role=search style="display:block;margin:0;background:none"><input type=hidden name=hl value="en"><input type=hidden name=ie value="ISO-8859-1"><div><div style="float:left;margin-top:-7px;padding:0 18px 0 12px"><h1><a id=logo href="http://www.google.com/webhp?hl=en" title="Go to Google Home">Google<img width=167 height=288 src="/images/srpr/nav_logo80.png" alt=""></a></h1></div><div class=tsf-p style="padding-bottom:2px"><table border=0 cellpadding=0 cellspacing=0 style="position:relative;z-index:2;padding:8px 0 0;border-bottom:solid 1px #e7e7e7"><tr><td class="lst-td" width=100%><div style="position:relative;zoom:1"><input autocomplete=off class=lst type=text name=q maxlength=2048 value="link:please-dont-register-a-site-that-breaks-this-test.com" title="Search"><span id=tsf-oq style="display:none">link:please-dont-register-a-site-that-breaks-this-test.com</span></div> <td><div class=ds id=sbds><div class="lsbb kpbb" id=sblsbb><input type=submit name="btnG" class=lsb value="Search" /></div></div><td><div style="position:relative;height:30px;z-index:2"><div class=lsd></div></div></table></div></div></form></div><style>#center_col{min-width:562px}</style><script>(function(){var a=document.gs&&document.gs.q;if(!a)return;a.focus();var b=a.createTextRange;if(b){var c=b();c.collapse(false);c.select()}})();
|
63
|
+
</script><div id=subform_ctrl><div style="float:right"><a href="/advanced_search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns" class="gl nobr" id="sflas">Advanced search</a></div><div></div></div><div id=rcnt style="position:relative;zoom:1"><div id=leftnav role=navigation style="padding-top:3px;padding-left:4px;position:absolute;top:0;width:151px" onclick="google.srp&&google.srp.qs(event)"><div id=ms><ul><li class="mitem msel"><span class="micon" style="background-position:-20px -132px"></span>Everything</li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=isch&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=2&ved=0CAcQ_AUoAQ"><span class="micon" style="background-position:-40px -132px"></span>Images</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=vid&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=3&ved=0CAgQ_AUoAg"><span class="micon" style="background-position:-80px -132px"></span>Videos</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=nws&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=4&ved=0CAkQ_AUoAw"><span class="micon" style="background-position:-120px -132px"></span>News</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=shop&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=5&ved=0CAoQ_AUoBA"><span class="micon" style="background-position:-120px -152px"></span>Shopping</a></li></ul><ul class=nojsb id="hidden_modes"><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=bks&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=6&ved=0CAsQ_AUoBQ"><span class="micon" style="background-position:-40px -152px"></span>Books</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=plcs&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=7&ved=0CAwQ_AUoBg"><span class="micon" style="background-position:-80px -152px"></span>Places</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=blg&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=8&ved=0CA0Q_AUoBw"><span class="micon" style="background-position:0 -152px"></span>Blogs</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=dsc&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=9&ved=0CA4Q_AUoCA"><span class="micon" style="background-position:0 -172px"></span>Discussions</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=rcp&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=10&ved=0CA8Q_AUoCQ"><span class="micon" style="background-position:-120px -172px"></span>Recipes</a></li><li class="mitem"><a class="q qs" href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&source=lnms&tbm=pts&ei=JqaQTvPJGcfg0QGRto2JAw&sa=X&oi=mode_link&ct=mode&cd=11&ved=0CBAQ_AUoCg"><span class="micon" style="background:url(/images/srpr/icons/patents.png);background-position:0 0"></span>Patents</a></li></ul><a href="#" id=showmodes class="jsb nj q" onclick="google.x(this.id,function(){google.srp.toggleModes()});google.log('', '\x26ved\x3d0CAUQ_gU' +'&ei=' + google.kEI);return false" style="border-bottom:1px solid #c9d7f1; padding-bottom:9px"><span class="micon"></span><span class="msm">More</span><span class="msl">Fewer</span></a></div><div style="clear:both;overflow:hidden"><h2 class=hd>Search Options</h2><ul id=tbd class="med"><li class=jsb style='display:none'><ul class="tbt"></ul><li class=jsb style='display:none'><ul class="tbt"></ul></ul><a href="/search?q=link:please-dont-register-a-site-that-breaks-this-test.com&hl=en&ie=UTF-8&prmd=ivns&tbo=1" class="nj q" id=tbpi style="clear:both;display:block;margin:8px"><nobr class=tbpo>Hide search tools</nobr><nobr class=tbpc>Show search tools</nobr></a></div></div><div id=center_col><div id=res class=med role=main><div id=topstuff><div class=med><p style=margin-top:0>Your search - <b>link:please-dont-register-a-site-that-breaks-this-test.com</b> - did not match any documents. <p style=margin-top:1em>Suggestions:<ul style="margin:0 0 2em;margin-left:1.3em"><li>Make sure all words are spelled correctly.<li>Try different keywords.<li>Try more general keywords.</ul></div></div><div id=uh_hp><a id=uh_hpl></a></div><div id=uh_h><a id=uh_hl></a></div></div> </div> </div> <div id=foot class=tsf-p role=contentinfo><div id=navcnt><table id=nav style="border-collapse:collapse;text-align:left;direction:ltr;margin:17px auto 0"><tr valign=top></table></div><div style="height:1px;line-height:0"></div><div id=fll style="margin:19px auto;text-align:center"><a href="/">Google Home</a><a href="/intl/en/ads/">Advertising Programs</a><a href="/services/">Business Solutions</a><a href="/intl/en/privacy.html">Privacy</a><a href="/intl/en/about.html">About Google</a></div></div><div id=bfoot></div></div> <textarea style="display:none" id=hcache></textarea><div id=xjsd></div><div id=xjsi><script>if(google.y)google.y.first=[];google.dlj=function(b){window.setTimeout(function(){var a=document.createElement("script");a.src=b;document.getElementById("xjsd").appendChild(a)},0)};
|
64
|
+
if(google.y)google.y.first=[];if(!google.xjs){google.dstr=[];google.rein=[];if(google.timers&&google.timers.load.t){google.timers.load.t.xjsls=new Date().getTime();}google.dlj('/extern_js/f/CgJlbhICdXMgACswRTgALCswWjgALCswDjgALCswFzgALCswPDgALCswUTgALCswmAE4ACwrMAo4AEAvmgICaGUsKzAWOAAsKzAZOAAsKzAlOAAsKzBBOAAsKzBNOAAsKzBOOAAsKzBUOAAsKzBjOAAsKzBpOAAsKzCSATgALCswrAE4ACwrMBg4ACwrMCY4AJoCA3d0bSyAAlCQAlI/3XMfkqC9dB8.js');google.xjs=1}window.mbtb1={tbm:"",tbs:"",docid:"15878089580826327874",usg:"16f2",obd:false};google.base_href='/search?q\x3dlink:please-dont-register-a-site-that-breaks-this-test.com\x26hl\x3den\x26ie\x3dUTF-8\x26prmd\x3divns';google.sn='web';google.Toolbelt.atg=[7,8];google.Toolbelt.pbt=[];google.Toolbelt.pti={};var oldElement=document.getElementById('tbt3');if(oldElement){oldElement.parentNode.removeChild(oldElement);}delete google.ww;google.mc=[];google.mc=google.mc.concat([[69,{}],[14,{}],[60,{}],[81,{}],[152,{}],[78,{}],[25,{"g":8,"k":false,"m":{"bks":true,"blg":true,"dsc":true,"evn":true,"flm":true,"frm":true,"isch":true,"klg":true,"mbl":true,"nws":true,"plcs":true,"ppl":true,"prc":true,"pts":true,"rcp":true,"shop":true,"vid":true},"t":null}],[105,{}],[22,{"m_errors":{"32":"Sorry, no more results to show.","default":"\u003Cfont color=red\u003EError:\u003C/font\u003E The server could not complete your request. Try again in 30 seconds."},"m_tip":"Click for more information"}],[77,{}],[146,{}],[99,{}],[84,{}],[24,{}],[38,{}]]);google.y.first.push(function(){try{;var form=document.gs||document.f||document.gs||document.gbqf;google.ac.i(form,form.q,'','link:please-dont-register-a-site-that-breaks-this-test.com','',{p:1,sw:1,hl:1,o:1,vc:-3,i:1,d:1,l:1,c:1},'serp',{"dh":true,"host":"google.com","jsonp":true,"msgs":{"lcky":"I'm Feeling Lucky","lml":"Learn more","psrc":"This search was removed from your <a href=\"/history\">Web History</a>","psrl":"Remove","srch":"Google Search"}});var a={};a.hover={};a.hover.HOVER_DELAY=400;a.hover.g=[];a.hover.a={};a.hover.init=function(){for(var b=google.dom.getAll(".son"),c=0,d;d=b[c];c++)a.hover.initHoversForParent(d)};a.hover.initHoversForParent=function(b){var c=google.dom.getAll(".soha",b);b=google.dom.getAll(".soh",b);if(c.length==b.length)for(var d=0,e;e=c[d];d++){var f=b[d];a.hover.h(e,f)}};a.hover.h=function(b,c){a.hover.d(b,"mouseover",a.hover.getOnMouseOver(b,c));a.hover.d(b,"mouseout",a.hover.getOnMouseOut(b,c))};
|
65
|
+
a.hover.d=function(b,c,d){google.listen(b,c,d);b={object:b,eventType:c,handler:d};a.hover.g.push(b)};a.hover.showHover=function(b){b.style.display="block";b.style.top="24px";b.style.left="0"};a.hover.hideHover=function(b){b.style.display="none"};a.hover.getOnMouseOver=function(b,c){return function(d){if(a.hover.a[d]==undefined){var e=window.setTimeout(function(){a.hover.showHover(c)},a.hover.HOVER_DELAY);a.hover.a[d]=e}}};
|
66
|
+
a.hover.getOnMouseOut=function(b,c){return function(d){window.clearTimeout(a.hover.a[d]);a.hover.a[d]=undefined;a.hover.hideHover(c)}};a.hover.c=function(){for(var b;b=a.hover.g.pop();)google.unlisten(b.object,b.eventType,b.handler);for(var c in a.hover.a)window.clearTimeout(a.hover.a[c]);a.hover.a={}};google.dstr.push(a.hover.c);google.rein.push(function(){a.hover.c();a.hover.init()});google.sos=a;google.sos.hover.init();
|
67
|
+
;var c,d=0;google.adsInLU={};google.adsInLU.featuresCallback=function(b){if(!b||!b.length)return null;var a=b[0];if(!a.extendedContent)return null;if(a.extendedContent.adsinlu)return a.extendedContent.adsinlu.url;else if(a.extendedContent["9"]&&a.extendedContent["9"].index){var e=a.extendedContent["9"].index;if(google.adsInLU.xc&&google.adsInLU.xc[e]){var f=google.adsInLU.xc[e];if(f.adsinlu)return f.adsinlu.url}}return null};google.adsInLU.config={featuresCallback:google.adsInLU.featuresCallback};
|
68
|
+
function g(){var b=google.LU&&google.LU.addMapConfig(google.adsInLU.config);if(b)window.clearInterval(c);else{d+=1;if(d>=30)window.clearInterval(c)}}c=window.setInterval(g,10);
|
69
|
+
;google.sc=google.sc||{};if(!google.sc['riu'])google.sc['riu']={'u':'/extern_js/f/CgJlbhICdXMgACswPzgAmgICc2ssgAJQkAJSogIDcml1/RlbtvGexYIQ.js','cb':[]};google.smc=google.smc||[];google.smc=google.smc.concat([[63,{"cnfrm":"Reported","prmpt":"Report"}]]);;google.riu={render:function(){google.util.xjsl('riu')}};;google.sc=google.sc||{};if(!google.sc['rvu'])google.sc['rvu']={'u':'/extern_js/f/CgJlbhICdXMgACswcjgALIACUJACUqICA3J2dQ/GdWA6vyrjxQ.js','cb':[]};google.smc=google.smc||[];google.smc=google.smc.concat([[114,{"rvu_report_msg":"Report","rvu_reported_msg":"Reported"}]]);;}catch(e){google.ml(e,false,{'cause':'defer'});}if(google.med){google.med('init');google.initHistory();google.med('history');}google.History&&google.History.initialize('/search?q\x3dlink%3Aplease-dont-register-a-site-that-breaks-this-test.com')});if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);}</script></div><script>(function(){
|
70
|
+
var b,d,e,f;function g(a,c){if(a.removeEventListener){a.removeEventListener("load",c,false);a.removeEventListener("error",c,false)}else{a.detachEvent("onload",c);a.detachEvent("onerror",c)}}function h(a){f=(new Date).getTime();++d;a=a||window.event;var c=a.target||a.srcElement;g(c,h)}var i=document.getElementsByTagName("img");b=i.length;d=0;for(var j=0,k;j<b;++j){k=i[j];if(k.complete||typeof k.src!="string"||!k.src)++d;else if(k.addEventListener){k.addEventListener("load",h,false);k.addEventListener("error",
|
71
|
+
h,false)}else{k.attachEvent("onload",h);k.attachEvent("onerror",h)}}e=b-d;function l(){if(!google.timers.load.t)return;google.timers.load.t.ol=(new Date).getTime();google.timers.load.t.iml=f;google.kCSI.imc=d;google.kCSI.imn=b;google.kCSI.imp=e;if(google.stt!==undefined)google.kCSI.stt=google.stt;google.timers.load.t.xjs&&google.report&&google.report(google.timers.load,google.kCSI)}if(window.addEventListener)window.addEventListener("load",l,false);else if(window.attachEvent)window.attachEvent("onload",
|
72
|
+
l);google.timers.load.t.prt=(f=(new Date).getTime());
|
73
|
+
})();
|
74
|
+
</script>
|
62
75
|
http_version: "1.1"
|
63
76
|
- !ruby/struct:VCR::HTTPInteraction
|
64
77
|
request: !ruby/struct:VCR::Request
|
65
78
|
method: :get
|
66
|
-
uri: http://
|
79
|
+
uri: http://www.bing.com:80/search?q=link%3Aplease-dont-register-a-site-that-breaks-this-test.com
|
67
80
|
body:
|
68
81
|
headers:
|
69
82
|
response: !ruby/struct:VCR::Response
|
@@ -71,89 +84,86 @@
|
|
71
84
|
code: 200
|
72
85
|
message: OK
|
73
86
|
headers:
|
74
|
-
|
75
|
-
-
|
87
|
+
cache-control:
|
88
|
+
- private, max-age=0
|
76
89
|
content-type:
|
77
|
-
- text/html; charset=
|
78
|
-
date:
|
79
|
-
- Mon, 19 Sep 2011 16:01:02 GMT
|
90
|
+
- text/html; charset=utf-8
|
80
91
|
content-encoding:
|
81
92
|
- gzip
|
82
|
-
cache-control:
|
83
|
-
- private
|
84
|
-
transfer-encoding:
|
85
|
-
- chunked
|
86
|
-
body: |
|
87
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
88
|
-
<html lang="en"><head><title>Site Explorer - Search Results</title><link rel="stylesheet" type="text/css" href="http://a248.e.akamai.net/sec.yimg.com/lib/se4/ysch_se_201107042347.css"><style type="text/css">#hd,input.ygbt,#ylogo,#main .hd,.postit,.postit ol,a.btn,span.btn, input.btn,a.btn.sel,span.btn,.side-menu ol li a span,#main .hd h1 span,.tcap .l,.tcap .c,.tcap .r,.bcap .l,.bcap .c,.bcap .r,ul#mysmsg li span,span.icon,#main .bd table th,#abm span, #abf span,#sws span, #ssf span,.step1 div.icon, .step2 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 h2,.side-menu ol,.date-selectors .ico,.yui-calendar .calnavleft,.yui-calendar .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 src="http://a248.e.akamai.net/sec.yimg.com/lib/se4/ysch_se_200912080933.js"></script></head><body class=" UNKNOWN windows vUNKNOWN"><div id="doc"><div id="hd"><div id="ygunav"><ul><li><a href="http://www.yahoo.com/">Yahoo!</a></li><li><a href="http://my.yahoo.com/">My Yahoo!</a></li><li><a href="http://mail.yahoo.com/">Mail</a></li><li id="ygwel">Hello, <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 In</a> ]</li><li><a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/">Help</a></li></ul></div><a id="ylogo" href="http://siteexplorer.search.yahoo.com"><span class="off-left">Yahoo! Site Explorer</span></a><div id="expurl"><form action="http://siteexplorer.search.yahoo.com/search" method="get"><input type="text" value="please-dont-register-a-site-that-breaks-this-test.com" name="p" id="seschp" class="seschp" autocomplete="on"><input type="submit" value="Explore URL" name="y" class="ygbt"><input type="hidden" value="sfp" name="fr"></form></div></div><div id="bd"><div id="bd-lt"><div id="side"><div class="side-menu" id="se-nav"><h2>Site 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 to MySites</a></li><li class="divisor"><span class="dots"></span></li><li class="mysites"><a href="https://siteexplorer.search.yahoo.com/mysites"><span></span>My Sites</a></li><li class="divisor"><span class="dots"></span></li><li class="submit"><a href="http://siteexplorer.search.yahoo.com/submit"><span></span>Submit 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 class="blog"><a href="http://www.ysearchblog.com/category/site-explorer/"><span></span>Blog</a></li><li class="badge"><a href="http://siteexplorer.search.yahoo.com/badge"><span></span>Badge</a></li><li class="web_services"><a href="http://developer.yahoo.com/search/siteexplorer/"><span></span>Web 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 id="bd-rt"><div id="main" class="messages"><div class="hd"><div class="tcap"><div class="l"></div><div class="c"></div><div class="r"></div></div><h1>Invalid Request</h1></div><div class="bd"><div class="row"><h2>No Results</h2><p>We 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 if you have entered the URL correctly</li><li>If this is a valid URL, <a href="http://siteexplorer.search.yahoo.com/submit">Submit it for free</a></li></ul></div></div><div class="ft"><div class="bcap"><div class="l"></div><div class="c"></div><div class="r"></div></div></div></div></div></div><div id="ft"><p id="legal">Copyright © 2011 Yahoo! Inc. All rights reserved. <a href="http://info.yahoo.com/privacy/us/yahoo/search/details.html">Privacy Policy (<span class="updt">Updated</span>)</a> - <a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html">Terms of Service</a> - <a href="http://docs.yahoo.com/info/copyright/copyright.html">Copyright/IP Policy</a> - <a href="http://siteexplorer.search.yahoo.com/submit">Submit Your Site</a> - <a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/">Help</a></p></div></div></body></html>
|
89
|
-
<!-- fe01.sitex.search.ac2.yahoo.com compressed/chunked Mon Sep 19 09:01:02 PDT 2011 -->
|
90
|
-
|
91
|
-
http_version: "1.1"
|
92
|
-
- !ruby/struct:VCR::HTTPInteraction
|
93
|
-
request: !ruby/struct:VCR::Request
|
94
|
-
method: :get
|
95
|
-
uri: http://www.bing.com:80/search?q=link%3Aplease-dont-register-a-site-that-breaks-this-test.com
|
96
|
-
body:
|
97
|
-
headers:
|
98
|
-
response: !ruby/struct:VCR::Response
|
99
|
-
status: !ruby/struct:VCR::ResponseStatus
|
100
|
-
code: 200
|
101
|
-
message: OK
|
102
|
-
headers:
|
103
93
|
expires:
|
104
|
-
-
|
94
|
+
- Sat, 08 Oct 2011 19:35:06 GMT
|
105
95
|
p3p:
|
106
96
|
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
|
97
|
+
date:
|
98
|
+
- Sat, 08 Oct 2011 19:36:06 GMT
|
99
|
+
transfer-encoding:
|
100
|
+
- chunked
|
107
101
|
connection:
|
108
102
|
- keep-alive
|
109
103
|
- Transfer-Encoding
|
110
|
-
content-type:
|
111
|
-
- text/html; charset=utf-8
|
112
|
-
date:
|
113
|
-
- Mon, 19 Sep 2011 16:01:02 GMT
|
114
|
-
content-encoding:
|
115
|
-
- gzip
|
116
|
-
set-cookie:
|
117
|
-
- _FP=EM=1; expires=Wed, 18-Sep-2013 16:01:02 GMT; domain=.bing.com; path=/
|
118
|
-
- _SS=SID=0D036DB5B18242628662D58D06755399; domain=.bing.com; path=/
|
119
|
-
- MUID=3B20A456260E469A9912790FE1D41CE3; expires=Wed, 18-Sep-2013 16:01:02 GMT; domain=.bing.com; path=/
|
120
|
-
- OrigMUID=3B20A456260E469A9912790FE1D41CE3%2c3bf36ba649cf4dab85d70a44e699b829; expires=Wed, 18-Sep-2013 16:01:02 GMT; domain=.bing.com; path=/
|
121
|
-
- OVR=flt=0&flt2=0&flt3=0&flt4=0&flt5=0&flt6=0&flt7=0&flt8=0&flt9=0&flt10=0&flt11=0&flt12=0&ramp1=0&release=or3&preallocation=0&R=1; domain=.bing.com; path=/
|
122
|
-
- SRCHD=D=1955041&MS=1955041&AF=NOFORM; expires=Wed, 18-Sep-2013 16:01:02 GMT; domain=.bing.com; path=/
|
123
|
-
- SRCHUID=V=2&GUID=80EE896C43874FF0A54491C0DDB5C14C; expires=Wed, 18-Sep-2013 16:01:02 GMT; path=/
|
124
|
-
- SRCHUSR=AUTOREDIR=0&GEOVAR=&DOB=20110919; expires=Wed, 18-Sep-2013 16:01:02 GMT; domain=.bing.com; path=/
|
125
|
-
cache-control:
|
126
|
-
- private, max-age=0
|
127
104
|
vary:
|
128
105
|
- Accept-Encoding
|
129
|
-
|
130
|
-
-
|
106
|
+
set-cookie:
|
107
|
+
- _SS=SID=F01E8FD8343D4EFB8CFAB7C03052C950; domain=.bing.com; path=/
|
108
|
+
- MUID=17B76E3761A848D09FF839878F1C30E9; expires=Mon, 07-Oct-2013 19:36:06 GMT; domain=.bing.com; path=/
|
109
|
+
- OrigMUID=17B76E3761A848D09FF839878F1C30E9%2cfb106f7252ad435489813dd2f9adce03; expires=Mon, 07-Oct-2013 19:36:06 GMT; domain=.bing.com; path=/
|
110
|
+
- OVR=flt=0&flt10=0&flt11=0&flt12=0&flt2=0&flt3=0&flt4=0&flt5=0&flt6=0&flt7=0&flt8=0&flt9=0&preallocation=0&ramp1=0&release=or3&R=1; domain=.bing.com; path=/
|
111
|
+
- SRCHD=D=1982616&MS=1982616&AF=NOFORM; expires=Mon, 07-Oct-2013 19:36:06 GMT; domain=.bing.com; path=/
|
112
|
+
- SRCHUID=V=2&GUID=A16DE30D98F044A6ADA742880654FA3E; expires=Mon, 07-Oct-2013 19:36:06 GMT; path=/
|
113
|
+
- SRCHUSR=AUTOREDIR=0&GEOVAR=&DOB=20111008; expires=Mon, 07-Oct-2013 19:36:06 GMT; domain=.bing.com; path=/
|
131
114
|
body: |-
|
132
115
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:Web="http://schemas.live.com/Web/"><head><meta content="text/html; charset=utf-8" http-equiv="content-type" /><script type="text/javascript">//<![CDATA[
|
133
116
|
si_ST=new Date
|
134
117
|
//]]></script><script type="text/javascript">//<![CDATA[
|
135
|
-
_G={ST:(si_ST?si_ST:new Date),Mkt:"en-
|
136
|
-
//]]></script><style type="text/css">body{color:#000;background:#fff url(/fd/s/a/sw3.png) repeat-x 0 -113px;font:small/normal Arial,Helvetica,Sans-Serif;margin:0;min-width:987px}body,.sb_text,.sb_h3{color:#000;font:small/normal Arial,Helvetica,Sans-Serif}a,.sb_link,a.sb_link,.sb_link a,.sb_h3 a{color:#04c;text-decoration:none}a:visited,a.sb_link:visited,.sb_link a:visited,.sb_h3 a:visited{color:#639}a:hover,a.sb_link:hover,.sb_link a:hover,h3 a,.sb_h3 a{text-decoration:underline}h1,h2,h3,h4,h5,h6{font-size:small;font-weight:200;margin:0}h1{font-size:93%}h2,h3,.sb_h3{font-size:125%}h1,h1 a,h1 a:visited,h2,h2 a,h2 a:visited,.sb_ptn a,.sb_ptn 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_title{font-size:91%;margin:0 0 .36em;text-transform:uppercase}.sb_count,.sb_meta,.sb_title,.sb_title a{color:#737373}.sb_meta a,.sb_meta a:visited,a.sb_meta,a.sb_meta: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 0 0 15px;clear:both}#sw_main{_display:inline;margin:0 0 0 -15px;padding:0 0 1.54em 15px}.sb_results,.sb_results ul,.sb_results li{list-style-type:none;margin:0;padding:0}.sb_results p,.sb_results .sb_meta{margin:0;line-height:1.2em;word-wrap:break-word}.sp_pss li{display:inline}.sb_pag{padding:0;margin:0;width:100%;float:left}.sb_pag ul,.sb_pag li{list-style:none;margin:0;padding:0}.sb_pag li{float:left}.sb_pag h4{display:none}.sb_pag 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 .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:inherit}.sw_sb{background:0 -1px;height:27px;width:27px}.sw_rfno{background:-28px -3px;height:5px;width:5px}.sw_rfnc{background:-38px -1px;height:7px;width:5px}.sw_rfno_rtl{background:-28px -16px;height:5px;width:5px}.sw_rfnc_rtl{background:-38px -16px;height:7px;width:5px}.sw_dd_rc{background:-48px -2px;height:5px;width:9px}.sw_abnw{background:-60px -1px;height:7px;width:7px}.sw_abne{background:-68px -1px;height:7px;width:7px}.sw_absw{background:-60px -9px;height:7px;width:7px}.sw_abse{background:-68px -9px;height:7px;width:7px}.sw_ddb{background:-80px -1px;height:4px;width:7px}.sw_rwds{background:-43px -12px;height:15px;width:15px}.sw_wllogo{background:-77px -12px;height:15px;width:17px}.sw_pref{background:-94px -12px;height:16px;width:16px}.sw_fbs{background:0 -30px;height:13px;width:13px}.sw_fb_tu{background:-15px -30px;height:12px;width:14px}.sw_twt{background:-30px -30px;height:13px;width:13px}.sw_twt_brd{background:-46px -29px;height:12px;width:17px}.sw_fbl{background:-64px -26px;height:18px;width:18px}.sw_vdo_pop{background:-68px -44px;height:21px;width:21px}.sw_vdo_pl{background:-90px -44px;height:21px;width:21px}.sw_logo{background:0 -70px;height:40px;width:112px}.sw_hdr_bg{background:0 -113px;height:80px;width:112px}.sw_sb,.sw_rfno,.sw_rfnc,.sw_rfno_rtl,.sw_rfnc_rtl,.sw_dd_rc,.sw_abnw,.sw_abne,.sw_absw,.sw_abse,.sw_ddb,.sw_rwds,.sw_wllogo,.sw_pref,.sw_fbs,.sw_fb_tu,.sw_twt,.sw_twt_brd,.sw_fbl,.sw_vdo_pop,.sw_vdo_pl,.sw_logo,.sw_hdr_bg{background-image:url(/fd/s/a/sw3.png);background-repeat:no-repeat}#sw_hdr{min-height:70px;_height:70px;padding:0 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/sw3.png) no-repeat 0 -70px;_display:inline;height:40px;width:112px;margin:-39px 52px 0 20px;float:left}.sw_logoT{color:#000;font-size:170%;line-height:normal;position:absolute;z-index:-1}#sw_hdr .sw_box{padding:49px 0 0;margin:0;float:left;position:relative;z-index:1001;width:100%;line-height:1.38em}#sw_hdr .sw_bd{margin-top:-2.43em}.sb_form_align{margin:-50px 0 0 600px;padding:0 0 0 .53em}.sw_box .sb_form_align{text-align:right;padding:0}.sw_t,.sw_t *,.sw_t a:visited{color:#fff}.sw_t{line-height:1.52em;width:100%;float:left}.sw_tc{background:#525051 url(/fd/s/a/sw3.png) 0 -113px;background:-webkit-gradient(linear,left top,left bottom,from(#768b9e),to(#9fabb9));position:absolute;left:0;z-index:-2;height:1.5em;width:100%}.sw_t 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 20px}.sw_tn li,.sw_tl{padding:0 0 0 .85em}.sw_u{font-weight:bold;padding:0 .77em 0 0}.sw_tl{position:relative;display:inline;z-index:1003}.sw_tl a:hover,.sw_tl a:hover .sw_tla{text-decoration:none}.sw_tl a:hover span{text-decoration:underline}#sw_tll span{margin:0 0 -2px .38em}.sw_tlia,.sw_tliw,.sw_tlif{width:17px;height:15px;display:-moz-inline-box;display:inline-block;background:url(/fd/s/a/sw3.png) -77px -12px}.sw_tlif{width:13px;background-position:0 -29px}#sw_tlm,.sw_tlin,#sw_tfbb{display:none}.sw_tla{font-size:75%;margin-left:.38em;display:inline-block}.sw_bd{position:relative;float:left;font-size:medium}.sw_b{float:left;border:1px #e5e5e5 solid;background:#fff;padding:.19em .19em 1.06em 0}.sw_b input{float:left;border:0;margin:0 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 .sw_qbtn{background:#e66400 url(/fd/s/a/sw3.png) 0 -1px;cursor:pointer;height:27px;width:27px;padding:27px 0 0;margin:0 0 -14px;overflow:hidden;font-size:0;border-radius:3px}#sw_as{left:-1px;position:relative;clear:both;display:none;font-size:small}
|
137
|
-
function sj_wf(a){var b=arguments;return function(){a.apply(null,[].slice.apply(b).slice(1))}};function sj_be(a,b,c,d){if((a==_w||a==_d.body)&&b=="load")if("undefined"!=typeof _d.readyState&&"complete"===_d.readyState){c();return}if(a.addEventListener)a.addEventListener(b,c,d);else if(a.attachEvent)a.attachEvent("on"+b,c);else a["on"+b]=c}function sj_ue(a,b,c,d){if(a.removeEventListener)a.removeEventListener(b,c,d);else if(a.detachEvent)a.detachEvent("on"+b,c);else a["on"+b]=null};function sj_anim(k){var 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 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 sj_fader(){return new sj_anim(function(b,a){sj_so(b,a)})};function sj_ce(d,c,b){var a=_d.createElement(d);if(c)a.id=c;if(b)a.className=b;return a};function sj_jb(h,f){for(var 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 c(a,d,b,e){b&&sj_ue(b,e,c);sj_evt.bind("onP1",function(){if(!a.l){a.l=1;var b=sj_ce("script");b.src=(d?"/fd/sa/"+_G.Ver:"/sa/"+_G.AppVer)+"/"+a.n+".js";sj_b.appendChild(b)}},1,5)}};function sj_ev(a){return sb_ie?event:a}function sj_et(a){return sb_ie?event.srcElement:a.target}function sj_mi(a){return sb_ie?event.fromElement:a.relatedTarget}function sj_mo(a){return sb_ie?event.toElement:a.relatedTarget};function sj_pd(a){if(sb_ie)event.returnValue=false;else a.preventDefault()};function
|
138
|
-
//]]></script><title>link:please-dont-register-a-site-that-breaks-this-test.com - Bing</title><link href="/s/wlflag.ico" rel="icon"/><link href="/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&format=rss" rel="alternate" title="XML" type="text/xml"/><link href="/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&format=rss" rel="alternate" title="RSS" type="application/rss+xml"/><!-- FD:
|
118
|
+
_G={ST:(si_ST?si_ST:new Date),Mkt:"en-US",RTL:false,Ver:"7_09_0_1081042",IG:"fb106f7252ad435489813dd2f9adce03",EventID:"20DB1F8D47314B8F9F11647F45D31326",P:"SERP",DA:"Bl2",CID:"17B76E3761A848D09FF839878F1C30E9",SUIH:"vI2ayASiTdTDvntURdYeTw",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 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 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 _ge(a){return _d.getElementById(a)}sb_st=_w.setTimeout;sb_ct=_w.clearTimeout;sb_gt=function(){return(new Date).getTime()};sj_evt=new function(){var a={},b=this;function c(b){return a[b]||(a[b]=[])}b.fire=function(e){for(var 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 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 c=0,b=a[e];b&&c<b.length;c++)if(b[c]==d){b.splice(c,1);break}}};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 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 Date,"A")};
|
119
|
+
//]]></script><style type="text/css">body{color:#000;background:#fff url(/fd/s/a/sw3.png) repeat-x 0 -113px;font:small/normal Arial,Helvetica,Sans-Serif;margin:0;min-width:987px}body,.sb_text,.sb_h3{color:#000;font:small/normal Arial,Helvetica,Sans-Serif}a,.sb_link,a.sb_link,.sb_link a,.sb_h3 a{color:#04c;text-decoration:none}a:visited,a.sb_link:visited,.sb_link a:visited,.sb_h3 a:visited{color:#639}a:hover,a.sb_link:hover,.sb_link a:hover,h3 a,.sb_h3 a{text-decoration:underline}h1,h2,h3,h4,h5,h6{font-size:small;font-weight:200;margin:0}h1{font-size:93%}h2,h3,.sb_h3{font-size:125%}h1,h1 a,h1 a:visited,h2,h2 a,h2 a:visited,.sb_ptn a,.sb_ptn 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_title{font-size:91%;margin:0 0 .36em;text-transform:uppercase}.sb_count,.sb_meta,.sb_title,.sb_title a{color:#737373}.sb_meta a,.sb_meta a:visited,a.sb_meta,a.sb_meta: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 0 0 15px;clear:both}#sw_main{_display:inline;margin:0 0 0 -15px;padding:0 0 1.54em 15px}.sb_results,.sb_results ul,.sb_results li{list-style-type:none;margin:0;padding:0}.sb_results p,.sb_results .sb_meta{margin:0;line-height:1.2em;word-wrap:break-word}.sp_pss li{display:inline}.sb_pag{padding:0;margin:0;width:100%;float:left}.sb_pag ul,.sb_pag li{list-style:none;margin:0;padding:0}.sb_pag li{float:left}.sb_pag h4{display:none}.sb_pag 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 .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:inherit}.sw_sb{background:0 -1px;height:27px;width:27px}.sw_rfno{background:-28px -3px;height:5px;width:5px}.sw_rfnc{background:-38px -1px;height:7px;width:5px}.sw_rfno_rtl{background:-28px -16px;height:5px;width:5px}.sw_rfnc_rtl{background:-38px -16px;height:7px;width:5px}.sw_dd_rc{background:-48px -2px;height:5px;width:9px}.sw_abnw{background:-60px -1px;height:7px;width:7px}.sw_abne{background:-68px -1px;height:7px;width:7px}.sw_absw{background:-60px -9px;height:7px;width:7px}.sw_abse{background:-68px -9px;height:7px;width:7px}.sw_ddb{background:-80px -1px;height:4px;width:7px}.sw_rwds{background:-43px -12px;height:15px;width:15px}.sw_wllogo{background:-77px -12px;height:15px;width:17px}.sw_pref{background:-94px -12px;height:16px;width:16px}.sw_fbs{background:0 -30px;height:13px;width:13px}.sw_fb_tu{background:-15px -30px;height:12px;width:14px}.sw_twt{background:-30px -30px;height:13px;width:13px}.sw_twt_brd{background:-46px -29px;height:12px;width:17px}.sw_fbl{background:-64px -26px;height:18px;width:18px}.sw_vdo_pop{background:-68px -44px;height:21px;width:21px}.sw_vdo_pl{background:-90px -44px;height:21px;width:21px}.sw_logo{background:0 -70px;height:40px;width:112px}.sw_hdr_bg{background:0 -113px;height:80px;width:112px}.sw_sb,.sw_rfno,.sw_rfnc,.sw_rfno_rtl,.sw_rfnc_rtl,.sw_dd_rc,.sw_abnw,.sw_abne,.sw_absw,.sw_abse,.sw_ddb,.sw_rwds,.sw_wllogo,.sw_pref,.sw_fbs,.sw_fb_tu,.sw_twt,.sw_twt_brd,.sw_fbl,.sw_vdo_pop,.sw_vdo_pl,.sw_logo,.sw_hdr_bg{background-image:url(/fd/s/a/sw3.png);background-repeat:no-repeat}#sw_hdr{min-height:70px;_height:70px;padding:0 0 30px 0}div.sa_as{left:1px}#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/sw3.png) no-repeat 0 -70px;_display:inline;height:40px;width:112px;margin:-39px 52px 0 20px;float:left}.sw_logoT{color:#000;font-size:170%;line-height:normal;position:absolute;z-index:-1}#sw_hdr .sw_box{padding:49px 0 0;margin:0;float:left;position:relative;z-index:1001;width:100%;line-height:1.38em}#sw_hdr .sw_bd{margin-top:-2.43em}.sb_form_align{margin:-50px 0 0 600px;padding:0 0 0 .53em}.sw_box .sb_form_align{text-align:right;padding:0}.sw_t,.sw_t *,.sw_t a:visited{color:#fff}.sw_t{line-height:1.52em;width:100%;float:left}.sw_tc{background:#525051 url(/fd/s/a/sw3.png) 0 -113px;background:-webkit-gradient(linear,left top,left bottom,from(#768b9e),to(#9fabb9));position:absolute;left:0;z-index:-2;height:1.5em;width:100%}.sw_t 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 20px}.sw_tn li,.sw_tl{padding:0 0 0 .85em}.sw_u{font-weight:bold;padding:0 .77em 0 0}.sw_tl{position:relative;display:inline;z-index:1003}.sw_tl a:hover,.sw_tl a:hover .sw_tla{text-decoration:none}.sw_tl a:hover span{text-decoration:underline}#sw_tll span{margin:0 0 -2px .38em}.sw_tlia,.sw_tliw,.sw_tlif{width:17px;height:15px;display:-moz-inline-box;display:inline-block;background:url(/fd/s/a/sw3.png) -77px -12px}.sw_tlif{width:13px;background-position:0 -29px}#sw_tlm,.sw_tlin,#sw_tfbb{display:none}.sw_tla{font-size:75%;margin-left:.38em;display:inline-block}.sw_me{width:4.5em;text-align:center;padding-right:.33em}#sw_meCtrl .sw_meIc{background:url(/fd/s/a/sw3.png) -43px -12px;display:inline-block;height:15px;margin:0;width:15px;vertical-align:middle}#hp_sw_hdr .sw_meWrap{margin-right:.85em;padding-left:.85em}#sw_meCtrl span{margin:0}a#sw_meCtrl{padding:0 5px}.sw_bd{position:relative;float:left;font-size:medium}.sw_b{float:left;border:1px #e5e5e5 solid;background:#fff;padding:.19em .19em 1.06em 0}.sw_b input{float:left;border:0;margin:0 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 .sw_qbtn{background:#e66400 url(/fd/s/a/sw3.png) 0 -1px;cursor:pointer;height:27px;width:27px;padding:27px 0 0;margin:0 0 -14px;overflow:hidden;font-size:0;border-radius:3px}#sw_as{left:-1px;position:relative;clear:both;display:none;font-size:small}</style><script type="text/javascript">//<![CDATA[
|
120
|
+
function sj_wf(a){var b=arguments;return function(){a.apply(null,[].slice.apply(b).slice(1))}};function sj_be(a,b,c,d){if((a==_w||a==_d.body)&&b=="load")if("undefined"!=typeof _d.readyState&&"complete"===_d.readyState){c();return}if(a.addEventListener)a.addEventListener(b,c,d);else if(a.attachEvent)a.attachEvent("on"+b,c);else a["on"+b]=c}function sj_ue(a,b,c,d){if(a.removeEventListener)a.removeEventListener(b,c,d);else if(a.detachEvent)a.detachEvent("on"+b,c);else a["on"+b]=null};function sj_anim(k){var 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 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 sj_fader(){return new sj_anim(function(b,a){sj_so(b,a)})};function sj_ce(d,c,b){var a=_d.createElement(d);if(c)a.id=c;if(b)a.className=b;return a};function sj_jb(h,f){for(var 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 c(a,d,b,e){b&&sj_ue(b,e,c);sj_evt.bind("onP1",function(){if(!a.l){a.l=1;var b=sj_ce("script");b.src=(d?"/fd/sa/"+_G.Ver:"/sa/"+_G.AppVer)+"/"+a.n+".js";sj_b.appendChild(b)}},1,5)}};function sj_gx(){return sb_i6?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest};function sj_sp(a){if(sb_ie)a.cancelBubble=true;else a.stopPropagation()};function sj_ev(a){return sb_ie?event:a}function sj_et(a){return sb_ie?event.srcElement:a.target}function sj_mi(a){return sb_ie?event.fromElement:a.relatedTarget}function sj_mo(a){return sb_ie?event.toElement:a.relatedTarget};function sj_pd(a){if(sb_ie)event.returnValue=false;else 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 sj_go(a,c,d){var b=0;while(a.offsetParent&&a!=(d||sj_b)){b+=a["offset"+c];a=a.offsetParent}return 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 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 d(){--e<1&&c.fire("onP1")}})();function lb(){var e=sj_evt,f="onSbBusy",b;e.bind(f,d,1);function 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 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 a=_ge("sb_form");a&&sj_be(a,"submit",sj_wf(sj_evt.fire,"onSearch",a))});function init(){};
|
121
|
+
//]]></script><title>link:please-dont-register-a-site-that-breaks-this-test.com - Bing</title><link href="/s/wlflag.ico" rel="icon"/><link href="/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&format=rss" rel="alternate" title="XML" type="text/xml"/><link href="/search?q=link%3aplease-dont-register-a-site-that-breaks-this-test.com&format=rss" rel="alternate" title="RSS" type="application/rss+xml"/><!-- FD: ACD642FD71142A5D6BC35A4F560811A2 --></head><body class="en en-US" onload="if(_w.lb)lb();"><script type="text/javascript">//<![CDATA[
|
139
122
|
_G.PCT=new Date
|
140
123
|
//]]></script><script type="text/javascript">//<![CDATA[
|
141
|
-
sj_b=_d.body;
|
142
|
-
//]]></script><div id="sw_page"><div id="sw_width"><div id="sw_hdr"><div id="sw_im"></div><div class="sw_t"><div class="sw_tc"></div><ul id="sch_scopes"><li><a href="/?scope=web&FORM=Z9FD" onmousedown="return si_T('&ID=FD,
|
143
|
-
_G.AppVer="
|
124
|
+
si_fb=new si_fbInit('FD.1','fbbsqr_c','wf11');sj_b=_d.body;
|
125
|
+
//]]></script><div id="sw_page"><div id="sw_width"><div id="sw_hdr"><div id="sw_im"></div><div class="sw_t"><div class="sw_tc"></div><ul id="sch_scopes"><li><a href="/?scope=web&FORM=Z9FD" 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" 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" 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" 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" 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" 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" onmousedown="return si_T('&ID=FD,35.1')">More</a></li></ul><ul class="sw_tm"><li> | </li><li><a href="http://www.msn.com/" onmousedown="return si_T('&ID=FD,39.1')">MSN</a></li><li><a href="http://mail.live.com/" onmousedown="return si_T('&ID=FD,41.1')">Hotmail</a></li></ul><ul class="sw_tn"><li><div class="sw_tl"><a href="javascript:void(0)" id="sw_tll"><span>Sign in</span><span class="sw_tla">▼</span></a><ul _IID="FD.2" id="sw_tlm" onmouseout="this._m=false;" onmouseover="this._m=true;"></ul></div></li><li><div class="sw_tl sw_meWrap"><a href="/rewards/signup/web?publ=BING&crea=ME" id="sw_meCtrl" onmousedown="return si_T('&ID=FD,50.1')"><span class="sw_me" id="sw_meTxt">Rewards</span><span class="sw_meIc"></span></a></div></li><li><a 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" onmousedown="return si_T('&ID=FD,43.1')">Brookline, Massachusetts</a></li><li><a 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" onmousedown="return si_T('&ID=FD,42.1')">Preferences</a></li></ul><div id="sw_tfbb"></div></div><form action="/search" class="sw_box" id="sb_form"><a href="/?FORM=Z9FD1" class="sw_logo" onmousedown="return si_T('&ID=FD,37.1')"><span class="sw_logoT">Bing</span></a><div class="sw_bd"><div class="sw_b"><input class="sw_qbox" id="sb_form_q" name="q" title="Enter your search term" type="text" value="link:please-dont-register-a-site-that-breaks-this-test.com" /><input class="sw_qbtn" id="sb_form_go" name="go" tabindex="0" title="Search" type="submit" value="" /></div><input id="sa_qs" name="qs" type="hidden" value="ns" /><div id="sw_as"></div></div><input name="form" type="hidden" value="QBRE" /></form></div><div id="sw_content"><div></div><style type="text/css">#content{margin:0 0 0 -15px;padding:0 271px 0 0;max-width:666px}#results_area{float:left;width:100%}#results_container{padding:0 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 ul{max-width:34%;_width:34%;margin:0 1.51em 0 3.11em;_margin:0 2.55em 0 1.18em;float:left}.sb_vdl li{text-indent:-.77em;_text-indent:0;a:0}.sb_ph{margin:0 0 .93em;text-align:right}.sb_ph h1{float:left}.sc_bullet{margin:0 0 0 .47em;font-size:93%}.sb_ph a{color:#737373;text-decoration:underline}</style><!--snr2--><script type="text/javascript">//<![CDATA[
|
126
|
+
_G.AppVer="7_09_0_1081042";
|
144
127
|
//]]></script><script type="text/javascript">//<![CDATA[
|
145
128
|
_G.FCT=new Date
|
146
129
|
//]]></script><script type="text/javascript">//<![CDATA[
|
147
130
|
_G.BCT=new Date
|
148
|
-
//]]></script><style type="text/css">#no_results h1{color:#000;font-size:125%;margin:10px 0 30px;word-wrap:break-word}#no_results h2{font-size:small;font-weight:bold;color:#000;margin:15px 0 0;float:none}#sw_content{background:#fff;padding:0 0 29px;min-height:320px}#content{padding:7px 254px 0 20px;min-height:200px;margin:0}#results_area{width:590px}#sidebar{margin:0 -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 ul li{font-size:small;margin:6px 0 0}#no_results ul li span{color:#000}#no_results .ans li{background:none;padding:0}#content .sb_alert{color:#000;border:none;font-size:small}#content .sb_alert a{font-weight:normal;font-style:normal}#content .sb_alert strong{font-style:normal}#no_results .qscolumn{float:none;max-width:100%}#sb_foot{font-size:83.9%;clear:both;float:left;width:100%;border-top:solid 1px #e5e5e5}#sw_footL,#sw_footL a{color:#737373}#sb_foot ul{display:block;list-style:none;margin:5px 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 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 h1,.sb_pt .sb_ptn{min-width:140px;_width:140px;float:left;font-size:125%;padding:0 20px;white-space:nowrap}.sb_ptr{font-size:81%;position:absolute;right:20px;top:.5em}.sb_ptr a,.sb_ptr a:visited{color:#000;padding:0 0 0 .77em}.sb_pt sup{font-size:50%;margin-left:.4em}</style><style type="text/css">.sw_a{margin-right:15em}</style><script type="text/javascript">//<![CDATA[
|
149
|
-
function sj_gx(){return sb_i6?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest};
|
150
|
-
//]]></script><div class="sb_pt" id="sw_abar"><div class="sb_ptn"><a href="/" onmousedown="return si_T('&ID=FD,2.1')">Web</a></div></div><div><!-- snr --><div id="content"><div id="results_area"><div id="results"><div id="no_results"><h1>No results found for <strong>link:please-dont-register-a-site-that-breaks-this-test.com</strong>.</h1><h2>Search tips:</h2><ul><li><span>Ensure words are spelled correctly.</span></li><li><span>Try rephrasing keywords or using synonyms.</span></li><li><span>Try less specific keywords.</span></li><li><span>Make your queries as concise as possible.</span></li></ul><h2>Other resources that may help you:</h2><ul><li><span>Get additional search tips by visiting <a href="http://onlinehelp.microsoft.com/en-CA/bing/ff808535.aspx" onmousedown="return si_T('&ID=SERP,5048.1')">Web Search Help</a>.</span></li><li><span>If you cannot find a page that you know exists, <a href="/docs/submit.aspx?FORM=SURE" onmousedown="return si_T('&ID=SERP,5049.1')">send the address to us</a>.</span></li></ul></div></div></div><div id="sidebar"></div><br> </br><div><a href="http://go.microsoft.com/fwlink/?LinkId=74170" target="_blank" onmousedown="return si_T('&ID=SERP,5046.1')">Bing Privacy Policy</a></div></div></div></div><div id="sb_foot"><ul id="sw_footL"><li><span>© 2011 Microsoft</span> | </li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170" onmousedown="return si_T('&ID=FD,66.1')">Privacy</a> | </li><li><a href="http://g.msn.com/0TO_/enca" onmousedown="return si_T('&ID=FD,68.1')">Legal</a> | </li><li><a href="http://advertising.microsoft.com/canada/en/advertise-on-bing" onmousedown="return si_T('&ID=FD,70.1')">Advertise</a> | </li><li><a href="http://onlinehelp.microsoft.com/en-CA/bing/ff808535.aspx" id="sb_help" target="_blank" onmousedown="return si_T('&ID=FD,72.1')">Help</a> | </li><li><a href="https://feedback.live.com/default.aspx?locale=en-CA&productkey=wlsearchweb&P1=dsatnoresultsweb&P2=link%3aplease-dont-register-a-site-that-breaks-this-test.com&P3=0&P4=NOFORM&P5=3B20A456260E469A9912790FE1D41CE3&P6=Toronto, Ontario&P9=43.650001525%2f-79.379997253&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" id="sb_feedback" onmousedown="return si_T('&ID=FD,74.1')">Feedback</a></li></ul></div></div></div><script type="text/javascript">//<![CDATA[
|
131
|
+
//]]></script><style type="text/css">#no_results h1{color:#000;font-size:125%;margin:10px 0 30px;word-wrap:break-word}#no_results h2{font-size:small;font-weight:bold;color:#000;margin:15px 0 0;float:none}#sw_content{background:#fff;padding:0 0 29px;min-height:320px}#content{padding:7px 254px 0 20px;min-height:200px;margin:0}#results_area{width:590px}#sidebar{margin:0 -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 ul li{font-size:small;margin:6px 0 0}#no_results ul li span{color:#000}#no_results .ans li{background:none;padding:0}#content .sb_alert{color:#000;border:none;font-size:small}#content .sb_alert a{font-weight:normal;font-style:normal}#content .sb_alert strong{font-style:normal}#no_results .qscolumn{float:none;max-width:100%}.sb_adsWv2{clear:both;padding:0 10px;margin:-.15em -10px 1.39em;background-color:#f3faff;overflow:hidden;word-wrap:break-word}.sb_adsNv2{padding:0 0 .77em}.sb_adsNv2 ul,.sb_adsWv2 ul{list-style-type:none;margin:0;padding:0}.sb_adsWv2 ul{margin:0 0 .31em}.sb_add{display:block;width:100%;text-decoration:none;padding:.15em 0 .45em}.sb_addp{cursor:pointer}.sb_adN{padding:.38em 0 .68em}.sb_adsNv2 h2,.sb_adsWv2 h2{text-transform:none}.sb_adsWv2 h2{float:right}.sb_adW h3,.sb_adN h3{display:inline}.sb_adsD{color:#737373;margin-left:.5em}.sb_adW cite{margin-left:.5em}.sb_adN cite{display:block;word-wrap:normal}.sb_add p{margin:0}.sb_adW p{padding:.2em 0 0 0}.sb_adsWv2 .msg{*float:left;width:auto;margin:0}.sb_adL{color:#737373}#sb_foot{font-size:83.9%;clear:both;float:left;width:100%;border-top:solid 1px #e5e5e5}#sw_footL,#sw_footL a{color:#737373}#sb_foot ul{display:block;list-style:none;margin:5px 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 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 h1,.sb_pt .sb_ptn{min-width:140px;_width:140px;float:left;font-size:125%;padding:0 20px;white-space:nowrap}.sb_ptr{font-size:81%;position:absolute;right:20px;top:.5em}.sb_ptr a,.sb_ptr a:visited{color:#000;padding:0 0 0 .77em}.sb_pt sup{font-size:50%;margin-left:.4em}</style><style type="text/css">.sw_a{margin-right:15em}</style><div class="sb_pt" id="sw_abar"><div class="sb_ptn"><a href="/" onmousedown="return si_T('&ID=FD,2.1')">Web</a></div></div><div><!-- snr --><div id="content"><div id="results_area"><div id="results"><div id="no_results"><h1>No results found for <strong>link:please-dont-register-a-site-that-breaks-this-test.com</strong>.</h1><h2>Search tips:</h2><ul><li><span>Ensure words are spelled correctly.</span></li><li><span>Try rephrasing keywords or using synonyms.</span></li><li><span>Try less specific keywords.</span></li><li><span>Make your queries as concise as possible.</span></li></ul><h2>Other resources that may help you:</h2><ul><li><span>Get additional search tips by visiting <a href="http://onlinehelp.microsoft.com/en-US/bing/ff808535.aspx" onmousedown="return si_T('&ID=SERP,5052.1')">Web Search Help</a>.</span></li><li><span>If you cannot find a page that you know exists, <a href="/docs/submit.aspx?FORM=SURE" onmousedown="return si_T('&ID=SERP,5053.1')">send the address to us</a>.</span></li></ul></div></div></div><div id="sidebar"><div class="sb_adsNv2"><h2 class="sb_title">Ad</h2><ul onmouseover="return true"><li><div class="sb_add sb_adN"><h3><a href="http://0.r.msn.com/?ld=4vS-xiOgKDvs8w3zq-yO0PdE0lt7SffDveu4Ww4Qq5xyrPMMlN94ZwkXN8g9UHHEwL-i1CevA0Dk83PWff4DiVHoZ9ByqjklJ7vhzrkR2EE1cQ2gpACbcPp9CcQXytoZ8-YxJnu7rzzYOfNkEMvBKeKEHQF2cjc_hJGFA8eK9q6JlUNAUCv6BXxtYNEUYpJ0Hj-xKOTUe14deTH4VA3rKYkOYWtV7Yyapcf_D8MSbCBRBDMbebRznK_7bEe_ajsGxscrJ0BXchjjiW6K4o5YOEgaljhYxS_GBhzHlL81Ze3qksFkPgd7cP9biiQu5SCvpHJPcYPk9DdzIeqtha3NeRpjVUCUzlDWt1A0zF3Vpym8LjcGduECZjcz0SK8hBGBKYivLyzNxIR0OfFcXvF1A5MDgiXRMAU4ZtEg" onmousedown="return si_T('&ID=FD,60.1,Ads')">Register A Site</a></h3><p>Looking for Register A Site? Find Register A Site Now & Compare.</p><cite>buyerpricer.com/Register-A-Site</cite></div></li></ul><div><a href="http://advertising.microsoft.com/search/" class="sb_meta" onmousedown="return si_T('&ID=FD,58.1,Ads')">See your message here</a></div></div></div><br> </br><div><a href="http://go.microsoft.com/fwlink/?LinkId=74170" target="_blank" onmousedown="return si_T('&ID=SERP,5050.1')">Bing Privacy Policy</a></div></div></div></div><div id="sb_foot" onmouseover="si_fb.loadCard()"><ul id="sw_footL"><li><span>© 2011 Microsoft</span> | </li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170" onmousedown="return si_T('&ID=FD,65.1')">Privacy</a> | </li><li><a href="http://g.msn.com/0TO_/enus" onmousedown="return si_T('&ID=FD,67.1')">Legal</a> | </li><li><a href="http://advertising.microsoft.com/advertise-on-bing" onmousedown="return si_T('&ID=FD,69.1')">Advertise</a> | </li><li><a href="http://www.bing.com/toolbox/home/" onmousedown="return si_T('&ID=FD,71.1')">Business solutions</a> | </li><li><a href="http://g.msn.com/AIPRIV/en-us" target="_blank" onmousedown="return si_T('&ID=FD,73.1')">About our ads</a> | </li><li><a href="http://onlinehelp.microsoft.com/en-US/bing/ff808535.aspx" id="sb_help" target="_blank" onmousedown="return si_T('&ID=FD,75.1')">Help</a> | </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=17B76E3761A848D09FF839878F1C30E9&P6=Brookline, 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" id="sb_feedback" onclick="si_fb.openCard(this);return false" onfocus="si_fb.loadCard()" onmousedown="return si_T('&ID=FD,77.1')">Tell us what you think</a></li></ul></div></div></div><div id="sb_fb"></div><script type="text/javascript">//<![CDATA[
|
151
132
|
_G.BST=new Date
|
152
133
|
//]]></script><script type="text/javascript">//<![CDATA[
|
153
|
-
sj_cook=new function(){var a=this;a.get=function(d,c){var a=_d.cookie.match(new RegExp("\\b"+d+"=[^;]+"));if(c&&a){var b=a[0].match(new RegExp("\\b"+c+"=([^&]*)"));return 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 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 Date((new Date).getTime()+Math.min(l,6.3072e10))).toGMTString():"")+(j?";path="+j:"")}};sc_fadeCb=function(){};function 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 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 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 n(e){m=1;function c(){b.style.backgroundImage="url('"+d.src+"')";b.className+=" 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 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\/
|
134
|
+
sj_cook=new function(){var a=this;a.get=function(d,c){var a=_d.cookie.match(new RegExp("\\b"+d+"=[^;]+"));if(c&&a){var b=a[0].match(new RegExp("\\b"+c+"=([^&]*)"));return 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 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 Date((new Date).getTime()+Math.min(l,6.3072e10))).toGMTString():"")+(j?";path="+j:"")}};sc_fadeCb=function(){};function 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 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 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 n(e){m=1;function c(){b.style.backgroundImage="url('"+d.src+"')";b.className+=" 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 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\/PearloftheAdriatic_EN-US645508376o.jpg',id:'sw_im',d:10,cN:'_SS',crN:'hIm',hash:'376'};sc_bgL();;sj_evt.bind("onP1",function(){var a=_ge("sw_tll");a&&sj_jb("multipleLogins_c",1,a,"mouseover",a,"click")},1,5);function sj_ic(b){var a=sj_ce("style");_d.getElementsByTagName("head")[0].appendChild(a);if(sb_ie)a.styleSheet.cssText=b;else a.appendChild(_d.createTextNode(b))};_ge("sa_qs").value="bs";sj_evt.bind("onASConfig",function(d){var 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,as:'a',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:'F01E8FD8343D4EFB8CFAB7C03052C950'});sa_loc={H_PN:'Popular now',H_AS:'Web results',L_MH:'Manage search history',L_P:'Preferences',T_SQ:'Trending'};;sj_evt.bind('onP1',function(){sa_DNS=new Image;sa_DNS.src='http://api.bing.com/qsonhs.aspx?FORM=ASAPIW&q='},1,5);sj_evt.fire("onHTML");function si_sendCReq(){_G.muidI=new Image;_G.muidI.onload=function(){var d=_d.cookie;if(/\bTUID\b/i.test(d))return 1;_G.muidI2=new Image;_G.muidI2.src=_G.gpUrl+"CM=TMF&IG="+_G.IG+(_G.CID?"&CID="+_G.CID:"");_G.muidI3=new 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 1};_G.muidI.src=_G.cUrl};sf_fbCfg={sId:"0"};sj_evt.bind("onP1",function(){_w.logfb&&_w.logfb("fi");var 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 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 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 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 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 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 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 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 a.I&&a.I(h)}};RMS2.RegisterResources(['\/fd\/sa\/1221105747\/brand4_c.css','\/fd\/sa\/0908192802\/noResults2_c.css','\/fd\/sa\/1114135729\/Shared.js','\/fd\/sa\/0108182120\/PostContent.js'],[],'F',[3,9,1,2]);;
|
154
135
|
//]]></script><script type="text/javascript">//<![CDATA[
|
155
136
|
RMS2.RegisterResources(['/sa/0920014555/serpAll_c.css'],[],'A',[4]);;
|
156
137
|
//]]></script><script type="text/javascript">//<![CDATA[
|
157
138
|
(function(){function a(){!_w.sb_ppCPL&&sb_st(function(){si_PP(new Date)},0)}var b=_w.onload||function(){};onload=function(c){_G.BPT=new Date;b(c);a()};_G.HT=new Date})()
|
158
139
|
//]]></script></body></html>
|
159
140
|
http_version: "1.1"
|
141
|
+
- !ruby/struct:VCR::HTTPInteraction
|
142
|
+
request: !ruby/struct:VCR::Request
|
143
|
+
method: :get
|
144
|
+
uri: http://siteexplorer.search.yahoo.com:80/search?p=please-dont-register-a-site-that-breaks-this-test.com
|
145
|
+
body:
|
146
|
+
headers:
|
147
|
+
response: !ruby/struct:VCR::Response
|
148
|
+
status: !ruby/struct:VCR::ResponseStatus
|
149
|
+
code: 200
|
150
|
+
message: OK
|
151
|
+
headers:
|
152
|
+
date:
|
153
|
+
- Sat, 08 Oct 2011 19:36:07 GMT
|
154
|
+
p3p:
|
155
|
+
- policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
|
156
|
+
cache-control:
|
157
|
+
- private
|
158
|
+
transfer-encoding:
|
159
|
+
- chunked
|
160
|
+
content-type:
|
161
|
+
- text/html; charset=UTF-8
|
162
|
+
content-encoding:
|
163
|
+
- gzip
|
164
|
+
body: |
|
165
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
166
|
+
<html lang="en"><head><title>Site Explorer - Search Results</title><link rel="stylesheet" type="text/css" href="http://a248.e.akamai.net/sec.yimg.com/lib/se4/ysch_se_201107042347.css"><style type="text/css">#hd,input.ygbt,#ylogo,#main .hd,.postit,.postit ol,a.btn,span.btn, input.btn,a.btn.sel,span.btn,.side-menu ol li a span,#main .hd h1 span,.tcap .l,.tcap .c,.tcap .r,.bcap .l,.bcap .c,.bcap .r,ul#mysmsg li span,span.icon,#main .bd table th,#abm span, #abf span,#sws span, #ssf span,.step1 div.icon, .step2 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 h2,.side-menu ol,.date-selectors .ico,.yui-calendar .calnavleft,.yui-calendar .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 src="http://a248.e.akamai.net/sec.yimg.com/lib/se4/ysch_se_200912080933.js"></script></head><body class=" UNKNOWN windows vUNKNOWN"><div id="doc"><div id="hd"><div id="ygunav"><ul><li><a href="http://www.yahoo.com/">Yahoo!</a></li><li><a href="http://my.yahoo.com/">My Yahoo!</a></li><li><a href="http://mail.yahoo.com/">Mail</a></li><li id="ygwel">Hello, <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 In</a> ]</li><li><a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/">Help</a></li></ul></div><a id="ylogo" href="http://siteexplorer.search.yahoo.com"><span class="off-left">Yahoo! Site Explorer</span></a><div id="expurl"><form action="http://siteexplorer.search.yahoo.com/search" method="get"><input type="text" value="please-dont-register-a-site-that-breaks-this-test.com" name="p" id="seschp" class="seschp" autocomplete="on"><input type="submit" value="Explore URL" name="y" class="ygbt"><input type="hidden" value="sfp" name="fr"></form></div></div><div id="bd"><div id="bd-lt"><div id="side"><div class="side-menu" id="se-nav"><h2>Site 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 to MySites</a></li><li class="divisor"><span class="dots"></span></li><li class="mysites"><a href="https://siteexplorer.search.yahoo.com/mysites"><span></span>My Sites</a></li><li class="divisor"><span class="dots"></span></li><li class="submit"><a href="http://siteexplorer.search.yahoo.com/submit"><span></span>Submit 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 class="blog"><a href="http://www.ysearchblog.com/category/site-explorer/"><span></span>Blog</a></li><li class="badge"><a href="http://siteexplorer.search.yahoo.com/badge"><span></span>Badge</a></li><li class="web_services"><a href="http://developer.yahoo.com/search/siteexplorer/"><span></span>Web 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 id="bd-rt"><div id="main" class="messages"><div class="hd"><div class="tcap"><div class="l"></div><div class="c"></div><div class="r"></div></div><h1>Invalid Request</h1></div><div class="bd"><div class="row"><h2>No Results</h2><p>We 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 if you have entered the URL correctly</li><li>If this is a valid URL, <a href="http://siteexplorer.search.yahoo.com/submit">Submit it for free</a></li></ul></div></div><div class="ft"><div class="bcap"><div class="l"></div><div class="c"></div><div class="r"></div></div></div></div></div></div><div id="ft"><p id="legal">Copyright © 2011 Yahoo! Inc. All rights reserved. <a href="http://info.yahoo.com/privacy/us/yahoo/search/details.html">Privacy Policy (<span class="updt">Updated</span>)</a> - <a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html">Terms of Service</a> - <a href="http://docs.yahoo.com/info/copyright/copyright.html">Copyright/IP Policy</a> - <a href="http://siteexplorer.search.yahoo.com/submit">Submit Your Site</a> - <a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/">Help</a></p></div></div></body></html>
|
167
|
+
<!-- fe02.sitex.search.ac2.yahoo.com compressed/chunked Sat Oct 8 12:36:07 PDT 2011 -->
|
168
|
+
|
169
|
+
http_version: "1.1"
|