spotlite 0.2.0 → 0.2.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 +15 -0
- data/CHANGELOG.md +5 -0
- data/lib/spotlite/movie.rb +40 -39
- data/lib/spotlite/string_extensions.rb +1 -0
- data/lib/spotlite/version.rb +1 -1
- data/spec/fixtures/search_the_core +100 -76
- data/spec/fixtures/tt0002186/index +401 -261
- data/spec/fixtures/tt0047396/releaseinfo +48 -62
- data/spec/fixtures/tt0133093/fullcredits +44 -63
- data/spec/fixtures/tt0133093/index +570 -509
- data/spec/fixtures/tt0133093/keywords +41 -60
- data/spec/fixtures/tt0133093/releaseinfo +41 -60
- data/spec/fixtures/tt0133093/trivia +1049 -943
- data/spec/fixtures/tt0169547/index +608 -520
- data/spec/fixtures/tt0317248/index +590 -534
- data/spec/fixtures/tt1134629/fullcredits +855 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/spotlite/movie_spec.rb +15 -1
- metadata +7 -13
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
M2RmMDIxYjU1NzAxNWE1YTkzY2Y4MzQ4NjQ3MmY4MjEzYWM5NTQ1Yg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
N2E2YjA5ODFiMjcxYjI2NGE1YTRiNzU5NzdlM2NmZTBkMDdkZjU2Zg==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MGRiY2VmZDk0NzNiZGY2ODNiZWQ1ODQwYjlkOTcxODZmODU4NWI5ZjNkZmI4
|
10
|
+
YjVhODMzNTE5MzQxOTFkMTNlOWE3YmQwYmRhZWZkYTFiYjhjOTJhOGZjNGRi
|
11
|
+
YjI3MWFhNTFhZjlmZTYyMDU3ZmQ1ZjA3NWZmNTE2Mzc1YmY5MzA=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MGJkMTc3M2QzYjk0Mzk4NGU3ZTYyMjhhODcxNjI4YjczMDM5MWNlY2IzNDdh
|
14
|
+
Y2RlNmNkNjg3MmJmZDc1YTNjM2M1MzgwNDE2YjQwMTE0ODAyY2M3MTMxNjI0
|
15
|
+
OGI5ZWFjMDhiYWMxNDVkNmU1ZmU4YTZiNjQxM2YxYTg1MzJjM2I=
|
data/CHANGELOG.md
CHANGED
data/lib/spotlite/movie.rb
CHANGED
@@ -27,7 +27,7 @@ module Spotlite
|
|
27
27
|
|
28
28
|
# Returns original non-english title as a string
|
29
29
|
def original_title
|
30
|
-
details.at("h1.header span.title-extra[itemprop='name']").children.first.text.strip rescue nil
|
30
|
+
details.at("h1.header span.title-extra[itemprop='name']").children.first.text.gsub('"', "").strip rescue nil
|
31
31
|
end
|
32
32
|
|
33
33
|
# Returns year of original release as an integer
|
@@ -105,46 +105,19 @@ module Spotlite
|
|
105
105
|
# Returns a list of directors as an array of hashes
|
106
106
|
# with keys: +imdb_id+ (string) and +name+ (string)
|
107
107
|
def directors
|
108
|
-
|
109
|
-
links = full_credits.at("a[name='directors']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node["href"] } rescue []
|
110
|
-
imdb_ids = links.map { |link| link.parse_imdb_id } unless links.empty?
|
111
|
-
|
112
|
-
array = []
|
113
|
-
0.upto(names.size - 1) do |i|
|
114
|
-
array << {:imdb_id => imdb_ids[i], :name => names[i]}
|
115
|
-
end
|
116
|
-
|
117
|
-
array
|
108
|
+
parse_staff(:directors)
|
118
109
|
end
|
119
110
|
|
120
111
|
# Returns a list of writers as an array of hashes
|
121
112
|
# with keys: +imdb_id+ (string) and +name+ (string)
|
122
113
|
def writers
|
123
|
-
|
124
|
-
links = full_credits.at("a[name='writers']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node["href"] } rescue []
|
125
|
-
imdb_ids = links.map { |link| link.parse_imdb_id } unless links.empty?
|
126
|
-
|
127
|
-
array = []
|
128
|
-
0.upto(names.size - 1) do |i|
|
129
|
-
array << {:imdb_id => imdb_ids[i], :name => names[i]}
|
130
|
-
end
|
131
|
-
|
132
|
-
array
|
114
|
+
parse_staff(:writers)
|
133
115
|
end
|
134
116
|
|
135
117
|
# Returns a list of producers as an array of hashes
|
136
118
|
# with keys: +imdb_id+ (string) and +name+ (string)
|
137
119
|
def producers
|
138
|
-
|
139
|
-
links = full_credits.at("a[name='producers']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node["href"] } rescue []
|
140
|
-
imdb_ids = links.map { |link| link.parse_imdb_id } unless links.empty?
|
141
|
-
|
142
|
-
array = []
|
143
|
-
0.upto(names.size - 1) do |i|
|
144
|
-
array << {:imdb_id => imdb_ids[i], :name => names[i]}
|
145
|
-
end
|
146
|
-
|
147
|
-
array
|
120
|
+
parse_staff(:producers)
|
148
121
|
end
|
149
122
|
|
150
123
|
# Returns a list of actors as an array of hashes
|
@@ -164,23 +137,38 @@ module Spotlite
|
|
164
137
|
array
|
165
138
|
end
|
166
139
|
|
140
|
+
# Returns a list of starred actors as an array of hashes
|
141
|
+
# with keys: +imdb_id+ (string) and +name+ (string)
|
142
|
+
def stars
|
143
|
+
array = []
|
144
|
+
details.css("td#overview-top div[itemprop='actors'] a[href^='/name/nm']").map do |node|
|
145
|
+
name = node.text.strip
|
146
|
+
imdb_id = node["href"].parse_imdb_id
|
147
|
+
|
148
|
+
array << {:imdb_id => imdb_id, :name => name}
|
149
|
+
end
|
150
|
+
|
151
|
+
array
|
152
|
+
end
|
153
|
+
|
167
154
|
# Returns a list of regions and corresponding release dates
|
168
155
|
# as an array of hashes with keys:
|
169
156
|
# region +code+ (string), +region+ name (string), and +date+ (date)
|
170
157
|
# If day is unknown, 1st day of month is assigned
|
171
158
|
# If day and month are unknown, 1st of January is assigned
|
172
159
|
def release_dates
|
173
|
-
table = release_info.at("a[href^='/calendar/?region']").parent.parent.parent.parent rescue nil
|
174
|
-
regions = table.css("b a[href^='/calendar/?region']").map { |node| node.text } rescue []
|
175
|
-
links = table.css("b a[href^='/calendar/?region']").map { |node| node["href"] } rescue []
|
176
|
-
codes = links.map { |link| link.split("=").last.downcase } unless links.empty?
|
177
|
-
dates = table.css("td[align='right']").map { |node| node.text.strip }
|
178
|
-
|
179
160
|
array = []
|
180
|
-
|
181
|
-
|
161
|
+
table = release_info.at("a[href^='/calendar/?region']").parent.parent.parent.parent rescue nil
|
162
|
+
table.css("tr").map do |row|
|
163
|
+
code = row.at("a[href^='/calendar/?region']")["href"].split("=").last.downcase rescue nil
|
164
|
+
region = row.at("a[href^='/calendar/?region']").text rescue nil
|
165
|
+
date = row.at("td[align='right']").text.strip.parse_date rescue nil
|
166
|
+
|
167
|
+
array << {:code => code, :region => region, :date => date}
|
182
168
|
end
|
183
169
|
|
170
|
+
# Delete first element with nil values (header row)
|
171
|
+
array.delete_at 0
|
184
172
|
array
|
185
173
|
end
|
186
174
|
|
@@ -210,6 +198,19 @@ module Spotlite
|
|
210
198
|
Nokogiri::HTML(open("http://www.imdb.com/title/tt#{@imdb_id}/#{page}",
|
211
199
|
"Accept-Language" => "en-us"))
|
212
200
|
end
|
201
|
+
|
202
|
+
def parse_staff(name) # :nodoc:
|
203
|
+
array = []
|
204
|
+
table = full_credits.at("a[name='#{name}']").parent.parent.parent.parent
|
205
|
+
table.css("a[href^='/name/nm']").map do |node|
|
206
|
+
imdb_id = node["href"].parse_imdb_id
|
207
|
+
name = node.text.strip
|
208
|
+
|
209
|
+
array << {:imdb_id => imdb_id, :name => name}
|
210
|
+
end
|
211
|
+
|
212
|
+
array.uniq
|
213
|
+
end
|
213
214
|
end
|
214
215
|
|
215
216
|
end
|
data/lib/spotlite/version.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
HTTP/1.1 200 OK
|
2
|
-
Date:
|
2
|
+
Date: Sat, 20 Apr 2013 13:44:42 GMT
|
3
3
|
Server: Server
|
4
4
|
Content-Type: text/html;charset=UTF-8
|
5
5
|
Content-Language: en-US
|
6
6
|
Vary: Accept-Encoding,User-Agent
|
7
|
-
Set-Cookie: uu=
|
8
|
-
Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=Thu,
|
9
|
-
Set-Cookie: session-id-time=
|
7
|
+
Set-Cookie: uu=BCYtrN6hs2ye69f0dPwp5jiAnx5MNKqDfeKLvEQRmdc0IdzEKP4719TziY3nmX3gF%2FrwgQPHS%2Bqi%0D%0AkoVQTFoTZGugc4JG%2FKMR0cgqNQfq3NxA%2FsvkWTKRpp4NNT9sFxPnqRrI71y7JdWVjdW2%2BAGh%2FhtS%0D%0ABlPb6qIcCULw8fy3ometTfhHenTYjWi9QCFbZjillK53GuwXu6czgh%2FwS6%2BrObeznLbX4IJEiZox%0D%0A7sKHOIdHDlfGwYNRBn91HG4A3tGq6TVdgyx7q%2BJhMF%2BSLQJ7GOSa4Q%3D%3D%0D%0A; Domain=.imdb.com; Expires=Thu, 08-May-2081 16:58:49 GMT; Path=/
|
8
|
+
Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=Thu, 08-May-2081 16:58:49 GMT; Path=/
|
9
|
+
Set-Cookie: session-id-time=1524231882; Domain=.imdb.com; Expires=Thu, 08-May-2081 16:58:49 GMT; Path=/
|
10
10
|
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
11
|
Transfer-Encoding: chunked
|
12
12
|
|
@@ -18,6 +18,12 @@ Transfer-Encoding: chunked
|
|
18
18
|
xmlns:og="http://ogp.me/ns#"
|
19
19
|
xmlns:fb="http://www.facebook.com/2008/fbml">
|
20
20
|
<head>
|
21
|
+
<script type="text/javascript">
|
22
|
+
var ue_sid = "000-0000000-0000000"; var ue_id = "0AKQ1GC34NJGMXRK40PA";
|
23
|
+
</script>
|
24
|
+
|
25
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/csmHeadOpenPreInject-1593619692._V371171287_.js"></script>
|
26
|
+
|
21
27
|
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
|
22
28
|
|
23
29
|
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
@@ -45,11 +51,11 @@ xmlns:fb="http://www.facebook.com/2008/fbml">
|
|
45
51
|
<meta name="title" content="IMDb" />
|
46
52
|
<meta name="description" content="" />
|
47
53
|
<meta property="og:description" content="" />
|
48
|
-
<meta name="request_id" content="
|
54
|
+
<meta name="request_id" content="0AKQ1GC34NJGMXRK40PA" />
|
49
55
|
|
50
56
|
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
51
|
-
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/consumersite-
|
52
|
-
<!-- h=ics-
|
57
|
+
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/consumersite-3693464741._V371069251_.css" />
|
58
|
+
<!-- h=ics-1d-i-5bfd272a.us-east-1 -->
|
53
59
|
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/app/consumersite/find-2392946780._V397576196_.css" />
|
54
60
|
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/ie-1730957785._V376796174_.css" /><![endif]-->
|
55
61
|
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
@@ -57,7 +63,7 @@ xmlns:fb="http://www.facebook.com/2008/fbml">
|
|
57
63
|
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
|
58
64
|
<!-- begin ads header -->
|
59
65
|
<script>window.ads_js_start = new Date().getTime();</script>
|
60
|
-
<script src="http://z-ecx.images-amazon.com/images/G/01/imdbads/js/collections/ads-
|
66
|
+
<script src="http://z-ecx.images-amazon.com/images/G/01/imdbads/js/collections/ads-3989819072._V370853812_.js"></script>
|
61
67
|
<script>generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);</script>
|
62
68
|
<script>
|
63
69
|
(function(url,itemName,h,w) {
|
@@ -72,14 +78,14 @@ generic.monitoring.set_forester_info("main");
|
|
72
78
|
generic.monitoring.set_twilight_info(
|
73
79
|
"main",
|
74
80
|
"EE",
|
75
|
-
"
|
76
|
-
"2013-
|
81
|
+
"5c17ea4b466c8b164c7c518bad7b3f61fb197d63",
|
82
|
+
"2013-04-20T13%3A44%3A42GMT",
|
77
83
|
"http://s.media-imdb.com/twilight/?");
|
78
84
|
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
79
85
|
generic.monitoring.start_timing("page_load");
|
80
|
-
generic.seconds_to_midnight =
|
81
|
-
generic.days_to_midnight = 0.
|
82
|
-
custom.full_page.data_url = "http://z-ecx.images-amazon.com/images/G/01/imdbads/js/graffiti_data-
|
86
|
+
generic.seconds_to_midnight = 62118;
|
87
|
+
generic.days_to_midnight = 0.71895831823349;
|
88
|
+
custom.full_page.data_url = "http://z-ecx.images-amazon.com/images/G/01/imdbads/js/graffiti_data-150833228._V372077716_.js";
|
83
89
|
ad_utils.ad_prediction.init();
|
84
90
|
consoleLog('advertising initialized','ads');
|
85
91
|
var _gaq = _gaq || [];
|
@@ -120,19 +126,19 @@ oncall();
|
|
120
126
|
<div id="wrapper">
|
121
127
|
<div id="root" class="redesign">
|
122
128
|
<div id="nb20" class="navbarSprite">
|
123
|
-
<div id="supertab">
|
124
|
-
<!-- begin TOP_AD -->
|
129
|
+
<div id="supertab">
|
130
|
+
<!-- begin TOP_AD -->
|
125
131
|
<div id="top_ad_wrapper" class="dfp_slot">
|
126
132
|
<script type="text/javascript">
|
127
133
|
ad_utils.register_ad('top_ad');
|
128
134
|
</script>
|
129
135
|
<iframe data-dart-params="#imdb2.consumer.main/find;!TILE!;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;fv=1;ab=f;bpx=1;oe=utf-8;[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-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>
|
130
|
-
<noscript><a href="http
|
136
|
+
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.main/find;tile=1;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;fv=1;ab=f;bpx=1;ord=201536152325?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.main/find;tile=1;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;fv=1;ab=f;bpx=1;ord=201536152325?" border="0" alt="advertisement" /></a></noscript>
|
131
137
|
</div>
|
132
138
|
<div id="top_ad_reflow_helper"></div>
|
133
139
|
<script>ad_utils.render_ad_fast('top_ad');</script>
|
134
140
|
<!-- End TOP_AD -->
|
135
|
-
|
141
|
+
|
136
142
|
</div>
|
137
143
|
<div id="navbar" class="navbarSprite">
|
138
144
|
<noscript>
|
@@ -213,7 +219,7 @@ href="/help/"
|
|
213
219
|
<li><a href="/trailers?ref_=nb_mv_6_tr" >Trailer Gallery</a></li>
|
214
220
|
<li><a href="/watchnow/?ref_=nb_mv_7_wn" >Watch Now on AIV</a></li>
|
215
221
|
<li><a href="/sections/dvd/?ref_=nb_mv_8_dvd" >On DVD & Blu-Ray</a></li>
|
216
|
-
<li><a href="/x-ray/?ref_=nb_mv_9_xray" >X-Ray for Movies</a></li>
|
222
|
+
<li><a href="/x-ray/?ref_=nb_mv_9_xray" >X-Ray for Movies & TV</a></li>
|
217
223
|
<li><a href="/oscars/?ref_=nb_mv_10_rto" >Road to the Oscars</a></li>
|
218
224
|
</ul>
|
219
225
|
</li>
|
@@ -260,17 +266,13 @@ class="navbarSprite"
|
|
260
266
|
>IMDbPro</a>
|
261
267
|
<ul class="sub_nav">
|
262
268
|
<li><a
|
263
|
-
onclick="(new Image()).src='/rg/resume/prosystem/images/b.gif?link=/r/Resume/resume/';"
|
264
|
-
href="/r/Resume/resume/"
|
265
|
-
>Add a Resume</a></li>
|
266
|
-
<li><a
|
267
269
|
onclick="(new Image()).src='/rg/procontact/navbar/images/b.gif?link=/r/nm_ovrview_contact/representation/';"
|
268
270
|
href="/r/nm_ovrview_contact/representation/"
|
269
271
|
>Contact Info</a></li>
|
270
272
|
<li><a
|
271
|
-
onclick="(new Image()).src='/rg/
|
272
|
-
href="/r/
|
273
|
-
>Add
|
273
|
+
onclick="(new Image()).src='/rg/photos/navbar/images/b.gif?link=/r/Resume/resume/update/photos';"
|
274
|
+
href="/r/Resume/resume/update/photos"
|
275
|
+
>Add Photos</a></li>
|
274
276
|
</ul>
|
275
277
|
</li>
|
276
278
|
<li class="css_nav_item" aria-haspopup="true">
|
@@ -292,26 +294,26 @@ href="/list/watchlist"
|
|
292
294
|
</div>
|
293
295
|
</div>
|
294
296
|
</div>
|
295
|
-
|
296
|
-
<!--
|
297
|
-
|
298
|
-
|
299
|
-
<!-- begin injectable INJECTED_NAVSTRIP -->
|
297
|
+
|
298
|
+
<!-- no content received for slot: navstrip -->
|
299
|
+
|
300
|
+
|
301
|
+
<!-- begin injectable INJECTED_NAVSTRIP -->
|
300
302
|
<div id="injected_navstrip_wrapper" class="injected_slot">
|
301
303
|
<iframe id="injected_navstrip" name="injected_navstrip" class="yesScript" width="0" 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> </div>
|
302
304
|
<script>ad_utils.inject_ad.register('injected_navstrip');</script>
|
303
305
|
<div id="injected_navstrip_reflow_helper"></div>
|
304
306
|
<!-- end injectable INJECTED_NAVSTRIP -->
|
305
|
-
|
307
|
+
|
306
308
|
<div id="pagecontent" itemscope itemtype="http://schema.org/Movie">
|
307
|
-
|
308
|
-
<!-- begin injectable INJECTED_BILLBOARD -->
|
309
|
+
|
310
|
+
<!-- begin injectable INJECTED_BILLBOARD -->
|
309
311
|
<div id="injected_billboard_wrapper" class="injected_slot">
|
310
312
|
<iframe id="injected_billboard" name="injected_billboard" class="yesScript" width="0" 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> </div>
|
311
313
|
<script>ad_utils.inject_ad.register('injected_billboard');</script>
|
312
314
|
<div id="injected_billboard_reflow_helper"></div>
|
313
315
|
<!-- end injectable INJECTED_BILLBOARD -->
|
314
|
-
|
316
|
+
|
315
317
|
<div id="content-2-wide">
|
316
318
|
<div id="main">
|
317
319
|
<div class="article">
|
@@ -334,7 +336,7 @@ href="/list/watchlist"
|
|
334
336
|
<div class="findSection">
|
335
337
|
<h3 class="findSectionHeader"><a name="tt"></a>Titles</h3>
|
336
338
|
<table class="findList">
|
337
|
-
<tr class="findResult odd"> <td class="primary_photo"> <a href="/title/tt0298814/?ref_=fn_al_tt_1" ><img src="http://ia.media-imdb.com/images/M/MV5BMTY3MTY3MzkzNl5BMl5BanBnXkFtZTYwNTAwNDk2._V1_SX32_CR0,0,32,44_.jpg" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0298814/?ref_=fn_al_tt_1" >The Core</a> (2003) </td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/title/tt0796308/?ref_=fn_al_tt_2" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/film-3119741174._V397576370_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0796308/?ref_=fn_al_tt_2" >The Core</a> (2005) </td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/title/
|
339
|
+
<tr class="findResult odd"> <td class="primary_photo"> <a href="/title/tt0298814/?ref_=fn_al_tt_1" ><img src="http://ia.media-imdb.com/images/M/MV5BMTY3MTY3MzkzNl5BMl5BanBnXkFtZTYwNTAwNDk2._V1_SX32_CR0,0,32,44_.jpg" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0298814/?ref_=fn_al_tt_1" >The Core</a> (2003) </td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/title/tt0796308/?ref_=fn_al_tt_2" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/film-3119741174._V397576370_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0796308/?ref_=fn_al_tt_2" >The Core</a> (2005) </td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/title/tt2046864/?ref_=fn_al_tt_3" ><img src="http://ia.media-imdb.com/images/M/MV5BMTQ3ODk2MDA5OF5BMl5BanBnXkFtZTcwMTY3MzI2Mg@@._V1_SY44_CR23,0,32,44_.jpg" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt2046864/?ref_=fn_al_tt_3" >The Core</a> (2011) (TV Episode) <br/><small>- <a href="/title/tt0318224/?ref_=fn_al_tt_3a" >Horizon</a> (1964) (TV Series) </small> </td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/title/tt0202314/?ref_=fn_al_tt_4" ><img src="http://ia.media-imdb.com/images/M/MV5BMjE5NTUwOTEwMF5BMl5BanBnXkFtZTcwNDM2NzIyMQ@@._V1_SX32_CR0,0,32,44_.jpg" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0202314/?ref_=fn_al_tt_4" >Deep Core</a> (2000) </td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/title/tt0074157/?ref_=fn_al_tt_5" ><img src="http://ia.media-imdb.com/images/M/MV5BMTQ0ODcyNzAzOV5BMl5BanBnXkFtZTcwMDI4OTMyMQ@@._V1_SX32_CR0,0,32,44_.jpg" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0074157/?ref_=fn_al_tt_5" >At the Earth's Core</a> (1976) </td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/title/tt1625562/?ref_=fn_al_tt_6" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/film-3119741174._V397576370_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt1625562/?ref_=fn_al_tt_6" >Hard Core Logo 2</a> (2010) </td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/title/tt0116488/?ref_=fn_al_tt_7" ><img src="http://ia.media-imdb.com/images/M/MV5BMTYwNzMyMzg1N15BMl5BanBnXkFtZTcwMDQ4OTQyMQ@@._V1_SX32_CR0,0,32,44_.jpg" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0116488/?ref_=fn_al_tt_7" >Hard Core Logo</a> (1996) </td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/title/tt0483593/?ref_=fn_al_tt_8" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/film-3119741174._V397576370_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0483593/?ref_=fn_al_tt_8" >Crisis Core: Final Fantasy VII</a> (2007) (Video Game) </td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/title/tt0059660/?ref_=fn_al_tt_9" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/film-3119741174._V397576370_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt0059660/?ref_=fn_al_tt_9" >Rotten to the Core</a> (1965) </td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/title/tt1292010/?ref_=fn_al_tt_10" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/film-3119741174._V397576370_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/title/tt1292010/?ref_=fn_al_tt_10" >Armored Core: For Answer</a> (2008) (Video Game) </td> </tr></table>
|
338
340
|
<div class="findMoreMatches">
|
339
341
|
View: <a href="/find?q=the core&s=tt&ref_=fn_al_tt_mr" >More title matches</a>
|
340
342
|
or
|
@@ -344,7 +346,7 @@ href="/list/watchlist"
|
|
344
346
|
<div class="findSection">
|
345
347
|
<h3 class="findSectionHeader"><a name="nm"></a>Names</h3>
|
346
348
|
<table class="findList">
|
347
|
-
<tr class="findResult odd"> <td class="primary_photo"> <a href="/name/
|
349
|
+
<tr class="findResult odd"> <td class="primary_photo"> <a href="/name/nm0179697/?ref_=fn_al_nm_1" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/name/nm0179697/?ref_=fn_al_nm_1" >Ericson Core</a> <small>(Cinematographer, <a href="/title/tt0232500/?ref_=fn_al_nm_1a" >The Fast and the Furious</a> (2001))</small></td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/name/nm0179702/?ref_=fn_al_nm_2" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/name/nm0179702/?ref_=fn_al_nm_2" >Natalie Core</a> <small>(Actress, <a href="/title/tt0116151/?ref_=fn_al_nm_2a" >Dunston Checks In</a> (1996))</small></td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/name/nm0179759/?ref_=fn_al_nm_3" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/name/nm0179759/?ref_=fn_al_nm_3" >Macusa Cores</a> <small>(Camera Department, <a href="/title/tt0095675/?ref_=fn_al_nm_3a" >Women on the Verge of a Nervous Breakdown</a> (1988))</small></td> </tr><tr class="findResult even"> <td class="primary_photo"> <a href="/name/nm0179757/?ref_=fn_al_nm_4" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/name/nm0179757/?ref_=fn_al_nm_4" >Carlos Cores</a> <small>(Actor, <a href="/title/tt0180721/?ref_=fn_al_nm_4a" >The Bastard</a> (1954))</small></td> </tr><tr class="findResult odd"> <td class="primary_photo"> <a href="/name/nm0179754/?ref_=fn_al_nm_5" ><img src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" height="44" width="32" /></a> </td> <td class="result_text"> <a href="/name/nm0179754/?ref_=fn_al_nm_5" >Rafael Corés</a> <small>(Actor, <a href="/title/tt0322581/?ref_=fn_al_nm_5a" >El hombre que mató a Mengele</a> (1985))</small></td> </tr></table>
|
348
350
|
<div class="findMoreMatches">
|
349
351
|
View: <a href="/find?q=the core&s=nm&ref_=fn_al_nm_mr" >More name matches</a>
|
350
352
|
</div>
|
@@ -352,7 +354,7 @@ href="/list/watchlist"
|
|
352
354
|
<div class="findSection">
|
353
355
|
<h3 class="findSectionHeader"><a name="ch"></a>Characters</h3>
|
354
356
|
<table class="findList">
|
355
|
-
<tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/character/ch0037750/?ref_=fn_al_ch_1" >Coré</a> <small>(<a href="/title/tt0204700/?ref_=fn_al_ch_1a" >Trouble Every Day</a> (2001))</small></td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/character/ch0063334/?ref_=fn_al_ch_2" >Core Cougar</a> <small>(<a href="/title/tt0795361/?ref_=fn_al_ch_2a" >Cougar Club</a> (2007))</small></td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/character/
|
357
|
+
<tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/character/ch0037750/?ref_=fn_al_ch_1" >Coré</a> <small>(<a href="/title/tt0204700/?ref_=fn_al_ch_1a" >Trouble Every Day</a> (2001))</small></td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/character/ch0063334/?ref_=fn_al_ch_2" >Core Cougar</a> <small>(<a href="/title/tt0795361/?ref_=fn_al_ch_2a" >Cougar Club</a> (2007))</small></td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/character/ch0187146/?ref_=fn_al_ch_3" >Core nurse</a> <small>(<a href="/title/tt1442435/?ref_=fn_al_ch_3a" >Mercy</a> (2009))</small></td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/character/ch0193971/?ref_=fn_al_ch_4" >Core Warrior</a> <small>(<a href="/title/tt0402399/?ref_=fn_al_ch_4a" >The New World</a> (2005))</small></td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/character/ch0156455/?ref_=fn_al_ch_5" >Core Sorority Sister</a> <small>(<a href="/title/tt1232783/?ref_=fn_al_ch_5a" >Sorority Row</a> (2009))</small></td> </tr></table>
|
356
358
|
<div class="findMoreMatches">
|
357
359
|
View: <a href="/find?q=the core&s=ch&ref_=fn_al_ch_mr" >More character matches</a>
|
358
360
|
</div>
|
@@ -360,7 +362,7 @@ href="/list/watchlist"
|
|
360
362
|
<div class="findSection">
|
361
363
|
<h3 class="findSectionHeader"><a name="kw"></a>Keywords</h3>
|
362
364
|
<table class="findList">
|
363
|
-
<tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/keyword/core/?ref_=fn_al_kw_1" >core</a> (
|
365
|
+
<tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/keyword/core/?ref_=fn_al_kw_1" >core</a> (15 titles) </td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/keyword/deep-core-drilling/?ref_=fn_al_kw_2" >deep-core-drilling</a> (4 titles) </td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/keyword/core-sample/?ref_=fn_al_kw_3" >core-sample</a> (6 titles) </td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/keyword/core-strength/?ref_=fn_al_kw_4" >core-strength</a> (1 title) </td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/keyword/ocean-core/?ref_=fn_al_kw_5" >ocean-core</a> (1 title) </td> </tr></table>
|
364
366
|
<div class="findMoreMatches">
|
365
367
|
View: <a href="/find?q=the core&s=kw&ref_=fn_al_kw_mr" >More keyword matches</a>
|
366
368
|
</div>
|
@@ -368,18 +370,18 @@ href="/list/watchlist"
|
|
368
370
|
<div class="findSection">
|
369
371
|
<h3 class="findSectionHeader"><a name="co"></a>Companies</h3>
|
370
372
|
<table class="findList">
|
371
|
-
<tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/company/co0106601/?ref_=fn_al_co_1" >Core Public Relations Group</a> [us] (Publicist) </td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/company/
|
373
|
+
<tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/company/co0106601/?ref_=fn_al_co_1" >Core Public Relations Group</a> [us] (Publicist) </td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/company/co0219352/?ref_=fn_al_co_2" >CORE Media Group</a> [us] </td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/company/co0120865/?ref_=fn_al_co_3" >Core Entertainment</a> [us] (Management) </td> </tr><tr class="findResult even"> <td class="result_text" colspan="2"> <a href="/company/co0419726/?ref_=fn_al_co_4" >Core MGMT</a> [gb] </td> </tr><tr class="findResult odd"> <td class="result_text" colspan="2"> <a href="/company/co0391994/?ref_=fn_al_co_5" >Core Faith Media</a> [us] (Distributor) </td> </tr></table>
|
372
374
|
<div class="findMoreMatches">
|
373
375
|
View: <a href="/find?q=the core&s=co&ref_=fn_al_co_mr" >More company matches</a>
|
374
376
|
</div>
|
375
377
|
</div>
|
376
|
-
|
377
|
-
|
378
|
-
<!-- sid: n-channel :
|
378
|
+
|
379
|
+
<div id="afs_sponsored_links" name="afs_sponsored_links"></div>
|
380
|
+
<!-- sid: n-channel : SPONSORED_LINKS -->
|
379
381
|
<script type="text/javascript">
|
380
382
|
var parentDiv = document.getElementById('afs_sponsored_links'),
|
381
383
|
geo = "EE",
|
382
|
-
query = "the
|
384
|
+
query = "the core",
|
383
385
|
titleString = "Sponsored Links",
|
384
386
|
helpString = "What's This?";
|
385
387
|
try {
|
@@ -408,7 +410,7 @@ href="/list/watchlist"
|
|
408
410
|
</script>
|
409
411
|
<script language="JavaScript" src="http://www.google.com/afsonline/show_afs_ads.js"></script>
|
410
412
|
|
411
|
-
|
413
|
+
|
412
414
|
</div>
|
413
415
|
</div>
|
414
416
|
|
@@ -422,14 +424,14 @@ href="/list/watchlist"
|
|
422
424
|
</div>
|
423
425
|
|
424
426
|
|
425
|
-
|
426
|
-
<!-- begin TOP_RHS -->
|
427
|
+
|
428
|
+
<!-- begin TOP_RHS -->
|
427
429
|
<div id="top_rhs_wrapper" class="dfp_slot">
|
428
430
|
<script type="text/javascript">
|
429
431
|
ad_utils.register_ad('top_rhs');
|
430
432
|
</script>
|
431
|
-
<iframe data-dart-params="#imdb2.consumer.main/find;!TILE!;sz=300x250,11x1;p=tr;fv=1;ab=f;bpx=1;oe=utf-8;[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-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>
|
432
|
-
<noscript><a href="http
|
433
|
+
<iframe data-dart-params="#imdb2.consumer.main/find;!TILE!;sz=300x250,300x600,11x1;p=tr;fv=1;ab=f;bpx=1;oe=utf-8;[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-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>
|
434
|
+
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.main/find;tile=2;sz=300x250,300x600,11x1;p=tr;fv=1;ab=f;bpx=1;ord=201536152325?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.main/find;tile=2;sz=300x250,300x600,11x1;p=tr;fv=1;ab=f;bpx=1;ord=201536152325?" border="0" alt="advertisement" /></a></noscript>
|
433
435
|
</div>
|
434
436
|
<div id="top_rhs_reflow_helper"></div>
|
435
437
|
<script>ad_utils.render_ad_fast('top_rhs');</script>
|
@@ -437,7 +439,7 @@ ad_utils.register_ad('top_rhs');
|
|
437
439
|
<a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a>
|
438
440
|
</div>
|
439
441
|
<!-- End TOP_RHS -->
|
440
|
-
|
442
|
+
|
441
443
|
|
442
444
|
<div class="aux-content-widget-3">
|
443
445
|
<h3>Category Search</h3>
|
@@ -462,6 +464,23 @@ ad_utils.register_ad('top_rhs');
|
|
462
464
|
<li><a href="/search/text?realm=title&field=quotes&q=the core&ref_=fn_qu" >Quotes</a></li>
|
463
465
|
</ul>
|
464
466
|
</div>
|
467
|
+
|
468
|
+
<!-- begin RHS_CORNERSTONE -->
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
|
474
|
+
|
475
|
+
<a target="_blank" href="http://aax-us-east.amazon-adsystem.com/x/c/RkwEmza07Z8Rbfpuqkt0nA/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWuHUqznhVYoK6p0J8pQ8CZO3RnVYcy375LsoaE8C8FNxBG-MYySytkAQkT6H2QVB4U0pGHmftZ8o4NecGF0hPEY8ATvwZTkSf8DmpygAudRzlBahKXlBfTjKpNuYNYyPDwohC4OsN.G.XsSUbjzaNX4uf7NP.AgLKqAwRqxKr6FZcdeLloLlp7IfvN4pDGdK-fzhb.SN-Tk5FkM8dyWJp5rWcPkwzHKCrkMRJL4.lXzEyx4Sx67Z9QkszALqeQvt3gCyqqscnb4X1FxkEvBlC5UMX36INggFomIOCiP7s3bhHlHw6Am8LmHyU1Ap6STycf9gypHGez3gkJJB.QTreaetDyM-X3P0lOUFSqHGGpNpzu3NvGhp9ejq2UpJ52rJJBO.E4S5Tv3GKolT3MFl0a0-SB1G0Z1bwulmo4dZT11gtNgjgYzH.rYpHPvLUGhVORdgQ-Eim3t0C-cAUMghIXWcPlJM4phsZ6VASbjAL-d6MJ0qKuW0FMxcw8QxjXsR8XKlVEu3ogqt2FK2I1f9tx-aHCxRlR.qrKIimVvWTUQfKOUNvBswSDn24IQFIL7J-6n.LkLcJv4ZG5IjjEGPnNXCg5TLGlG3l736zJS7IW6GvAktslya94U7pLz.XVAOvGgcjLUuEWiuvIZYscvRrqFphX6XWqauNMMAsCOnmtNgBEd5uIWv6E8lyiw03BFkk9Fzcxa2bApvJAkMie7RataSJ0Au0ZjjyQo-CZWtECzfAE6VQNgGBkdJ3OAevgdkc6bfbKmXq0jeKWrjEwd-1Ms6FZv5gxLc4Nf0A-Shi8WNsw7E2B-6eZNCrjRZbn9PUdeXQJ0KSF0L7xausGOq4ZOxIa-PtD1ad2-VmRip-KmZvEcRRnZbxeQlYSA5oMLrE83dosj5Uavsltw3R.s.xxtEkSpEflH8bQR1vPanEot69U-5xSAax.USrKgyPdYU7e8D3Qd3e0t7EZ4aJxn9zPqKuVWVcslnLwX1f9i-lCTCUKwt9b-MqMS.F941KlD-ko3ud2GQzJq2JKYlywxw3Jp4EiMcNfmFDqj2Y.gGh7NcuC1cnacBbAzoukbQY5BCVKab3tzYNjX6BvJ87qBuiOyIGDMtyldao2yfH5Wj5i51"><img src="//d2o307dm5mqftz.cloudfront.net/1000011/1366404568107/MV5BNTk4MzM3OTA0Nl5BMl5BZ2lmXkFtZTcwNTQxMDE0OQ__._V1_.gif" alt="" title="" width="300" height="125" border="0"></a>
|
476
|
+
|
477
|
+
<!-- creativeModDate = 1366404568000 -->
|
478
|
+
<div id="rhs_cornerstone_webbug" style="display:none;">
|
479
|
+
<img src="http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=73a5e31a-40bc-4156-8854-d96b5bcce10d" border="0" height="1" width="1" alt=""/>
|
480
|
+
</div>
|
481
|
+
<!-- End RHS_CORNERSTONE -->
|
482
|
+
|
483
|
+
|
465
484
|
<div class="aux-content-widget-3">
|
466
485
|
<h3>Additional Search Options</h3>
|
467
486
|
<ul class="findSearchOptionsList">
|
@@ -475,9 +494,9 @@ ad_utils.register_ad('top_rhs');
|
|
475
494
|
</div>
|
476
495
|
</div>
|
477
496
|
|
478
|
-
|
479
|
-
<!-- no content received for slot: bottom_rhs -->
|
480
|
-
|
497
|
+
|
498
|
+
<!-- no content received for slot: bottom_rhs -->
|
499
|
+
|
481
500
|
</div>
|
482
501
|
</div>
|
483
502
|
<br class="clear" />
|
@@ -730,41 +749,25 @@ href="//www.amazon.com/InterestBasedAds"
|
|
730
749
|
})();
|
731
750
|
|
732
751
|
</script>
|
733
|
-
|
734
|
-
|
735
|
-
<script type="text/javascript">
|
736
|
-
COMSCORE.beacon({
|
737
|
-
c1: 2,
|
738
|
-
c2:"6034961",
|
739
|
-
c3:"",
|
740
|
-
c4:"http://www.imdb.com/find",
|
741
|
-
c5:"",
|
742
|
-
c6:"",
|
743
|
-
c15:""
|
744
|
-
});
|
745
|
-
</script>
|
746
|
-
<noscript>
|
747
|
-
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ffind&c5=c6=&15=&cj=1"/>
|
748
|
-
</noscript>
|
749
|
-
<!-- end springroll comscore beacon -->
|
750
|
-
|
751
|
-
<!-- begin BOTTOM_AD -->
|
752
|
+
|
753
|
+
<!-- begin BOTTOM_AD -->
|
752
754
|
<div id="bottom_ad_wrapper" class="dfp_slot">
|
753
755
|
<script type="text/javascript">
|
754
756
|
ad_utils.register_ad('bottom_ad');
|
755
757
|
</script>
|
756
758
|
<iframe data-dart-params="#imdb2.consumer.main/find;!TILE!;sz=728x90,2x1;p=b;fv=1;ab=f;bpx=1;oe=utf-8;[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-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>
|
757
|
-
<noscript><a href="http
|
759
|
+
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.main/find;tile=3;sz=728x90,2x1;p=b;fv=1;ab=f;bpx=1;ord=201536152325?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.main/find;tile=3;sz=728x90,2x1;p=b;fv=1;ab=f;bpx=1;ord=201536152325?" border="0" alt="advertisement" /></a></noscript>
|
758
760
|
</div>
|
759
761
|
<div id="bottom_ad_reflow_helper"></div>
|
760
762
|
<script>ad_utils.render_ad_fast('bottom_ad');</script>
|
761
763
|
<!-- End BOTTOM_AD -->
|
762
|
-
|
764
|
+
|
763
765
|
</div>
|
764
766
|
</div>
|
765
767
|
|
766
768
|
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/jquery-216455579._V396414659_.js"></script>
|
767
|
-
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/consumersite-
|
769
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/consumersite-2233989409._V370966707_.js"></script>
|
770
|
+
|
768
771
|
<script type="text/imdblogin-js" id="login">
|
769
772
|
jQuery(document).ready(function(){
|
770
773
|
window.imdb.login_lightbox("https://secure.imdb.com", "http://www.imdb.com/find?q=the+core");
|
@@ -784,7 +787,7 @@ jQuery(document).ready(function(){
|
|
784
787
|
"a2=0101a1823ca3d5d46ce03d4502edf28f095b20f780c29eddcddebefb2933fa9c1e98",
|
785
788
|
"pId=",
|
786
789
|
"r=1",
|
787
|
-
"rP=http%3A%2F%2Fwww.imdb.com%2Ffind%3Fq%3Dthe%
|
790
|
+
"rP=http%3A%2F%2Fwww.imdb.com%2Ffind%3Fq%3Dthe%2520core",
|
788
791
|
"encoding=server",
|
789
792
|
"cb=" + parseInt(Math.random()*99999999)
|
790
793
|
];
|
@@ -799,6 +802,24 @@ jQuery(document).ready(function(){
|
|
799
802
|
</script>
|
800
803
|
<!-- End SIS-SW code -->
|
801
804
|
|
805
|
+
<!-- begin springroll comscore beacon -->
|
806
|
+
<script type="text/javascript" src='http://z-ecx.images-amazon.com/images/G/01/imdbads/js/beacon-58460835._V397576206_.js'></script>
|
807
|
+
<script type="text/javascript">
|
808
|
+
COMSCORE.beacon({
|
809
|
+
c1: 2,
|
810
|
+
c2:"6034961",
|
811
|
+
c3:"",
|
812
|
+
c4:"http://www.imdb.com/find?q=the%20core",
|
813
|
+
c5:"",
|
814
|
+
c6:"",
|
815
|
+
c15:""
|
816
|
+
});
|
817
|
+
</script>
|
818
|
+
<noscript>
|
819
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ffind%3Fq%3Dthe%2520core&c5=c6=&15=&cj=1"/>
|
820
|
+
</noscript>
|
821
|
+
<!-- end springroll comscore beacon -->
|
822
|
+
|
802
823
|
<script type="text/javascript">
|
803
824
|
(function() {
|
804
825
|
var foreseescript = document.createElement("script");
|
@@ -811,7 +832,10 @@ jQuery(document).ready(function(){
|
|
811
832
|
<script>(function(g){window.jQuery && jQuery(function(){g.document_is_ready()});g.monitoring.stop_timing('page_load','',true);g.monitoring.all_events_started();})(generic);</script>
|
812
833
|
<!-- end ads footer -->
|
813
834
|
|
814
|
-
<div id="servertime" time="
|
835
|
+
<div id="servertime" time="100"/>
|
836
|
+
|
837
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/csmBodyClose-3613416824._V371691743_.js"></script>
|
838
|
+
|
815
839
|
</body>
|
816
840
|
</html>
|
817
841
|
|