imdb 0.6.8 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +1 -0
- data/.travis.yml +18 -0
- data/Gemfile +1 -1
- data/README.rdoc +21 -0
- data/Rakefile +2 -11
- data/imdb.gemspec +4 -4
- data/lib/imdb.rb +4 -0
- data/lib/imdb/base.rb +191 -0
- data/lib/imdb/episode.rb +23 -0
- data/lib/imdb/movie.rb +1 -169
- data/lib/imdb/movie_list.rb +6 -7
- data/lib/imdb/search.rb +9 -9
- data/lib/imdb/season.rb +36 -0
- data/lib/imdb/serie.rb +23 -0
- data/lib/imdb/version.rb +1 -1
- data/spec/fixtures/plotsummary +975 -0
- data/spec/fixtures/search_kannethirey_thondrinal +773 -10
- data/spec/fixtures/search_killed_wife +771 -10
- data/spec/fixtures/search_star_trek +705 -762
- data/spec/fixtures/synopsis +1036 -0
- data/spec/fixtures/thewalkingdead-s1 +1295 -0
- data/spec/fixtures/thewalkingdead-s1e2 +1232 -0
- data/spec/fixtures/top_250 +470 -754
- data/spec/fixtures/tt0036855 +541 -366
- data/spec/fixtures/tt0083987 +553 -368
- data/spec/fixtures/tt0095016 +572 -394
- data/spec/fixtures/tt0110912 +578 -376
- data/spec/fixtures/tt0111161 +549 -388
- data/spec/fixtures/tt0117731 +534 -387
- data/spec/fixtures/tt0166222 +1795 -1694
- data/spec/fixtures/tt0242653 +544 -352
- data/spec/fixtures/tt0330508 +1553 -1474
- data/spec/fixtures/tt0468569 +603 -413
- data/spec/fixtures/tt1401252 +446 -381
- data/spec/fixtures/tt1520211 +1460 -0
- data/spec/imdb/cli_spec.rb +7 -7
- data/spec/imdb/episode_spec.rb +39 -0
- data/spec/imdb/movie_spec.rb +32 -22
- data/spec/imdb/search_spec.rb +16 -36
- data/spec/imdb/season_spec.rb +19 -0
- data/spec/imdb/series_spec.rb +21 -0
- data/spec/spec_helper.rb +9 -10
- metadata +92 -41
- data/spec/spec.opts +0 -1
data/lib/imdb/movie_list.rb
CHANGED
@@ -4,7 +4,7 @@ module Imdb
|
|
4
4
|
def movies
|
5
5
|
@movies ||= parse_movies
|
6
6
|
end
|
7
|
-
|
7
|
+
|
8
8
|
private
|
9
9
|
def parse_movies
|
10
10
|
document.search('a[@href^="/title/tt"]').reject do |element|
|
@@ -12,26 +12,25 @@ module Imdb
|
|
12
12
|
element.parent.innerHTML =~ /media from/i
|
13
13
|
end.map do |element|
|
14
14
|
id = element['href'][/\d+/]
|
15
|
-
|
15
|
+
|
16
16
|
data = element.parent.innerHTML.split("<br />")
|
17
17
|
if !data[0].nil? && !data[1].nil? && data[0] =~ /img/
|
18
18
|
title = data[1]
|
19
19
|
else
|
20
20
|
title = data[0]
|
21
21
|
end
|
22
|
-
|
22
|
+
|
23
23
|
title = title.imdb_strip_tags.imdb_unescape_html
|
24
24
|
title.gsub!(/\s+\(\d\d\d\d\)$/, '')
|
25
|
-
|
25
|
+
|
26
26
|
alternative_titles = []
|
27
27
|
|
28
28
|
if title =~ /\saka\s/
|
29
29
|
titles = title.split(/\saka\s/)
|
30
30
|
title = titles.shift.strip.imdb_unescape_html
|
31
|
-
alternative_titles = titles.map { |t| t.strip.imdb_strip_tags.imdb_unescape_html }
|
32
31
|
end
|
33
|
-
|
34
|
-
[id, title
|
32
|
+
|
33
|
+
[id, title]
|
35
34
|
end.uniq.map do |values|
|
36
35
|
Imdb::Movie.new(*values)
|
37
36
|
end
|
data/lib/imdb/search.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module Imdb
|
2
|
-
|
2
|
+
|
3
3
|
# Search IMDB for a title
|
4
4
|
class Search < MovieList
|
5
5
|
attr_reader :query
|
@@ -8,39 +8,39 @@ module Imdb
|
|
8
8
|
#
|
9
9
|
# search = Imdb::Search.new("Star Trek")
|
10
10
|
#
|
11
|
-
# Imdb::Search is lazy loading, meaning that unless you access the +movies+
|
11
|
+
# Imdb::Search is lazy loading, meaning that unless you access the +movies+
|
12
12
|
# attribute, no query is made to IMDB.com.
|
13
13
|
#
|
14
14
|
def initialize(query)
|
15
15
|
@query = query
|
16
16
|
end
|
17
|
-
|
17
|
+
|
18
18
|
# Returns an array of Imdb::Movie objects for easy search result yielded.
|
19
19
|
# If the +query+ was an exact match, a single element array will be returned.
|
20
20
|
def movies
|
21
21
|
@movies ||= (exact_match? ? parse_movie : parse_movies)
|
22
22
|
end
|
23
|
-
|
23
|
+
|
24
24
|
private
|
25
25
|
def document
|
26
26
|
@document ||= Hpricot(Imdb::Search.query(@query))
|
27
27
|
end
|
28
|
-
|
28
|
+
|
29
29
|
def self.query(query)
|
30
30
|
open("http://akas.imdb.com/find?q=#{CGI::escape(query)};s=tt")
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
33
|
def parse_movie
|
34
34
|
id = document.at("head/link[@rel='canonical']")['href'][/\d+/]
|
35
35
|
title = document.at("h1").innerHTML.split('<span').first.strip.imdb_unescape_html
|
36
|
-
|
36
|
+
|
37
37
|
[Imdb::Movie.new(id, title)]
|
38
38
|
end
|
39
|
-
|
39
|
+
|
40
40
|
# Returns true if the search yielded only one result, an exact match
|
41
41
|
def exact_match?
|
42
42
|
!document.at("//table[@id='title-overview-widget-layout']").nil?
|
43
43
|
end
|
44
|
-
|
44
|
+
|
45
45
|
end # Search
|
46
46
|
end # Imdb
|
data/lib/imdb/season.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
module Imdb
|
2
|
+
class Season
|
3
|
+
attr_accessor :id, :url, :season_number, :episodes
|
4
|
+
|
5
|
+
def initialize(url)
|
6
|
+
@url = url
|
7
|
+
@season_number = @url.scan(/episodes\?season=(\d+)/).flatten.first.to_i
|
8
|
+
@episodes = []
|
9
|
+
end
|
10
|
+
|
11
|
+
def episode(number)
|
12
|
+
episodes.fetch(number-1, nil)
|
13
|
+
end
|
14
|
+
|
15
|
+
def episodes
|
16
|
+
@episodes = []
|
17
|
+
|
18
|
+
document.search("div.eplist a[@itemprop*=name]").each_with_index do |link, index|
|
19
|
+
@episodes << Imdb::Episode.new(
|
20
|
+
link[:href].scan(/\d+/).first,
|
21
|
+
@season_number,
|
22
|
+
index + 1,
|
23
|
+
link.innerHTML.strip.imdb_unescape_html
|
24
|
+
)
|
25
|
+
end
|
26
|
+
|
27
|
+
@episodes
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
def document
|
33
|
+
@document ||= Hpricot(open(@url))
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/lib/imdb/serie.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
module Imdb
|
2
|
+
|
3
|
+
# Represents a TV series on IMDB.com
|
4
|
+
class Serie < Base
|
5
|
+
|
6
|
+
def season(number)
|
7
|
+
seasons.fetch(number-1, nil)
|
8
|
+
end
|
9
|
+
|
10
|
+
def seasons
|
11
|
+
season_urls.map { |url| Imdb::Season.new(url) }
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def season_urls
|
17
|
+
document.search("h5[text()^='Seasons:'] ~ a[@href*=episodes?season']")
|
18
|
+
.map { |link| url.gsub("combined","") + "episodes?season=" + link.innerHTML.strip.imdb_unescape_html } rescue []
|
19
|
+
end
|
20
|
+
end # Serie
|
21
|
+
|
22
|
+
end # Imdb
|
23
|
+
|
data/lib/imdb/version.rb
CHANGED
@@ -0,0 +1,975 @@
|
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Date: Tue, 26 Feb 2013 22:32:36 GMT
|
3
|
+
Server: Server
|
4
|
+
Cache-Control: private
|
5
|
+
Expires: Thu, 01 Jan 1970 22:00:00 GMT
|
6
|
+
Cneonction: close
|
7
|
+
Content-Type: text/html
|
8
|
+
Set-Cookie: uu=BCYgG3d4dqqE11n1zSJcFFQspQlqLgf1oB5RDoBI3KG_zc25cxjML2q-0_dqVItuAw4BWZ2J9a8COeQsK9LH0K05EZ9URveZpSp-yWs7jLTAlKUenJWcN5xX4nkfJHRThPMl7eZd_tt-os3bO1TaiES_28oD88w-i8drKdcL4uMRxR0;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
|
9
|
+
Set-Cookie: cs=teHp/1ca+iCo3Np4l/GacwnJEiSO2SUS3lFyJI2KcqydSgFXHcohR57ZIoQumTIkju9VcglJEiSNylSDHaxXsZmZsoce2SSyblESJI7vJDOO2RIkjvkSJI7ZEmTOiWIUg=;expires=Wed, 27 Feb 2013 08:00:00 GMT;path=/;domain=.imdb.com
|
10
|
+
Vary: Accept-Encoding,User-Agent
|
11
|
+
P3P: policyref="http://i.imdb.com/images/p3p.xml",CP="CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC "
|
12
|
+
Transfer-Encoding: chunked
|
13
|
+
|
14
|
+
|
15
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
16
|
+
<html xmlns:og="http://opengraphprotocol.org/schema/"
|
17
|
+
xmlns:fb="http://www.facebook.com/2008/fbml">
|
18
|
+
<head>
|
19
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
20
|
+
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime()};</script>
|
21
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
22
|
+
<script>
|
23
|
+
var addClickstreamHeadersToAjax = function(xhr) {
|
24
|
+
xhr.setRequestHeader("x-imdb-parent-id", "046S0ET5BEX4CE7623B8");
|
25
|
+
};
|
26
|
+
</script>
|
27
|
+
|
28
|
+
<title>Die Hard (1988) - Plot Summary</title>
|
29
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
30
|
+
<link rel="canonical" href="http://www.imdb.com/title/tt0095016/plotsummary" /><meta property="og:url" content="http://www.imdb.com/title/tt0095016/plotsummary" />
|
31
|
+
|
32
|
+
<meta name="title" content="Die Hard (1988) - Plot Summary">
|
33
|
+
<meta name="description" content="Die Hard on IMDb: Movies, TV, Celebs, and more...">
|
34
|
+
|
35
|
+
<meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits">
|
36
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
37
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFbdc5e4e1450acf0739a86cea962c93c6/css/min/title.css" ><script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
38
|
+
|
39
|
+
|
40
|
+
<meta name="application-name" content="IMDb" />
|
41
|
+
<meta name="msapplication-tooltip" content="IMDb Web App" />
|
42
|
+
<meta name="msapplication-window" content="width=1500;height=900" />
|
43
|
+
<meta name="msapplication-task" content="name=Find Movie Showtimes;action-uri=/showtimes/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
44
|
+
<meta name="msapplication-task" content="name=Watch HD Trailers;action-uri=/features/hdgallery;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
45
|
+
<meta name="msapplication-task" content="name=What's On TV Tonight;action-uri=/sections/tv/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
46
|
+
<meta name="msapplication-task" content="name=Get Latest Entertainment News;action-uri=/news/top;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
47
|
+
<meta name="msapplication-task" content="name=Sign-in;action-uri=/register/login;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
48
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
49
|
+
<link rel="icon" type="image/ico"
|
50
|
+
href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico" />
|
51
|
+
<link rel="shortcut icon" type="image/x-icon"
|
52
|
+
href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/desktop-favicon.ico" />
|
53
|
+
<link rel="apple-touch-icon"
|
54
|
+
href="http://i.media-imdb.com/images/SFc8a0bc1039862e1386365008f0507ea9/apple-touch-icon.png" />
|
55
|
+
<link rel="search" type="application/opensearchdescription+xml"
|
56
|
+
href="http://i.media-imdb.com/images/SFccbe1e4d909ef8b8077201c3c5aac349/imdbsearch.xml" title="IMDb" />
|
57
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
58
|
+
<script language="javascript" type="text/javascript" src="/images/js/mootools/1.11.js"></script>
|
59
|
+
<script language="javascript" type="text/javascript" src="/images/js/app/swiki/swiki.js"></script>
|
60
|
+
<link rel="stylesheet" type="text/css" href="/images/css2/app/swiki/swiki.css" />
|
61
|
+
|
62
|
+
<meta property="fb:app_id" content="115109575169727" />
|
63
|
+
<meta property="og:title" content="Die Hard (1988) - Plot Summary" />
|
64
|
+
<meta property="og:site_name" content="IMDb" />
|
65
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
|
66
|
+
<!-- start m/s/a/_g_a_s , head -->
|
67
|
+
<script>window.ads_js_start = new Date().getTime();</script><script src="http://i.media-imdb.com/images/SF1c331cf77fb6a26512169fd19b66faaf/js/cc/ads.js" ></script><script>generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);</script>
|
68
|
+
<div id="advertising_scripts"></div>
|
69
|
+
<script type="text/javascript">
|
70
|
+
generic.monitoring.set_forester_info("title");
|
71
|
+
generic.monitoring.set_twilight_info(
|
72
|
+
"title_subpage",
|
73
|
+
"Other",
|
74
|
+
"6c92d223bd34ab1478584fcba465a6a5ed28c27b",
|
75
|
+
"2013-02-26T22%3A32%3A36GMT",
|
76
|
+
"http://s.media-imdb.com/twilight/?");
|
77
|
+
|
78
|
+
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
79
|
+
|
80
|
+
generic.monitoring.start_timing("page_load");
|
81
|
+
generic.seconds_to_midnight = 37704;
|
82
|
+
generic.days_to_midnight = 0.436388888888889;
|
83
|
+
custom.full_page.data_url = "http://i.media-imdb.com/images/SF52343caf319e887027f13568332cdfd7/a/js/graffiti_data.js";
|
84
|
+
ad_utils.ad_prediction.init();
|
85
|
+
consoleLog('advertising initialized','ads');
|
86
|
+
</script>
|
87
|
+
|
88
|
+
<script>
|
89
|
+
(function(url,onload,oncall) {
|
90
|
+
var elem = document.createElement('script'),
|
91
|
+
script = document.getElementsByTagName('script')[0],
|
92
|
+
final_url = url.replace(ad_utils.ord_regex, ad_utils.ord);
|
93
|
+
if (! navigator.userAgent.match('Firefox/(1|2)\\.')) {
|
94
|
+
elem.async = true;
|
95
|
+
elem.src = final_url;
|
96
|
+
if (onload) {
|
97
|
+
elem.onload = onload;
|
98
|
+
}
|
99
|
+
script.parentNode.insertBefore(elem, script);
|
100
|
+
if (oncall) {
|
101
|
+
oncall();
|
102
|
+
}
|
103
|
+
}
|
104
|
+
})("http://www.amazon.com/aan/2009-05-01/imdb/default?slot=sitewide-iframe&u=[CLIENT_SIDE_ORD]&ord=[CLIENT_SIDE_ORD]",undefined,custom.amazon.aan_iframe_oncall);
|
105
|
+
</script>
|
106
|
+
|
107
|
+
<!-- end m/s/a/_g_a_s , head -->
|
108
|
+
|
109
|
+
</head>
|
110
|
+
|
111
|
+
<body bgcolor="#ffffff" text="#000000" id="styleguide-v2" class="fixed">
|
112
|
+
<!-- start m/s/a/_g_a_s , body -->
|
113
|
+
|
114
|
+
<script>
|
115
|
+
(function(url,itemName,h,w) {
|
116
|
+
if (flashAdUtils.canPlayFlash(9)) {
|
117
|
+
var flashTags = flashAdUtils.makeFlashAd({
|
118
|
+
id:itemName,
|
119
|
+
src:url,
|
120
|
+
height:h || 1,
|
121
|
+
width:w || 1
|
122
|
+
});
|
123
|
+
document.write('<div style="position:absolute;">' + flashTags + '</div>');
|
124
|
+
}
|
125
|
+
})("http://ia.media-imdb.com/images/M/MV5BMTMzMzgxNzM2M15BMl5Bc3dmXkFtZTcwNzM0MTkxNw@@._V1_.swf","baker",1,1);
|
126
|
+
</script>
|
127
|
+
<!-- end m/s/a/_g_a_s , body -->
|
128
|
+
|
129
|
+
<div id="wrapper">
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
<div id="root">
|
135
|
+
<layer name="root">
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
<div id="nb20" class="navbarSprite">
|
142
|
+
<div id="supertab">
|
143
|
+
|
144
|
+
|
145
|
+
<!-- begin TOP_AD -->
|
146
|
+
<div id="top_ad_wrapper" class="dfp_slot">
|
147
|
+
<script type="text/javascript">
|
148
|
+
ad_utils.register_ad('top_ad');
|
149
|
+
</script>
|
150
|
+
<iframe data-bid-url="" data-dart-params="#imdb2.consumer.title/plotsummary;!TILE!;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;oe=iso-8859-1;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_ad" name="top_ad" class="yesScript" width="0" height="85" data-original-width="0" data-original-height="85" data-config-width="0" data-config-height="85" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
151
|
+
|
152
|
+
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/plotsummary;tile=2;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;ord=725425643962?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/plotsummary;tile=2;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;ord=725425643962?" border="0" alt="advertisement" /></a></noscript>
|
153
|
+
|
154
|
+
</div>
|
155
|
+
<div id="top_ad_reflow_helper"></div>
|
156
|
+
<script>ad_utils.render_ad_fast('top_ad');</script>
|
157
|
+
<!-- End TOP_AD -->
|
158
|
+
</div>
|
159
|
+
<div id="navbar" class="navbarSprite">
|
160
|
+
<noscript><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF52e6b9f11712d3ec552179f6c869b63a/css2/site/consumer-navbar-no-js.css"></noscript>
|
161
|
+
<span id="home_img_holder"> <a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" id='home_img' class='navbarSprite' title='Home' ></a>
|
162
|
+
|
163
|
+
<span class="alt_logo">
|
164
|
+
<a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" title='Home' >IMDb</a>
|
165
|
+
</span>
|
166
|
+
</span>
|
167
|
+
|
168
|
+
|
169
|
+
<form onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';" action="/find" method="get" id="navbar-form" class="nav-searchbar-inner" accept-charset="utf-8" >
|
170
|
+
|
171
|
+
<div id="nb_search" >
|
172
|
+
|
173
|
+
<noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
|
174
|
+
<button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
|
175
|
+
<input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more..." >
|
176
|
+
<div class="quicksearch_dropdown_wrapper">
|
177
|
+
|
178
|
+
<select
|
179
|
+
class="quicksearch_dropdown navbarSprite"
|
180
|
+
name="s"
|
181
|
+
id="quicksearch"
|
182
|
+
onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
|
183
|
+
|
184
|
+
<option
|
185
|
+
value="all">All</option>
|
186
|
+
<option
|
187
|
+
value="tt">Titles</option>
|
188
|
+
<option
|
189
|
+
value="ep">TV Episodes</option>
|
190
|
+
<option
|
191
|
+
value="nm">Names</option>
|
192
|
+
<option
|
193
|
+
value="co">Companies</option>
|
194
|
+
<option
|
195
|
+
value="kw">Keywords</option>
|
196
|
+
<option
|
197
|
+
value="ch">Characters</option>
|
198
|
+
<option
|
199
|
+
value="vi">Videos</option>
|
200
|
+
<option
|
201
|
+
value="qu">Quotes</option>
|
202
|
+
<option
|
203
|
+
value="bi">Bios</option>
|
204
|
+
<option
|
205
|
+
value="pl">Plots</option>
|
206
|
+
</select>
|
207
|
+
|
208
|
+
</div>
|
209
|
+
|
210
|
+
<div id="navbar-suggestionsearch"></div>
|
211
|
+
</div>
|
212
|
+
|
213
|
+
</form>
|
214
|
+
|
215
|
+
<div id="nb_personal">
|
216
|
+
|
217
|
+
<a onclick="(new Image()).src='/rg/register-v2/navbar/images/b.gif?link=https%3A%2F%2Fsecure.imdb.com%2Fregister-imdb%2Fform-v2';" href="https://secure.imdb.com/register-imdb/form-v2" >Register</a>
|
218
|
+
| <a onclick="(new Image()).src='/rg/login/navbar/images/b.gif?link=%2Fregister%2Flogin';" rel=login href="/register/login" id='nblogin' >Login</a>
|
219
|
+
| <a onclick="(new Image()).src='/rg/help/navbar/images/b.gif?link=%2Fhelp%2F';" href="/help/" >Help</a>
|
220
|
+
|
221
|
+
|
222
|
+
</div>
|
223
|
+
|
224
|
+
|
225
|
+
<div>
|
226
|
+
<ul id="consumer_main_nav" class="main_nav">
|
227
|
+
|
228
|
+
<li class="css_nav_item" aria-haspopup="true">
|
229
|
+
|
230
|
+
|
231
|
+
<a onclick="(new Image()).src='/rg/navbar-movies/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_1_inth';" href="/movies-in-theaters/?ref_=nb_mv_1_inth" class='navbarSprite' > Movies</a>
|
232
|
+
|
233
|
+
<ul class="sub_nav">
|
234
|
+
|
235
|
+
|
236
|
+
<li>
|
237
|
+
<a onclick="(new Image()).src='/rg/intheaters/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_2_inth';" href="/movies-in-theaters/?ref_=nb_mv_2_inth" >In Theaters</a>
|
238
|
+
</li>
|
239
|
+
|
240
|
+
<li>
|
241
|
+
<a onclick="(new Image()).src='/rg/top250/navbar/images/b.gif?link=%2Fchart%2Ftop%3Fref_%3Dnb_mv_3_chttp';" href="/chart/top?ref_=nb_mv_3_chttp" >Top 250</a>
|
242
|
+
</li>
|
243
|
+
|
244
|
+
<li>
|
245
|
+
<a onclick="(new Image()).src='/rg/usboxoffice/navbar/images/b.gif?link=%2Fchart%2F%3Fref_%3Dnb_mv_4_cht';" href="/chart/?ref_=nb_mv_4_cht" >US Box Office</a>
|
246
|
+
</li>
|
247
|
+
|
248
|
+
<li>
|
249
|
+
<a onclick="(new Image()).src='/rg/comingsoon/navbar/images/b.gif?link=%2Fmovies-coming-soon%2F%3Fref_%3Dnb_mv_5_cs';" href="/movies-coming-soon/?ref_=nb_mv_5_cs" >Coming Soon</a>
|
250
|
+
</li>
|
251
|
+
|
252
|
+
<li>
|
253
|
+
<a onclick="(new Image()).src='/rg/trailergallery/navbar/images/b.gif?link=%2Ftrailers%3Fref_%3Dnb_mv_6_tr';" href="/trailers?ref_=nb_mv_6_tr" >Trailer Gallery</a>
|
254
|
+
</li>
|
255
|
+
|
256
|
+
<li>
|
257
|
+
<a onclick="(new Image()).src='/rg/watchnow/navbar/images/b.gif?link=%2Fwatchnow%2F%3Fref_%3Dnb_mv_7_wn';" href="/watchnow/?ref_=nb_mv_7_wn" >Watch Now on AIV</a>
|
258
|
+
</li>
|
259
|
+
|
260
|
+
<li>
|
261
|
+
<a onclick="(new Image()).src='/rg/dvdbluray/navbar/images/b.gif?link=%2Fsections%2Fdvd%2F%3Fref_%3Dnb_mv_8_dvd';" href="/sections/dvd/?ref_=nb_mv_8_dvd" >On DVD & Blu-Ray</a>
|
262
|
+
</li>
|
263
|
+
|
264
|
+
<li>
|
265
|
+
<a onclick="(new Image()).src='/rg/xrayformovies/navbar/images/b.gif?link=%2Fx-ray%2F%3Fref_%3Dnb_mv_9_xray';" href="/x-ray/?ref_=nb_mv_9_xray" >X-Ray for Movies</a>
|
266
|
+
</li>
|
267
|
+
|
268
|
+
<li>
|
269
|
+
<a onclick="(new Image()).src='/rg/oscars/navbar/images/b.gif?link=%2Foscars%2F%3Fref_%3Dnb_mv_10_rto';" href="/oscars/?ref_=nb_mv_10_rto" >Road to the Oscars</a>
|
270
|
+
</li>
|
271
|
+
|
272
|
+
</ul>
|
273
|
+
</li>
|
274
|
+
<li class="css_nav_item" aria-haspopup="true">
|
275
|
+
|
276
|
+
|
277
|
+
<a onclick="(new Image()).src='/rg/navbar-tv/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_1_hm';" href="/tv/?ref_=nb_tv_1_hm" class='navbarSprite' > TV</a>
|
278
|
+
|
279
|
+
<ul class="sub_nav">
|
280
|
+
|
281
|
+
|
282
|
+
<li>
|
283
|
+
<a onclick="(new Image()).src='/rg/tvhome/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_2_hm';" href="/tv/?ref_=nb_tv_2_hm" >TV Home</a>
|
284
|
+
</li>
|
285
|
+
|
286
|
+
<li>
|
287
|
+
<a onclick="(new Image()).src='/rg/besttv/navbar/images/b.gif?link=%2Fsearch%2Ftitle%3Fnum_votes%3D5000%2C%26sort%3Duser_rating%2Cdesc%26title_type%3Dtv_series%26ref_%3Dnb_tv_3_srs';" href="/search/title?num_votes=5000,&sort=user_rating,desc&title_type=tv_series&ref_=nb_tv_3_srs" >Top TV Series</a>
|
288
|
+
</li>
|
289
|
+
|
290
|
+
<li>
|
291
|
+
<a onclick="(new Image()).src='/rg/tvlistings/navbar/images/b.gif?link=%2Ftvgrid%2F%3Fref_%3Dnb_tv_4_ls';" href="/tvgrid/?ref_=nb_tv_4_ls" >TV Listings</a>
|
292
|
+
</li>
|
293
|
+
|
294
|
+
<li>
|
295
|
+
<a onclick="(new Image()).src='/rg/tvepisodesandclips/navbar/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Ffeatures%2Fvideo%2Ftv%2F%3Fref_%3Dnb_tv_5_ep';" href="http://www.imdb.com/features/video/tv/?ref_=nb_tv_5_ep" >TV Episodes</a>
|
296
|
+
</li>
|
297
|
+
|
298
|
+
</ul>
|
299
|
+
</li>
|
300
|
+
<li class="css_nav_item" aria-haspopup="true">
|
301
|
+
|
302
|
+
|
303
|
+
<a onclick="(new Image()).src='/rg/navbar-news/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_1_tp';" href="/news/top?ref_=nb_nw_1_tp" class='navbarSprite' > News</a>
|
304
|
+
|
305
|
+
<ul class="sub_nav">
|
306
|
+
|
307
|
+
|
308
|
+
<li>
|
309
|
+
<a onclick="(new Image()).src='/rg/topnews/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_2_tp';" href="/news/top?ref_=nb_nw_2_tp" >Top News</a>
|
310
|
+
</li>
|
311
|
+
|
312
|
+
<li>
|
313
|
+
<a onclick="(new Image()).src='/rg/movienews/navbar/images/b.gif?link=%2Fnews%2Fmovie%3Fref_%3Dnb_nw_3_mv';" href="/news/movie?ref_=nb_nw_3_mv" >Movie News</a>
|
314
|
+
</li>
|
315
|
+
|
316
|
+
<li>
|
317
|
+
<a onclick="(new Image()).src='/rg/tvnews/navbar/images/b.gif?link=%2Fnews%2Ftv%3Fref_%3Dnb_nw_4_tv';" href="/news/tv?ref_=nb_nw_4_tv" >TV News</a>
|
318
|
+
</li>
|
319
|
+
|
320
|
+
<li>
|
321
|
+
<a onclick="(new Image()).src='/rg/celebritynews/navbar/images/b.gif?link=%2Fnews%2Fcelebrity%3Fref_%3Dnb_nw_5_cel';" href="/news/celebrity?ref_=nb_nw_5_cel" >Celebrity News</a>
|
322
|
+
</li>
|
323
|
+
|
324
|
+
</ul>
|
325
|
+
</li>
|
326
|
+
<li class="css_nav_item" aria-haspopup="true">
|
327
|
+
|
328
|
+
|
329
|
+
<a onclick="(new Image()).src='/rg/navbar-showtimes/navbar/images/b.gif?link=%2Fshowtimes%2F%3Fref_%3Dnb_sh_1_sh';" href="/showtimes/?ref_=nb_sh_1_sh" class='navbarSprite' > Showtimes</a>
|
330
|
+
|
331
|
+
<ul class="sub_nav">
|
332
|
+
|
333
|
+
|
334
|
+
<li>
|
335
|
+
<a onclick="(new Image()).src='/rg/movieshowtimes/navbar/images/b.gif?link=%2Fshowtimes%2F%3Fref_%3Dnb_sh_2_sh';" href="/showtimes/?ref_=nb_sh_2_sh" >Movie Showtimes</a>
|
336
|
+
</li>
|
337
|
+
|
338
|
+
</ul>
|
339
|
+
</li>
|
340
|
+
<li class="css_nav_item" aria-haspopup="true">
|
341
|
+
|
342
|
+
|
343
|
+
<a onclick="(new Image()).src='/rg/navbar-community/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_1_bd';" href="/boards/?ref_=nb_cm_1_bd" class='navbarSprite' > Community</a>
|
344
|
+
|
345
|
+
<ul class="sub_nav">
|
346
|
+
|
347
|
+
|
348
|
+
<li>
|
349
|
+
<a onclick="(new Image()).src='/rg/messageboards/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_2_bd';" href="/boards/?ref_=nb_cm_2_bd" >Message Boards</a>
|
350
|
+
</li>
|
351
|
+
|
352
|
+
<li>
|
353
|
+
<a onclick="(new Image()).src='/rg/lists/navbar/images/b.gif?link=%2Flists%2F%3Fref_%3Dnb_cm_3_nls';" href="/lists/?ref_=nb_cm_3_nls" >Newest Lists</a>
|
354
|
+
</li>
|
355
|
+
|
356
|
+
<li>
|
357
|
+
<a onclick="(new Image()).src='/rg/yourlists/navbar/images/b.gif?link=%2Fprofile%2Flists%3Fref_%3Dnb_cm_4_yls';" href="/profile/lists?ref_=nb_cm_4_yls" >Your Lists</a>
|
358
|
+
</li>
|
359
|
+
|
360
|
+
<li>
|
361
|
+
<a onclick="(new Image()).src='/rg/ratings/navbar/images/b.gif?link=%2Flist%2Fratings%3Fref_%3Dnb_cm_5_yrt';" href="/list/ratings?ref_=nb_cm_5_yrt" >Your Ratings</a>
|
362
|
+
</li>
|
363
|
+
|
364
|
+
<li>
|
365
|
+
<a onclick="(new Image()).src='/rg/contributorzone/navbar/images/b.gif?link=%2Fczone%2F%3Fref_%3Dnb_cm_6_cz';" href="/czone/?ref_=nb_cm_6_cz" >Contributor Zone</a>
|
366
|
+
</li>
|
367
|
+
|
368
|
+
<li>
|
369
|
+
<a onclick="(new Image()).src='/rg/quiz/navbar/images/b.gif?link=%2Fgames%2Fguess%3Fref_%3Dnb_cm_7_qz';" href="/games/guess?ref_=nb_cm_7_qz" >Quiz Game</a>
|
370
|
+
</li>
|
371
|
+
|
372
|
+
</ul>
|
373
|
+
</li>
|
374
|
+
<li class="css_nav_item" aria-haspopup="true">
|
375
|
+
|
376
|
+
|
377
|
+
<a onclick="(new Image()).src='/rg/imdbprohome/navbar/images/b.gif?link=%2Fr%2FIMDbTabNB%2F';" href="/r/IMDbTabNB/" class='navbarSprite' > IMDbPro</a>
|
378
|
+
|
379
|
+
<ul class="sub_nav">
|
380
|
+
|
381
|
+
|
382
|
+
<li>
|
383
|
+
<a onclick="(new Image()).src='/rg/resume/prosystem/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Fr%2FResume%2Fresume%2F';" href="http://www.imdb.com/r/Resume/resume/" >Add a Resume</a>
|
384
|
+
</li>
|
385
|
+
|
386
|
+
<li>
|
387
|
+
<a onclick="(new Image()).src='/rg/procontact/navbar/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Fr%2Fnm_ovrview_contact%2Frepresentation%2F';" href="http://www.imdb.com/r/nm_ovrview_contact/representation/" >Contact Info</a>
|
388
|
+
</li>
|
389
|
+
|
390
|
+
<li>
|
391
|
+
<a onclick="(new Image()).src='/rg/demoreels/navbar/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Fr%2FDemoReels%2Fdemoreels%2Flist';" href="http://www.imdb.com/r/DemoReels/demoreels/list" >Add Demo Reels</a>
|
392
|
+
</li>
|
393
|
+
|
394
|
+
</ul>
|
395
|
+
</li>
|
396
|
+
<li class="css_nav_item" aria-haspopup="true">
|
397
|
+
|
398
|
+
|
399
|
+
<a onclick="(new Image()).src='/rg/navbar-apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_1_hm';" href="/apps/?ref_=nb_app_1_hm" class='navbarSprite' > Apps</a>
|
400
|
+
|
401
|
+
<ul class="sub_nav">
|
402
|
+
|
403
|
+
|
404
|
+
<li>
|
405
|
+
<a onclick="(new Image()).src='/rg/apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_2_hm';" href="/apps/?ref_=nb_app_2_hm" >Apps Home</a>
|
406
|
+
</li>
|
407
|
+
|
408
|
+
<li>
|
409
|
+
<a onclick="(new Image()).src='/rg/iosapps/navbar/images/b.gif?link=%2Fapps%2Fios%2F%3Fref_%3Dnb_app_3_ios';" href="/apps/ios/?ref_=nb_app_3_ios" >iPhone + iPad Apps</a>
|
410
|
+
</li>
|
411
|
+
|
412
|
+
<li>
|
413
|
+
<a onclick="(new Image()).src='/rg/androidapps/navbar/images/b.gif?link=%2Fapps%2Fandroid%2F%3Fref_%3Dnb_app_4_andr';" href="/apps/android/?ref_=nb_app_4_andr" >Android Apps</a>
|
414
|
+
</li>
|
415
|
+
|
416
|
+
<li>
|
417
|
+
<a onclick="(new Image()).src='/rg/kindlefireapp/navbar/images/b.gif?link=%2Fapps%2Fkindlefire%2F%3Fref_%3Dnb_app_5_fire';" href="/apps/kindlefire/?ref_=nb_app_5_fire" >Kindle Fire App</a>
|
418
|
+
</li>
|
419
|
+
|
420
|
+
</ul>
|
421
|
+
</li>
|
422
|
+
|
423
|
+
</ul>
|
424
|
+
</div>
|
425
|
+
|
426
|
+
|
427
|
+
|
428
|
+
<div class="nb_extra">
|
429
|
+
<a onclick="(new Image()).src='/rg/watchlist/navbar/images/b.gif?link=%2Flist%2Fwatchlist';" href="/list/watchlist" >Your Watchlist</a>
|
430
|
+
</div>
|
431
|
+
|
432
|
+
|
433
|
+
</div>
|
434
|
+
</div>
|
435
|
+
|
436
|
+
|
437
|
+
|
438
|
+
|
439
|
+
|
440
|
+
|
441
|
+
|
442
|
+
|
443
|
+
|
444
|
+
|
445
|
+
<!-- sid : 110838 : NAVSTRIP --><style>
|
446
|
+
.rtg2012navstripe a:link, .falltvpreviewdiv a:visited {
|
447
|
+
color:#f1dfa9;
|
448
|
+
font-family: gill sans, arial, Verdana, sans-serif;
|
449
|
+
}
|
450
|
+
.rtg2012navstripe a:hover {
|
451
|
+
color:#fbf2ca;
|
452
|
+
}
|
453
|
+
|
454
|
+
.rtg2012navstripe {
|
455
|
+
font-family: gill sans, arial, Verdana, sans-serif;
|
456
|
+
font-size: 13px;
|
457
|
+
}
|
458
|
+
.rtg2012navstripe a{
|
459
|
+
color:#f1dfa9;
|
460
|
+
}
|
461
|
+
|
462
|
+
</style>
|
463
|
+
|
464
|
+
<div class="rtg2012navstripe" style="background-image: url(http://ia.media-imdb.com/images/M/MV5BMTcxMDIzMjg0M15BMl5BanBnXkFtZTcwNjEzOTIxOQ@@._V1_.jpg); width: 1008px; height: 40px;">
|
465
|
+
|
466
|
+
<table width="1008" cellpadding="0" cellspacing="0" align="top"><tr>
|
467
|
+
|
468
|
+
<td width="300"><a href="http://www.imdb.com/oscars/?ref_=tt_rto" onclick="(new Image()).src='/rg/RTO13_NAVSTRIPE/TOP_BUCKET/images/b.gif'"><img src="http://i.imdb.com/b.gif" width="400" height="40" border="0"></a></td>
|
469
|
+
|
470
|
+
|
471
|
+
<td width="370">
|
472
|
+
|
473
|
+
|
474
|
+
<a href="http://www.imdb.com/oscars/nominations/?ref_=tt_rto_nom_acd" onclick="(new Image()).src='/rg/RTO13_NAVSTRIPE/TOP_BUCKET/images/b.gif'">Oscar Winners</a>
|
475
|
+
|
476
|
+
|
477
|
+
<a href="http://www.imdb.com/oscars/galleries/2013-oscars-redcarpet-photos?ref_=tt_rto_i" onclick="(new Image()).src='/rg/RTO13_NAVSTRIPE/TOP_BUCKET/images/b.gif'">Oscar Photos</a>
|
478
|
+
|
479
|
+
|
480
|
+
<a href="http://www.imdb.com/oscars/games/?ref_=tt_rto_i" onclick="(new Image()).src='/rg/RTO13_NAVSTRIPE/TOP_BUCKET/images/b.gif'">Red Carpet Games</a>
|
481
|
+
|
482
|
+
|
483
|
+
|
484
|
+
|
485
|
+
|
486
|
+
</td>
|
487
|
+
|
488
|
+
|
489
|
+
<td width="100"><a href="http://www.imdb.com/oscars/?ref_=tt_rto_sm" onclick="(new Image()).src='/rg/RTO13_NAVSTRIPE/TOP_BUCKET/images/b.gif'" target="top"><img src="http://i.imdb.com/b.gif" alt=" " width="120" height="40" border="0" /></a></td></tr></table>
|
490
|
+
|
491
|
+
</div>
|
492
|
+
|
493
|
+
|
494
|
+
<!-- begin injectable INJECTED_NAVSTRIP -->
|
495
|
+
<div id="injected_navstrip_wrapper" class="injected_slot">
|
496
|
+
<iframe data-bid-url="" id="injected_navstrip" name="injected_navstrip" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
497
|
+
</div>
|
498
|
+
<script>ad_utils.inject_ad.register('injected_navstrip');</script>
|
499
|
+
<div id="injected_navstrip_reflow_helper"></div>
|
500
|
+
<!-- end injectable INJECTED_NAVSTRIP -->
|
501
|
+
|
502
|
+
<div id="pagecontent">
|
503
|
+
|
504
|
+
|
505
|
+
|
506
|
+
<!-- begin injectable INJECTED_BILLBOARD -->
|
507
|
+
<div id="injected_billboard_wrapper" class="injected_slot">
|
508
|
+
<iframe data-bid-url="" id="injected_billboard" name="injected_billboard" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
509
|
+
</div>
|
510
|
+
<script>ad_utils.inject_ad.register('injected_billboard');</script>
|
511
|
+
<div id="injected_billboard_reflow_helper"></div>
|
512
|
+
<!-- end injectable INJECTED_BILLBOARD -->
|
513
|
+
|
514
|
+
<div id="tn15" class="plotsummary">
|
515
|
+
<div id="tn15crumbs">
|
516
|
+
<a href="/">IMDb</a> >
|
517
|
+
<a href="/title/tt0095016/">Die Hard (1988)</a> > <b>Plot Summary</b>
|
518
|
+
</div>
|
519
|
+
<div id="tn15lhs">
|
520
|
+
|
521
|
+
|
522
|
+
<div class="photo">
|
523
|
+
<a name="poster" href="/rg/action-box-title/primary-photo/media/rm2525146112/tt0095016" title="Die Hard"><img border="0" id="primary-poster" alt="Die Hard" title="Die Hard" src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0MTk3OA@@._V1._SX94_SY140_.jpg" /></a>
|
524
|
+
</div>
|
525
|
+
|
526
|
+
<div id="action-box" class="action-box">
|
527
|
+
<a onclick="(new Image()).src='/rg/video-link/default/images/b.gif?link=%2Fvideo%2Famazon%2Fvi4174684185%2F';window.open(this.href+'offsite','_blank');
|
528
|
+
return false;" href="/video/amazon/vi4174684185/" class="linkasbutton-primary" data-rid="046S0ET5BEX4CE7623B8" data-video="vi4174684185" data-context="amazon" >Watch It</a>
|
529
|
+
|
530
|
+
<p>at Amazon</p>
|
531
|
+
|
532
|
+
<p><img src="/images/wheel/or-graphic.png" /></p>
|
533
|
+
|
534
|
+
|
535
|
+
|
536
|
+
|
537
|
+
|
538
|
+
|
539
|
+
|
540
|
+
|
541
|
+
|
542
|
+
|
543
|
+
|
544
|
+
|
545
|
+
<a class="linkasbutton-secondary" href="/rg/action-box-title/buy-at-amazon/r/50703000000050a0904747030393530313630000001036a03046674600000010d6a02057370000001037a0104700000010f5a0a096d64626d2164626f6870000001047" target="_new">Buy it at Amazon</a>
|
546
|
+
|
547
|
+
|
548
|
+
|
549
|
+
|
550
|
+
<hr />
|
551
|
+
<a class="linkasbutton-secondary" href="/r/tt_shop/http://pro.imdb.com/title/tt0095016/" onclick="(new Image()).src='/rg/tt_shop/prosystem/images/b.gif?link=/rg/tt_shop/prosystem/http://pro.imdb.com/title/tt0095016/';">More at IMDb Pro</a>
|
552
|
+
|
553
|
+
<a class="linkasbutton-secondary" href="/rg/action-box-title/boards-link/title/tt0095016/board">Discuss in Boards</a>
|
554
|
+
|
555
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFae8ea8aab5fbc8d97e571652dc015797/wheel/btn2.css" >
|
556
|
+
<span class="wlb_wrapper" data-tconst="tt0095016" data-size="small" data-caller-name="legacy_title_lhs" data-classes="linkasbutton-secondary"
|
557
|
+
></span>
|
558
|
+
|
559
|
+
<a class="linkasbutton-secondary" href="/rg/action-box-title/update-data/updates?auto=legacy/title/tt0095016/">Update Data</a>
|
560
|
+
|
561
|
+
</div>
|
562
|
+
|
563
|
+
<h6 style="margin-top: 4px">Quicklinks</h6><form><select id="quicklinks_select" onchange="document.location = this.options[this.selectedIndex].value">
|
564
|
+
<option value="maindetails">main details</option><option value="combined">combined details</option><option value="fullcredits">full cast and crew</option><option value="companycredits">company credits</option><option value="reviews">reviews</option><option value="externalreviews">external reviews</option><option value="awards">awards</option><option value="ratings">user ratings</option><option value="parentalguide">parents guide</option><option value="board">message board</option><option value="plotsummary" selected>plot summary</option><option value="synopsis">synopsis</option><option value="keywords">plot keywords</option><option value="quotes">memorable quotes</option><option value="trivia">trivia</option><option value="trivia?tab=gf">goofs</option><option value="soundtrack">soundtrack listing</option><option value="alternateversions">alternate versions</option><option value="trivia?tab=mc">movie connections</option><option value="faq">FAQ</option><option value="business">box office/business</option><option value="releaseinfo">release dates</option><option value="locations">filming locations</option><option value="technical">technical specs</option><option value="literature">literature listings</option><option value="news">NewsDesk</option><option value="taglines">taglines</option><option value="videogallery">trailers and videos</option><option value="posters">posters</option><option value="photogallery">photo gallery</option><option value="officialsites">official sites</option><option value="miscsites">miscellaneous</option><option value="photosites">photographs</option><option value="soundsites">sound clips</option><option value="videosites">video clips</option>
|
565
|
+
</select></form>
|
566
|
+
<h6>Top Links</h6>
|
567
|
+
<a onclick="(new Image()).src='/rg/title-top-links/videogallery/images/b.gif?link=/title/tt0095016/videogallery';" href="/title/tt0095016/videogallery" class="link">trailers and videos</a><a onclick="(new Image()).src='/rg/title-top-links/fullcredits/images/b.gif?link=/title/tt0095016/fullcredits';" href="/title/tt0095016/fullcredits" class="link">full cast and crew</a><a onclick="(new Image()).src='/rg/title-top-links/trivia/images/b.gif?link=/title/tt0095016/trivia';" href="/title/tt0095016/trivia" class="link">trivia</a><a onclick="(new Image()).src='/rg/title-top-links/officialsites/images/b.gif?link=/title/tt0095016/officialsites';" href="/title/tt0095016/officialsites" class="link">official sites</a><a onclick="(new Image()).src='/rg/title-top-links/quotes/images/b.gif?link=/title/tt0095016/quotes';" href="/title/tt0095016/quotes" class="link">memorable quotes</a>
|
568
|
+
<h6>Overview</h6>
|
569
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/maindetails/images/b.gif?link=/title/tt0095016/maindetails';"href="maindetails" class="link">main details</a><a onclick="(new Image()).src='/rg/title-nav-item/combined/images/b.gif?link=/title/tt0095016/combined';"href="combined" class="link">combined details</a><a onclick="(new Image()).src='/rg/title-nav-item/fullcredits/images/b.gif?link=/title/tt0095016/fullcredits';"href="fullcredits" class="link">full cast and crew</a><a onclick="(new Image()).src='/rg/title-nav-item/companycredits/images/b.gif?link=/title/tt0095016/companycredits';"href="companycredits" class="link">company credits</a>
|
570
|
+
<h6>Awards & Reviews</h6>
|
571
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/reviews/images/b.gif?link=/title/tt0095016/reviews';"href="reviews" class="link">user reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/externalreviews/images/b.gif?link=/title/tt0095016/externalreviews';"href="externalreviews" class="link">external reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/awards/images/b.gif?link=/title/tt0095016/awards';"href="awards" class="link">awards</a><a onclick="(new Image()).src='/rg/title-nav-item/ratings/images/b.gif?link=/title/tt0095016/ratings';"href="ratings" class="link">user ratings</a><a onclick="(new Image()).src='/rg/title-nav-item/parentalguide/images/b.gif?link=/title/tt0095016/parentalguide';"href="parentalguide" class="link">parents guide</a><a onclick="(new Image()).src='/rg/title-nav-item/board/images/b.gif?link=/title/tt0095016/board';"href="board" class="link">message board</a>
|
572
|
+
<h6>Plot & Quotes</h6>
|
573
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/plotsummary/images/b.gif?link=/title/tt0095016/plotsummary';"href="plotsummary" class="link selected">plot summary</a><a onclick="(new Image()).src='/rg/title-nav-item/synopsis/images/b.gif?link=/title/tt0095016/synopsis';"href="synopsis" class="link">synopsis</a><a onclick="(new Image()).src='/rg/title-nav-item/keywords/images/b.gif?link=/title/tt0095016/keywords';"href="keywords" class="link">plot keywords</a><a onclick="(new Image()).src='/rg/title-nav-item/quotes/images/b.gif?link=/title/tt0095016/quotes';"href="quotes" class="link">memorable quotes</a>
|
574
|
+
<h6>Did You Know?</h6>
|
575
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/trivia/images/b.gif?link=/title/tt0095016/trivia';"href="trivia" class="link">trivia</a><a onclick="(new Image()).src='/rg/title-nav-item/goofs/images/b.gif?link=/title/tt0095016/trivia?tab=gf';"href="trivia?tab=gf" class="link">goofs</a><a onclick="(new Image()).src='/rg/title-nav-item/soundtrack/images/b.gif?link=/title/tt0095016/soundtrack';"href="soundtrack" class="link">soundtrack listing</a><a onclick="(new Image()).src='/rg/title-nav-item/crazycredits/images/b.gif?link=/title/tt0095016/trivia?tab=cz';"href="trivia?tab=cz" class="link empty">crazy credits</a><a onclick="(new Image()).src='/rg/title-nav-item/alternateversions/images/b.gif?link=/title/tt0095016/alternateversions';"href="alternateversions" class="link">alternate versions</a><a onclick="(new Image()).src='/rg/title-nav-item/movieconnections/images/b.gif?link=/title/tt0095016/trivia?tab=mc';"href="trivia?tab=mc" class="link">movie connections</a><a onclick="(new Image()).src='/rg/title-nav-item/faq/images/b.gif?link=/title/tt0095016/faq';"href="faq" class="link">FAQ</a>
|
576
|
+
<h6>Other Info</h6>
|
577
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/business/images/b.gif?link=/title/tt0095016/business';"href="business" class="link">box office/business</a><a onclick="(new Image()).src='/rg/title-nav-item/releaseinfo/images/b.gif?link=/title/tt0095016/releaseinfo';"href="releaseinfo" class="link">release dates</a><a onclick="(new Image()).src='/rg/title-nav-item/locations/images/b.gif?link=/title/tt0095016/locations';"href="locations" class="link">filming locations</a><a onclick="(new Image()).src='/rg/title-nav-item/technical/images/b.gif?link=/title/tt0095016/technical';"href="technical" class="link">technical specs</a><a onclick="(new Image()).src='/rg/title-nav-item/literature/images/b.gif?link=/title/tt0095016/literature';"href="literature" class="link">literature listings</a><a onclick="(new Image()).src='/rg/title-nav-item/news/images/b.gif?link=/title/tt0095016/news';"href="news" class="link">NewsDesk</a>
|
578
|
+
<h6>Promotional</h6>
|
579
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/taglines/images/b.gif?link=/title/tt0095016/taglines';"href="taglines" class="link">taglines</a>
|
580
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/videogallery/images/b.gif?link=/title/tt0095016/videogallery';"href="videogallery" class="link">trailers and videos</a>
|
581
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/posters/images/b.gif?link=/title/tt0095016/posters';"href="posters" class="link">posters</a>
|
582
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/photogallery/images/b.gif?link=/title/tt0095016/photogallery';"href="photogallery" class="link">photo gallery</a>
|
583
|
+
|
584
|
+
|
585
|
+
<h6>External Links</h6>
|
586
|
+
<a onclick="(new Image()).src='/rg/title-nav-item/cinemashowtimes/images/b.gif?link=/title/tt0095016/cinemashowtimes';"href="cinemashowtimes" class="link empty">showtimes</a><a onclick="(new Image()).src='/rg/title-nav-item/officialsites/images/b.gif?link=/title/tt0095016/officialsites';"href="officialsites" class="link">official sites</a><a onclick="(new Image()).src='/rg/title-nav-item/miscsites/images/b.gif?link=/title/tt0095016/miscsites';"href="miscsites" class="link">miscellaneous</a><a onclick="(new Image()).src='/rg/title-nav-item/photosites/images/b.gif?link=/title/tt0095016/photosites';"href="photosites" class="link">photographs</a><a onclick="(new Image()).src='/rg/title-nav-item/soundsites/images/b.gif?link=/title/tt0095016/soundsites';"href="soundsites" class="link">sound clips</a><a onclick="(new Image()).src='/rg/title-nav-item/videosites/images/b.gif?link=/title/tt0095016/videosites';"href="videosites" class="link">video clips</a>
|
587
|
+
|
588
|
+
|
589
|
+
|
590
|
+
</div>
|
591
|
+
<div id="tn15main">
|
592
|
+
|
593
|
+
<div id="tn15title">
|
594
|
+
<h1><small>Plot Summary for<br>
|
595
|
+
</small>
|
596
|
+
|
597
|
+
|
598
|
+
<a class="main" href="/title/tt0095016/">Die Hard</a> <span>(<a href="/year/1988/">1988</a>) <span class="pro-link"><a href="http://pro.imdb.com/rg/plotsummary-title/tconst-pro-header-link/title/tt0095016/">More at <strong>IMDbPro</strong></a> »</span><span class="title-extra"></span></span>
|
599
|
+
|
600
|
+
</h1>
|
601
|
+
</div>
|
602
|
+
|
603
|
+
<div id="tn15content">
|
604
|
+
|
605
|
+
<div id="tn15adrhs">
|
606
|
+
|
607
|
+
|
608
|
+
|
609
|
+
<!-- begin TOP_RHS -->
|
610
|
+
<div id="top_rhs_wrapper" class="dfp_slot">
|
611
|
+
<script type="text/javascript">
|
612
|
+
ad_utils.register_ad('top_rhs');
|
613
|
+
</script>
|
614
|
+
<iframe data-bid-url="" data-dart-params="#imdb2.consumer.title/plotsummary;!TILE!;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;oe=iso-8859-1;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_rhs" name="top_rhs" class="yesScript" width="300" height="250" data-original-width="300" data-original-height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
615
|
+
|
616
|
+
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/plotsummary;tile=3;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;ord=725425643962?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/plotsummary;tile=3;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;ord=725425643962?" border="0" alt="advertisement" /></a></noscript>
|
617
|
+
|
618
|
+
</div>
|
619
|
+
<div id="top_rhs_reflow_helper"></div>
|
620
|
+
<script>ad_utils.render_ad_fast('top_rhs');</script>
|
621
|
+
<!-- End TOP_RHS -->
|
622
|
+
<div id="top_rhs_after" class="after_ad ads-invisible"><a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a></div>
|
623
|
+
|
624
|
+
|
625
|
+
|
626
|
+
</div>
|
627
|
+
|
628
|
+
|
629
|
+
<p class="plotpar">
|
630
|
+
New York City Detective John McClane has just arrived in Los Angeles to spend Christmas with his wife. Unfortunatly, it is not going to be a Merry Christmas for everyone. A group of terrorists, led by Hans Gruber is holding everyone in the Nakatomi Plaza building hostage. With no way of anyone getting in or out, it's up to McClane to stop them all. All 12!
|
631
|
+
<i>
|
632
|
+
Written by
|
633
|
+
<a href="/search/title?plot_author=Film_Fan&view=simple&sort=alpha">Film_Fan</a>
|
634
|
+
</i>
|
635
|
+
|
636
|
+
</p>
|
637
|
+
|
638
|
+
<p class="plotpar">
|
639
|
+
Tough New York cop John McClane finds himself in a tight situation when an office building in Los Angeles is taken over by terrorists. Apart from himself, everyone else in the building - including his wife - is held at gunpoint while their captors spell out their demands. The F.B.I. are called in to survey the situation, but John McClane has other plans for the terrorists...
|
640
|
+
<i>
|
641
|
+
Written by
|
642
|
+
<a href="/search/title?plot_author=Graeme%20Roy%20%3Cgsr@cbmamiga.demon.co.uk%3E&view=simple&sort=alpha">Graeme Roy <gsr@cbmamiga.demon.co.uk></a>
|
643
|
+
</i>
|
644
|
+
|
645
|
+
</p>
|
646
|
+
|
647
|
+
<p class="plotpar">
|
648
|
+
New York cop John McClane flies to Los Angeles on Christmas eve to spend the holidays with his family. He arrives at the Nakatomi corp. building for his wife's office party. International terrorists take over the building and hold every one as hostage to steel $600 million of bonds from the vaults of the building. Now its up to McCLane to face the terrorists and save his wife and the other hostages.
|
649
|
+
<i>
|
650
|
+
Written by
|
651
|
+
<a href="/search/title?plot_author=Sami%20Al-Taher%20%3Cstaher2000@yahoo.com%3E&view=simple&sort=alpha">Sami Al-Taher <staher2000@yahoo.com></a>
|
652
|
+
</i>
|
653
|
+
|
654
|
+
</p>
|
655
|
+
|
656
|
+
<p class="plotpar">
|
657
|
+
In the city of Los Angeles, a Christmas party is held on the 30th floor of the Nakatomi Plaza Hotel. While the party is going on, downstairs, a band of German terrorists arrive and take the entire building hostage including its employees and attempts a huge robbery. But the only one who eludes capture is New York City Cop John McClane who launches a one man war in an attempt to stop the terrorists and save all hostages including his wife Holly.
|
658
|
+
<i>
|
659
|
+
Written by
|
660
|
+
<a href="/search/title?plot_author=Shaun%20Ouimette%20%7Bxtreemshaun589@hotmail.com%7D&view=simple&sort=alpha">Shaun Ouimette {xtreemshaun589@hotmail.com}</a>
|
661
|
+
</i>
|
662
|
+
|
663
|
+
</p>
|
664
|
+
|
665
|
+
<p class="plotpar">
|
666
|
+
John McClane is a cop from New York City who is on his way to Los Angeles to see his kids and his wife Holly, who moved to LA because of a job at the Nakatomi Corporation. When he arrives at Nakatomi Plaza, he meets Holly's boss Joe Takagi and her co-worker Harry Ellis. He and Holly go into a private bathroom and get into an argument. When Holly leaves to give a speech, thirteen armed terrorists lead by Hans Gruber seize control of the building and take the occupants of the 30th floor, who are the only ones left in the building, hostage. Luckily, they missed John and he has to figure out how to save the hostages before the terrorists get their way.
|
667
|
+
<i>
|
668
|
+
Written by
|
669
|
+
<a href="/search/title?plot_author=Ridley%20Lavine&view=simple&sort=alpha">Ridley Lavine</a>
|
670
|
+
</i>
|
671
|
+
|
672
|
+
</p>
|
673
|
+
<hr/>
|
674
|
+
<div class="info">
|
675
|
+
<h5>Plot Synopsis:</h5>
|
676
|
+
<div class="info-content">
|
677
|
+
John McClane, a detective with the New York City Police Department, arrives in Los Angeles to attempt a Christmas reunion and reconciliation with his estranged wife Holly...
|
678
|
+
<a class="tn15more inline" href="synopsis">See more (warning! contains spoilers)</a> »
|
679
|
+
|
680
|
+
</div>
|
681
|
+
</div>
|
682
|
+
|
683
|
+
<div>
|
684
|
+
|
685
|
+
|
686
|
+
|
687
|
+
<!-- sid: test02-channel : MIDDLE_CENTER -->
|
688
|
+
|
689
|
+
<script type="text/javascript">
|
690
|
+
if (typeof afc_data == "undefined") {
|
691
|
+
afc_data = new Object();
|
692
|
+
}
|
693
|
+
|
694
|
+
afc_data["MIDDLE_CENTER"] = { channel: "test02-channel",
|
695
|
+
client: "ca-amazon-imdb_js",
|
696
|
+
title: "Sponsored Links",
|
697
|
+
help: "What's This?",
|
698
|
+
hints: ""
|
699
|
+
};
|
700
|
+
|
701
|
+
generic.on_document_ready(function(){
|
702
|
+
generic.load_when_visible("sponsored_links_afc_div_MIDDLE_CENTER", function(){
|
703
|
+
jQuery("#sponsored_links_afc_iframe_MIDDLE_CENTER").get(0).contentWindow.location.replace("/images/a/ifb/google_afc.html#key:MIDDLE_CENTER");
|
704
|
+
});
|
705
|
+
});
|
706
|
+
</script>
|
707
|
+
|
708
|
+
<div id="sponsored_links_afc_div_MIDDLE_CENTER" name="sponsored_links_afc_div_MIDDLE_CENTER"></div>
|
709
|
+
|
710
|
+
<iframe id="sponsored_links_afc_iframe_MIDDLE_CENTER" width="0" height="0" scrolling="no" frameborder="0"
|
711
|
+
allowtransparency="true" marginheight="0" marginwidth="0"
|
712
|
+
name="sponsored_links_afc_iframe" src="about:blank">
|
713
|
+
</iframe>
|
714
|
+
|
715
|
+
</div>
|
716
|
+
<hr/><h3>Related Links</h3><table>
|
717
|
+
<tr><td width="33%" style="width: 400px"> <a href="/title/tt0095016/keywords" onClick="(new Image()).src='/rg/title-related/plotsummary-keywords/images/b.gif?link=/title/tt0095016/keywords';">Plot keywords</a></td><td width="33%" style="width: 400px"> <a href="/title/tt0095016/alternateversions" onClick="(new Image()).src='/rg/title-related/plotsummary-alternateversions/images/b.gif?link=/title/tt0095016/alternateversions';">Alternate versions</a></td> <td width="33%" style="width: 400px"> <a href="/title/tt0095016/faq" onClick="(new Image()).src='/rg/title-related/plotsummary-faq/images/b.gif?link=/title/tt0095016/faq';">FAQ</a></td></tr> <tr><td width="33%" style="width: 400px"> <a href="/title/tt0095016/parentalguide" onClick="(new Image()).src='/rg/title-related/plotsummary-parentalguide/images/b.gif?link=/title/tt0095016/parentalguide';">Parents Guide</a></td> <td width="33%" style="width: 400px"> <a href="/title/tt0095016/reviews" onClick="(new Image()).src='/rg/title-related/plotsummary-usercomments/images/b.gif?link=/title/tt0095016/reviews';">User reviews</a></td><td width="33%" style="width: 400px"> <a href="/title/tt0095016/quotes" onClick="(new Image()).src='/rg/title-related/plotsummary-quotes/images/b.gif?link=/title/tt0095016/quotes';">Quotes</a></td></tr><tr><td width="33%" style="width: 400px"> <a href="/title/tt0095016/trivia" onClick="(new Image()).src='/rg/title-related/plotsummary-trivia/images/b.gif?link=/title/tt0095016/trivia';">Trivia</a></td><td width="33%" style="width: 400px"> <a href="/title/tt0095016/trivia?tab=gf" onClick="(new Image()).src='/rg/title-related/plotsummary-goofs/images/b.gif?link=/title/tt0095016/trivia?tab=gf';">Goofs</a></td><td width="33%" style="width: 400px"> <a href="/title/tt0095016/externalreviews" onClick="(new Image()).src='/rg/title-related/plotsummary-externalreviews/images/b.gif?link=/title/tt0095016/externalreviews';">External reviews</a></td></tr><tr><td width="33%" style="width: 400px"> <a href="/title/tt0095016/maindetails" onClick="(new Image()).src='/rg/title-related/plotsummary-maindetails/images/b.gif?link=/title/tt0095016/maindetails';">Main details</a></td><td width="33%" style="width: 400px"> <a href="/Sections/Keywords/" onClick="(new Image()).src='/rg/title-related/plotsummary-moka/images/b.gif?link=/Sections/Keywords/';">MoKA: keyword discovery</a></td><td width="33%" style="width: 400px"> <a href="/search/text" onClick="(new Image()).src='/rg/title-related/plotsummary-search/images/b.gif?link=/search/text';">Search plots section</a></td></tr>
|
718
|
+
</table>
|
719
|
+
<div id="tn15bot">
|
720
|
+
<div class="right">
|
721
|
+
|
722
|
+
|
723
|
+
|
724
|
+
|
725
|
+
</div>
|
726
|
+
|
727
|
+
<div class="left">
|
728
|
+
<p><form method="post" action="/updates"><input type="hidden" name="auto" value="legacy/title/tt0095016/plotsummary"><button type="submit" class="primary" onclick="(new Image()).src='/rg/plotsummary-title/tconst-update/images/b.gif'">Edit page</button></p><p><i>You may report errors and omissions on this page to the IMDb database managers. They will be examined and if approved will be included in a future update. Clicking the 'Edit page' button will take you through a step-by-step process.</i></p></form>
|
729
|
+
</div>
|
730
|
+
|
731
|
+
</div>
|
732
|
+
|
733
|
+
</div>
|
734
|
+
</div>
|
735
|
+
</div>
|
736
|
+
<br style="clear:both;" />
|
737
|
+
</div>
|
738
|
+
<div id="footer" class="ft">
|
739
|
+
<hr width="100%" size=1>
|
740
|
+
<div id="rvi-div">
|
741
|
+
<div class="recently-viewed"> </div>
|
742
|
+
<br class="clear">
|
743
|
+
<hr width="100%" size="1">
|
744
|
+
</div>
|
745
|
+
|
746
|
+
<p class="footer" align="center">
|
747
|
+
<a onclick="(new Image()).src='/rg/home/footer/images/b.gif?link=%2F';" href="/" >Home</a>
|
748
|
+
| <a onclick="(new Image()).src='/rg/search/footer/images/b.gif?link=%2Fsearch';" href="/search" >Search</a>
|
749
|
+
| <a onclick="(new Image()).src='/rg/siteindex/footer/images/b.gif?link=%2Fa2z';" href="/a2z" >Site Index</a>
|
750
|
+
| <a onclick="(new Image()).src='/rg/intheaters/footer/images/b.gif?link=%2Fmovies-in-theaters%2F';" href="/movies-in-theaters/" >In Theaters</a>
|
751
|
+
| <a onclick="(new Image()).src='/rg/comingsoon/footer/images/b.gif?link=%2Fmovies-coming-soon%2F';" href="/movies-coming-soon/" >Coming Soon</a>
|
752
|
+
| <a onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=%2Fchart%2F';" href="/chart/" >Top Movies</a>
|
753
|
+
| <a onclick="(new Image()).src='/rg/watchlist/footer/images/b.gif?link=%2Flist%2Fwatchlist';" href="/list/watchlist" >Watchlist</a>
|
754
|
+
| <a onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=%2Fchart%2Ftop';" href="/chart/top" >Top 250</a>
|
755
|
+
| <a onclick="(new Image()).src='/rg/tv/footer/images/b.gif?link=%2Fsections%2Ftv%2F';" href="/sections/tv/" >TV</a>
|
756
|
+
| <a onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=%2Fnews%2F';" href="/news/" >News</a>
|
757
|
+
| <a onclick="(new Image()).src='/rg/video/footer/images/b.gif?link=%2Ffeatures%2Fvideo%2F';" href="/features/video/" >Video</a>
|
758
|
+
| <a onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=%2Fboards%2F';" href="/boards/" >Message Boards</a>
|
759
|
+
| <a onclick="(new Image()).src='/rg/pressroom/footer/images/b.gif?link=%2Fpressroom%2F';" href="/pressroom/" >Press Room</a>
|
760
|
+
<br>
|
761
|
+
|
762
|
+
<a onclick="(new Image()).src='/rg/register-v2/footer/images/b.gif?link=https%3A%2F%2Fsecure.imdb.com%2Fregister-imdb%2Fform-v2';" href="https://secure.imdb.com/register-imdb/form-v2" >Register</a>
|
763
|
+
|
764
|
+
| <a onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=%2Fhelp%2Fshow_article%3Frssavailable';" href="/help/show_article?rssavailable" id="footer_rss_image" class="navbarSprite" ></a> <a onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=%2Fhelp%2Fshow_article%3Frssavailable';" href="/help/show_article?rssavailable" >RSS</a>
|
765
|
+
| <a onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=%2Fadvertising%2F';" href="/advertising/" >Advertising</a>
|
766
|
+
| <a onclick="(new Image()).src='/rg/helpdesk/footer/images/b.gif?link=%2Fhelpdesk%2Fcontact';" href="/helpdesk/contact" >Contact Us</a>
|
767
|
+
| <a onclick="(new Image()).src='/rg/jobs/footer/images/b.gif?link=%2Fjobs';" href="/jobs" >Jobs</a>
|
768
|
+
| <a href="https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627" onClick="(new Image()).src='/rg/IMDbFooter/prosystem/images/b.gif?link=https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627';">IMDbPro</a>
|
769
|
+
| <a href="http://www.boxofficemojo.com" onClick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com';">Box Office Mojo</a>
|
770
|
+
| <a href="http://www.withoutabox.com" onClick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com';">Withoutabox</a>
|
771
|
+
| <a href="http://www.lovefilm.com/browse/film/watch-online/" onClick="(new Image()).src='/rg/LOVEFILM/FOOTER/images/b.gif?link=http://www.lovefilm.com/browse/film/watch-online/';">LOVEFiLM</a>
|
772
|
+
<br /><br />
|
773
|
+
IMDb Mobile:
|
774
|
+
<a onclick="(new Image()).src='/rg/mobile-ios/footer/images/b.gif?link=%2Fapps%2Fios%2F';" href="/apps/ios/" >iPhone/iPad</a>
|
775
|
+
| <a onclick="(new Image()).src='/rg/mobile-android/footer/images/b.gif?link=%2Fandroid';" href="/android" >Android</a>
|
776
|
+
| <a onclick="(new Image()).src='/rg/mobile-web/footer/images/b.gif?link=http%3A%2F%2Fm.imdb.com';" href="http://m.imdb.com" >Mobile site</a>
|
777
|
+
| <a onclick="(new Image()).src='/rg/mobile-win7/footer/images/b.gif?link=%2Fwindowsphone';" href="/windowsphone" >Windows Phone 7</a>
|
778
|
+
| IMDb Social:
|
779
|
+
<a onclick="(new Image()).src='/rg/facebook/footer/images/b.gif?link=http%3A%2F%2Fwww.facebook.com%2Fimdb';" href="http://www.facebook.com/imdb" >Facebook</a>
|
780
|
+
| <a onclick="(new Image()).src='/rg/twitter/footer/images/b.gif?link=http%3A%2F%2Ftwitter.com%2Fimdb';" href="http://twitter.com/imdb" >Twitter</a>
|
781
|
+
<br><br>
|
782
|
+
</p>
|
783
|
+
<p class="footer" align="center">
|
784
|
+
|
785
|
+
<a href="/help/show_article?conditions">Copyright ©</a> 1990-2013
|
786
|
+
<a href="/help/">IMDb.com, Inc.</a>
|
787
|
+
<br>
|
788
|
+
<a href="/help/show_article?conditions">Conditions of Use</a> | <a href="/privacy">Privacy Policy</a> | <a href="//www.amazon.com/InterestBasedAds">Interest-Based Ads</a>
|
789
|
+
<br>
|
790
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF75f161ebbfc922250664ab159771f349/wheel/logo.css" >
|
791
|
+
An <img id="amazon_logo" align="middle" style="width:80px;height:19px;border:0 none" src="http://i.media-imdb.com/images/SF9bb191c6827273aa978cab39a3587950/b.gif"/> company.
|
792
|
+
|
793
|
+
</p>
|
794
|
+
<table class="footer" id="amazon-affiliates">
|
795
|
+
<tr>
|
796
|
+
<td colspan="10">
|
797
|
+
Amazon Affiliates
|
798
|
+
</td>
|
799
|
+
</tr>
|
800
|
+
<tr>
|
801
|
+
<td class="amazon-affiliate-site-first">
|
802
|
+
<a class="amazon-affiliate-site-link"
|
803
|
+
href="http://www.amazon.com/b?ie=UTF8&node=2858778011&tag=imdbpr1-20">
|
804
|
+
<span class="amazon-affiliate-site-name">Amazon Instant Video</span><br>
|
805
|
+
<span class="amazon-affiliate-site-desc">Watch Movies &<br>TV Online</span>
|
806
|
+
</a>
|
807
|
+
</td>
|
808
|
+
<td class="amazon-affiliate-site-item-nth">
|
809
|
+
<a class="amazon-affiliate-site-link"
|
810
|
+
href="http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20">
|
811
|
+
<span class="amazon-affiliate-site-name">Prime Instant Video</span><br>
|
812
|
+
<span class="amazon-affiliate-site-desc">Unlimited Streaming<br>of Movies & TV</span>
|
813
|
+
</a>
|
814
|
+
</td>
|
815
|
+
<td class="amazon-affiliate-site-item-nth">
|
816
|
+
<a class="amazon-affiliate-site-link"
|
817
|
+
href="http://www.amazon.de/b?ie=UTF8&node=284266&tag=imdbpr1-de-21">
|
818
|
+
<span class="amazon-affiliate-site-name">Amazon Germany</span><br>
|
819
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
820
|
+
</a>
|
821
|
+
</td>
|
822
|
+
<td class="amazon-affiliate-site-item-nth">
|
823
|
+
<a class="amazon-affiliate-site-link"
|
824
|
+
href="http://www.amazon.it/b?ie=UTF8&node=412606031&tag=imdbpr1-it-21">
|
825
|
+
<span class="amazon-affiliate-site-name">Amazon Italy</span><br>
|
826
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
827
|
+
</a>
|
828
|
+
</td>
|
829
|
+
<td class="amazon-affiliate-site-item-nth">
|
830
|
+
<a class="amazon-affiliate-site-link"
|
831
|
+
href="http://www.amazon.fr/b?ie=UTF8&node=405322&tag=imdbpr1-fr-21">
|
832
|
+
<span class="amazon-affiliate-site-name">Amazon France</span><br>
|
833
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
834
|
+
</a>
|
835
|
+
</td>
|
836
|
+
<td class="amazon-affiliate-site-item-nth">
|
837
|
+
<a class="amazon-affiliate-site-link" href="http://www.lovefilm.com/browse/film/watch-online/">
|
838
|
+
<span class="amazon-affiliate-site-name">LOVEFiLM</span><br>
|
839
|
+
<span class="amazon-affiliate-site-desc">Watch Movies<br>Online</span>
|
840
|
+
</a>
|
841
|
+
</td>
|
842
|
+
<td class="amazon-affiliate-site-item-nth">
|
843
|
+
<a class="amazon-affiliate-site-link" href="http://wireless.amazon.com">
|
844
|
+
<span class="amazon-affiliate-site-name">Amazon Wireless</span><br>
|
845
|
+
<span class="amazon-affiliate-site-desc">Cellphones &<br>Wireless Plans</span>
|
846
|
+
</a>
|
847
|
+
</td>
|
848
|
+
<td class="amazon-affiliate-site-item-nth">
|
849
|
+
<a class="amazon-affiliate-site-link" href="http://www.junglee.com/">
|
850
|
+
<span class="amazon-affiliate-site-name">Junglee</span><br>
|
851
|
+
<span class="amazon-affiliate-site-desc">India Online<br>Shopping</span>
|
852
|
+
</a>
|
853
|
+
</td>
|
854
|
+
<td class="amazon-affiliate-site-item-nth">
|
855
|
+
<a class="amazon-affiliate-site-link" href="http://www.dpreview.com">
|
856
|
+
<span class="amazon-affiliate-site-name">DPReview</span><br>
|
857
|
+
<span class="amazon-affiliate-site-desc">Digital<br>Photography</span>
|
858
|
+
</a>
|
859
|
+
</td>
|
860
|
+
<td class="amazon-affiliate-site-item-nth">
|
861
|
+
<a class="amazon-affiliate-site-link" href="http://www.audible.com">
|
862
|
+
<span class="amazon-affiliate-site-name">Audible</span><br>
|
863
|
+
<span class="amazon-affiliate-site-desc">Download<br>Audio Books</span></a>
|
864
|
+
</td>
|
865
|
+
</tr>
|
866
|
+
</table>
|
867
|
+
|
868
|
+
</div>
|
869
|
+
|
870
|
+
|
871
|
+
|
872
|
+
|
873
|
+
|
874
|
+
|
875
|
+
<!-- begin BOTTOM_AD -->
|
876
|
+
<div id="bottom_ad_wrapper" class="dfp_slot">
|
877
|
+
<script type="text/javascript">
|
878
|
+
ad_utils.register_ad('bottom_ad');
|
879
|
+
</script>
|
880
|
+
<iframe data-bid-url="" data-dart-params="#imdb2.consumer.title/plotsummary;!TILE!;sz=728x90,2x1;p=b;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;oe=iso-8859-1;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="bottom_ad" name="bottom_ad" class="yesScript" width="728" height="90" data-original-width="728" data-original-height="90" data-config-width="728" data-config-height="90" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
881
|
+
|
882
|
+
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/plotsummary;tile=1;sz=728x90,2x1;p=b;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;ord=725425643962?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/plotsummary;tile=1;sz=728x90,2x1;p=b;ct=com;g=th;id=tt0095016;k=m;g=ac;tt=f;b=t250;b=t250a;g=baa;k=c;coo=usa;fv=1;ka=0;ord=725425643962?" border="0" alt="advertisement" /></a></noscript>
|
883
|
+
|
884
|
+
</div>
|
885
|
+
<div id="bottom_ad_reflow_helper"></div>
|
886
|
+
<script>ad_utils.render_ad_fast('bottom_ad');</script>
|
887
|
+
<!-- End BOTTOM_AD -->
|
888
|
+
|
889
|
+
|
890
|
+
|
891
|
+
|
892
|
+
|
893
|
+
|
894
|
+
|
895
|
+
|
896
|
+
|
897
|
+
|
898
|
+
</layer>
|
899
|
+
</div>
|
900
|
+
<img src="/rd/?q=50703000000030a090f29616f226e276966600000010c6a0f02303133303232363c21313038333830000001037a040379646370000001047&cb=136191795611714" width="1" height="1" alt="" border="0">
|
901
|
+
</div> <!-- id="wrapper" -->
|
902
|
+
<!-- h=iop740 i=2013-02-26 s=legacy(akas) t='Tue Feb 26 14:32:36 2013' -->
|
903
|
+
<script src="http://i.media-imdb.com/images/SF539be3987208630802e712857c51a6c9/js/jquery.js" ></script><script src="http://i.media-imdb.com/images/SF144de7d1cf27a8b0d644dc29e818bb29/js/cc/title/main.js" ></script><script src="http://i.media-imdb.com/images/SF4f789f206c87a31b26eb8666da48322e/js/app/win7/sitemode.js" ></script><script type="text/javascript">jQuery(function(){generic.document_is_ready()})</script><!-- Begin SIS-SW code -->
|
904
|
+
<iframe id="sis_pixel_sitewide" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe>
|
905
|
+
|
906
|
+
|
907
|
+
<script>
|
908
|
+
setTimeout(function(){
|
909
|
+
try{
|
910
|
+
if (! document.getElementById('sis_pixel_3')) {
|
911
|
+
var url_sis = 'http://s.amazon-adsystem.com/iu3?',
|
912
|
+
params_sis = [
|
913
|
+
"d=imdb.com",
|
914
|
+
"a1=",
|
915
|
+
"a2=",
|
916
|
+
"pId=tt0095016",
|
917
|
+
"r=1",
|
918
|
+
"rP=http%3A%2F%2Fakas.imdb.com%2Ftitle%2Ftt0095016%2Fplotsummary",
|
919
|
+
"encoding=server",
|
920
|
+
"cb=" + parseInt(Math.random()*99999999)
|
921
|
+
];
|
922
|
+
(document.getElementById('sis_pixel_sitewide')).src = url_sis + params_sis.join('&');
|
923
|
+
}
|
924
|
+
}
|
925
|
+
catch(e){
|
926
|
+
consoleLog('Pixel failure ' + e.toString(),'sis');
|
927
|
+
}
|
928
|
+
}, 5);
|
929
|
+
|
930
|
+
</script>
|
931
|
+
<!-- End SIS-SW code -->
|
932
|
+
<script type="text/javascript">generic.monitoring.stop_timing('page_load', '', true);generic.monitoring.all_events_started();</script>
|
933
|
+
<script>
|
934
|
+
(function() {
|
935
|
+
var dart_params = $('.dfp_slot iframe[data-dart-params]').first().attr('data-dart-params'),
|
936
|
+
result = /;ab=(.);/.exec(dart_params);
|
937
|
+
if (result && result[1]) {
|
938
|
+
(window._gaq = (window._gaq || [])).push(['_setCustomVar', 4, 'ads_abtest_treatment', result[1]]);
|
939
|
+
}
|
940
|
+
})();
|
941
|
+
</script>
|
942
|
+
<script src="http://i.media-imdb.com/images/SF478cec6a48c8de4413dbc404879752d1/js/jquery/plugins/jquery.colorbox-min.js" ></script><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF73051487323537a6449a6bb75bc86d43/css/min/lightbox.css" ><script type="text/imdblogin-js" id="login">
|
943
|
+
jQuery(document).ready(function(){
|
944
|
+
window.imdb.login_lightbox("https://secure.imdb.com",
|
945
|
+
"http://akas.imdb.com/title/tt0095016/plotsummary");
|
946
|
+
});
|
947
|
+
</script>
|
948
|
+
<script src="http://i.media-imdb.com/images/SF124828d5e3ce85f98c8cfc700bceb7d1/js/cc/loginbox.js" ></script><script src="http://i.media-imdb.com/images/SF9d20357df5ad6243c7424f8fef11e529/js/cc/suggestionsearch.js" charset="UTF-8"></script><script src="http://i.media-imdb.com/images/SFb762c590afd141254ab36f8212ac0f29/js/jquery/ui-current-custom.js" ></script><script src="http://i.media-imdb.com/images/SFb0ff5a0c4e27ecdb53a63fecac90004b/js/cc/wlb-lite.js" ></script>
|
949
|
+
<script>
|
950
|
+
(function($){
|
951
|
+
$('.wlb_wrapper')
|
952
|
+
.wlb_lite();
|
953
|
+
})(jQuery);
|
954
|
+
</script>
|
955
|
+
|
956
|
+
|
957
|
+
<script type="text/javascript">
|
958
|
+
|
959
|
+
var _gaq = _gaq || [];
|
960
|
+
_gaq.push(['_setAccount', 'UA-3916519-1']);
|
961
|
+
_gaq.push(['_setDomainName', '.imdb.com']); _gaq.push(['_setSampleRate', '10']);
|
962
|
+
_gaq.push(['_trackPageview']); // must come last
|
963
|
+
|
964
|
+
(function() {
|
965
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
966
|
+
ga.src = 'http://www.google-analytics.com/ga.js';
|
967
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
968
|
+
})();
|
969
|
+
|
970
|
+
</script>
|
971
|
+
<script src="http://i.media-imdb.com/images/SF14176f459bd0474f6a0284a9c3ba61f7/a/js/beacon.js" ></script><script>COMSCORE.beacon({c1:2,c2:"6034961",c3:"",c4:"http%3A%2F%2Fakas.imdb.com%2Ftitle%2Ftt0095016%2Fplotsummary",c5:"",c6:"",c15:""});</script>
|
972
|
+
<noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fakas.imdb.com%2Ftitle%2Ftt0095016%2Fplotsummary&c5=c6=&15=&cj=1"/></noscript>
|
973
|
+
|
974
|
+
</body>
|
975
|
+
</html>
|