spotlite 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +8 -0
- data/lib/spotlite.rb +1 -0
- data/lib/spotlite/movie.rb +18 -9
- data/lib/spotlite/person.rb +60 -0
- data/lib/spotlite/string_extensions.rb +11 -1
- data/lib/spotlite/version.rb +1 -1
- data/spec/fixtures/movies_coming_soon +375 -1387
- data/spec/fixtures/movies_in_theaters +1068 -1450
- data/spec/fixtures/nm0005132/index +4901 -0
- data/spec/fixtures/nm0864666/index +1473 -0
- data/spec/fixtures/nm1659547/index +4289 -0
- data/spec/fixtures/search_no_results +54 -229
- data/spec/fixtures/search_the_core +58 -233
- data/spec/fixtures/top +152 -125
- data/spec/fixtures/tt0002186/index +332 -320
- data/spec/fixtures/tt0047396/releaseinfo +1252 -1125
- data/spec/fixtures/tt0133093/criticreviews +116 -252
- data/spec/fixtures/tt0133093/fullcredits +183 -156
- data/spec/fixtures/tt0133093/index +685 -588
- data/spec/fixtures/tt0133093/keywords +109 -248
- data/spec/fixtures/tt0133093/releaseinfo +1219 -1038
- data/spec/fixtures/tt0133093/trivia +507 -621
- data/spec/fixtures/tt0169547/index +580 -501
- data/spec/fixtures/tt0317248/index +711 -622
- data/spec/fixtures/tt1134629/fullcredits +180 -153
- data/spec/spec_helper.rb +3 -0
- data/spec/spotlite/movie_spec.rb +21 -5
- data/spec/spotlite/person_spec.rb +49 -0
- data/spec/spotlite/search_spec.rb +1 -1
- metadata +26 -9
- checksums.yaml +0 -7
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## v0.6.0 19-June-2013
|
2
|
+
|
3
|
+
* Added `Person` class
|
4
|
+
* Added `storyline` method to `Movie` class
|
5
|
+
* Added `content_rating` method to `Movie` class
|
6
|
+
* Fixed `release_dates` method following IMDb layout changes
|
7
|
+
* Added `comment` field to `release_dates` method output
|
8
|
+
|
1
9
|
## v0.5.0 03-May-2013
|
2
10
|
|
3
11
|
* Added parser for movies coming soon (http://www.imdb.com/movies-coming-soon/)
|
data/lib/spotlite.rb
CHANGED
data/lib/spotlite/movie.rb
CHANGED
@@ -55,6 +55,16 @@ module Spotlite
|
|
55
55
|
details.at("p[itemprop='description']").children.first.text.strip rescue nil
|
56
56
|
end
|
57
57
|
|
58
|
+
# Returns storyline as a string. Often is the same as description
|
59
|
+
def storyline
|
60
|
+
details.at("#titleStoryLine div[itemprop='description'] p").children.first.text.strip rescue nil
|
61
|
+
end
|
62
|
+
|
63
|
+
# Returns content rating as a string
|
64
|
+
def content_rating
|
65
|
+
details.at(".infobar span[itemprop='contentRating']")['title'] rescue nil
|
66
|
+
end
|
67
|
+
|
58
68
|
# Returns a list of genres as an array of strings
|
59
69
|
def genres
|
60
70
|
details.css("div.infobar a[href^='/genre/']").map { |genre| genre.text } rescue []
|
@@ -158,22 +168,21 @@ module Spotlite
|
|
158
168
|
|
159
169
|
# Returns a list of regions and corresponding release dates
|
160
170
|
# as an array of hashes with keys:
|
161
|
-
# region +code+ (string), +region+ name (string),
|
171
|
+
# region +code+ (string), +region+ name (string), +date+ (date), and +comment+ (string)
|
162
172
|
# If day is unknown, 1st day of month is assigned
|
163
173
|
# If day and month are unknown, 1st of January is assigned
|
164
174
|
def release_dates
|
165
175
|
array = []
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
176
|
+
release_info.at("#release_dates").css("tr").map do |row|
|
177
|
+
code = row.at("a")["href"].clean_href.split("=").last.downcase rescue nil
|
178
|
+
region = row.at("a").text rescue nil
|
179
|
+
date = row.at("td.release_date").text.strip.parse_date rescue nil
|
180
|
+
comment = row.css("td").last.text.strip.clean_release_comment rescue nil
|
181
|
+
comment = nil if comment.empty?
|
171
182
|
|
172
|
-
array << {:code => code, :region => region, :date => date}
|
183
|
+
array << {:code => code, :region => region, :date => date, :comment => comment}
|
173
184
|
end
|
174
185
|
|
175
|
-
# Delete first element with nil values (header row)
|
176
|
-
array.delete_at 0
|
177
186
|
array
|
178
187
|
end
|
179
188
|
|
@@ -0,0 +1,60 @@
|
|
1
|
+
module Spotlite
|
2
|
+
|
3
|
+
# Represent a person on IMDb.com
|
4
|
+
class Person
|
5
|
+
attr_accessor :imdb_id, :name
|
6
|
+
|
7
|
+
# Initialize a new person object by its IMDb ID as a string
|
8
|
+
#
|
9
|
+
# person = Spotlite::Person.new("0005132")
|
10
|
+
#
|
11
|
+
# Spotlite::Person class objects are lazy loading. No HTTP request
|
12
|
+
# will be performed upon object initialization. HTTP request will
|
13
|
+
# be performed once when you use a method that needs remote data
|
14
|
+
def initialize(imdb_id, name = nil)
|
15
|
+
@imdb_id = imdb_id
|
16
|
+
@name = name
|
17
|
+
@url = "http://www.imdb.com/name/nm#{imdb_id}"
|
18
|
+
end
|
19
|
+
|
20
|
+
# Returns name as a string
|
21
|
+
def name
|
22
|
+
@name ||= details.at("h1.header[itemprop='name']").text.strip.clean_name
|
23
|
+
end
|
24
|
+
|
25
|
+
# Returns name at birth as a string
|
26
|
+
def birth_name
|
27
|
+
details.at("#overview-top .txt-block a[href='bio']").text.strip rescue nil
|
28
|
+
end
|
29
|
+
|
30
|
+
# Returns birth date as a date
|
31
|
+
def birth_date
|
32
|
+
details.at("time[itemprop='birthDate']")["datetime"].parse_date rescue nil
|
33
|
+
end
|
34
|
+
|
35
|
+
# Returns death date as a date
|
36
|
+
def death_date
|
37
|
+
details.at("time[itemprop='deathDate']")["datetime"].parse_date rescue nil
|
38
|
+
end
|
39
|
+
|
40
|
+
# Returns primary photo URL as a string
|
41
|
+
def photo_url
|
42
|
+
src = details.at("#img_primary img")["src"] rescue nil
|
43
|
+
|
44
|
+
if src =~ /^(http:.+@@)/ || src =~ /^(http:.+?)\.[^\/]+$/
|
45
|
+
$1 + ".jpg"
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
private
|
50
|
+
|
51
|
+
def details # :nodoc:
|
52
|
+
@details ||= open_page
|
53
|
+
end
|
54
|
+
|
55
|
+
def open_page(page = nil) # :nodoc:
|
56
|
+
Nokogiri::HTML(open("http://www.imdb.com/name/nm#{@imdb_id}/#{page}",
|
57
|
+
"Accept-Language" => "en-us"))
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -24,12 +24,22 @@ class String
|
|
24
24
|
|
25
25
|
# Cleans 'href' param of an <a> tag
|
26
26
|
def clean_href
|
27
|
-
gsub(
|
27
|
+
gsub(/(\?|&)ref.+/, "").gsub("/country/", "").gsub("/language/", "")
|
28
28
|
end
|
29
29
|
|
30
30
|
# Parses 7-digit IMDb ID, usually from a URL
|
31
31
|
def parse_imdb_id
|
32
32
|
self[/\d{7}/] unless self.nil?
|
33
33
|
end
|
34
|
+
|
35
|
+
# Strip all extra text from person's name node
|
36
|
+
def clean_name
|
37
|
+
gsub(/\n.+$/, "")
|
38
|
+
end
|
39
|
+
|
40
|
+
# Strips parantheses from release date's comment
|
41
|
+
def clean_release_comment
|
42
|
+
gsub(") (", ", ").gsub("(", "").gsub(")", "")
|
43
|
+
end
|
34
44
|
|
35
45
|
end
|
data/lib/spotlite/version.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
HTTP/1.1 200 OK
|
2
|
-
Date:
|
2
|
+
Date: Wed, 19 Jun 2013 18:45:30 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=
|
9
|
-
Set-Cookie: session-id-time=
|
7
|
+
Set-Cookie: uu=BCYttAcmcyvPwUUfN0OpQmk9Gh5dhySpmN9y%2B77cN3hCl2onimtpsIAul7b8MxAO9IJcTs6VB%2FcJ%0D%0AuHeKuWFCYyJKdwuQHQqxUS8Rkib5AVBRcM3kM3s%2BmEhA%2Fia93xW1s7zg46HYbO7UumyD1lt%2BWU%2B4%0D%0AUGBhCKsokHhaFFyI7CPGm2gmSIde0UKkw7FCM01%2FnFnpuaZqgvwZm8tEgBvw9Qua5jhALe%2B%2F0gkp%0D%0AJuLzgAM491cpRZyTgIGuI1TJ%2FXa7iZAQfInfnErcWJwvy5QSkyLotA%3D%3D%0D%0A; Domain=.imdb.com; Expires=Mon, 07-Jul-2081 21:59:37 GMT; Path=/
|
8
|
+
Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=Mon, 07-Jul-2081 21:59:37 GMT; Path=/
|
9
|
+
Set-Cookie: session-id-time=1529433930; Domain=.imdb.com; Expires=Mon, 07-Jul-2081 21:59:37 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
|
|
@@ -21,10 +21,11 @@ xmlns:og="http://ogp.me/ns#"
|
|
21
21
|
xmlns:fb="http://www.facebook.com/2008/fbml">
|
22
22
|
<head>
|
23
23
|
<script type="text/javascript">
|
24
|
-
var ue_sid = "000-0000000-0000000"; var ue_id = "
|
24
|
+
var ue_sid = "000-0000000-0000000"; var ue_id = "1BZTJ991A3KZQ3Z20EPB";
|
25
25
|
</script>
|
26
26
|
|
27
|
-
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/csmHeadOpenPreInject-
|
27
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/csmHeadOpenPreInject-3067679439._V383739537_.js"></script>
|
28
|
+
|
28
29
|
|
29
30
|
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
|
30
31
|
|
@@ -54,72 +55,19 @@ xmlns:fb="http://www.facebook.com/2008/fbml">
|
|
54
55
|
<meta name="description" content="Find the latest new movies coming soon to theaters. Get the latest buzz & release dates, watch trailers, see photos, and discuss upcoming movies all on IMDb" />
|
55
56
|
<meta property="og:description" content="Find the latest new movies coming soon to theaters. Get the latest buzz & release dates, watch trailers, see photos, and discuss upcoming movies all on IMDb" />
|
56
57
|
<meta name="keywords" content="new movies, movies coming soon, movie releases, movies showtimes, movie search, find movies, watch trailers, read movie reviews, movie, movies, movie guide, imdb, internet movie database" />
|
57
|
-
<meta name="request_id" content="
|
58
|
+
<meta name="request_id" content="1BZTJ991A3KZQ3Z20EPB" />
|
58
59
|
|
59
60
|
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
60
|
-
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/consumersite-
|
61
|
-
<!-- h=ics-
|
61
|
+
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/consumersite-1597235270._V383019078_.css" />
|
62
|
+
<!-- h=ics-1e-i-631f8e12.us-east-1 -->
|
62
63
|
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/other-3773894054._V376796173_.css" />
|
63
64
|
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/watchlistButton-1531238740._V376796209_.css" />
|
64
|
-
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/ie-
|
65
|
+
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/ie-3733461926._V385243202_.css" /><![endif]-->
|
66
|
+
|
65
67
|
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
66
68
|
|
67
69
|
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
|
68
|
-
|
69
|
-
<script>window.ads_js_start = new Date().getTime();</script>
|
70
|
-
<script src="http://z-ecx.images-amazon.com/images/G/01/imdbads/js/collections/ads-894784382._V384866332_.js"></script>
|
71
|
-
<script>generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);</script>
|
72
|
-
<script>
|
73
|
-
(function(url,itemName,h,w) {
|
74
|
-
if (flashAdUtils.canPlayFlash(9)) {
|
75
|
-
var flashTags = flashAdUtils.makeFlashAd({ id:itemName, src:url, height:h, width:w });
|
76
|
-
document.write('<div style="position:absolute;visibility:hidden;">' + flashTags + '</div>');
|
77
|
-
}
|
78
|
-
})("http://ia.media-imdb.com/images/M/MV5BMTMzMzgxNzM2M15BMl5Bc3dmXkFtZTcwNzM0MTkxNw@@._V1_.swf","baker",1,1);
|
79
|
-
// Stuff that we need to try a little harder on still...
|
80
|
-
// TODO: weblab stuff
|
81
|
-
generic.monitoring.set_forester_info("main");
|
82
|
-
generic.monitoring.set_twilight_info(
|
83
|
-
"main",
|
84
|
-
"EE",
|
85
|
-
"9855695977c2eda230454f7b559e4bf2a95f67d3",
|
86
|
-
"2013-05-03T14%3A37%3A54GMT",
|
87
|
-
"http://s.media-imdb.com/twilight/?");
|
88
|
-
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
89
|
-
generic.monitoring.start_timing("page_load");
|
90
|
-
generic.seconds_to_midnight = 58926;
|
91
|
-
generic.days_to_midnight = 0.6820138692855835;
|
92
|
-
custom.full_page.data_url = "http://z-ecx.images-amazon.com/images/G/01/imdbads/js/graffiti_data-150833228._V372077716_.js";
|
93
|
-
ad_utils.ad_prediction.init();
|
94
|
-
consoleLog('advertising initialized','ads');
|
95
|
-
var _gaq = _gaq || [];
|
96
|
-
_gaq.push(['_setCustomVar', 4, 'ads_abtest_treatment', 'f']);
|
97
|
-
</script>
|
98
|
-
<script>
|
99
|
-
ad_utils.register_punt_ad("top_ad","728","90"," \r\n\r\n<a target=\"_blank\" href=\"http://aax-us-east.amazon-adsystem.com/x/c/uTG2SsaCznSz1umQEvvZaQ/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWkhk4j-QAAvo4-cDq0TfhIqH1swyQkRmDpSi4wg41YtNOob28iCV7WwIDkweNNf4TnYCmSW9K6T1AKCfJZlQOu4NrNtu5z4prdVj1.3TeTctgDT1PWo4KyQkuD9RSg1709xLFkBu5EVS1b9fb53eoZYLvWrdhb4wYs14p3BgyD27fx6LRi83b674r-NI7fWiYefvB.iFAhj60M6P1r-auQBr2N94XtRE3-0Utv3D9ZRJ0EpheNVXqOO1UYj4yPf0nKFpW8RkxHuSL0CK8a31VwCLxGtzWcKGpXtYHG95djzKBXtnno9tKiaYUUQJ0t2HksiqSIs5FmaxrDpumdsBdW3AkEYoExCjQPAku7bgZ3SjKAuKw28FbI72LOkpfx1QF2uvMEBrCv.Bf4HWAzRtT2LvUTNptICDS.3FWZ9eHx0PS5Q6E7bp.ZBZxhCNFlnaWqdxaH00d.wxSnhv4iWG9FwFKUu7Xy2Etu1OJqx4besBZx66a1KOBpbDMyrynyeMVZtWxNGP13Jc5rC1J9M2bVISOn3VKgNQHj1MOSAc9rWgdaKLNKFre-AjjOsNo-rV7yKfJ5b1BPUJigJiPWMBiRqwP.zl-lOdlS9ISvLFMqJfUM0Hb0OTxVV.kzJpv3SwdpI.3mVRgDo.DVvWQLjk5wfaIzAyqfbjxtaH0vtOKV63Q72KRmPjRX9D9gR7fhgaK-08SlS2F1gHxHoNqANPTOT0Rg9zZE0RsjSBQPPMcoio4apDA.LJO-i1bVsUlL8KZFrc0OKRHoAt.-gHJ5.0IVcsr7N0elfhMWFDJVr4LT9OhHVRdcI61MYedpFcD8e5QlrY6kGCt-F8KVwOl7ROBhOd9gSmRzQs0S8T-tYZMtFSosTlHz.xf6nORwuwHObS3EbDUs0KIylzyddqmOg.meiRaSI782hDOKTNcQOhNn-6GC6VCQIaYustCrYpLuLO0wHnVPgkpro2tYk1bKQ2tlOxxPZrEsd.LaVk4sZ9sQvc8pq5cRGpOGyTmyIbRS7FksAuXaWg69KtL7k7-odutFEZnoKKD9MA4Iio5qo.0vs4kdNPFFFgad3QawClViMINK7E46fj4NZpyVXRgUith2Mlyp.D5k32V0jm7LbEIytQV7dcgCMgGz3nIpVaw7paNBPajPc9DQRsWXduw6-olwM_\"\><img src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1347997041168/Utah_White_728x90_price_bullets.jpg\" alt=\"\" title=\"\" width=\"728\" height=\"90\" border=\"0\"\></a\>\r\n\r\n\n <div id=\"top_ad_webbug\" style=\"display:none;\"\>\n <img src=\"http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=39a4b363-9898-4d97-b4fa-e51438f8994b\" border=\"0\" height=\"1\" width=\"1\" alt=\"\"/\>\n </div\>\n");
|
100
|
-
</script>
|
101
|
-
<script>
|
102
|
-
ad_utils.register_punt_ad("top_rhs","300","250"," \r\n\r\n<script type=\"text/javascript\"\>\r\n\r\nvar clickURL = \"http://aax-us-east.amazon-adsystem.com/x/c/-n3aIJjxIV7foWMNZcAEhA/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWuPYT.nzDGf0ac882cUOaveirc7ZIjTCFhr-1L7nlXmLtt30J62apdWdbOLadJ7X71yr1Dr0x1UvZtUYlrm8vVxKTFR9p2GxHbPSRVtLVc.nUY.9VUTEznc1Be9D2FGOjrsdj8BgD.CPmzB2S2CG8p8DjaW-2PwhN-3EL9MzfHJpDrnlhz0hQv0UNv.pngWTUpJ6ssm4bI4GMkDmOUh4VciwGRO0QpPhADVunwyhNN9V-D4yZ1-OlX2x0jm7X7d7n4Py9jhsUKFMZIBQkZTxBkXjBIUB5t-XND5S6ZtE6XYd8ol3PCKQYH7CdTdlGIuxCbVpOmLYjyt1QNbujEEesyD5XitSvrLkU-No.pZ-1qjs4Civrv0tNITCmJzrhrS0G.GPTs7BXn9An5TD3AhooYvy34oLQRQsiZe07u-9ZiioX66H2kglUr0Ida-MzDeXVv-ls7pcDFjsw03eUsISe0VrztfEqAqeyjEmw2mnsHUTubsGgRxbLENSparh0BkFs.3aFk5QgQOgvtQ9VrP2IShPFV1QxvjGqLIX6PdIGGfBLa6TBofGMrvzjc3Kyfr6auz5ZQKnNBG-HE3AcrsThBwCfZ75gxS8WfZMTw.G42BxGPTrsOskxnge4qWhx9K4U9yG9VBiPsyasRRbvDQC0BbzqAdwalnPznr-26ujxcHaX9aVU9MDrfQA5M.lOUEIRzdU-B00m.5yDS0Ef-e2AODw0tHQQyVKMGZFJnXaXXatIosVIii4xOLz4z3fWZTSxgH55i6YgI33gsgK6XTC3owclHdFq.ChYRNlQhqz1HRRnxvPe2wdIL28ggoj7GxsRh1M5BTM6E0p2-7ScGbXGqFMslf5lnSoewE03bKUOphGO9bgZuWTPRqLNOwNzdGF4CYKG.eQIf-BchDs2DIt59XXtkSj4PrXiy0IIMErMOA1-08-CNPVXkew2UWuqQ3tsTNmwCF9Hv4l8qztGNfDKWpfgq5IGr1Zf1iNQvJhQEgUwmbqdIuAn8ljO-iwJ4-9BlsFnm1tUIs5i61p-WFG.TzM2paSU18IHniKd4OqDP-SioUWxJYV1KiHIc7vJllWMT29QT2T2ImkJy9XiJYNj9GTO.pV5Ulse8C4tyENZlo9zb2T0gvKcSbGAlpv9e4k1S2FCqtRTkhhzr4pXZDTpvEFiKfOdBKhlqL-2L8ohDOjAz82oXddKrHZqvvBInLgXg__\";\r\n\r\nfunction getFlashVer() {\r\n var i,a,o,p,s=\"Shockwave\",f=\"Flash\",t=\" 2.0\",u=s+\" \"+f,v=s+f+\".\",rSW=RegExp(\"^\"+u+\" (\\\\d+)\");\r\n\r\n if ((o=navigator.plugins) && (p=o[u]||o[u+t]) && (a=p.description.match(rSW))) {\r\n return a[1];\r\n }\r\n else if (!!(window.ActiveXObject)) {\r\n for (i=10; i\>0; i--) {\r\n try {\r\n if (!!(new ActiveXObject(v+v+i)))\r\n return i\r\n }\r\n catch(e) {\r\n }\r\n }\r\n }\r\n return 0;\r\n}\r\n\r\nfunction get3pPixed() {\r\n var code = \'\';\r\n return code;\r\n}\r\n\r\nfunction getFlashVarsStr() {\r\n var str = \"clickTag=\" + escape(\"http://aax-us-east.amazon-adsystem.com/x/c/-n3aIJjxIV7foWMNZcAEhA/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWrOa07lhd-BL6wEOQ3bFb-D6MQgPMsvPyn6.2Ko.MX9g838sCBxAe.c0clJ-rTrTu6jrHOtGRv.TBQnBzEWxSMndXMLZuWk0-xltprcYqZibmir-yTMDjdiwueja5QFwa4jFw93XdwlG.H6Rx.s3W1FGEpYdIpVQPv7xprRBdYMwfZZGcjjriwcTWIIpVKsjHDz6DkhDrx59-C2BvJMLWo-ByuoesRxqn-TULWkfUl-0TausbNPZRbwyppL60efZTfzdhHEuG.tD92KbDu8xCenDpCXADaEpQIpLRV11Ieq.zSwKeIg88DrZebSjEkLmgAlmiuoq5n1Zd5PKpKpVN7HSHcI82dkdbahCCHv3duKuEYB1I.nBBprkLbHi5typlYds8NOXqo3D3bHoPY1LuTJ1lX.Jf0ix0h-0p6BouVA3zXATynWDMnQ460bhH.12qGWQIN3o6TCzErjsfVCBfFXayuymH41su4EdbHOI6cpM-gF20HFxhVUox14D6-PuN2WKzvgY9snF2OnEn-NOWmiSvcYH7WgM2rriZpdbSa5-0ocnf7PI-NMXrEbgmeQI2.XV1gkEfh7E41aaKg4HS9fLpTr1mvXHyuOUY0SuOb0SrR0mvcO8odI0814e7cYTNOuWLh5upDobr0BZEPhJU1dihEM.VBmM.7RoabRe19xz2QC0TUo6R3OCo0gDyvH7.yZu3se9SitolF5R0Rf54nbVRGGh2o249NkP.XmaqPAd0Ezljlu3f4EXenJOES72.nPsr2TPBgaUq53HQxDRZXi4avncnpqKE7HAkt9W7T6kipUe-A6w6w5jV.5B69OUyQJxV8FIBwqcsVV5mwqUbTqKTY5dgoJ6ukgKysnn4LZgramybq7JRSsGpNsqBYZ3ncahsPQ-ajAlsLc1MH5Z0rQTSwEXSCTc5gI6lHy5C7L2HWJM5RkEDjj2X9.I3dvkJcyv4MwWhh0NX9zX7jHh8ial.G1l0c4Sx.bR2xsthWe6RXNmd-GydWbNTvNEuJTG8LQMyVPLakAJqIRDZ4si.CzyaOyXISXOsJ.DOVQK4AY3UbwtmBT30w8V6MX4WVBOOhV4L-j1x1YDv3KB.aQs4uvqnz03XyL9W9wDCgoDdSfv7xTsIh52t48d1Dt6ao7fSzW3FKzSjyrXfv7VVUYs46.H3X3UpiNScpyrvSvtbhh1.ZNkLBphBofspfQsPaYKLg__\");\r\n return str;\r\n}\r\n\r\nvar adcode;\r\nif ((0+6) <= getFlashVer()) {\r\n var flashVars = getFlashVarsStr();\r\n adcode = get3pPixed();\r\n adcode += \'<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" ID=FLASH_AD WIDTH=\"300\" HEIGHT=\"250\"\><PARAM NAME=movie VALUE=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1357341636658/KOLL_B.swf\"\><param name=\"flashvars\" value=\"\'+ flashVars + \'\"\><PARAM NAME=quality VALUE=high\><PARAM NAME=bgcolor VALUE=#FFFFFF\><PARAM NAME=wmode VALUE=opaque\><PARAM NAME=\"AllowScriptAccess\" VALUE=\"always\"\><EMBED src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1357341636658/KOLL_B.swf?\' + flashVars + \'\" quality=high wmode=opaque swLiveConnect=TRUE WIDTH=\"300\" HEIGHT=\"250\" bgcolor=#FFFFFF TYPE=\"application/x-shockwave-flash\" AllowScriptAccess=\"always\"\></EMBED\></OBJECT\>\';\r\n document.write(adcode);\r\n}\r\nelse {\r\n adcode = get3pPixed();\r\n adcode += \'<A TARGET=\"_blank\" HREF=\"\' + clickURL + \'\"\><IMG SRC=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1357341636931/KOLL_B.jpg\" alt=\"\" width=\"300\" height=\"250\" BORDER=0\></A\>\';\r\n document.write(adcode);\r\n}\r\n</script\>\r\n<noscript\>\r\n <a target=\"_blank\" href=\"http://aax-us-east.amazon-adsystem.com/x/c/-n3aIJjxIV7foWMNZcAEhA/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWmw2OPfo-JUC3q20RMPqKBM3Qw-sVuaFQL.tbsNS93D1.Mip1BuUzrt6goeGx0zAoZTFZtR9PybLdTJy73TnlaIT-.vNW2P5JSppQ8O1R7EqRD.NGv6mbTAcMljgfpJoeE.WvDuVbIfgFE8ctQBWE1GNk2kdOIjlOwS06gxSNK0OO.ne3eWAEjS3Bi7-M86uMtPISOZxhbzboeu9MX.96A70Zk73wmwxHFoaNdjtbWJZnmQEVCiGyIQ0aOCNF-w8bS7zaW3iBy2pxVon8C2LgnvlDGneUlsFdLh65uxJnoTJPLvyhp1VIuMqTuAJH0GAPuCjFIR4lOSiZn.VmojX8TvAKwI-FUEVozntT0plEB5lzpLUkWnsUJIbY8-bLXB7ZAC6Sg3LLznwdsTv1gUZqEp5ElC6jzCe7qZSFPMkUL-lFEVMorwt1j9MjCTiFzxL1OB8I6uT.ib3qnBT7KsnGMM4dpN5hrSxD0panH0CBEy3d23C38qlovm0w5LmMWdmNbjCYZN321lAaHd9ePAVL-5oTJZ4n4-HjHP-k95wKdstnqO9YGXWuQD8.yyiehRfWQ-SAYB8QQNNoaWRTWGKCR8UCyjU7iX1og5cN4s6jl9fjYBg2Q1WZlsXdw23cEQ1dzyc6s7PsPR9sraOyqjoTSYOXaDEJBx6kwYKf6QZyR270Dh-dD4q-fDS.5048VsX6E2JC2rsJ2x1wGfEn0ceBNo3YDRvz40jnEL6weBDglhK0tW5AjRXsueT1MfFwuC.vTh97-oHVpZUmZjoIr30EaygD3heWmEY98j-rtFZ.kBvUleNcdp8ZiglbMk4a-Dke-RQRmlmGDCVn0-bFAaYkG4wkwHNCn5aFj67uuVhhQqKbLFxZWMWsr6RsljIIPZXAQE7EJ4mQEe0i3Ufi5g3pseqAZYdveoG.k8voK2ptV9S-qK.YBe.xQi9vGtng9r-Ub4X9xqUDV5P7qjwzgukSNAA9P8uX3zPlPlaxFGeDthFcPu7d7bGMai2tA6BPBbu.jIeWFcAIE.d7yHRzjcEgZzlb3s9xRFf7JnZAsr5a4P0.kanp2RvxC5O1hG8afiEOIMdIznx.B3Wrt4jikwdvXWre9.j47MLIn1SGtQNoGqax8.V7A9oZZavCNqQ0A4NY447wL61Zn9jLrPs47d8C9O2011WGHAGnGu339UgCi6iEy0OmUjSEJInUG41-KTFpQ__\"\><img src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1357341636931/KOLL_B.jpg\" alt=\"\" width=\"300\" height=\"250\" border=\"0\"\></a\>\r\n</noscript\><!-- creativeModDate = 1362435710000 -->\n <div id=\"top_rhs_webbug\" style=\"display:none;\"\>\n <img src=\"http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=84f5c119-4a48-463a-99b8-0cdf1a74f1fc\" border=\"0\" height=\"1\" width=\"1\" alt=\"\"/\>\n </div\>\n");
|
103
|
-
</script>
|
104
|
-
<script>
|
105
|
-
(function(url,onload,oncall) {
|
106
|
-
var elem = document.createElement('script'),
|
107
|
-
script = document.getElementsByTagName('script')[0],
|
108
|
-
final_url = url.replace(ad_utils.ord_regex, ad_utils.ord);
|
109
|
-
if (! navigator.userAgent.match('Firefox/(1|2)\\.')) {
|
110
|
-
elem.async = true;
|
111
|
-
elem.src = final_url;
|
112
|
-
if (onload) {
|
113
|
-
elem.onload = onload;
|
114
|
-
}
|
115
|
-
script.parentNode.insertBefore(elem, script);
|
116
|
-
if (oncall) {
|
117
|
-
oncall();
|
118
|
-
}
|
119
|
-
}
|
120
|
-
})("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);
|
121
|
-
</script>
|
122
|
-
<!-- end ads header -->
|
70
|
+
|
123
71
|
|
124
72
|
<script>
|
125
73
|
if ('csm' in window) {
|
@@ -128,6 +76,11 @@ oncall();
|
|
128
76
|
</script>
|
129
77
|
</head>
|
130
78
|
<body id="styleguide-v2" class="fixed">
|
79
|
+
<script>
|
80
|
+
if (typeof uet == 'function') {
|
81
|
+
uet("bb");
|
82
|
+
}
|
83
|
+
</script>
|
131
84
|
<script>
|
132
85
|
if ('csm' in window) {
|
133
86
|
csm.measure('csm_body_delivery_started');
|
@@ -135,19 +88,14 @@ oncall();
|
|
135
88
|
</script>
|
136
89
|
<div id="wrapper">
|
137
90
|
<div id="root" class="redesign">
|
91
|
+
<script>
|
92
|
+
if (typeof uet == 'function') {
|
93
|
+
uet("ns");
|
94
|
+
}
|
95
|
+
</script>
|
138
96
|
<div id="nb20" class="navbarSprite">
|
139
97
|
<div id="supertab">
|
140
|
-
<!--
|
141
|
-
<div id="top_ad_wrapper" class="dfp_slot">
|
142
|
-
<script type="text/javascript">
|
143
|
-
ad_utils.register_ad('top_ad');
|
144
|
-
</script>
|
145
|
-
<iframe data-dart-params="#imdb2.consumer.main/nowplaying;!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-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>
|
146
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.main/nowplaying;tile=1;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;fv=1;ab=f;bpx=1;ord=398104817376?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.main/nowplaying;tile=1;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;fv=1;ab=f;bpx=1;ord=398104817376?" border="0" alt="advertisement" /></a></noscript>
|
147
|
-
</div>
|
148
|
-
<div id="top_ad_reflow_helper"></div>
|
149
|
-
<script>ad_utils.render_ad_fast('top_ad');</script>
|
150
|
-
<!-- End TOP_AD -->
|
98
|
+
<!-- no content received for slot: top_ad -->
|
151
99
|
|
152
100
|
</div>
|
153
101
|
<div id="navbar" class="navbarSprite">
|
@@ -202,17 +150,16 @@ onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
|
202
150
|
</div>
|
203
151
|
</form>
|
204
152
|
<div id="nb_personal">
|
205
|
-
|
206
|
-
|
207
|
-
href="
|
208
|
-
>
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
>
|
215
|
-
| <a
|
153
|
+
<ul id="consumer_user_nav" class="main_nav">
|
154
|
+
<li>
|
155
|
+
<a rel="login" href="/register/login?ref_=nb_usr_lgin" class="navbarSprite" id="nblogin" >Login</a>
|
156
|
+
<ul class="sub_nav">
|
157
|
+
<li><a href="https://secure.imdb.com/register-imdb/form-v2?ref_=nb_usr_reg" >Register</a></li>
|
158
|
+
<li><a rel="login" href="/register/login?ref_=nb_usr_lgin" id="nblogin" >Login</a></li>
|
159
|
+
</ul>
|
160
|
+
</li>
|
161
|
+
</ul>
|
162
|
+
<span class="ghostOnDark">|</span> <a
|
216
163
|
onclick="(new Image()).src='/rg/help/navbar/images/b.gif?link=/help/';"
|
217
164
|
href="/help/"
|
218
165
|
>Help</a>
|
@@ -308,21 +255,16 @@ href="/list/watchlist"
|
|
308
255
|
<!-- no content received for slot: navstrip -->
|
309
256
|
|
310
257
|
|
311
|
-
<!--
|
312
|
-
<div id="injected_navstrip_wrapper" class="injected_slot">
|
313
|
-
<iframe 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> </div>
|
314
|
-
<script>ad_utils.inject_ad.register('injected_navstrip');</script>
|
315
|
-
<div id="injected_navstrip_reflow_helper"></div>
|
316
|
-
<!-- end injectable INJECTED_NAVSTRIP -->
|
258
|
+
<!-- no content received for slot: injected_navstrip -->
|
317
259
|
|
260
|
+
<script>
|
261
|
+
if (typeof uet == 'function') {
|
262
|
+
uet("ne");
|
263
|
+
}
|
264
|
+
</script>
|
318
265
|
<div id="pagecontent" itemscope itemtype="http://schema.org/Movie">
|
319
266
|
|
320
|
-
<!--
|
321
|
-
<div id="injected_billboard_wrapper" class="injected_slot">
|
322
|
-
<iframe 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> </div>
|
323
|
-
<script>ad_utils.inject_ad.register('injected_billboard');</script>
|
324
|
-
<div id="injected_billboard_reflow_helper"></div>
|
325
|
-
<!-- end injectable INJECTED_BILLBOARD -->
|
267
|
+
<!-- no content received for slot: injected_billboard -->
|
326
268
|
|
327
269
|
|
328
270
|
<script type="text/javascript">
|
@@ -363,13 +305,7 @@ href="/showtimes/"
|
|
363
305
|
<div class="header">
|
364
306
|
<div class="nav">
|
365
307
|
<div class="desc">
|
366
|
-
<a href="#
|
367
|
-
|
|
368
|
-
<a href="#May17">May 17</a>
|
369
|
-
|
|
370
|
-
<a href="#May24">May 24</a>
|
371
|
-
|
|
372
|
-
<a href="#May31">May 31</a>
|
308
|
+
<a href="#Jun28">Jun 28</a>
|
373
309
|
|
374
310
|
</div>
|
375
311
|
|
@@ -377,16 +313,12 @@ href="/showtimes/"
|
|
377
313
|
|
378
314
|
<div class="sort">
|
379
315
|
« <a
|
380
|
-
onclick="(new Image()).src='/rg/coming-soon/previous-month/images/b.gif?link=/movies-coming-soon/2013-
|
381
|
-
href="/movies-coming-soon/2013-
|
316
|
+
onclick="(new Image()).src='/rg/coming-soon/previous-month/images/b.gif?link=/movies-coming-soon/2013-06/';"
|
317
|
+
href="/movies-coming-soon/2013-06/"
|
382
318
|
>Prev</a>
|
383
319
|
|
384
320
|
<select name="sort" class="sort_field date_select" onchange="window.open(this.options[this.selectedIndex].value,'_top')">
|
385
321
|
<option selected="selected"
|
386
|
-
value="/movies-coming-soon/2013-05/">
|
387
|
-
May 2013
|
388
|
-
</option>
|
389
|
-
<option
|
390
322
|
value="/movies-coming-soon/2013-06/">
|
391
323
|
June 2013
|
392
324
|
</option>
|
@@ -394,785 +326,59 @@ href="/movies-coming-soon/2013-05/"
|
|
394
326
|
value="/movies-coming-soon/2013-07/">
|
395
327
|
July 2013
|
396
328
|
</option>
|
397
|
-
<option
|
398
|
-
value="/movies-coming-soon/2013-08/">
|
399
|
-
August 2013
|
400
|
-
</option>
|
401
|
-
<option
|
402
|
-
value="/movies-coming-soon/2013-09/">
|
403
|
-
September 2013
|
404
|
-
</option>
|
405
|
-
<option
|
406
|
-
value="/movies-coming-soon/2013-10/">
|
407
|
-
October 2013
|
408
|
-
</option>
|
409
|
-
<option
|
410
|
-
value="/movies-coming-soon/2013-11/">
|
411
|
-
November 2013
|
412
|
-
</option>
|
413
|
-
<option
|
414
|
-
value="/movies-coming-soon/2013-12/">
|
415
|
-
December 2013
|
416
|
-
</option>
|
417
|
-
<option
|
418
|
-
value="/movies-coming-soon/2014-01/">
|
419
|
-
January 2014
|
420
|
-
</option>
|
421
|
-
<option
|
422
|
-
value="/movies-coming-soon/2014-02/">
|
423
|
-
February 2014
|
424
|
-
</option>
|
425
|
-
<option
|
426
|
-
value="/movies-coming-soon/2014-03/">
|
427
|
-
March 2014
|
428
|
-
</option>
|
429
|
-
<option
|
430
|
-
value="/movies-coming-soon/2014-04/">
|
431
|
-
April 2014
|
432
|
-
</option>
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
>
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
<div class="list detail">
|
445
|
-
<h4 class="li_group"><a name="May10">May 10 </a></h4>
|
446
|
-
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
447
|
-
|
448
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
449
|
-
<tbody>
|
450
|
-
<tr>
|
451
|
-
<td rowspan="2" valign="top" id="img_primary">
|
452
|
-
<div class="image">
|
453
|
-
<a
|
454
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1343092/';"
|
455
|
-
href="/title/tt1343092/"
|
456
|
-
> <div class="hover-over-image zero-z-index">
|
457
|
-
<img class="poster shadowed"
|
458
|
-
height="209"
|
459
|
-
width="140"
|
460
|
-
alt="Suur Gatsby (2013) Poster"
|
461
|
-
title="Suur Gatsby (2013)"
|
462
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTkxNTk1ODcxNl5BMl5BanBnXkFtZTcwMDI1OTMzOQ@@._V1_SX140_CR0,0,140,209_.jpg"
|
463
|
-
itemprop="image" />
|
464
|
-
</div>
|
465
|
-
</a> </div>
|
466
|
-
</td>
|
467
|
-
<td class="overview-top">
|
468
|
-
<h4 itemprop="name"><a
|
469
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1343092/';"
|
470
|
-
href="/title/tt1343092/"
|
471
|
-
title="Suur Gatsby (2013)"
|
472
|
-
itemprop='url'> Suur Gatsby (2013)</a></h4>
|
473
|
-
<p class="cert-runtime-genre">
|
474
|
-
|
475
|
-
<img title="Ratings certificate for Suur Gatsby (2013)"
|
476
|
-
alt="Certificate PG-13"
|
477
|
-
class="absmiddle certimage"
|
478
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png"
|
479
|
-
itemprop="contentRating" />
|
480
|
-
|
481
|
-
<time itemprop="duration" datetime="PT143M">143 min</time>
|
482
|
-
-
|
483
|
-
<span itemprop="genre">Drama</span>
|
484
|
-
<span class="ghost">|</span>
|
485
|
-
<span itemprop="genre">Romance</span>
|
486
|
-
|
487
|
-
</p>
|
488
|
-
<div class="rating_txt">
|
489
|
-
</div>
|
490
|
-
<div class="outline" itemprop="description">
|
491
|
-
A Midwestern war veteran finds himself drawn to the past and lifestyle of his millionaire neighbor. </div>
|
492
|
-
<div class="txt-block">
|
493
|
-
<h5 class="inline">Director:</h5>
|
494
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
495
|
-
<span itemprop="name">
|
496
|
-
<a
|
497
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0525303/';"
|
498
|
-
href="/name/nm0525303/"
|
499
|
-
itemprop='url'>Baz Luhrmann</a> </span>
|
500
|
-
</span>
|
501
|
-
|
502
|
-
</div>
|
503
|
-
<div class="txt-block">
|
504
|
-
<h5 class="inline">Stars:</h5>
|
505
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
506
|
-
<span itemprop="name">
|
507
|
-
<a
|
508
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000138/';"
|
509
|
-
href="/name/nm0000138/"
|
510
|
-
itemprop='url'>Leonardo DiCaprio</a></span></span>,
|
511
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
512
|
-
<span itemprop="name">
|
513
|
-
<a
|
514
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0249291/';"
|
515
|
-
href="/name/nm0249291/"
|
516
|
-
itemprop='url'>Joel Edgerton</a></span></span>,
|
517
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
518
|
-
<span itemprop="name">
|
519
|
-
<a
|
520
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0001497/';"
|
521
|
-
href="/name/nm0001497/"
|
522
|
-
itemprop='url'>Tobey Maguire</a></span></span>,
|
523
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
524
|
-
<span itemprop="name">
|
525
|
-
<a
|
526
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1659547/';"
|
527
|
-
href="/name/nm1659547/"
|
528
|
-
itemprop='url'>Carey Mulligan</a></span></span>
|
529
|
-
</div>
|
530
|
-
</td>
|
531
|
-
</tr>
|
532
|
-
<tr>
|
533
|
-
<td class="overview-bottom">
|
534
|
-
<a href="/title/tt1343092/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
535
|
-
</a> <span class="wlb_wrapper">
|
536
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1343092" data-size="small" data-caller-name="Title">
|
537
|
-
</a>
|
538
|
-
</span>
|
539
|
-
</td>
|
540
|
-
</tr>
|
541
|
-
</tbody>
|
542
|
-
</table>
|
543
|
-
|
544
|
-
<p class="thebuzz">
|
545
|
-
<strong>The Buzz</strong>: My love for certain novels doesn't desire to see them confined to the page or protected from being interpreted on film; take for example Cary Fukunaga's <a href="/title/tt1229822/">Jane Eyre</a>, a perfect adaptation of Charlotte Brontë's dreary, soot-eyed romance, and an example of underdog cast and director choices at their most winning. When it comes to Leonardo DiCaprio reteaming with Baz Luhrmann to interpret F. Scott Fitzgerald's second-best novel, I often think that the people who have the power to green light (<i>Gatsby</i> reference) major projects aren't necessarily the best fit to star in them. Or act as their director. As respected as he aims to be, Leonardo DiCaprio is at his least effective handling serious drama; Luhrmann, with all of his mega-budget entitlement, has bewitched the industry, but let's see how his latest epic plays out in terms of audience appeal.
|
546
|
-
</p>
|
547
|
-
</div>
|
548
|
-
<div class="list_item even" itemscope itemtype="http://schema.org/Movie">
|
549
|
-
|
550
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
551
|
-
<tbody>
|
552
|
-
<tr>
|
553
|
-
<td rowspan="2" valign="top" id="img_primary">
|
554
|
-
<div class="image">
|
555
|
-
<a
|
556
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1699755/';"
|
557
|
-
href="/title/tt1699755/"
|
558
|
-
> <div class="hover-over-image zero-z-index">
|
559
|
-
<img class="poster shadowed"
|
560
|
-
height="209"
|
561
|
-
width="140"
|
562
|
-
alt="Peeples (2013) Poster"
|
563
|
-
title="Peeples (2013)"
|
564
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTQwODU0MDM4Ml5BMl5BanBnXkFtZTcwMTA5MDkzOQ@@._V1_SX140_CR0,0,140,209_.jpg"
|
565
|
-
itemprop="image" />
|
566
|
-
</div>
|
567
|
-
</a> </div>
|
568
|
-
</td>
|
569
|
-
<td class="overview-top">
|
570
|
-
<h4 itemprop="name"><a
|
571
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1699755/';"
|
572
|
-
href="/title/tt1699755/"
|
573
|
-
title="Peeples (2013)"
|
574
|
-
itemprop='url'> Peeples (2013)</a></h4>
|
575
|
-
<p class="cert-runtime-genre">
|
576
|
-
|
577
|
-
<img title="Ratings certificate for Peeples (2013)"
|
578
|
-
alt="Certificate PG-13"
|
579
|
-
class="absmiddle certimage"
|
580
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png"
|
581
|
-
itemprop="contentRating" />
|
582
|
-
|
583
|
-
<time itemprop="duration" datetime="PT95M">95 min</time>
|
584
|
-
-
|
585
|
-
<span itemprop="genre">Comedy</span>
|
586
|
-
|
587
|
-
</p>
|
588
|
-
<div class="rating_txt">
|
589
|
-
</div>
|
590
|
-
<div class="outline" itemprop="description">
|
591
|
-
Sparks fly when Wade Walker crashes the Peeples annual reunion in the Hamptons to ask for their precious daughter Grace's hand in marriage. </div>
|
592
|
-
<div class="txt-block">
|
593
|
-
<h5 class="inline">Director:</h5>
|
594
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
595
|
-
<span itemprop="name">
|
596
|
-
<a
|
597
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm1202276/';"
|
598
|
-
href="/name/nm1202276/"
|
599
|
-
itemprop='url'>Tina Gordon Chism</a> </span>
|
600
|
-
</span>
|
601
|
-
|
602
|
-
</div>
|
603
|
-
<div class="txt-block">
|
604
|
-
<h5 class="inline">Stars:</h5>
|
605
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
606
|
-
<span itemprop="name">
|
607
|
-
<a
|
608
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0732497/';"
|
609
|
-
href="/name/nm0732497/"
|
610
|
-
itemprop='url'>Craig Robinson</a></span></span>,
|
611
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
612
|
-
<span itemprop="name">
|
613
|
-
<a
|
614
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0913488/';"
|
615
|
-
href="/name/nm0913488/"
|
616
|
-
itemprop='url'>Kerry Washington</a></span></span>,
|
617
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
618
|
-
<span itemprop="name">
|
619
|
-
<a
|
620
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0004979/';"
|
621
|
-
href="/name/nm0004979/"
|
622
|
-
itemprop='url'>David Alan Grier</a></span></span>,
|
623
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
624
|
-
<span itemprop="name">
|
625
|
-
<a
|
626
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0580924/';"
|
627
|
-
href="/name/nm0580924/"
|
628
|
-
itemprop='url'>S. Epatha Merkerson</a></span></span>
|
629
|
-
</div>
|
630
|
-
</td>
|
631
|
-
</tr>
|
632
|
-
<tr>
|
633
|
-
<td class="overview-bottom">
|
634
|
-
<a href="/title/tt1699755/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
635
|
-
</a> <span class="wlb_wrapper">
|
636
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1699755" data-size="small" data-caller-name="Title">
|
637
|
-
</a>
|
638
|
-
</span>
|
639
|
-
</td>
|
640
|
-
</tr>
|
641
|
-
</tbody>
|
642
|
-
</table>
|
643
|
-
|
644
|
-
<p class="thebuzz">
|
645
|
-
<strong>The Buzz</strong>: Tyler Perry expands his brand by mentoring screenwriter Tina Gordon Chism (<a href="/title/tt0303933/">Drumline</a>, <a href="/title/tt0466856/">ATL</a>) for her directorial debut, which definitely sounds like it will ride the line between Perry's full-bore family-centric comedy and his penchant for slightly more serious life lessons. But, hey, anyone who sees more in Craig Robinson than an ensemble or background player has my vote of confidence.
|
646
|
-
</p>
|
647
|
-
</div>
|
648
|
-
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
649
|
-
|
650
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
651
|
-
<tbody>
|
652
|
-
<tr>
|
653
|
-
<td rowspan="2" valign="top" id="img_primary">
|
654
|
-
<div class="image">
|
655
|
-
<a
|
656
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1780762/';"
|
657
|
-
href="/title/tt1780762/"
|
658
|
-
> <div class="hover-over-image zero-z-index">
|
659
|
-
<img class="poster shadowed"
|
660
|
-
height="209"
|
661
|
-
width="140"
|
662
|
-
alt="Aftershock (2012) Poster"
|
663
|
-
title="Aftershock (2012)"
|
664
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTQyOTA3MjQzNF5BMl5BanBnXkFtZTcwMzc3NzY0OQ@@._V1_SY209_CR1,0,140,209_.jpg"
|
665
|
-
itemprop="image" />
|
666
|
-
</div>
|
667
|
-
</a> </div>
|
668
|
-
</td>
|
669
|
-
<td class="overview-top">
|
670
|
-
<h4 itemprop="name"><a
|
671
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1780762/';"
|
672
|
-
href="/title/tt1780762/"
|
673
|
-
title="Aftershock (2012)"
|
674
|
-
itemprop='url'> Aftershock (2012)</a></h4>
|
675
|
-
<p class="cert-runtime-genre">
|
676
|
-
|
677
|
-
<img title="Ratings certificate for Aftershock (2012)"
|
678
|
-
alt="Certificate R"
|
679
|
-
class="absmiddle certimage"
|
680
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png"
|
681
|
-
itemprop="contentRating" />
|
682
|
-
|
683
|
-
<time itemprop="duration" datetime="PT90M">90 min</time>
|
684
|
-
-
|
685
|
-
<span itemprop="genre">Horror</span>
|
686
|
-
<span class="ghost">|</span>
|
687
|
-
<span itemprop="genre">Thriller</span>
|
688
|
-
|
689
|
-
</p>
|
690
|
-
<div class="rating_txt">
|
691
|
-
<div class="metascore no_ratings">
|
692
|
-
Metascore: <strong>52</strong><span class="mellow">/100</span>
|
693
|
-
(<a title="4 review excerpts provided by Metacritic.com"
|
694
|
-
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
695
|
-
href="/title/tt1780762/criticreviews">4 reviews</a>)
|
696
|
-
</div>
|
697
|
-
</div>
|
698
|
-
<div class="outline" itemprop="description">
|
699
|
-
In Chile, a group of travelers who are in an underground nightclub when a massive earthquake hits quickly learn that reaching the surface is just the beginning of their nightmare. </div>
|
700
|
-
<div class="txt-block">
|
701
|
-
<h5 class="inline">Director:</h5>
|
702
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
703
|
-
<span itemprop="name">
|
704
|
-
<a
|
705
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm1240647/';"
|
706
|
-
href="/name/nm1240647/"
|
707
|
-
itemprop='url'>Nicolás López</a> </span>
|
708
|
-
</span>
|
709
|
-
|
710
|
-
</div>
|
711
|
-
<div class="txt-block">
|
712
|
-
<h5 class="inline">Stars:</h5>
|
713
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
714
|
-
<span itemprop="name">
|
715
|
-
<a
|
716
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0744834/';"
|
717
|
-
href="/name/nm0744834/"
|
718
|
-
itemprop='url'>Eli Roth</a></span></span>,
|
719
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
720
|
-
<span itemprop="name">
|
721
|
-
<a
|
722
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0652619/';"
|
723
|
-
href="/name/nm0652619/"
|
724
|
-
itemprop='url'>Andrea Osvárt</a></span></span>,
|
725
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
726
|
-
<span itemprop="name">
|
727
|
-
<a
|
728
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1642639/';"
|
729
|
-
href="/name/nm1642639/"
|
730
|
-
itemprop='url'>Ariel Levy</a></span></span>,
|
731
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
732
|
-
<span itemprop="name">
|
733
|
-
<a
|
734
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1169229/';"
|
735
|
-
href="/name/nm1169229/"
|
736
|
-
itemprop='url'>Nicolás Martínez</a></span></span>
|
737
|
-
</div>
|
738
|
-
</td>
|
739
|
-
</tr>
|
740
|
-
<tr>
|
741
|
-
<td class="overview-bottom">
|
742
|
-
<a href="/title/tt1780762/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
743
|
-
</a> <span class="wlb_wrapper">
|
744
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1780762" data-size="small" data-caller-name="Title">
|
745
|
-
</a>
|
746
|
-
</span>
|
747
|
-
</td>
|
748
|
-
</tr>
|
749
|
-
</tbody>
|
750
|
-
</table>
|
751
|
-
|
752
|
-
<p class="thebuzz">
|
753
|
-
<strong>The Buzz</strong>: Eli Roth writes, produces, and stars in his new filmmaking buddy Nicolas Lopez's indie disaster movie, which follows a <i>Hostel</i>-like narrative structure where unwitting tourists have to battle against Mother Nature at her most nefarious. Selena Gomez -- suddenly so interesting -- makes a cameo appearance only.
|
754
|
-
</p>
|
755
|
-
</div>
|
756
|
-
<h4 class="li_group"><a name="May17">May 17 </a></h4>
|
757
|
-
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
758
|
-
|
759
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
760
|
-
<tbody>
|
761
|
-
<tr>
|
762
|
-
<td rowspan="2" valign="top" id="img_primary">
|
763
|
-
<div class="image">
|
764
|
-
<a
|
765
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1408101/';"
|
766
|
-
href="/title/tt1408101/"
|
767
|
-
> <div class="hover-over-image zero-z-index">
|
768
|
-
<img class="poster shadowed"
|
769
|
-
height="209"
|
770
|
-
width="140"
|
771
|
-
alt="Star Trek Into Darkness (2013) Poster"
|
772
|
-
title="Star Trek Into Darkness (2013)"
|
773
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTk2NzczOTgxNF5BMl5BanBnXkFtZTcwODQ5ODczOQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
774
|
-
itemprop="image" />
|
775
|
-
</div>
|
776
|
-
</a> </div>
|
777
|
-
</td>
|
778
|
-
<td class="overview-top">
|
779
|
-
<h4 itemprop="name"><a
|
780
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1408101/';"
|
781
|
-
href="/title/tt1408101/"
|
782
|
-
title="Star Trek Into Darkness (2013)"
|
783
|
-
itemprop='url'> Star Trek Into Darkness (2013)</a></h4>
|
784
|
-
<p class="cert-runtime-genre">
|
785
|
-
|
786
|
-
<img title="Ratings certificate for Star Trek Into Darkness (2013)"
|
787
|
-
alt="Certificate PG-13"
|
788
|
-
class="absmiddle certimage"
|
789
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png"
|
790
|
-
itemprop="contentRating" />
|
791
|
-
|
792
|
-
<time itemprop="duration" datetime="PT132M">132 min</time>
|
793
|
-
-
|
794
|
-
<span itemprop="genre">Action</span>
|
795
|
-
<span class="ghost">|</span>
|
796
|
-
<span itemprop="genre">Adventure</span>
|
797
|
-
<span class="ghost">|</span>
|
798
|
-
<span itemprop="genre">Sci-Fi</span>
|
799
|
-
|
800
|
-
</p>
|
801
|
-
<div class="rating_txt">
|
802
|
-
<div class="metascore no_ratings">
|
803
|
-
Metascore: <strong>75</strong><span class="mellow">/100</span>
|
804
|
-
(<a title="7 review excerpts provided by Metacritic.com"
|
805
|
-
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
806
|
-
href="/title/tt1408101/criticreviews">7 reviews</a>)
|
807
|
-
</div>
|
808
|
-
</div>
|
809
|
-
<div class="outline" itemprop="description">
|
810
|
-
After the crew of the Enterprise find an unstoppable force of terror from within their own organization, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. </div>
|
811
|
-
<div class="txt-block">
|
812
|
-
<h5 class="inline">Director:</h5>
|
813
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
814
|
-
<span itemprop="name">
|
815
|
-
<a
|
816
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0009190/';"
|
817
|
-
href="/name/nm0009190/"
|
818
|
-
itemprop='url'>J.J. Abrams</a> </span>
|
819
|
-
</span>
|
820
|
-
|
821
|
-
</div>
|
822
|
-
<div class="txt-block">
|
823
|
-
<h5 class="inline">Stars:</h5>
|
824
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
825
|
-
<span itemprop="name">
|
826
|
-
<a
|
827
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1212722/';"
|
828
|
-
href="/name/nm1212722/"
|
829
|
-
itemprop='url'>Benedict Cumberbatch</a></span></span>,
|
830
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
831
|
-
<span itemprop="name">
|
832
|
-
<a
|
833
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1517976/';"
|
834
|
-
href="/name/nm1517976/"
|
835
|
-
itemprop='url'>Chris Pine</a></span></span>,
|
836
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
837
|
-
<span itemprop="name">
|
838
|
-
<a
|
839
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0757855/';"
|
840
|
-
href="/name/nm0757855/"
|
841
|
-
itemprop='url'>Zoe Saldana</a></span></span>,
|
842
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
843
|
-
<span itemprop="name">
|
844
|
-
<a
|
845
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0704270/';"
|
846
|
-
href="/name/nm0704270/"
|
847
|
-
itemprop='url'>Zachary Quinto</a></span></span>
|
848
|
-
</div>
|
849
|
-
</td>
|
850
|
-
</tr>
|
851
|
-
<tr>
|
852
|
-
<td class="overview-bottom">
|
853
|
-
<a href="/title/tt1408101/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
854
|
-
</a> <span class="wlb_wrapper">
|
855
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1408101" data-size="small" data-caller-name="Title">
|
856
|
-
</a>
|
857
|
-
</span>
|
858
|
-
</td>
|
859
|
-
</tr>
|
860
|
-
</tbody>
|
861
|
-
</table>
|
862
|
-
|
863
|
-
<p class="thebuzz">
|
864
|
-
<strong>The Buzz</strong>: With Benedict Cumberbatch (aka Sherlock Holmes) playing a new villain that may/may not/but probably will have a connection to Trek history and Peter Weller (aka RoboCop) joining the crew of the U.S.S. Enterprise in a major way, what else do we need to make J.J. Abrams's return to Roddenberry space the most anticipated sequel of 2013? A Klingon subplot? You (again, probably) got it. More Spock Prime? Check. William Shatner cameo? Unlikely, but we'll hold out for it once more.
|
865
|
-
</p>
|
866
|
-
</div>
|
867
|
-
<div class="list_item even" itemscope itemtype="http://schema.org/Movie">
|
868
|
-
|
869
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
870
|
-
<tbody>
|
871
|
-
<tr>
|
872
|
-
<td rowspan="2" valign="top" id="img_primary">
|
873
|
-
<div class="image">
|
874
|
-
<a
|
875
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt2347569/';"
|
876
|
-
href="/title/tt2347569/"
|
877
|
-
> <div class="hover-over-image zero-z-index">
|
878
|
-
<img class="poster shadowed"
|
879
|
-
height="209"
|
880
|
-
width="140"
|
881
|
-
alt="Frances Ha (2012) Poster"
|
882
|
-
title="Frances Ha (2012)"
|
883
|
-
src="http://ia.media-imdb.com/images/M/MV5BOTY0NDQ2NzQ2N15BMl5BanBnXkFtZTcwMTU0OTkwOQ@@._V1_SX140_CR0,0,140,209_.jpg"
|
884
|
-
itemprop="image" />
|
885
|
-
</div>
|
886
|
-
</a> </div>
|
887
|
-
</td>
|
888
|
-
<td class="overview-top">
|
889
|
-
<h4 itemprop="name"><a
|
890
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt2347569/';"
|
891
|
-
href="/title/tt2347569/"
|
892
|
-
title="Frances Ha (2012)"
|
893
|
-
itemprop='url'> Frances Ha (2012)</a></h4>
|
894
|
-
<p class="cert-runtime-genre">
|
895
|
-
|
896
|
-
<img title="Ratings certificate for Frances Ha (2012)"
|
897
|
-
alt="Certificate R"
|
898
|
-
class="absmiddle certimage"
|
899
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png"
|
900
|
-
itemprop="contentRating" />
|
901
|
-
|
902
|
-
<time itemprop="duration" datetime="PT86M">86 min</time>
|
903
|
-
-
|
904
|
-
<span itemprop="genre">Comedy</span>
|
905
|
-
|
906
|
-
</p>
|
907
|
-
<div class="rating_txt">
|
908
|
-
<div class="metascore no_ratings">
|
909
|
-
Metascore: <strong>86</strong><span class="mellow">/100</span>
|
910
|
-
(<a title="5 review excerpts provided by Metacritic.com"
|
911
|
-
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
912
|
-
href="/title/tt2347569/criticreviews">5 reviews</a>)
|
913
|
-
</div>
|
914
|
-
</div>
|
915
|
-
<div class="outline" itemprop="description">
|
916
|
-
A story that follows a New York woman (who doesn't really have an apartment), apprentices for a dance company (though she's not really a dancer), and throws herself headlong into her dreams, even as their possible reality dwindles. </div>
|
917
|
-
<div class="txt-block">
|
918
|
-
<h5 class="inline">Director:</h5>
|
919
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
920
|
-
<span itemprop="name">
|
921
|
-
<a
|
922
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0000876/';"
|
923
|
-
href="/name/nm0000876/"
|
924
|
-
itemprop='url'>Noah Baumbach</a> </span>
|
925
|
-
</span>
|
926
|
-
|
927
|
-
</div>
|
928
|
-
<div class="txt-block">
|
929
|
-
<h5 class="inline">Stars:</h5>
|
930
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
931
|
-
<span itemprop="name">
|
932
|
-
<a
|
933
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1950086/';"
|
934
|
-
href="/name/nm1950086/"
|
935
|
-
itemprop='url'>Greta Gerwig</a></span></span>,
|
936
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
937
|
-
<span itemprop="name">
|
938
|
-
<a
|
939
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2316017/';"
|
940
|
-
href="/name/nm2316017/"
|
941
|
-
itemprop='url'>Mickey Sumner</a></span></span>,
|
942
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
943
|
-
<span itemprop="name">
|
944
|
-
<a
|
945
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm3485845/';"
|
946
|
-
href="/name/nm3485845/"
|
947
|
-
itemprop='url'>Adam Driver</a></span></span>,
|
948
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
949
|
-
<span itemprop="name">
|
950
|
-
<a
|
951
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1652433/';"
|
952
|
-
href="/name/nm1652433/"
|
953
|
-
itemprop='url'>Michael Zegen</a></span></span>
|
954
|
-
</div>
|
955
|
-
</td>
|
956
|
-
</tr>
|
957
|
-
<tr>
|
958
|
-
<td class="overview-bottom">
|
959
|
-
<a href="/title/tt2347569/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
960
|
-
</a> <span class="wlb_wrapper">
|
961
|
-
<a class="wlb_watchlist_lite" data-tconst="tt2347569" data-size="small" data-caller-name="Title">
|
962
|
-
</a>
|
963
|
-
</span>
|
964
|
-
</td>
|
965
|
-
</tr>
|
966
|
-
</tbody>
|
967
|
-
</table>
|
968
|
-
|
969
|
-
<p class="thebuzz">
|
970
|
-
<strong>The Buzz</strong>: Looks like Greta Gerwig gets to star in a <a href="/title/tt1234654/">Greenberg</a> of her own making, as she and director Noah Baumbach co-wrote this screenplay together in secret, and have created a work that has been as well received as Baumbach's first two films, <a href="/title/tt0113537/">Kicking and Screaming</a> and <a href="/title/tt0367089/">The Squid and the Whale</a>. We still don't know if Gerwig will ever have a genuine breakthrough; that said, she's earning most of the praise here.
|
971
|
-
</p>
|
972
|
-
</div>
|
973
|
-
<h4 class="li_group"><a name="May24">May 24 </a></h4>
|
974
|
-
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
975
|
-
|
976
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
977
|
-
<tbody>
|
978
|
-
<tr>
|
979
|
-
<td rowspan="2" valign="top" id="img_primary">
|
980
|
-
<div class="image">
|
981
|
-
<a
|
982
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1905041/';"
|
983
|
-
href="/title/tt1905041/"
|
984
|
-
> <div class="hover-over-image zero-z-index">
|
985
|
-
<img class="poster shadowed"
|
986
|
-
height="209"
|
987
|
-
width="140"
|
988
|
-
alt="Fast & Furious 6 (2013) Poster"
|
989
|
-
title="Fast & Furious 6 (2013)"
|
990
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTM3NTg2NDQzOF5BMl5BanBnXkFtZTcwNjc2NzQzOQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
991
|
-
itemprop="image" />
|
992
|
-
</div>
|
993
|
-
</a> </div>
|
994
|
-
</td>
|
995
|
-
<td class="overview-top">
|
996
|
-
<h4 itemprop="name"><a
|
997
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1905041/';"
|
998
|
-
href="/title/tt1905041/"
|
999
|
-
title="Fast & Furious 6 (2013)"
|
1000
|
-
itemprop='url'> Fast & Furious 6 (2013)</a></h4>
|
1001
|
-
<p class="cert-runtime-genre">
|
1002
|
-
|
1003
|
-
<img title="Ratings certificate for Fast & Furious 6 (2013)"
|
1004
|
-
alt="Certificate PG-13"
|
1005
|
-
class="absmiddle certimage"
|
1006
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png"
|
1007
|
-
itemprop="contentRating" />
|
1008
|
-
|
1009
|
-
<time itemprop="duration" datetime="PT130M">130 min</time>
|
1010
|
-
-
|
1011
|
-
<span itemprop="genre">Action</span>
|
1012
|
-
<span class="ghost">|</span>
|
1013
|
-
<span itemprop="genre">Crime</span>
|
1014
|
-
<span class="ghost">|</span>
|
1015
|
-
<span itemprop="genre">Thriller</span>
|
1016
|
-
|
1017
|
-
</p>
|
1018
|
-
<div class="rating_txt">
|
1019
|
-
</div>
|
1020
|
-
<div class="outline" itemprop="description">
|
1021
|
-
Agent Hobbs enlists the aid of Dom and team to help bring a rival gang, led by Owen Shaw, to justice. In exchange for clear records, they must put an end to their schemes, no matter how personal the cost. </div>
|
1022
|
-
<div class="txt-block">
|
1023
|
-
<h5 class="inline">Director:</h5>
|
1024
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1025
|
-
<span itemprop="name">
|
1026
|
-
<a
|
1027
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0510912/';"
|
1028
|
-
href="/name/nm0510912/"
|
1029
|
-
itemprop='url'>Justin Lin</a> </span>
|
1030
|
-
</span>
|
1031
|
-
|
1032
|
-
</div>
|
1033
|
-
<div class="txt-block">
|
1034
|
-
<h5 class="inline">Stars:</h5>
|
1035
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1036
|
-
<span itemprop="name">
|
1037
|
-
<a
|
1038
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0425005/';"
|
1039
|
-
href="/name/nm0425005/"
|
1040
|
-
itemprop='url'>Dwayne Johnson</a></span></span>,
|
1041
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1042
|
-
<span itemprop="name">
|
1043
|
-
<a
|
1044
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0004874/';"
|
1045
|
-
href="/name/nm0004874/"
|
1046
|
-
itemprop='url'>Vin Diesel</a></span></span>,
|
1047
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1048
|
-
<span itemprop="name">
|
1049
|
-
<a
|
1050
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0908094/';"
|
1051
|
-
href="/name/nm0908094/"
|
1052
|
-
itemprop='url'>Paul Walker</a></span></span>,
|
1053
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1054
|
-
<span itemprop="name">
|
1055
|
-
<a
|
1056
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0735442/';"
|
1057
|
-
href="/name/nm0735442/"
|
1058
|
-
itemprop='url'>Michelle Rodriguez</a></span></span>
|
1059
|
-
</div>
|
1060
|
-
</td>
|
1061
|
-
</tr>
|
1062
|
-
<tr>
|
1063
|
-
<td class="overview-bottom">
|
1064
|
-
<a href="/title/tt1905041/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
1065
|
-
</a> <span class="wlb_wrapper">
|
1066
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1905041" data-size="small" data-caller-name="Title">
|
1067
|
-
</a>
|
1068
|
-
</span>
|
1069
|
-
</td>
|
1070
|
-
</tr>
|
1071
|
-
</tbody>
|
1072
|
-
</table>
|
1073
|
-
|
1074
|
-
<p class="thebuzz">
|
1075
|
-
<strong>The Buzz</strong>: Dwayne Johnson didn't have to save or reignite this franchise (which is becoming his specialty); he was brought in to make the enduring and morally ambiguous adventures of Dominic Torreto and Brian O'Conner even more appealing to worldwide audiences. And that certainly worked, as <a href="/title/tt1596343/">Fast Five</a>'s all-world box-office tally can attest. Elsewhere, we are anticipating the soap opera-like narrative device that will bring Letty (Michelle Rodriguez) back into the story. And we're wondering if we'll get to see a sequel to Seth Rogen and Andy Sandberg's <a href="http://www.hulu.com/watch/66311">hysterical parody</a> of the series.
|
1076
|
-
</p>
|
1077
|
-
</div>
|
1078
|
-
<div class="list_item even" itemscope itemtype="http://schema.org/Movie">
|
1079
|
-
|
1080
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
1081
|
-
<tbody>
|
1082
|
-
<tr>
|
1083
|
-
<td rowspan="2" valign="top" id="img_primary">
|
1084
|
-
<div class="image">
|
1085
|
-
<a
|
1086
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1951261/';"
|
1087
|
-
href="/title/tt1951261/"
|
1088
|
-
> <div class="hover-over-image zero-z-index">
|
1089
|
-
<img class="poster shadowed"
|
1090
|
-
height="209"
|
1091
|
-
width="140"
|
1092
|
-
alt="The Hangover Part III (2013) Poster"
|
1093
|
-
title="The Hangover Part III (2013)"
|
1094
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTA0NjE1MzMzODheQTJeQWpwZ15BbWU3MDY4MTQ3Mzk@._V1_SX140_CR0,0,140,209_.jpg"
|
1095
|
-
itemprop="image" />
|
1096
|
-
</div>
|
1097
|
-
</a> </div>
|
1098
|
-
</td>
|
1099
|
-
<td class="overview-top">
|
1100
|
-
<h4 itemprop="name"><a
|
1101
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1951261/';"
|
1102
|
-
href="/title/tt1951261/"
|
1103
|
-
title="The Hangover Part III (2013)"
|
1104
|
-
itemprop='url'> The Hangover Part III (2013)</a></h4>
|
1105
|
-
<p class="cert-runtime-genre">
|
1106
|
-
|
1107
|
-
<img title="Ratings certificate for The Hangover Part III (2013)"
|
1108
|
-
alt="Certificate R"
|
1109
|
-
class="absmiddle certimage"
|
1110
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png"
|
1111
|
-
itemprop="contentRating" />
|
1112
|
-
|
1113
|
-
<span itemprop="genre">Comedy</span>
|
1114
|
-
|
1115
|
-
</p>
|
1116
|
-
<div class="rating_txt">
|
1117
|
-
</div>
|
1118
|
-
<div class="outline" itemprop="description">
|
1119
|
-
This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off. </div>
|
1120
|
-
<div class="txt-block">
|
1121
|
-
<h5 class="inline">Director:</h5>
|
1122
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1123
|
-
<span itemprop="name">
|
1124
|
-
<a
|
1125
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0680846/';"
|
1126
|
-
href="/name/nm0680846/"
|
1127
|
-
itemprop='url'>Todd Phillips</a> </span>
|
1128
|
-
</span>
|
1129
|
-
|
1130
|
-
</div>
|
1131
|
-
<div class="txt-block">
|
1132
|
-
<h5 class="inline">Stars:</h5>
|
1133
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1134
|
-
<span itemprop="name">
|
1135
|
-
<a
|
1136
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0177896/';"
|
1137
|
-
href="/name/nm0177896/"
|
1138
|
-
itemprop='url'>Bradley Cooper</a></span></span>,
|
1139
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1140
|
-
<span itemprop="name">
|
1141
|
-
<a
|
1142
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0302108/';"
|
1143
|
-
href="/name/nm0302108/"
|
1144
|
-
itemprop='url'>Zach Galifianakis</a></span></span>,
|
1145
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1146
|
-
<span itemprop="name">
|
1147
|
-
<a
|
1148
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000422/';"
|
1149
|
-
href="/name/nm0000422/"
|
1150
|
-
itemprop='url'>John Goodman</a></span></span>,
|
1151
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1152
|
-
<span itemprop="name">
|
1153
|
-
<a
|
1154
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1159180/';"
|
1155
|
-
href="/name/nm1159180/"
|
1156
|
-
itemprop='url'>Ed Helms</a></span></span>
|
1157
|
-
</div>
|
1158
|
-
</td>
|
1159
|
-
</tr>
|
1160
|
-
<tr>
|
1161
|
-
<td class="overview-bottom">
|
1162
|
-
<a href="/title/tt1951261/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
1163
|
-
</a> <span class="wlb_wrapper">
|
1164
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1951261" data-size="small" data-caller-name="Title">
|
1165
|
-
</a>
|
1166
|
-
</span>
|
1167
|
-
</td>
|
1168
|
-
</tr>
|
1169
|
-
</tbody>
|
1170
|
-
</table>
|
1171
|
-
|
1172
|
-
<p class="thebuzz">
|
1173
|
-
<strong>The Buzz</strong>: <a href="/title/tt1411697/">The Hangover Part II</a> was essentially a carbon copy of <a href="/title/tt1119646/">The Hangover</a>, but it made enough money (almost $600 million worldwide) that Warner Bros. broke out the check book to get the principal cast and director <a href="/name/nm0680846/">Todd Phillips</a> back on board to conclude the "trilogy" with one last outing. Rumor has it that the boys will be spending time in Los Angeles, Las Vegas and Tijuana, which seems much more entertaining than their dreary Bangkok outing in Part II. Still, it's concerning that they are once again working on a tight schedule - putting only two years between sequels is rarely a good idea - and it's hard to imagine they will ever be able to successfully reproduce the unique alchemy of dark comedy and mystery that worked so well the first time.
|
1174
|
-
</p>
|
329
|
+
<option
|
330
|
+
value="/movies-coming-soon/2013-08/">
|
331
|
+
August 2013
|
332
|
+
</option>
|
333
|
+
<option
|
334
|
+
value="/movies-coming-soon/2013-09/">
|
335
|
+
September 2013
|
336
|
+
</option>
|
337
|
+
<option
|
338
|
+
value="/movies-coming-soon/2013-10/">
|
339
|
+
October 2013
|
340
|
+
</option>
|
341
|
+
<option
|
342
|
+
value="/movies-coming-soon/2013-11/">
|
343
|
+
November 2013
|
344
|
+
</option>
|
345
|
+
<option
|
346
|
+
value="/movies-coming-soon/2013-12/">
|
347
|
+
December 2013
|
348
|
+
</option>
|
349
|
+
<option
|
350
|
+
value="/movies-coming-soon/2014-01/">
|
351
|
+
January 2014
|
352
|
+
</option>
|
353
|
+
<option
|
354
|
+
value="/movies-coming-soon/2014-02/">
|
355
|
+
February 2014
|
356
|
+
</option>
|
357
|
+
<option
|
358
|
+
value="/movies-coming-soon/2014-03/">
|
359
|
+
March 2014
|
360
|
+
</option>
|
361
|
+
<option
|
362
|
+
value="/movies-coming-soon/2014-04/">
|
363
|
+
April 2014
|
364
|
+
</option>
|
365
|
+
<option
|
366
|
+
value="/movies-coming-soon/2014-05/">
|
367
|
+
May 2014
|
368
|
+
</option>
|
369
|
+
</select>
|
370
|
+
<a
|
371
|
+
onclick="(new Image()).src='/rg/coming-soon/next-month/images/b.gif?link=/movies-coming-soon/2013-07/';"
|
372
|
+
href="/movies-coming-soon/2013-07/"
|
373
|
+
>Next</a> »
|
1175
374
|
</div>
|
375
|
+
|
376
|
+
</div>
|
377
|
+
</div>
|
378
|
+
|
379
|
+
|
380
|
+
<div class="list detail">
|
381
|
+
<h4 class="li_group"><a name="Jun28">June 28 </a></h4>
|
1176
382
|
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
1177
383
|
|
1178
384
|
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
@@ -1181,56 +387,52 @@ itemprop='url'>Ed Helms</a></span></span>
|
|
1181
387
|
<td rowspan="2" valign="top" id="img_primary">
|
1182
388
|
<div class="image">
|
1183
389
|
<a
|
1184
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/
|
1185
|
-
href="/title/
|
390
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt2404463/';"
|
391
|
+
href="/title/tt2404463/"
|
1186
392
|
> <div class="hover-over-image zero-z-index">
|
1187
393
|
<img class="poster shadowed"
|
1188
394
|
height="209"
|
1189
395
|
width="140"
|
1190
|
-
alt="
|
1191
|
-
title="
|
1192
|
-
src="http://ia.media-imdb.com/images/M/
|
396
|
+
alt="The Heat (2013) Poster"
|
397
|
+
title="The Heat (2013)"
|
398
|
+
src="http://ia.media-imdb.com/images/M/MV5BNDEwMTg2OTI5MF5BMl5BanBnXkFtZTcwNjgyNjkzOQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
1193
399
|
itemprop="image" />
|
1194
400
|
</div>
|
1195
401
|
</a> </div>
|
1196
402
|
</td>
|
1197
403
|
<td class="overview-top">
|
1198
404
|
<h4 itemprop="name"><a
|
1199
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/
|
1200
|
-
href="/title/
|
1201
|
-
title="
|
1202
|
-
itemprop='url'>
|
405
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt2404463/';"
|
406
|
+
href="/title/tt2404463/"
|
407
|
+
title="The Heat (2013)"
|
408
|
+
itemprop='url'> The Heat (2013)</a></h4>
|
1203
409
|
<p class="cert-runtime-genre">
|
1204
410
|
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
<time itemprop="duration" datetime="PT102M">102 min</time>
|
411
|
+
<img title="R"
|
412
|
+
alt="Certificate R"
|
413
|
+
class="absmiddle certimage"
|
414
|
+
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png" />
|
415
|
+
<time itemprop="duration" datetime="PT117M">117 min</time>
|
1212
416
|
-
|
1213
|
-
<span itemprop="genre">
|
1214
|
-
<span class="ghost">|</span>
|
1215
|
-
<span itemprop="genre">Adventure</span>
|
417
|
+
<span itemprop="genre">Action</span>
|
1216
418
|
<span class="ghost">|</span>
|
1217
419
|
<span itemprop="genre">Comedy</span>
|
1218
420
|
<span class="ghost">|</span>
|
1219
|
-
<span itemprop="genre">
|
421
|
+
<span itemprop="genre">Crime</span>
|
1220
422
|
|
1221
423
|
</p>
|
1222
424
|
<div class="rating_txt">
|
1223
425
|
</div>
|
1224
426
|
<div class="outline" itemprop="description">
|
1225
|
-
|
427
|
+
Uptight FBI special agent Sarah Ashburn is paired with testy Boston cop Shannon Mullins in order to take down a ruthless drug lord. The hitch: neither woman has ever had a partner -- or a friend for that matter. </div>
|
1226
428
|
<div class="txt-block">
|
1227
429
|
<h5 class="inline">Director:</h5>
|
1228
430
|
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1229
431
|
<span itemprop="name">
|
1230
432
|
<a
|
1231
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/
|
1232
|
-
href="/name/
|
1233
|
-
itemprop='url'>
|
433
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0082450/';"
|
434
|
+
href="/name/nm0082450/"
|
435
|
+
itemprop='url'>Paul Feig</a> </span>
|
1234
436
|
</span>
|
1235
437
|
|
1236
438
|
</div>
|
@@ -1239,35 +441,50 @@ itemprop='url'>Chris Wedge</a> </span>
|
|
1239
441
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1240
442
|
<span itemprop="name">
|
1241
443
|
<a
|
1242
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1243
|
-
href="/name/
|
1244
|
-
itemprop='url'>
|
444
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0565250/';"
|
445
|
+
href="/name/nm0565250/"
|
446
|
+
itemprop='url'>Melissa McCarthy</a></span></span>,
|
1245
447
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1246
448
|
<span itemprop="name">
|
1247
449
|
<a
|
1248
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1249
|
-
href="/name/
|
1250
|
-
itemprop='url'>
|
450
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000113/';"
|
451
|
+
href="/name/nm0000113/"
|
452
|
+
itemprop='url'>Sandra Bullock</a></span></span>,
|
1251
453
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1252
454
|
<span itemprop="name">
|
1253
455
|
<a
|
1254
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1255
|
-
href="/name/
|
1256
|
-
itemprop='url'>
|
456
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1229520/';"
|
457
|
+
href="/name/nm1229520/"
|
458
|
+
itemprop='url'>Ben Falcone</a></span></span>,
|
1257
459
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1258
460
|
<span itemprop="name">
|
1259
461
|
<a
|
1260
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1261
|
-
href="/name/
|
1262
|
-
itemprop='url'>
|
462
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0355024/';"
|
463
|
+
href="/name/nm0355024/"
|
464
|
+
itemprop='url'>Tony Hale</a></span></span>
|
1263
465
|
</div>
|
1264
466
|
</td>
|
1265
467
|
</tr>
|
1266
468
|
<tr>
|
1267
469
|
<td class="overview-bottom">
|
1268
|
-
<
|
1269
|
-
|
1270
|
-
|
470
|
+
<script>
|
471
|
+
if (typeof uet == 'function') {
|
472
|
+
uet("bb", "SmallTrailerWidget", {wb: 1});
|
473
|
+
}
|
474
|
+
</script>
|
475
|
+
<a href="/title/tt2404463/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
476
|
+
</a><script>
|
477
|
+
if (typeof uet == 'function') {
|
478
|
+
uet("be", "SmallTrailerWidget", {wb: 1});
|
479
|
+
}
|
480
|
+
</script>
|
481
|
+
<script>
|
482
|
+
if (typeof uex == 'function') {
|
483
|
+
uex("ld", "SmallTrailerWidget", {wb: 1});
|
484
|
+
}
|
485
|
+
</script>
|
486
|
+
<span class="wlb_wrapper">
|
487
|
+
<a class="wlb_watchlist_lite" data-tconst="tt2404463" data-size="small" data-caller-name="Title">
|
1271
488
|
</a>
|
1272
489
|
</span>
|
1273
490
|
</td>
|
@@ -1276,7 +493,7 @@ itemprop='url'>Colin Farrell</a></span></span>
|
|
1276
493
|
</table>
|
1277
494
|
|
1278
495
|
<p class="thebuzz">
|
1279
|
-
<strong>The Buzz</strong>:
|
496
|
+
<strong>The Buzz</strong>: Gracie Hart fans, listen up: Right before Sandra Bullock unveils her wildly anticipated science-fiction turn in <a href="/title/tt1454468/">Gravity</a>, she teams up with Melissa McCarthy to keep the female-powered comedy renaissance going. The movies also serves as Paul Feig's follow-up to <a href="/title/tt1478338/">Bridesmaids</a>, as the director/producer/occasional writer is making industry strides on a Judd Apatow level.
|
1280
497
|
</p>
|
1281
498
|
</div>
|
1282
499
|
<div class="list_item even" itemscope itemtype="http://schema.org/Movie">
|
@@ -1287,257 +504,52 @@ itemprop='url'>Colin Farrell</a></span></span>
|
|
1287
504
|
<td rowspan="2" valign="top" id="img_primary">
|
1288
505
|
<div class="image">
|
1289
506
|
<a
|
1290
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/
|
1291
|
-
href="/title/
|
507
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt2334879/';"
|
508
|
+
href="/title/tt2334879/"
|
1292
509
|
> <div class="hover-over-image zero-z-index">
|
1293
510
|
<img class="poster shadowed"
|
1294
511
|
height="209"
|
1295
512
|
width="140"
|
1296
|
-
alt="
|
1297
|
-
title="
|
1298
|
-
src="http://ia.media-imdb.com/images/M/
|
513
|
+
alt="White House Down (2013) Poster"
|
514
|
+
title="White House Down (2013)"
|
515
|
+
src="http://ia.media-imdb.com/images/M/MV5BMjM0NTc1MDg4M15BMl5BanBnXkFtZTcwNzM4MTc0OQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
1299
516
|
itemprop="image" />
|
1300
517
|
</div>
|
1301
518
|
</a> </div>
|
1302
519
|
</td>
|
1303
520
|
<td class="overview-top">
|
1304
521
|
<h4 itemprop="name"><a
|
1305
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/
|
1306
|
-
href="/title/
|
1307
|
-
title="
|
1308
|
-
itemprop='url'>
|
522
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt2334879/';"
|
523
|
+
href="/title/tt2334879/"
|
524
|
+
title="White House Down (2013)"
|
525
|
+
itemprop='url'> White House Down (2013)</a></h4>
|
1309
526
|
<p class="cert-runtime-genre">
|
1310
527
|
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
<time itemprop="duration" datetime="PT108M">108 min</time>
|
528
|
+
<img title="PG-13"
|
529
|
+
alt="Certificate PG-13"
|
530
|
+
class="absmiddle certimage"
|
531
|
+
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png" />
|
532
|
+
<time itemprop="duration" datetime="PT137M">137 min</time>
|
1318
533
|
-
|
1319
|
-
<span itemprop="genre">Drama</span>
|
1320
|
-
|
1321
|
-
</p>
|
1322
|
-
<div class="rating_txt">
|
1323
|
-
<div class="metascore no_ratings">
|
1324
|
-
Metascore: <strong>97</strong><span class="mellow">/100</span>
|
1325
|
-
(<a title="6 review excerpts provided by Metacritic.com"
|
1326
|
-
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
1327
|
-
href="/title/tt2209418/criticreviews">6 reviews</a>)
|
1328
|
-
</div>
|
1329
|
-
</div>
|
1330
|
-
<div class="outline" itemprop="description">
|
1331
|
-
We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna. </div>
|
1332
|
-
<div class="txt-block">
|
1333
|
-
<h5 class="inline">Director:</h5>
|
1334
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1335
|
-
<span itemprop="name">
|
1336
|
-
<a
|
1337
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0000500/';"
|
1338
|
-
href="/name/nm0000500/"
|
1339
|
-
itemprop='url'>Richard Linklater</a> </span>
|
1340
|
-
</span>
|
1341
|
-
|
1342
|
-
</div>
|
1343
|
-
<div class="txt-block">
|
1344
|
-
<h5 class="inline">Stars:</h5>
|
1345
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1346
|
-
<span itemprop="name">
|
1347
|
-
<a
|
1348
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000160/';"
|
1349
|
-
href="/name/nm0000160/"
|
1350
|
-
itemprop='url'>Ethan Hawke</a></span></span>,
|
1351
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1352
|
-
<span itemprop="name">
|
1353
|
-
<a
|
1354
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000365/';"
|
1355
|
-
href="/name/nm0000365/"
|
1356
|
-
itemprop='url'>Julie Delpy</a></span></span>,
|
1357
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1358
|
-
<span itemprop="name">
|
1359
|
-
<a
|
1360
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2089090/';"
|
1361
|
-
href="/name/nm2089090/"
|
1362
|
-
itemprop='url'>Seamus Davey-Fitzpatrick</a></span></span>,
|
1363
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1364
|
-
<span itemprop="name">
|
1365
|
-
<a
|
1366
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm3987673/';"
|
1367
|
-
href="/name/nm3987673/"
|
1368
|
-
itemprop='url'>Ariane Labed</a></span></span>
|
1369
|
-
</div>
|
1370
|
-
</td>
|
1371
|
-
</tr>
|
1372
|
-
<tr>
|
1373
|
-
<td class="overview-bottom">
|
1374
|
-
<a href="/title/tt2209418/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
1375
|
-
</a> <span class="wlb_wrapper">
|
1376
|
-
<a class="wlb_watchlist_lite" data-tconst="tt2209418" data-size="small" data-caller-name="Title">
|
1377
|
-
</a>
|
1378
|
-
</span>
|
1379
|
-
</td>
|
1380
|
-
</tr>
|
1381
|
-
</tbody>
|
1382
|
-
</table>
|
1383
|
-
|
1384
|
-
<p class="thebuzz">
|
1385
|
-
<strong>The Buzz</strong>: The most unexpected trilogy (said with love) was shot in secret last year and announced a few months before its debut at Sundance 2013. Given the 9-year gaps between each film, it might just become the fictional equivalent of <a href="/title/tt0058578/">Seven Up!</a> documentary series; we'd happily follow Jesse and Celine until death does them part.
|
1386
|
-
</p>
|
1387
|
-
</div>
|
1388
|
-
<h4 class="li_group"><a name="May31">May 31 </a></h4>
|
1389
|
-
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
1390
|
-
|
1391
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
1392
|
-
<tbody>
|
1393
|
-
<tr>
|
1394
|
-
<td rowspan="2" valign="top" id="img_primary">
|
1395
|
-
<div class="image">
|
1396
|
-
<a
|
1397
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1815862/';"
|
1398
|
-
href="/title/tt1815862/"
|
1399
|
-
> <div class="hover-over-image zero-z-index">
|
1400
|
-
<img class="poster shadowed"
|
1401
|
-
height="209"
|
1402
|
-
width="140"
|
1403
|
-
alt="After Earth (2013) Poster"
|
1404
|
-
title="After Earth (2013)"
|
1405
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTY3MzQyMjkwMl5BMl5BanBnXkFtZTcwMDk2OTE0OQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
1406
|
-
itemprop="image" />
|
1407
|
-
</div>
|
1408
|
-
</a> </div>
|
1409
|
-
</td>
|
1410
|
-
<td class="overview-top">
|
1411
|
-
<h4 itemprop="name"><a
|
1412
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1815862/';"
|
1413
|
-
href="/title/tt1815862/"
|
1414
|
-
title="After Earth (2013)"
|
1415
|
-
itemprop='url'> After Earth (2013)</a></h4>
|
1416
|
-
<p class="cert-runtime-genre">
|
1417
|
-
|
1418
|
-
<img title="Ratings certificate for After Earth (2013)"
|
1419
|
-
alt="Certificate PG-13"
|
1420
|
-
class="absmiddle certimage"
|
1421
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png"
|
1422
|
-
itemprop="contentRating" />
|
1423
|
-
|
1424
534
|
<span itemprop="genre">Action</span>
|
1425
535
|
<span class="ghost">|</span>
|
1426
|
-
<span itemprop="genre">
|
536
|
+
<span itemprop="genre">Drama</span>
|
1427
537
|
<span class="ghost">|</span>
|
1428
|
-
<span itemprop="genre">Sci-Fi</span>
|
1429
|
-
|
1430
|
-
</p>
|
1431
|
-
<div class="rating_txt">
|
1432
|
-
</div>
|
1433
|
-
<div class="outline" itemprop="description">
|
1434
|
-
A crash landing leaves Kitai Raige and his father Cypher stranded on Earth, 1,000 years after events forced humanity's escape. With Cypher injured, Kitai must embark on a perilous journey to signal for help. </div>
|
1435
|
-
<div class="txt-block">
|
1436
|
-
<h5 class="inline">Director:</h5>
|
1437
|
-
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1438
|
-
<span itemprop="name">
|
1439
|
-
<a
|
1440
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0796117/';"
|
1441
|
-
href="/name/nm0796117/"
|
1442
|
-
itemprop='url'>M. Night Shyamalan</a> </span>
|
1443
|
-
</span>
|
1444
|
-
|
1445
|
-
</div>
|
1446
|
-
<div class="txt-block">
|
1447
|
-
<h5 class="inline">Stars:</h5>
|
1448
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1449
|
-
<span itemprop="name">
|
1450
|
-
<a
|
1451
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000226/';"
|
1452
|
-
href="/name/nm0000226/"
|
1453
|
-
itemprop='url'>Will Smith</a></span></span>,
|
1454
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1455
|
-
<span itemprop="name">
|
1456
|
-
<a
|
1457
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1535523/';"
|
1458
|
-
href="/name/nm1535523/"
|
1459
|
-
itemprop='url'>Jaden Smith</a></span></span>,
|
1460
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1461
|
-
<span itemprop="name">
|
1462
|
-
<a
|
1463
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2265157/';"
|
1464
|
-
href="/name/nm2265157/"
|
1465
|
-
itemprop='url'>Isabelle Fuhrman</a></span></span>,
|
1466
|
-
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1467
|
-
<span itemprop="name">
|
1468
|
-
<a
|
1469
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0645683/';"
|
1470
|
-
href="/name/nm0645683/"
|
1471
|
-
itemprop='url'>Sophie Okonedo</a></span></span>
|
1472
|
-
</div>
|
1473
|
-
</td>
|
1474
|
-
</tr>
|
1475
|
-
<tr>
|
1476
|
-
<td class="overview-bottom">
|
1477
|
-
<a href="/title/tt1815862/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
1478
|
-
</a> <span class="wlb_wrapper">
|
1479
|
-
<a class="wlb_watchlist_lite" data-tconst="tt1815862" data-size="small" data-caller-name="Title">
|
1480
|
-
</a>
|
1481
|
-
</span>
|
1482
|
-
</td>
|
1483
|
-
</tr>
|
1484
|
-
</tbody>
|
1485
|
-
</table>
|
1486
|
-
|
1487
|
-
<p class="thebuzz">
|
1488
|
-
<strong>The Buzz</strong>: In this era of Tumblr production blogs and actors tweeting during breaks, the quieter a set is, the more we're intrigued by the movie. Even if it's an M. Night Shyamalan project - his first time directing someone else's screenplay. Toss around your wildest ideas in terms of alien races and environmental themes and hopefully the Will Smith/Sony thinktank will surpass your imagination and expectations.
|
1489
|
-
</p>
|
1490
|
-
</div>
|
1491
|
-
<div class="list_item even" itemscope itemtype="http://schema.org/Movie">
|
1492
|
-
|
1493
|
-
<table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
|
1494
|
-
<tbody>
|
1495
|
-
<tr>
|
1496
|
-
<td rowspan="2" valign="top" id="img_primary">
|
1497
|
-
<div class="image">
|
1498
|
-
<a
|
1499
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1670345/';"
|
1500
|
-
href="/title/tt1670345/"
|
1501
|
-
> <div class="hover-over-image zero-z-index">
|
1502
|
-
<img class="poster shadowed"
|
1503
|
-
height="209"
|
1504
|
-
width="140"
|
1505
|
-
alt="Nüüd sa näed mind (2013) Poster"
|
1506
|
-
title="Nüüd sa näed mind (2013)"
|
1507
|
-
src="http://ia.media-imdb.com/images/M/MV5BMTY0NDY3MDMxN15BMl5BanBnXkFtZTcwOTM5NzMzOQ@@._V1_SX140_CR0,0,140,209_.jpg"
|
1508
|
-
itemprop="image" />
|
1509
|
-
</div>
|
1510
|
-
</a> </div>
|
1511
|
-
</td>
|
1512
|
-
<td class="overview-top">
|
1513
|
-
<h4 itemprop="name"><a
|
1514
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1670345/';"
|
1515
|
-
href="/title/tt1670345/"
|
1516
|
-
title="Nüüd sa näed mind (2013)"
|
1517
|
-
itemprop='url'> Nüüd sa näed mind (2013)</a></h4>
|
1518
|
-
<p class="cert-runtime-genre">
|
1519
|
-
|
1520
|
-
<img title="Ratings certificate for Nüüd sa näed mind (2013)"
|
1521
|
-
alt="Certificate PG-13"
|
1522
|
-
class="absmiddle certimage"
|
1523
|
-
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V397576389_.png"
|
1524
|
-
itemprop="contentRating" />
|
1525
|
-
|
1526
538
|
<span itemprop="genre">Thriller</span>
|
1527
539
|
|
1528
540
|
</p>
|
1529
541
|
<div class="rating_txt">
|
1530
542
|
</div>
|
1531
543
|
<div class="outline" itemprop="description">
|
1532
|
-
|
544
|
+
While on a tour of the White House with his young daughter, a Capitol policeman springs into action to save his child and protect the president from a heavily armed group of paramilitary invaders. </div>
|
1533
545
|
<div class="txt-block">
|
1534
546
|
<h5 class="inline">Director:</h5>
|
1535
547
|
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1536
548
|
<span itemprop="name">
|
1537
549
|
<a
|
1538
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/
|
1539
|
-
href="/name/
|
1540
|
-
itemprop='url'>
|
550
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0000386/';"
|
551
|
+
href="/name/nm0000386/"
|
552
|
+
itemprop='url'>Roland Emmerich</a> </span>
|
1541
553
|
</span>
|
1542
554
|
|
1543
555
|
</div>
|
@@ -1546,35 +558,50 @@ itemprop='url'>Louis Leterrier</a> </span>
|
|
1546
558
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1547
559
|
<span itemprop="name">
|
1548
560
|
<a
|
1549
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1550
|
-
href="/name/
|
1551
|
-
itemprop='url'>
|
561
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1475594/';"
|
562
|
+
href="/name/nm1475594/"
|
563
|
+
itemprop='url'>Channing Tatum</a></span></span>,
|
1552
564
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1553
565
|
<span itemprop="name">
|
1554
566
|
<a
|
1555
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1556
|
-
href="/name/
|
1557
|
-
itemprop='url'>
|
567
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0004937/';"
|
568
|
+
href="/name/nm0004937/"
|
569
|
+
itemprop='url'>Jamie Foxx</a></span></span>,
|
1558
570
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1559
571
|
<span itemprop="name">
|
1560
572
|
<a
|
1561
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1562
|
-
href="/name/
|
1563
|
-
itemprop='url'>
|
573
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0350454/';"
|
574
|
+
href="/name/nm0350454/"
|
575
|
+
itemprop='url'>Maggie Gyllenhaal</a></span></span>,
|
1564
576
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1565
577
|
<span itemprop="name">
|
1566
578
|
<a
|
1567
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1568
|
-
href="/name/
|
1569
|
-
itemprop='url'>
|
579
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0164809/';"
|
580
|
+
href="/name/nm0164809/"
|
581
|
+
itemprop='url'>Jason Clarke</a></span></span>
|
1570
582
|
</div>
|
1571
583
|
</td>
|
1572
584
|
</tr>
|
1573
585
|
<tr>
|
1574
586
|
<td class="overview-bottom">
|
1575
|
-
<
|
1576
|
-
|
1577
|
-
|
587
|
+
<script>
|
588
|
+
if (typeof uet == 'function') {
|
589
|
+
uet("bb", "SmallTrailerWidget", {wb: 1});
|
590
|
+
}
|
591
|
+
</script>
|
592
|
+
<a href="/title/tt2334879/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
593
|
+
</a><script>
|
594
|
+
if (typeof uet == 'function') {
|
595
|
+
uet("be", "SmallTrailerWidget", {wb: 1});
|
596
|
+
}
|
597
|
+
</script>
|
598
|
+
<script>
|
599
|
+
if (typeof uex == 'function') {
|
600
|
+
uex("ld", "SmallTrailerWidget", {wb: 1});
|
601
|
+
}
|
602
|
+
</script>
|
603
|
+
<span class="wlb_wrapper">
|
604
|
+
<a class="wlb_watchlist_lite" data-tconst="tt2334879" data-size="small" data-caller-name="Title">
|
1578
605
|
</a>
|
1579
606
|
</span>
|
1580
607
|
</td>
|
@@ -1583,7 +610,7 @@ itemprop='url'>Michael Caine</a></span></span>
|
|
1583
610
|
</table>
|
1584
611
|
|
1585
612
|
<p class="thebuzz">
|
1586
|
-
<strong>The Buzz</strong>:
|
613
|
+
<strong>The Buzz</strong>: Given the subject matter, it's cool and creepy that President Jamie Foxx and First Lady Garcelle Beauvais reflect the current administration, and the advantage this project has over its sound-alike predecessor, <a href="/title/tt2302755/">Olympus Has Fallen</a>, is the every-gender appeal of its star, Channing Tatum. If anything, 2013 might be remembered as the year that both Roland Emmerich and his equally-VFX-addicted contemporary, Michael Bay, offered up scaled-down project.
|
1587
614
|
</p>
|
1588
615
|
</div>
|
1589
616
|
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
@@ -1594,56 +621,54 @@ itemprop='url'>Michael Caine</a></span></span>
|
|
1594
621
|
<td rowspan="2" valign="top" id="img_primary">
|
1595
622
|
<div class="image">
|
1596
623
|
<a
|
1597
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/
|
1598
|
-
href="/title/
|
624
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt2243389/';"
|
625
|
+
href="/title/tt2243389/"
|
1599
626
|
> <div class="hover-over-image zero-z-index">
|
1600
627
|
<img class="poster shadowed"
|
1601
628
|
height="209"
|
1602
629
|
width="140"
|
1603
|
-
alt="
|
1604
|
-
title="
|
1605
|
-
src="http://ia.media-imdb.com/images/M/
|
630
|
+
alt="I'm So Excited (2013) Poster"
|
631
|
+
title="I'm So Excited (2013)"
|
632
|
+
src="http://ia.media-imdb.com/images/M/MV5BMjM0MDY2OTEzNl5BMl5BanBnXkFtZTcwMjI5ODU0OQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
1606
633
|
itemprop="image" />
|
1607
634
|
</div>
|
1608
635
|
</a> </div>
|
1609
636
|
</td>
|
1610
637
|
<td class="overview-top">
|
1611
638
|
<h4 itemprop="name"><a
|
1612
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/
|
1613
|
-
href="/title/
|
1614
|
-
title="
|
1615
|
-
itemprop='url'>
|
639
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt2243389/';"
|
640
|
+
href="/title/tt2243389/"
|
641
|
+
title="I'm So Excited (2013)"
|
642
|
+
itemprop='url'> I'm So Excited (2013)</a></h4>
|
1616
643
|
<p class="cert-runtime-genre">
|
1617
644
|
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
<time itemprop="duration" datetime="PT93M">93 min</time>
|
645
|
+
<img title="R"
|
646
|
+
alt="Certificate R"
|
647
|
+
class="absmiddle certimage"
|
648
|
+
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png" />
|
649
|
+
<time itemprop="duration" datetime="PT90M">90 min</time>
|
1625
650
|
-
|
1626
651
|
<span itemprop="genre">Comedy</span>
|
1627
652
|
|
1628
653
|
</p>
|
1629
654
|
<div class="rating_txt">
|
1630
655
|
<div class="metascore no_ratings">
|
1631
|
-
Metascore: <strong>
|
1632
|
-
(<a title="
|
656
|
+
Metascore: <strong>59</strong><span class="mellow">/100</span>
|
657
|
+
(<a title="8 review excerpts provided by Metacritic.com"
|
1633
658
|
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
1634
|
-
href="/title/
|
659
|
+
href="/title/tt2243389/criticreviews">8 reviews</a>)
|
1635
660
|
</div>
|
1636
661
|
</div>
|
1637
662
|
<div class="outline" itemprop="description">
|
1638
|
-
|
663
|
+
When it appears as though the end is in sight, the pilots, flight crew, and passengers of a plane heading to Mexico City look to forget the anguish of the moment and face the greatest danger, which we carry within ourselves. </div>
|
1639
664
|
<div class="txt-block">
|
1640
665
|
<h5 class="inline">Director:</h5>
|
1641
666
|
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1642
667
|
<span itemprop="name">
|
1643
668
|
<a
|
1644
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/
|
1645
|
-
href="/name/
|
1646
|
-
itemprop='url'>
|
669
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0000264/';"
|
670
|
+
href="/name/nm0000264/"
|
671
|
+
itemprop='url'>Pedro Almodóvar</a> </span>
|
1647
672
|
</span>
|
1648
673
|
|
1649
674
|
</div>
|
@@ -1652,35 +677,50 @@ itemprop='url'>Jordan Vogt-Roberts</a> </span>
|
|
1652
677
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1653
678
|
<span itemprop="name">
|
1654
679
|
<a
|
1655
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1656
|
-
href="/name/
|
1657
|
-
itemprop='url'>
|
680
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0194572/';"
|
681
|
+
href="/name/nm0194572/"
|
682
|
+
itemprop='url'>Javier Cámara</a></span></span>,
|
1658
683
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1659
684
|
<span itemprop="name">
|
1660
685
|
<a
|
1661
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1662
|
-
href="/name/
|
1663
|
-
itemprop='url'>
|
686
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1250933/';"
|
687
|
+
href="/name/nm1250933/"
|
688
|
+
itemprop='url'>Pepa Charro</a></span></span>,
|
1664
689
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1665
690
|
<span itemprop="name">
|
1666
691
|
<a
|
1667
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1668
|
-
href="/name/
|
1669
|
-
itemprop='url'>
|
692
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0240318/';"
|
693
|
+
href="/name/nm0240318/"
|
694
|
+
itemprop='url'>Lola Dueñas</a></span></span>,
|
1670
695
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1671
696
|
<span itemprop="name">
|
1672
697
|
<a
|
1673
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1674
|
-
href="/name/
|
1675
|
-
itemprop='url'>
|
698
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0005386/';"
|
699
|
+
href="/name/nm0005386/"
|
700
|
+
itemprop='url'>Cecilia Roth</a></span></span>
|
1676
701
|
</div>
|
1677
702
|
</td>
|
1678
703
|
</tr>
|
1679
704
|
<tr>
|
1680
705
|
<td class="overview-bottom">
|
1681
|
-
<
|
1682
|
-
|
1683
|
-
|
706
|
+
<script>
|
707
|
+
if (typeof uet == 'function') {
|
708
|
+
uet("bb", "SmallTrailerWidget", {wb: 1});
|
709
|
+
}
|
710
|
+
</script>
|
711
|
+
<a href="/title/tt2243389/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
712
|
+
</a><script>
|
713
|
+
if (typeof uet == 'function') {
|
714
|
+
uet("be", "SmallTrailerWidget", {wb: 1});
|
715
|
+
}
|
716
|
+
</script>
|
717
|
+
<script>
|
718
|
+
if (typeof uex == 'function') {
|
719
|
+
uex("ld", "SmallTrailerWidget", {wb: 1});
|
720
|
+
}
|
721
|
+
</script>
|
722
|
+
<span class="wlb_wrapper">
|
723
|
+
<a class="wlb_watchlist_lite" data-tconst="tt2243389" data-size="small" data-caller-name="Title">
|
1684
724
|
</a>
|
1685
725
|
</span>
|
1686
726
|
</td>
|
@@ -1689,7 +729,7 @@ itemprop='url'>Gabriel Basso</a></span></span>
|
|
1689
729
|
</table>
|
1690
730
|
|
1691
731
|
<p class="thebuzz">
|
1692
|
-
<strong>The Buzz</strong>:
|
732
|
+
<strong>The Buzz</strong>: Pedro Almodovar himself let it be known that he is revisiting the tone of his early comedies with his latest film, which features cameos from Antonio Banderas and Penelope Cruz, and plenty of fey delights, apparently. We've loved the dark detour he's taken since <a href="/title/tt0441909/">Volver</a> and look forward to a summery change of tone. It's also worth noting that in a creative climate where money is hard to come by, <i>Excited!</i> was financed entirely by worldwide pre-sales.
|
1693
733
|
</p>
|
1694
734
|
</div>
|
1695
735
|
<div class="list_item even" itemscope itemtype="http://schema.org/Movie">
|
@@ -1700,54 +740,58 @@ itemprop='url'>Gabriel Basso</a></span></span>
|
|
1700
740
|
<td rowspan="2" valign="top" id="img_primary">
|
1701
741
|
<div class="image">
|
1702
742
|
<a
|
1703
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/
|
1704
|
-
href="/title/
|
743
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1531901/';"
|
744
|
+
href="/title/tt1531901/"
|
1705
745
|
> <div class="hover-over-image zero-z-index">
|
1706
746
|
<img class="poster shadowed"
|
1707
747
|
height="209"
|
1708
748
|
width="140"
|
1709
|
-
alt="
|
1710
|
-
title="
|
1711
|
-
src="http://ia.media-imdb.com/images/M/
|
749
|
+
alt="Byzantium (2012) Poster"
|
750
|
+
title="Byzantium (2012)"
|
751
|
+
src="http://ia.media-imdb.com/images/M/MV5BMjE5NTMyMjM2OF5BMl5BanBnXkFtZTcwOTUzMjk2Nw@@._V1_SY209_CR1,0,140,209_.jpg"
|
1712
752
|
itemprop="image" />
|
1713
753
|
</div>
|
1714
754
|
</a> </div>
|
1715
755
|
</td>
|
1716
756
|
<td class="overview-top">
|
1717
757
|
<h4 itemprop="name"><a
|
1718
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/
|
1719
|
-
href="/title/
|
1720
|
-
title="
|
1721
|
-
itemprop='url'>
|
758
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1531901/';"
|
759
|
+
href="/title/tt1531901/"
|
760
|
+
title="Byzantium (2012)"
|
761
|
+
itemprop='url'> Byzantium (2012)</a></h4>
|
1722
762
|
<p class="cert-runtime-genre">
|
1723
763
|
|
1724
|
-
|
1725
|
-
|
1726
|
-
|
1727
|
-
|
1728
|
-
|
1729
|
-
|
1730
|
-
<time itemprop="duration" datetime="PT85M">85 min</time>
|
764
|
+
<img title="R"
|
765
|
+
alt="Certificate R"
|
766
|
+
class="absmiddle certimage"
|
767
|
+
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png" />
|
768
|
+
<time itemprop="duration" datetime="PT118M">118 min</time>
|
1731
769
|
-
|
1732
|
-
<span itemprop="genre">
|
770
|
+
<span itemprop="genre">Drama</span>
|
1733
771
|
<span class="ghost">|</span>
|
1734
|
-
<span itemprop="genre">
|
772
|
+
<span itemprop="genre">Fantasy</span>
|
1735
773
|
<span class="ghost">|</span>
|
1736
774
|
<span itemprop="genre">Thriller</span>
|
1737
775
|
|
1738
776
|
</p>
|
1739
777
|
<div class="rating_txt">
|
778
|
+
<div class="metascore no_ratings">
|
779
|
+
Metascore: <strong>68</strong><span class="mellow">/100</span>
|
780
|
+
(<a title="8 review excerpts provided by Metacritic.com"
|
781
|
+
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
782
|
+
href="/title/tt1531901/criticreviews">8 reviews</a>)
|
783
|
+
</div>
|
1740
784
|
</div>
|
1741
785
|
<div class="outline" itemprop="description">
|
1742
|
-
|
786
|
+
Residents of a coastal town learn, with deathly consequences, the secret shared by the two mysterious women who have sought shelter at a local resort. </div>
|
1743
787
|
<div class="txt-block">
|
1744
788
|
<h5 class="inline">Director:</h5>
|
1745
789
|
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1746
790
|
<span itemprop="name">
|
1747
791
|
<a
|
1748
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/
|
1749
|
-
href="/name/
|
1750
|
-
itemprop='url'>
|
792
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0001403/';"
|
793
|
+
href="/name/nm0001403/"
|
794
|
+
itemprop='url'>Neil Jordan</a> </span>
|
1751
795
|
</span>
|
1752
796
|
|
1753
797
|
</div>
|
@@ -1756,35 +800,50 @@ itemprop='url'>James DeMonaco</a> </span>
|
|
1756
800
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1757
801
|
<span itemprop="name">
|
1758
802
|
<a
|
1759
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1760
|
-
href="/name/
|
1761
|
-
itemprop='url'>
|
803
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1519680/';"
|
804
|
+
href="/name/nm1519680/"
|
805
|
+
itemprop='url'>Saoirse Ronan</a></span></span>,
|
1762
806
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1763
807
|
<span itemprop="name">
|
1764
808
|
<a
|
1765
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1766
|
-
href="/name/
|
1767
|
-
itemprop='url'>
|
809
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2605345/';"
|
810
|
+
href="/name/nm2605345/"
|
811
|
+
itemprop='url'>Gemma Arterton</a></span></span>,
|
1768
812
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1769
813
|
<span itemprop="name">
|
1770
814
|
<a
|
1771
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1772
|
-
href="/name/
|
1773
|
-
itemprop='url'>
|
815
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2655177/';"
|
816
|
+
href="/name/nm2655177/"
|
817
|
+
itemprop='url'>Caleb Landry Jones</a></span></span>,
|
1774
818
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1775
819
|
<span itemprop="name">
|
1776
820
|
<a
|
1777
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1778
|
-
href="/name/
|
1779
|
-
itemprop='url'>
|
821
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0727165/';"
|
822
|
+
href="/name/nm0727165/"
|
823
|
+
itemprop='url'>Sam Riley</a></span></span>
|
1780
824
|
</div>
|
1781
825
|
</td>
|
1782
826
|
</tr>
|
1783
827
|
<tr>
|
1784
828
|
<td class="overview-bottom">
|
1785
|
-
<
|
1786
|
-
|
1787
|
-
|
829
|
+
<script>
|
830
|
+
if (typeof uet == 'function') {
|
831
|
+
uet("bb", "SmallTrailerWidget", {wb: 1});
|
832
|
+
}
|
833
|
+
</script>
|
834
|
+
<a href="/title/tt1531901/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
835
|
+
</a><script>
|
836
|
+
if (typeof uet == 'function') {
|
837
|
+
uet("be", "SmallTrailerWidget", {wb: 1});
|
838
|
+
}
|
839
|
+
</script>
|
840
|
+
<script>
|
841
|
+
if (typeof uex == 'function') {
|
842
|
+
uex("ld", "SmallTrailerWidget", {wb: 1});
|
843
|
+
}
|
844
|
+
</script>
|
845
|
+
<span class="wlb_wrapper">
|
846
|
+
<a class="wlb_watchlist_lite" data-tconst="tt1531901" data-size="small" data-caller-name="Title">
|
1788
847
|
</a>
|
1789
848
|
</span>
|
1790
849
|
</td>
|
@@ -1793,7 +852,7 @@ itemprop='url'>Edwin Hodge</a></span></span>
|
|
1793
852
|
</table>
|
1794
853
|
|
1795
854
|
<p class="thebuzz">
|
1796
|
-
<strong>The Buzz</strong>:
|
855
|
+
<strong>The Buzz</strong>: Few directors handle myth like Neil Jordan. Look up detailed reviews of his questionable films -- <a href="/title/tt0120710/">In Dreams</a>, <a href="/title/tt1235796/">Ondine</a>, <a href="/title/tt0476964/">The Brave One</a> are my nominees -- and you'll sense the architecture of his entire, curious filmography. Fans have breathlessly awaited his return to the world of vampires, hoping he will breathe new eternal life into the genre, which has been victimized by many unworthy entries over the last few years. One dividing factor here could be the lack of gore, because this is a mood piece from beginning to end.
|
1797
856
|
</p>
|
1798
857
|
</div>
|
1799
858
|
<div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
|
@@ -1804,62 +863,50 @@ itemprop='url'>Edwin Hodge</a></span></span>
|
|
1804
863
|
<td rowspan="2" valign="top" id="img_primary">
|
1805
864
|
<div class="image">
|
1806
865
|
<a
|
1807
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/
|
1808
|
-
href="/title/
|
866
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1893256/';"
|
867
|
+
href="/title/tt1893256/"
|
1809
868
|
> <div class="hover-over-image zero-z-index">
|
1810
869
|
<img class="poster shadowed"
|
1811
870
|
height="209"
|
1812
871
|
width="140"
|
1813
|
-
alt="
|
1814
|
-
title="
|
1815
|
-
src="http://ia.media-imdb.com/images/M/
|
872
|
+
alt="Redemption (2013) Poster"
|
873
|
+
title="Redemption (2013)"
|
874
|
+
src="http://ia.media-imdb.com/images/M/MV5BMjI0ODc3NjI4NV5BMl5BanBnXkFtZTcwOTc3MzI1OQ@@._V1_SY209_CR0,0,140,209_.jpg"
|
1816
875
|
itemprop="image" />
|
1817
876
|
</div>
|
1818
877
|
</a> </div>
|
1819
878
|
</td>
|
1820
879
|
<td class="overview-top">
|
1821
880
|
<h4 itemprop="name"><a
|
1822
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/
|
1823
|
-
href="/title/
|
1824
|
-
title="
|
1825
|
-
itemprop='url'>
|
881
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1893256/';"
|
882
|
+
href="/title/tt1893256/"
|
883
|
+
title="Redemption (2013)"
|
884
|
+
itemprop='url'> Redemption (2013)</a></h4>
|
1826
885
|
<p class="cert-runtime-genre">
|
1827
886
|
|
1828
|
-
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
<time itemprop="duration" datetime="PT116M">116 min</time>
|
887
|
+
<img title="R"
|
888
|
+
alt="Certificate R"
|
889
|
+
class="absmiddle certimage"
|
890
|
+
src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V397576388_.png" />
|
891
|
+
<time itemprop="duration" datetime="PT100M">100 min</time>
|
1835
892
|
-
|
1836
893
|
<span itemprop="genre">Action</span>
|
1837
894
|
<span class="ghost">|</span>
|
1838
|
-
<span itemprop="genre">Drama</span>
|
1839
|
-
<span class="ghost">|</span>
|
1840
|
-
<span itemprop="genre">Mystery</span>
|
1841
|
-
<span class="ghost">|</span>
|
1842
895
|
<span itemprop="genre">Thriller</span>
|
1843
896
|
|
1844
897
|
</p>
|
1845
898
|
<div class="rating_txt">
|
1846
|
-
<div class="metascore no_ratings">
|
1847
|
-
Metascore: <strong>72</strong><span class="mellow">/100</span>
|
1848
|
-
(<a title="5 review excerpts provided by Metacritic.com"
|
1849
|
-
onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
|
1850
|
-
href="/title/tt1869716/criticreviews">5 reviews</a>)
|
1851
|
-
</div>
|
1852
899
|
</div>
|
1853
900
|
<div class="outline" itemprop="description">
|
1854
|
-
|
901
|
+
Homeless and on the run from a military court martial, a damaged ex-special forces soldier navigating London's criminal underworld seizes an opportunity to assume another man's identity -- transforming into an avenging angel in the process. </div>
|
1855
902
|
<div class="txt-block">
|
1856
903
|
<h5 class="inline">Director:</h5>
|
1857
904
|
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
1858
905
|
<span itemprop="name">
|
1859
906
|
<a
|
1860
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/
|
1861
|
-
href="/name/
|
1862
|
-
itemprop='url'>
|
907
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm1140275/';"
|
908
|
+
href="/name/nm1140275/"
|
909
|
+
itemprop='url'>Steven Knight</a> </span>
|
1863
910
|
</span>
|
1864
911
|
|
1865
912
|
</div>
|
@@ -1868,35 +915,50 @@ itemprop='url'>Zal Batmanglij</a> </span>
|
|
1868
915
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1869
916
|
<span itemprop="name">
|
1870
917
|
<a
|
1871
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1872
|
-
href="/name/
|
1873
|
-
itemprop='url'>
|
918
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0005458/';"
|
919
|
+
href="/name/nm0005458/"
|
920
|
+
itemprop='url'>Jason Statham</a></span></span>,
|
1874
921
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1875
922
|
<span itemprop="name">
|
1876
923
|
<a
|
1877
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1878
|
-
href="/name/
|
1879
|
-
itemprop='url'>
|
924
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0566049/';"
|
925
|
+
href="/name/nm0566049/"
|
926
|
+
itemprop='url'>Vicky McClure</a></span></span>,
|
1880
927
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1881
928
|
<span itemprop="name">
|
1882
929
|
<a
|
1883
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1884
|
-
href="/name/
|
1885
|
-
itemprop='url'>
|
930
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm3930990/';"
|
931
|
+
href="/name/nm3930990/"
|
932
|
+
itemprop='url'>Senem Temiz</a></span></span>,
|
1886
933
|
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
1887
934
|
<span itemprop="name">
|
1888
935
|
<a
|
1889
|
-
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/
|
1890
|
-
href="/name/
|
1891
|
-
itemprop='url'>
|
936
|
+
onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1305192/';"
|
937
|
+
href="/name/nm1305192/"
|
938
|
+
itemprop='url'>Siobhan Hewlett</a></span></span>
|
1892
939
|
</div>
|
1893
940
|
</td>
|
1894
941
|
</tr>
|
1895
942
|
<tr>
|
1896
943
|
<td class="overview-bottom">
|
1897
|
-
<
|
1898
|
-
|
1899
|
-
|
944
|
+
<script>
|
945
|
+
if (typeof uet == 'function') {
|
946
|
+
uet("bb", "SmallTrailerWidget", {wb: 1});
|
947
|
+
}
|
948
|
+
</script>
|
949
|
+
<a href="/title/tt1893256/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
|
950
|
+
</a><script>
|
951
|
+
if (typeof uet == 'function') {
|
952
|
+
uet("be", "SmallTrailerWidget", {wb: 1});
|
953
|
+
}
|
954
|
+
</script>
|
955
|
+
<script>
|
956
|
+
if (typeof uex == 'function') {
|
957
|
+
uex("ld", "SmallTrailerWidget", {wb: 1});
|
958
|
+
}
|
959
|
+
</script>
|
960
|
+
<span class="wlb_wrapper">
|
961
|
+
<a class="wlb_watchlist_lite" data-tconst="tt1893256" data-size="small" data-caller-name="Title">
|
1900
962
|
</a>
|
1901
963
|
</span>
|
1902
964
|
</td>
|
@@ -1905,7 +967,7 @@ itemprop='url'>Julia Ormond</a></span></span>
|
|
1905
967
|
</table>
|
1906
968
|
|
1907
969
|
<p class="thebuzz">
|
1908
|
-
<strong>The Buzz</strong>:
|
970
|
+
<strong>The Buzz</strong>: Gritty screenwriter Steven Knight (<a href="/title/tt0765443/">Eastern Promises</a>, <a href="/title/tt0301199/">Dirty Pretty Things</a>) makes his directorial debut with a thriller that will hopefully help us distinguish Jason Statham's latest movie from everything that has preceded it.
|
1909
971
|
</p>
|
1910
972
|
</div>
|
1911
973
|
</div>
|
@@ -1922,16 +984,12 @@ itemprop='url'>Julia Ormond</a></span></span>
|
|
1922
984
|
new movies.</p><br />
|
1923
985
|
</div>
|
1924
986
|
« <a
|
1925
|
-
onclick="(new Image()).src='/rg/coming-soon/previous-month/images/b.gif?link=/movies-coming-soon/2013-
|
1926
|
-
href="/movies-coming-soon/2013-
|
987
|
+
onclick="(new Image()).src='/rg/coming-soon/previous-month/images/b.gif?link=/movies-coming-soon/2013-06/';"
|
988
|
+
href="/movies-coming-soon/2013-06/"
|
1927
989
|
>Prev</a>
|
1928
990
|
|
1929
991
|
<select name="sort" class="sort_field date_select" onchange="window.open(this.options[this.selectedIndex].value,'_top')">
|
1930
992
|
<option selected="selected"
|
1931
|
-
value="/movies-coming-soon/2013-05/">
|
1932
|
-
May 2013
|
1933
|
-
</option>
|
1934
|
-
<option
|
1935
993
|
value="/movies-coming-soon/2013-06/">
|
1936
994
|
June 2013
|
1937
995
|
</option>
|
@@ -1975,10 +1033,14 @@ href="/movies-coming-soon/2013-05/"
|
|
1975
1033
|
value="/movies-coming-soon/2014-04/">
|
1976
1034
|
April 2014
|
1977
1035
|
</option>
|
1036
|
+
<option
|
1037
|
+
value="/movies-coming-soon/2014-05/">
|
1038
|
+
May 2014
|
1039
|
+
</option>
|
1978
1040
|
</select>
|
1979
1041
|
<a
|
1980
|
-
onclick="(new Image()).src='/rg/coming-soon/next-month/images/b.gif?link=/movies-coming-soon/2013-
|
1981
|
-
href="/movies-coming-soon/2013-
|
1042
|
+
onclick="(new Image()).src='/rg/coming-soon/next-month/images/b.gif?link=/movies-coming-soon/2013-07/';"
|
1043
|
+
href="/movies-coming-soon/2013-07/"
|
1982
1044
|
>Next</a> »
|
1983
1045
|
<br class="clear" />
|
1984
1046
|
</div>
|
@@ -1988,20 +1050,7 @@ href="/movies-coming-soon/2013-06/"
|
|
1988
1050
|
|
1989
1051
|
<div id="sidebar">
|
1990
1052
|
|
1991
|
-
<!--
|
1992
|
-
<div id="top_rhs_wrapper" class="dfp_slot">
|
1993
|
-
<script type="text/javascript">
|
1994
|
-
ad_utils.register_ad('top_rhs');
|
1995
|
-
</script>
|
1996
|
-
<iframe data-dart-params="#imdb2.consumer.main/nowplaying;!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-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>
|
1997
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.main/nowplaying;tile=2;sz=300x250,300x600,11x1;p=tr;fv=1;ab=f;bpx=1;ord=398104817376?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.main/nowplaying;tile=2;sz=300x250,300x600,11x1;p=tr;fv=1;ab=f;bpx=1;ord=398104817376?" border="0" alt="advertisement" /></a></noscript>
|
1998
|
-
</div>
|
1999
|
-
<div id="top_rhs_reflow_helper"></div>
|
2000
|
-
<script>ad_utils.render_ad_fast('top_rhs');</script>
|
2001
|
-
<div id="top_rhs_after" class="after_ad">
|
2002
|
-
<a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a>
|
2003
|
-
</div>
|
2004
|
-
<!-- End TOP_RHS -->
|
1053
|
+
<!-- no content received for slot: top_rhs -->
|
2005
1054
|
|
2006
1055
|
<div class="aux-content-widget-2">
|
2007
1056
|
<div class="social">
|
@@ -2286,93 +1335,32 @@ href="//www.amazon.com/InterestBasedAds"
|
|
2286
1335
|
|
2287
1336
|
</script>
|
2288
1337
|
|
2289
|
-
<!--
|
2290
|
-
<div id="bottom_ad_wrapper" class="dfp_slot">
|
2291
|
-
<script type="text/javascript">
|
2292
|
-
ad_utils.register_ad('bottom_ad');
|
2293
|
-
</script>
|
2294
|
-
<iframe data-dart-params="#imdb2.consumer.main/nowplaying;!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-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>
|
2295
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.main/nowplaying;tile=3;sz=728x90,2x1;p=b;fv=1;ab=f;bpx=1;ord=398104817376?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.main/nowplaying;tile=3;sz=728x90,2x1;p=b;fv=1;ab=f;bpx=1;ord=398104817376?" border="0" alt="advertisement" /></a></noscript>
|
2296
|
-
</div>
|
2297
|
-
<div id="bottom_ad_reflow_helper"></div>
|
2298
|
-
<script>ad_utils.render_ad_fast('bottom_ad');</script>
|
2299
|
-
<!-- End BOTTOM_AD -->
|
1338
|
+
<!-- no content received for slot: bottom_ad -->
|
2300
1339
|
|
2301
1340
|
</div>
|
2302
1341
|
</div>
|
2303
1342
|
|
2304
1343
|
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/jquery-216455579._V396414659_.js"></script>
|
2305
|
-
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/consumersite-
|
1344
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/consumersite-485265075._V384763076_.js"></script>
|
2306
1345
|
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/newmovies-4245406606._V394623244_.js"></script>
|
2307
|
-
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/watchlistButton-
|
1346
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/watchlistButton-4045620643._V385397462_.js"></script>
|
1347
|
+
|
2308
1348
|
|
2309
1349
|
<script type="text/imdblogin-js" id="login">
|
2310
1350
|
jQuery(document).ready(function(){
|
2311
1351
|
window.imdb.login_lightbox("https://secure.imdb.com", "http://www.imdb.com/movies-coming-soon/");
|
2312
1352
|
});
|
2313
1353
|
</script>
|
2314
|
-
<!-- begin ads footer -->
|
2315
|
-
<!-- Begin SIS-SW code -->
|
2316
|
-
<iframe id="sis_pixel_sitewide" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe>
|
2317
|
-
<script>
|
2318
|
-
setTimeout(function(){
|
2319
|
-
try{
|
2320
|
-
if (! document.getElementById('sis_pixel_3')) {
|
2321
|
-
var url_sis = 'http://s.amazon-adsystem.com/iu3?',
|
2322
|
-
params_sis = [
|
2323
|
-
"d=imdb.com",
|
2324
|
-
"a1=",
|
2325
|
-
"a2=0101a1823ca3d5d46ce03d4502edf28f095b20f780c29eddcddebefb2933fa9c1e98",
|
2326
|
-
"pId=",
|
2327
|
-
"r=1",
|
2328
|
-
"rP=http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F",
|
2329
|
-
"encoding=server",
|
2330
|
-
"cb=" + parseInt(Math.random()*99999999)
|
2331
|
-
];
|
2332
|
-
(document.getElementById('sis_pixel_sitewide')).src = url_sis + params_sis.join('&');
|
2333
|
-
}
|
2334
|
-
}
|
2335
|
-
catch(e){
|
2336
|
-
consoleLog('Pixel failure ' + e.toString(),'sis');
|
2337
|
-
}
|
2338
|
-
}, 5);
|
2339
|
-
|
2340
|
-
</script>
|
2341
|
-
<!-- End SIS-SW code -->
|
2342
|
-
|
2343
|
-
<!-- begin springroll comscore beacon -->
|
2344
|
-
<script type="text/javascript" src='http://z-ecx.images-amazon.com/images/G/01/imdbads/js/beacon-58460835._V397576206_.js'></script>
|
2345
|
-
<script type="text/javascript">
|
2346
|
-
COMSCORE.beacon({
|
2347
|
-
c1: 2,
|
2348
|
-
c2:"6034961",
|
2349
|
-
c3:"",
|
2350
|
-
c4:"http://www.imdb.com/movies-coming-soon/",
|
2351
|
-
c5:"",
|
2352
|
-
c6:"",
|
2353
|
-
c15:""
|
2354
|
-
});
|
2355
|
-
</script>
|
2356
|
-
<noscript>
|
2357
|
-
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F&c5=c6=&15=&cj=1"/>
|
2358
|
-
</noscript>
|
2359
|
-
<!-- end springroll comscore beacon -->
|
2360
|
-
|
2361
|
-
<script type="text/javascript">
|
2362
|
-
(function() {
|
2363
|
-
var foreseescript = document.createElement("script");
|
2364
|
-
foreseescript.setAttribute("defer", true);
|
2365
|
-
foreseescript.setAttribute("src", "http://z-ecx.images-amazon.com/images/G/01/imdbads/foresee/foresee-trigger-4277353327._V397576255_.js");
|
2366
|
-
document.getElementsByTagName("head")[0].appendChild(foreseescript);
|
2367
|
-
})();
|
2368
|
-
</script>
|
2369
1354
|
|
2370
|
-
<
|
2371
|
-
<!-- end ads footer -->
|
1355
|
+
<div id="servertime" time="55"/>
|
2372
1356
|
|
2373
|
-
<
|
1357
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/csmBodyClose-1818737696._V384779760_.js"></script>
|
2374
1358
|
|
2375
|
-
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/csmBodyClose-3613416824._V371691743_.js"></script>
|
2376
1359
|
|
1360
|
+
<script>
|
1361
|
+
if (typeof uet == 'function') {
|
1362
|
+
uet("be");
|
1363
|
+
}
|
1364
|
+
</script>
|
2377
1365
|
</body>
|
2378
1366
|
</html>
|