imdb 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +4 -8
- data/README.md +2 -2
- data/lib/imdb/base.rb +14 -0
- data/lib/imdb/season.rb +5 -3
- data/lib/imdb/string_extensions.rb +1 -6
- data/lib/imdb/version.rb +1 -1
- data/spec/fixtures/locations +109 -155
- data/spec/fixtures/plotsummary +101 -147
- data/spec/fixtures/releaseinfo +1413 -0
- data/spec/fixtures/search_kannethirey_thondrinal +62 -115
- data/spec/fixtures/search_killed_wife +82 -115
- data/spec/fixtures/search_star_trek +82 -115
- data/spec/fixtures/synopsis +154 -146
- data/spec/fixtures/tbbt-s1 +2027 -0
- data/spec/fixtures/thewalkingdead-s1 +137 -165
- data/spec/fixtures/thewalkingdead-s1e2 +214 -184
- data/spec/fixtures/top_250 +2905 -2953
- data/spec/fixtures/tt0036855 +253 -240
- data/spec/fixtures/tt0083987 +268 -242
- data/spec/fixtures/tt0095016 +299 -197
- data/spec/fixtures/tt0110912 +282 -247
- data/spec/fixtures/tt0111161 +229 -236
- data/spec/fixtures/tt0117731 +232 -217
- data/spec/fixtures/tt0166222 +166 -189
- data/spec/fixtures/tt0242653 +271 -210
- data/spec/fixtures/tt0330508 +123 -153
- data/spec/fixtures/tt0468569 +231 -206
- data/spec/fixtures/tt0898266 +1505 -0
- data/spec/fixtures/tt1401252 +153 -146
- data/spec/fixtures/tt1520211 +252 -225
- data/spec/fixtures/wall_e_search +742 -0
- data/spec/imdb/episode_spec.rb +1 -1
- data/spec/imdb/movie_spec.rb +24 -1
- data/spec/imdb/search_spec.rb +2 -20
- data/spec/imdb/season_spec.rb +22 -0
- data/spec/imdb/series_spec.rb +1 -1
- data/spec/spec_helper.rb +5 -1
- metadata +28 -21
- data/History.txt +0 -78
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 484e1e31e7973cd0f63e00df2fe92b9301a89491
|
4
|
+
data.tar.gz: b9a2c192d6c30500cacc5b746e0b8f0f70f54986
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1c1e6f65c406d032e0c4081d3914c7af7ab6f827ff0e7f739fb823426702a0e6b14963a4123fe397526c901ff196ab810d4900646041ad1055d6d126f6a722f
|
7
|
+
data.tar.gz: d8aba76c13a59e69d9c88caf36f2cd655c28ae8e6f3fff7bf87c9d475d55e14584c18dcc441b0747373993c2e844eff0a8d9ed69d887af159d07ef85be4a6ce2
|
data/.travis.yml
CHANGED
@@ -4,20 +4,16 @@ notifications:
|
|
4
4
|
email: false
|
5
5
|
|
6
6
|
rvm:
|
7
|
-
- 1.9.2
|
8
|
-
- 1.9.3
|
9
7
|
- 2.0.0
|
8
|
+
- 2.1.0
|
10
9
|
- ruby-head
|
11
|
-
- rbx-19mode
|
12
|
-
- 1.8.7
|
13
|
-
- ree
|
14
10
|
|
15
11
|
matrix:
|
16
12
|
allow_failures:
|
17
|
-
- rvm: rbx-19mode
|
18
13
|
- rvm: ruby-head
|
19
|
-
|
20
|
-
|
14
|
+
|
15
|
+
before_install:
|
16
|
+
- gem install fakeweb
|
21
17
|
|
22
18
|
script:
|
23
19
|
- "bundle exec rake spec"
|
data/README.md
CHANGED
@@ -84,8 +84,8 @@ To update the packaged fixtures files with actual imdb.com samples, use the
|
|
84
84
|
|
85
85
|
## Disclaimer
|
86
86
|
|
87
|
-
I,
|
88
|
-
|
87
|
+
Neither I, nor any developer who contributed to this project, accept any kind of
|
88
|
+
liability for your use of this library.
|
89
89
|
|
90
90
|
IMDB does not permit use of its data by third parties without their consent.
|
91
91
|
|
data/lib/imdb/base.rb
CHANGED
@@ -149,6 +149,16 @@ module Imdb
|
|
149
149
|
locations_document.search("#filming_locations_content .soda dt a").map { |link| link.content.strip } rescue []
|
150
150
|
end
|
151
151
|
|
152
|
+
# Returns alternative titles from imdb_url/releaseinfo
|
153
|
+
def also_known_as
|
154
|
+
releaseinfo_document.search("#akas tr").map { |aka|
|
155
|
+
{
|
156
|
+
:version => aka.search("td:nth-child(1)").text,
|
157
|
+
:title => aka.search("td:nth-child(2)").text
|
158
|
+
}
|
159
|
+
} rescue []
|
160
|
+
end
|
161
|
+
|
152
162
|
private
|
153
163
|
|
154
164
|
# Returns a new Nokogiri document for parsing.
|
@@ -160,6 +170,10 @@ module Imdb
|
|
160
170
|
@locations_document ||= Nokogiri::HTML(Imdb::Movie.find_by_id(@id, "locations"))
|
161
171
|
end
|
162
172
|
|
173
|
+
def releaseinfo_document
|
174
|
+
@releaseinfo_document ||= Nokogiri::HTML(Imdb::Movie.find_by_id(@id, "releaseinfo"))
|
175
|
+
end
|
176
|
+
|
163
177
|
# Use HTTParty to fetch the raw HTML for this movie.
|
164
178
|
def self.find_by_id(imdb_id, page = :combined)
|
165
179
|
open("http://akas.imdb.com/title/tt#{imdb_id}/#{page}")
|
data/lib/imdb/season.rb
CHANGED
@@ -9,17 +9,19 @@ module Imdb
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def episode(number)
|
12
|
-
episodes.
|
12
|
+
i = episodes.index{|ep| ep.episode == number}
|
13
|
+
(i.nil? ? nil : episodes[i])
|
13
14
|
end
|
14
15
|
|
15
16
|
def episodes
|
16
17
|
@episodes = []
|
17
18
|
|
18
|
-
document.search("div.eplist
|
19
|
+
document.search("div.eplist div[@itemprop*='episode']").each do |div|
|
20
|
+
link = div.search("a[@itemprop*='name']").first
|
19
21
|
@episodes << Imdb::Episode.new(
|
20
22
|
link[:href].scan(/\d+/).first,
|
21
23
|
@season_number,
|
22
|
-
|
24
|
+
div.search("meta[@itemprop*='episodeNumber']").first[:content].to_i,
|
23
25
|
link.content.strip
|
24
26
|
)
|
25
27
|
end
|
@@ -5,12 +5,7 @@ module Imdb #:nordoc:
|
|
5
5
|
|
6
6
|
# Unescape HTML
|
7
7
|
def imdb_unescape_html
|
8
|
-
|
9
|
-
CGI::unescapeHTML(self.encode("UTF-8", 'ISO-8859-1'))
|
10
|
-
else
|
11
|
-
require 'iconv'
|
12
|
-
Iconv.conv("UTF-8", 'ISO-8859-1', CGI::unescapeHTML(self))
|
13
|
-
end
|
8
|
+
CGI::unescapeHTML(self.encode("UTF-8"))
|
14
9
|
end
|
15
10
|
|
16
11
|
# Strip tags
|
data/lib/imdb/version.rb
CHANGED
data/spec/fixtures/locations
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
HTTP/1.1 200 OK
|
2
|
-
Date:
|
2
|
+
Date: Fri, 31 Jan 2014 10:08:09 GMT
|
3
3
|
Server: Server
|
4
|
+
X-Frame-Options: SAMEORIGIN
|
4
5
|
Content-Type: text/html;charset=UTF-8
|
5
6
|
Content-Language: en-US
|
6
7
|
Vary: Accept-Encoding,User-Agent
|
7
|
-
Set-Cookie: uu=
|
8
|
-
Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=
|
9
|
-
Set-Cookie: session-id-time=
|
8
|
+
Set-Cookie: uu=BCYlOjAk4h7CBaDJ9fB7tBbRFDv1QidOCmaVaY3C-viiXnUHgMV9tHiRA91wQq9Jj_XTt8Ox1qt4%0D%0AQeaNin7AQekkgfj2a5b2e0JV06ximTfOugiMqH24H6SxyO7hHmKT4PlUmvguQ2Y7SQOhNlaR1_Io%0D%0AAJdxeX0JtEIJzMOFUFJHD9UaS89TSlnuwdDwTLe8DiYv6Yvofxbyab2AIjE0eExzCXvZf_7-cTuT%0D%0AvJ6YMv0i5WDWP8jF6CSyJMZ7DN_9LIw9bi9qdYS6CoFPdwaWpSuIwQ%0D%0A; Domain=.imdb.com; Expires=Wed, 18-Feb-2082 13:22:16 GMT; Path=/
|
9
|
+
Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=Wed, 18-Feb-2082 13:22:16 GMT; Path=/
|
10
|
+
Set-Cookie: session-id-time=1548842889; Domain=.imdb.com; Expires=Wed, 18-Feb-2082 13:22:16 GMT; Path=/
|
10
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 "
|
11
12
|
Transfer-Encoding: chunked
|
12
13
|
|
@@ -27,15 +28,15 @@ TODO: need to get correct meta keywords and description. Currently using what's
|
|
27
28
|
xmlns:og="http://ogp.me/ns#"
|
28
29
|
xmlns:fb="http://www.facebook.com/2008/fbml">
|
29
30
|
<head>
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
31
|
+
<script type="text/javascript">var ue_t0=window.ue_t0||+new Date();</script>
|
32
|
+
<script type="text/javascript">
|
33
|
+
var ue_mid = "A1EVAM02EL8SFB";
|
34
|
+
var ue_sn = "www.imdb.com";
|
35
|
+
var ue_furl = "fls-na.amazon.com";
|
36
|
+
var ue_sid = "000-0000000-0000000";
|
37
|
+
var ue_id = "06PD8G06ZCW8AQTBPF5P";
|
38
|
+
(function(e){var c=e,a={main_scope:"mainscopecsm",q:[],t0:c.ue_t0||+new Date(),d:g};function g(h){return +new Date()-(h?0:a.t0)}function d(h){return function(){a.q.push({n:h,a:arguments,t:a.d()})}}function b(k,j,h){var i={m:k,f:j,l:h,fromOnError:1,args:arguments};c.ueLogError(i);return false}b.skipTrace=1;e.onerror=b;function f(){c.uex("ld")}if(e.addEventListener){e.addEventListener("load",f,false)}else{if(e.attachEvent){e.attachEvent("onload",f)}}a.tag=d("tag");a.log=d("log");a.reset=d("rst");c.ue_csm=c;c.ue=a;c.ueLogError=d("err");c.ues=d("ues");c.uet=d("uet");c.uex=d("uex");c.uet("ue")})(window);(function(e,d){var a=e.ue||{};function c(g){if(!g){return}var f=d.head||d.getElementsByTagName("head")[0]||d.documentElement,h=d.createElement("script");h.async="async";h.src=g;f.insertBefore(h,f.firstChild)}function b(){var k=e.ue_cdn||"z-ecx.images-amazon.com",g=e.ue_cdns||"images-na.ssl-images-amazon.com",j="/images/G/01/csminstrumentation/",h=e.ue_file||"ue-full-ef584a44e8ea58e3d4d928956600a9b6._V1_.js",f,i;if(h.indexOf("NSTRUMENTATION_FIL")>=0){return}if("ue_https" in e){f=e.ue_https}else{f=e.location&&e.location.protocol=="https:"?1:0}i=f?"https://":"http://";i+=f?g:k;i+=j;i+=h;c(i)}if(!e.ue_inline){b()}a.uels=c;e.ue=a})(window,document);
|
39
|
+
</script>
|
39
40
|
|
40
41
|
|
41
42
|
|
@@ -56,24 +57,24 @@ xmlns:fb="http://www.facebook.com/2008/fbml">
|
|
56
57
|
<link rel="search" type="application/opensearchdescription+xml" href="http://ia.media-imdb.com/images/G/01/imdb/images/imdbsearch-3349468880._V379388505_.xml" title="IMDb" />
|
57
58
|
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
58
59
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
60
|
+
|
61
|
+
<link rel='image_src' href="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0MTk3OA@@._V1_SY500_SX335_.jpg">
|
62
|
+
<meta property='og:image' content="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0MTk3OA@@._V1_SY500_SX335_.jpg" />
|
63
|
+
|
64
|
+
<meta property='og:type' content="video.movie" />
|
65
|
+
<meta property='fb:app_id' content='115109575169727' />
|
66
|
+
<meta property='og:title' content="Die Hard (1988)" />
|
67
|
+
<meta property='og:site_name' content='IMDb' />
|
68
|
+
<meta name="title" content="Die Hard (1988) - IMDb" />
|
69
|
+
<meta name="description" content="Die Hard (1988) Movies, TV, Celebs, and more..." />
|
70
|
+
<meta property="og:description" content="Die Hard (1988) Movies, TV, Celebs, and more..." />
|
71
|
+
<meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits" />
|
72
|
+
<meta name="request_id" content="06PD8G06ZCW8AQTBPF5P" />
|
72
73
|
|
73
74
|
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
74
|
-
<!-- h=ics-1a-i-
|
75
|
+
<!-- h=ics-1a-i-584b9e79.us-east-1 -->
|
75
76
|
|
76
|
-
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/title-
|
77
|
+
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/title-2125033518._V363851123_.css" />
|
77
78
|
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/ie-1918465287._V354866480_.css" /><![endif]-->
|
78
79
|
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-mega-3538633082._V355276482_.css" />
|
79
80
|
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
@@ -171,17 +172,20 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
171
172
|
<ul id="consumer_main_nav" class="main_nav">
|
172
173
|
<li class="spacer"></li>
|
173
174
|
<li class="css_nav_item" id="navTitleMenu">
|
174
|
-
<p class="navCategory">
|
175
|
+
<p class="navCategory">
|
176
|
+
<a href="/movies-in-theaters/?ref_=nv_tp_inth_1" >Movies</a>,
|
177
|
+
<a href="/tv/?ref_=nv_tp_tvhm_2" >TV</a><br />
|
178
|
+
& <a href="/showtimes/?ref_=nv_tp_sh_3" >Showtimes</a></p>
|
175
179
|
<span class="downArrow"></span>
|
176
180
|
<div id="navMenu1" class="sub_nav">
|
177
181
|
<div id="titleAd"></div>
|
178
182
|
<div class="subNavListContainer">
|
179
183
|
<h5>MOVIES</h5>
|
180
184
|
<ul>
|
181
|
-
<li><a href="/
|
182
|
-
<li><a href="/
|
183
|
-
<li><a href="/
|
184
|
-
<li><a href="/movies-
|
185
|
+
<li><a href="/movies-in-theaters/?ref_=nv_mv_inth_1" >In Theaters</a></li>
|
186
|
+
<li><a href="/showtimes/?ref_=nv_mv_sh_2" >Showtimes & Tickets</a></li>
|
187
|
+
<li><a href="/trailers/?ref_=nv_mv_tr_3" >Latest Trailers</a></li>
|
188
|
+
<li><a href="/movies-coming-soon/?ref_=nv_mv_cs_4" >Coming Soon</a></li>
|
185
189
|
<li><a href="/calendar/?ref_=nv_mv_cal_5" >Release Calendar</a></li>
|
186
190
|
</ul>
|
187
191
|
<h5>CHARTS & TRENDS</h5>
|
@@ -204,24 +208,26 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
204
208
|
</ul>
|
205
209
|
<h5>SPECIAL FEATURES</h5>
|
206
210
|
<ul>
|
207
|
-
<li><a href="/
|
208
|
-
<li><a href="/
|
209
|
-
<li><a href="/
|
210
|
-
<li><a href="/x-ray/?ref_=nv_sf_xray_4" >X-Ray for Movies & TV</a></li>
|
211
|
+
<li><a href="/year-in-review/?ref_=nv_sf_best_1" >Best of 2013</a></li>
|
212
|
+
<li><a href="/oscars/?ref_=nv_sf_rto_2" >Road to the Oscars 2014</a></li>
|
213
|
+
<li><a href="/x-ray/?ref_=nv_sf_xray_3" >X-Ray for Movies & TV</a></li>
|
211
214
|
</ul>
|
212
215
|
</div>
|
213
216
|
</div>
|
214
217
|
</li>
|
215
218
|
<li class="spacer"></li>
|
216
219
|
<li class="css_nav_item" id="navNameMenu">
|
217
|
-
<p class="navCategory">
|
220
|
+
<p class="navCategory">
|
221
|
+
<a href="/search/name?gender=male,female&ref_=nv_tp_cel_1" >Celebs</a>,
|
222
|
+
<a href="/event/?ref_=nv_tp_ev_2" >Events</a><br />
|
223
|
+
& <a href="/media/index/rg1176148480?ref_=nv_tp_ph_3" >Photos</a></p>
|
218
224
|
<span class="downArrow"></span>
|
219
225
|
<div id="navMenu2" class="sub_nav">
|
220
226
|
<div id="nameAd"></div>
|
221
227
|
<div class="subNavListContainer">
|
222
228
|
<h5>CELEBS</h5>
|
223
229
|
<ul>
|
224
|
-
|
230
|
+
<li><a href="/search/name?birth_monthday=01-31&refine=birth_monthday&ref_=nv_cel_brn_1" >Born Today</a></li>
|
225
231
|
<li><a href="/news/celebrity?ref_=nv_cel_nw_2" >Celebrity News</a></li>
|
226
232
|
<li><a href="/search/name?gender=male,female&ref_=nv_cel_m_3" >Most Popular Celebs</a></li>
|
227
233
|
</ul>
|
@@ -237,11 +243,11 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
237
243
|
<div class="subNavListContainer">
|
238
244
|
<h5>EVENTS</h5>
|
239
245
|
<ul>
|
240
|
-
<li><a href="/
|
241
|
-
<li><a href="/
|
242
|
-
<li><a href="/
|
243
|
-
<li><a href="/
|
244
|
-
<li><a href="/
|
246
|
+
<li><a href="/oscars/?ref_=nv_ev_rto_1" >Road to the Oscars</a></li>
|
247
|
+
<li><a href="/emmys/?ref_=nv_ev_rte_2" >Road to the Emmys</a></li>
|
248
|
+
<li><a href="/comic-con/?ref_=nv_ev_comic_3" >Comic-Con</a></li>
|
249
|
+
<li><a href="/cannes/?ref_=nv_ev_can_4" >Cannes</a></li>
|
250
|
+
<li><a href="/tribeca/?ref_=nv_ev_tri_5" >Tribeca</a></li>
|
245
251
|
<li><a href="/sundance/?ref_=nv_ev_sun_6" >Sundance</a></li>
|
246
252
|
<li><a href="/event/?ref_=nv_ev_all_7" >More Popular Events</a></li>
|
247
253
|
</ul>
|
@@ -250,7 +256,9 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
250
256
|
</li>
|
251
257
|
<li class="spacer"></li>
|
252
258
|
<li class="css_nav_item" id="navNewsMenu">
|
253
|
-
<p class="navCategory">
|
259
|
+
<p class="navCategory">
|
260
|
+
<a href="/news/top?ref_=nv_tp_nw_1" >News</a> &<br />
|
261
|
+
<a href="/boards/?ref_=nv_tp_bd_2" >Community</a></p>
|
254
262
|
<span class="downArrow"></span>
|
255
263
|
<div id="navMenu3" class="sub_nav">
|
256
264
|
<div id="latestHeadlines">
|
@@ -258,17 +266,17 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
258
266
|
<h5>LATEST HEADLINES</h5>
|
259
267
|
<ul>
|
260
268
|
<li itemprop="headline">
|
261
|
-
<a href="/news/
|
269
|
+
<a href="/news/ni56738656/?ref_=nv_nw_tn_1" > 'Neighbors' with Seth Rogen, 'Space Station 76,' more join SXSW features lineup
|
262
270
|
</a><br />
|
263
271
|
<span class="time">14 hours ago</span>
|
264
272
|
</li>
|
265
273
|
<li itemprop="headline">
|
266
|
-
<a href="/news/
|
274
|
+
<a href="/news/ni56738234/?ref_=nv_nw_tn_2" > Oscars: Michael B. Jordan, Kristen Bell to Host Sci-Tech Awards
|
267
275
|
</a><br />
|
268
|
-
<span class="time">
|
276
|
+
<span class="time">15 hours ago</span>
|
269
277
|
</li>
|
270
278
|
<li itemprop="headline">
|
271
|
-
<a href="/news/
|
279
|
+
<a href="/news/ni56737830/?ref_=nv_nw_tn_3" > Jerry Seinfeld Sorta Confirms Seinfeld Reunion, Gives Details on Secret Project With Jason Alexander
|
272
280
|
</a><br />
|
273
281
|
<span class="time">16 hours ago</span>
|
274
282
|
</li>
|
@@ -302,7 +310,7 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
302
310
|
<span class="downArrow"></span>
|
303
311
|
<div id="navMenu4" class="sub_nav">
|
304
312
|
<h5>
|
305
|
-
|
313
|
+
YOUR WATCHLIST
|
306
314
|
</h5>
|
307
315
|
<ul id="navWatchlist">
|
308
316
|
</ul>
|
@@ -318,7 +326,7 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
318
326
|
src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot2_popular-4090757197._V360060945_.jpg"
|
319
327
|
},
|
320
328
|
{
|
321
|
-
href : "/
|
329
|
+
href : "/chart/top",
|
322
330
|
src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot3_top250-575799966._V360061165_.jpg"
|
323
331
|
}
|
324
332
|
];
|
@@ -454,13 +462,13 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
454
462
|
<div class="header"><div class="nav"><div class="desc">Showing all 4 filming locations</div></div></div>
|
455
463
|
<div class="soda odd">
|
456
464
|
<dt>
|
457
|
-
<a href="/search/title?locations=
|
465
|
+
<a href="/search/title?locations=Fox%20Plaza%20-%202121%20Avenue%20of%20the%20Stars%2C%20Century%20City%2C%20Los%20Angeles%2C%20California%2C%20USA&ref_=ttloc_loc_1" itemprop='url'>Fox Plaza - 2121 Avenue of the Stars, Century City, Los Angeles, California, USA
|
458
466
|
</a> </dt>
|
459
467
|
<dd>
|
460
|
-
</dd>
|
468
|
+
(Nakatomi building) </dd>
|
461
469
|
<div class="did-you-know-actions">
|
462
|
-
<a href="?item=
|
463
|
-
<span class='interesting-cast-vote' data-item-id="
|
470
|
+
<a href="?item=lc0087324" class="interesting-count-text" > 4 of 4 found this interesting</a>
|
471
|
+
<span class='interesting-cast-vote' data-item-id="lc0087324" data-item-type="locations">
|
464
472
|
Interesting? <button class="cast-vote" value="up">Yes</button><button class="cast-vote" value="down">No</button>
|
465
473
|
</span>
|
466
474
|
</div>
|
@@ -472,7 +480,7 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
472
480
|
<dd>
|
473
481
|
(interiors) </dd>
|
474
482
|
<div class="did-you-know-actions">
|
475
|
-
<a href="?item=lc0087323" class="interesting-count-text" >
|
483
|
+
<a href="?item=lc0087323" class="interesting-count-text" > 3 of 3 found this interesting</a>
|
476
484
|
<span class='interesting-cast-vote' data-item-id="lc0087323" data-item-type="locations">
|
477
485
|
Interesting? <button class="cast-vote" value="up">Yes</button><button class="cast-vote" value="down">No</button>
|
478
486
|
</span>
|
@@ -480,13 +488,13 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
480
488
|
</div>
|
481
489
|
<div class="soda odd">
|
482
490
|
<dt>
|
483
|
-
<a href="/search/title?locations=
|
491
|
+
<a href="/search/title?locations=Alpena%20Airport%2C%20Alpena%2C%20Michigan%2C%20USA&ref_=ttloc_loc_3" itemprop='url'>Alpena Airport, Alpena, Michigan, USA
|
484
492
|
</a> </dt>
|
485
493
|
<dd>
|
486
|
-
|
494
|
+
</dd>
|
487
495
|
<div class="did-you-know-actions">
|
488
|
-
<a href="?item=
|
489
|
-
<span class='interesting-cast-vote' data-item-id="
|
496
|
+
<a href="?item=lc0749255" class="interesting-count-text" > 1 of 1 found this interesting</a>
|
497
|
+
<span class='interesting-cast-vote' data-item-id="lc0749255" data-item-type="locations">
|
490
498
|
Interesting? <button class="cast-vote" value="up">Yes</button><button class="cast-vote" value="down">No</button>
|
491
499
|
</span>
|
492
500
|
</div>
|
@@ -498,7 +506,7 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
498
506
|
<dd>
|
499
507
|
(studio) </dd>
|
500
508
|
<div class="did-you-know-actions">
|
501
|
-
<a href="?item=lc0087325" class="interesting-count-text" >
|
509
|
+
<a href="?item=lc0087325" class="interesting-count-text" > 1 of 1 found this interesting</a>
|
502
510
|
<span class='interesting-cast-vote' data-item-id="lc0087325" data-item-type="locations">
|
503
511
|
Interesting? <button class="cast-vote" value="up">Yes</button><button class="cast-vote" value="down">No</button>
|
504
512
|
</span>
|
@@ -508,6 +516,7 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
508
516
|
</div>
|
509
517
|
|
510
518
|
|
519
|
+
|
511
520
|
<div class="article" id="see_also">
|
512
521
|
<h2>See also</h2>
|
513
522
|
<p>
|
@@ -570,9 +579,11 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
570
579
|
<!-- no content received for slot: top_rhs -->
|
571
580
|
|
572
581
|
|
582
|
+
|
583
|
+
|
573
584
|
<div class="aux-content-widget-3 links subnav" div="quicklinks">
|
574
585
|
|
575
|
-
<a href="/title/tt0095016/?ref_=ttloc_ql" class="subnav_heading" >Die Hard</a>
|
586
|
+
<a href="/title/tt0095016/?ref_=ttloc_ql" class="subnav_heading" >Die Hard</a> <hr/>
|
576
587
|
|
577
588
|
|
578
589
|
<h4>Details</h4>
|
@@ -694,7 +705,7 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
694
705
|
<h4>TV</h4>
|
695
706
|
<ul class="quicklinks">
|
696
707
|
<li class="subnav_item_main">
|
697
|
-
<a href="/title/tt0095016/tvschedule?ref_=ttloc_ql_tv_1" class="link
|
708
|
+
<a href="/title/tt0095016/tvschedule?ref_=ttloc_ql_tv_1" class="link" >TV Schedule</a>
|
698
709
|
</li>
|
699
710
|
</ul>
|
700
711
|
|
@@ -733,7 +744,7 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
733
744
|
<div class="social_networking">
|
734
745
|
<span><strong>Share</strong> this page:</span>
|
735
746
|
<a onclick="window.open('http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0095016%2F', 'newWindow', 'width=626, height=436'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0095016%2F" target="_blank" title="Share on Facebook" class="share_icon facebook"></a>
|
736
|
-
<a onclick="window.open('http://twitter.com/
|
747
|
+
<a onclick="window.open('http://twitter.com/intent/tweet?text=Die%20Hard%20(1988)%20-%20http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0095016%2F', 'newWindow', 'width=815, height=436'); return false;" href="http://twitter.com/intent/tweet?text=Die%20Hard%20(1988)%20-%20http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0095016%2F" target="_blank" title="Share on Twitter" class="share_icon twitter"></a>
|
737
748
|
<a onclick="$('div.social input[name=share-link]').show().select(); return false;" title="Share the page" class="share_icon share_url_link" href="http://www.imdb.com/title/tt0095016/"></a>
|
738
749
|
</div>
|
739
750
|
<input type="text" name="share-link" value="http://www.imdb.com/title/tt0095016/" readonly>
|
@@ -762,101 +773,96 @@ src="http://ia.media-imdb.com/images/M/MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0M
|
|
762
773
|
|
763
774
|
<div class="list-preview even">
|
764
775
|
<div class="list-preview-item-narrow">
|
765
|
-
<a href="/list/
|
776
|
+
<a href="/list/94AxxdmHt3k/?ref_=ttloc_rls_1" >
|
766
777
|
<img height="86" width="86" alt="list image" title="list image"
|
767
778
|
src="/images/nopicture/medium/film.png"
|
768
|
-
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/
|
779
|
+
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/MV5BMjE0Mjc3ODAwNV5BMl5BanBnXkFtZTgwMDM3ODI1MDE@._V1_SX86_CR0,0,86,86_.jpg" />
|
769
780
|
<noscript>
|
770
781
|
<img height="86" width="86" alt="list image" title="list image"
|
771
|
-
src="http://ia.media-imdb.com/images/M/
|
782
|
+
src="http://ia.media-imdb.com/images/M/MV5BMjE0Mjc3ODAwNV5BMl5BanBnXkFtZTgwMDM3ODI1MDE@._V1_SX86_CR0,0,86,86_.jpg" class="rec_poster_img" />
|
772
783
|
</noscript>
|
773
784
|
</a> </div>
|
774
785
|
<div class="list_name">
|
775
|
-
<b><a href="/list/
|
786
|
+
<b><a href="/list/94AxxdmHt3k/?ref_=ttloc_rls_1" >Great Movie Quotes from the 1980s</a></b>
|
776
787
|
</div>
|
777
788
|
<div class="list_meta">
|
778
|
-
a list of
|
779
|
-
created
|
789
|
+
a list of 44 titles
|
790
|
+
created 16 Oct 2010
|
780
791
|
</div>
|
781
792
|
<div class="clear"> </div>
|
782
793
|
</div>
|
783
794
|
<div class="list-preview odd">
|
784
795
|
<div class="list-preview-item-narrow">
|
785
|
-
<a href="/list/
|
796
|
+
<a href="/list/yJU7d0IpOjQ/?ref_=ttloc_rls_2" >
|
786
797
|
<img height="86" width="86" alt="list image" title="list image"
|
787
|
-
src="/images/nopicture/medium/film.png"
|
788
|
-
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/MV5BMjA4Njg1MDcwN15BMl5BanBnXkFtZTYwMzAxNjM3._V1_SX86_CR0,0,86,86_.jpg" />
|
789
|
-
<noscript>
|
790
|
-
<img height="86" width="86" alt="list image" title="list image"
|
791
|
-
src="http://ia.media-imdb.com/images/M/MV5BMjA4Njg1MDcwN15BMl5BanBnXkFtZTYwMzAxNjM3._V1_SX86_CR0,0,86,86_.jpg" class="rec_poster_img" />
|
792
|
-
</noscript>
|
798
|
+
src="/images/nopicture/medium/film.png" class="rec_poster_img" />
|
793
799
|
</a> </div>
|
794
800
|
<div class="list_name">
|
795
|
-
<b><a href="/list/
|
801
|
+
<b><a href="/list/yJU7d0IpOjQ/?ref_=ttloc_rls_2" >The League of Extremely Frightening Men</a></b>
|
796
802
|
</div>
|
797
803
|
<div class="list_meta">
|
798
|
-
a list of
|
799
|
-
created
|
804
|
+
a list of 31 images
|
805
|
+
created 10 Nov 2012
|
800
806
|
</div>
|
801
807
|
<div class="clear"> </div>
|
802
808
|
</div>
|
803
809
|
<div class="list-preview even">
|
804
810
|
<div class="list-preview-item-narrow">
|
805
|
-
<a href="/list/
|
811
|
+
<a href="/list/yuanCaiOWiE/?ref_=ttloc_rls_3" >
|
806
812
|
<img height="86" width="86" alt="list image" title="list image"
|
807
813
|
src="/images/nopicture/medium/film.png"
|
808
|
-
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/
|
814
|
+
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/MV5BMTU4NTczODkwM15BMl5BanBnXkFtZTcwMzEyMTIyMw@@._V1_SX86_CR0,0,86,86_.jpg" />
|
809
815
|
<noscript>
|
810
816
|
<img height="86" width="86" alt="list image" title="list image"
|
811
|
-
src="http://ia.media-imdb.com/images/M/
|
817
|
+
src="http://ia.media-imdb.com/images/M/MV5BMTU4NTczODkwM15BMl5BanBnXkFtZTcwMzEyMTIyMw@@._V1_SX86_CR0,0,86,86_.jpg" class="rec_poster_img" />
|
812
818
|
</noscript>
|
813
819
|
</a> </div>
|
814
820
|
<div class="list_name">
|
815
|
-
<b><a href="/list/
|
821
|
+
<b><a href="/list/yuanCaiOWiE/?ref_=ttloc_rls_3" >Movies I've watched</a></b>
|
816
822
|
</div>
|
817
823
|
<div class="list_meta">
|
818
|
-
a list of
|
819
|
-
created
|
824
|
+
a list of 383 titles
|
825
|
+
created 11 months ago
|
820
826
|
</div>
|
821
827
|
<div class="clear"> </div>
|
822
828
|
</div>
|
823
829
|
<div class="list-preview odd">
|
824
830
|
<div class="list-preview-item-narrow">
|
825
|
-
<a href="/list/
|
831
|
+
<a href="/list/A_1NRcSpi4c/?ref_=ttloc_rls_4" >
|
826
832
|
<img height="86" width="86" alt="list image" title="list image"
|
827
833
|
src="/images/nopicture/medium/film.png"
|
828
|
-
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/
|
834
|
+
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/MV5BMTQxMTAwMDQ3Nl5BMl5BanBnXkFtZTcwODMwNTgzMQ@@._V1_SX86_CR0,0,86,86_.jpg" />
|
829
835
|
<noscript>
|
830
836
|
<img height="86" width="86" alt="list image" title="list image"
|
831
|
-
src="http://ia.media-imdb.com/images/M/
|
837
|
+
src="http://ia.media-imdb.com/images/M/MV5BMTQxMTAwMDQ3Nl5BMl5BanBnXkFtZTcwODMwNTgzMQ@@._V1_SX86_CR0,0,86,86_.jpg" class="rec_poster_img" />
|
832
838
|
</noscript>
|
833
839
|
</a> </div>
|
834
840
|
<div class="list_name">
|
835
|
-
<b><a href="/list/
|
841
|
+
<b><a href="/list/A_1NRcSpi4c/?ref_=ttloc_rls_4" >Top 50 movies</a></b>
|
836
842
|
</div>
|
837
843
|
<div class="list_meta">
|
838
|
-
a list of
|
839
|
-
created
|
844
|
+
a list of 38 titles
|
845
|
+
created 11 months ago
|
840
846
|
</div>
|
841
847
|
<div class="clear"> </div>
|
842
848
|
</div>
|
843
849
|
<div class="list-preview even">
|
844
850
|
<div class="list-preview-item-narrow">
|
845
|
-
<a href="/list
|
851
|
+
<a href="/list/gkFvKWNuLZQ/?ref_=ttloc_rls_5" >
|
846
852
|
<img height="86" width="86" alt="list image" title="list image"
|
847
853
|
src="/images/nopicture/medium/film.png"
|
848
|
-
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/
|
854
|
+
class="loadlate hidden rec_poster_img" loadlate="http://ia.media-imdb.com/images/M/MV5BMTQ3MDA4MDIyN15BMl5BanBnXkFtZTYwOTg0Njk4._V1_SX86_CR0,0,86,86_.jpg" />
|
849
855
|
<noscript>
|
850
856
|
<img height="86" width="86" alt="list image" title="list image"
|
851
|
-
src="http://ia.media-imdb.com/images/M/
|
857
|
+
src="http://ia.media-imdb.com/images/M/MV5BMTQ3MDA4MDIyN15BMl5BanBnXkFtZTYwOTg0Njk4._V1_SX86_CR0,0,86,86_.jpg" class="rec_poster_img" />
|
852
858
|
</noscript>
|
853
859
|
</a> </div>
|
854
860
|
<div class="list_name">
|
855
|
-
<b><a href="/list
|
861
|
+
<b><a href="/list/gkFvKWNuLZQ/?ref_=ttloc_rls_5" >Top Action Flicks</a></b>
|
856
862
|
</div>
|
857
863
|
<div class="list_meta">
|
858
|
-
a list of
|
859
|
-
created
|
864
|
+
a list of 37 titles
|
865
|
+
created 3 months ago
|
860
866
|
</div>
|
861
867
|
<div class="clear"> </div>
|
862
868
|
</div>
|
@@ -912,10 +918,6 @@ onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=/chart/';"
|
|
912
918
|
href="/chart/"
|
913
919
|
>Top Movies</a>
|
914
920
|
| <a
|
915
|
-
onclick="(new Image()).src='/rg/watchlist/footer/images/b.gif?link=/list/watchlist';"
|
916
|
-
href="/list/watchlist"
|
917
|
-
>Watchlist</a>
|
918
|
-
| <a
|
919
921
|
onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=/chart/top';"
|
920
922
|
href="/chart/top"
|
921
923
|
>Top 250</a>
|
@@ -928,10 +930,6 @@ onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=/news/';"
|
|
928
930
|
href="/news/"
|
929
931
|
>News</a>
|
930
932
|
| <a
|
931
|
-
onclick="(new Image()).src='/rg/video/footer/images/b.gif?link=/features/video/';"
|
932
|
-
href="/features/video/"
|
933
|
-
>Video</a>
|
934
|
-
| <a
|
935
933
|
onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=/boards/';"
|
936
934
|
href="/boards/"
|
937
935
|
>Message Boards</a>
|
@@ -946,16 +944,6 @@ onclick="(new Image()).src='/rg/register-v2/footer/images/b.gif?link=https://sec
|
|
946
944
|
href="https://secure.imdb.com/register-imdb/form-v2"
|
947
945
|
>Register</a>
|
948
946
|
| <a
|
949
|
-
onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=/help/show_article?rssavailable';"
|
950
|
-
href="/help/show_article?rssavailable"
|
951
|
-
class="navbarSprite"
|
952
|
-
id="footer_rss_image"
|
953
|
-
></a>
|
954
|
-
<a
|
955
|
-
onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=/help/show_article?rssavailable';"
|
956
|
-
href="/help/show_article?rssavailable"
|
957
|
-
>RSS</a>
|
958
|
-
| <a
|
959
947
|
onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=/advertising/';"
|
960
948
|
href="/advertising/"
|
961
949
|
>Advertising</a>
|
@@ -979,10 +967,6 @@ href="http://www.boxofficemojo.com/"
|
|
979
967
|
onclick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com/';"
|
980
968
|
href="http://www.withoutabox.com/"
|
981
969
|
>Withoutabox</a>
|
982
|
-
| <a
|
983
|
-
onclick="(new Image()).src='/rg/LOVEFILM/FOOTER/images/b.gif?link=http://www.lovefilm.com/browse/film/watch-online/';"
|
984
|
-
href="http://www.lovefilm.com/browse/film/watch-online/"
|
985
|
-
>LOVEFiLM</a>
|
986
970
|
<br /><br />
|
987
971
|
IMDb Mobile:
|
988
972
|
<a
|
@@ -1017,7 +1001,7 @@ href="http://twitter.com/imdb"
|
|
1017
1001
|
<a
|
1018
1002
|
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
|
1019
1003
|
href="/help/show_article?conditions"
|
1020
|
-
>Copyright ©</a> 1990-
|
1004
|
+
>Copyright ©</a> 1990-2014
|
1021
1005
|
<a
|
1022
1006
|
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/';"
|
1023
1007
|
href="/help/"
|
@@ -1037,9 +1021,9 @@ href="//www.amazon.com/InterestBasedAds"
|
|
1037
1021
|
An <span id="amazon_logo" class="footer_logo" align="middle"></span> company.
|
1038
1022
|
</p>
|
1039
1023
|
|
1040
|
-
<table class="footer" id="amazon-affiliates"
|
1024
|
+
<table class="footer" id="amazon-affiliates">
|
1041
1025
|
<tr>
|
1042
|
-
<td colspan="
|
1026
|
+
<td colspan="8">
|
1043
1027
|
Amazon Affiliates
|
1044
1028
|
</td>
|
1045
1029
|
</tr>
|
@@ -1080,18 +1064,6 @@ href="//www.amazon.com/InterestBasedAds"
|
|
1080
1064
|
<span class="amazon-affiliate-site-desc">Buy Movie and<br>TV Show DVDs</span>
|
1081
1065
|
</a>
|
1082
1066
|
</td>
|
1083
|
-
<td class="amazon-affiliate-site-item-nth">
|
1084
|
-
<a class="amazon-affiliate-site-link" href=http://www.lovefilm.com/browse/film/watch-online/ >
|
1085
|
-
<span class="amazon-affiliate-site-name">LOVEFiLM</span><br>
|
1086
|
-
<span class="amazon-affiliate-site-desc">Watch Movies<br>Online</span>
|
1087
|
-
</a>
|
1088
|
-
</td>
|
1089
|
-
<td class="amazon-affiliate-site-item-nth">
|
1090
|
-
<a class="amazon-affiliate-site-link" href=http://www.junglee.com/ >
|
1091
|
-
<span class="amazon-affiliate-site-name">Junglee</span><br>
|
1092
|
-
<span class="amazon-affiliate-site-desc">India Online<br>Shopping</span>
|
1093
|
-
</a>
|
1094
|
-
</td>
|
1095
1067
|
<td class="amazon-affiliate-site-item-nth">
|
1096
1068
|
<a class="amazon-affiliate-site-link" href=http://www.dpreview.com >
|
1097
1069
|
<span class="amazon-affiliate-site-name">DPReview</span><br>
|
@@ -1107,31 +1079,13 @@ href="//www.amazon.com/InterestBasedAds"
|
|
1107
1079
|
</tr>
|
1108
1080
|
</table>
|
1109
1081
|
</div>
|
1110
|
-
|
1111
|
-
<script type="text/javascript">
|
1112
|
-
|
1113
|
-
var _gaq = _gaq || [];
|
1114
|
-
var seg = -1;
|
1115
|
-
_gaq.push(['_setAccount', 'UA-3916519-1']);
|
1116
|
-
_gaq.push(['_setDomainName', '.imdb.com']);
|
1117
|
-
_gaq.push(['_setSampleRate', '10']);
|
1118
|
-
_gaq.push(['_setCustomVar', 2, 'Falkor', 'false']);
|
1119
|
-
_gaq.push(['_trackPageview']); // must come last
|
1120
|
-
|
1121
|
-
(function() {
|
1122
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
1123
|
-
ga.src = 'http://www.google-analytics.com/ga.js';
|
1124
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
1125
|
-
})();
|
1126
|
-
|
1127
|
-
</script>
|
1128
1082
|
|
1129
1083
|
<!-- no content received for slot: bottom_ad -->
|
1130
1084
|
|
1131
1085
|
</div>
|
1132
1086
|
</div>
|
1133
1087
|
|
1134
|
-
<script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/title-
|
1088
|
+
<script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/title-36935490._V363304090_.js"></script>
|
1135
1089
|
|
1136
1090
|
<script type="text/imdblogin-js" id="login">
|
1137
1091
|
jQuery(document).ready(function(){
|
@@ -1154,7 +1108,7 @@ jQuery(document).ready(function(){
|
|
1154
1108
|
);
|
1155
1109
|
</script>
|
1156
1110
|
|
1157
|
-
<div id="servertime" time="
|
1111
|
+
<div id="servertime" time="53"/>
|
1158
1112
|
|
1159
1113
|
|
1160
1114
|
|