spotlite 0.7.2 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +14 -0
  3. data/README.md +8 -41
  4. data/Rakefile +23 -3
  5. data/lib/spotlite.rb +1 -8
  6. data/lib/spotlite/movie.rb +169 -80
  7. data/lib/spotlite/person.rb +90 -14
  8. data/lib/spotlite/string_extensions.rb +9 -9
  9. data/lib/spotlite/version.rb +1 -1
  10. data/spec/fixtures/movie_find_conan +722 -0
  11. data/spec/fixtures/{search_no_results → movie_find_no_results} +95 -149
  12. data/spec/fixtures/nm0000233/index +6118 -0
  13. data/spec/fixtures/nm0005132/index +817 -740
  14. data/spec/fixtures/nm0864666/index +199 -221
  15. data/spec/fixtures/nm1659547/index +748 -719
  16. data/spec/fixtures/person_find_conan +722 -0
  17. data/spec/fixtures/{search_the_core → person_find_no_results} +112 -219
  18. data/spec/fixtures/tt0002186/index +212 -242
  19. data/spec/fixtures/tt0047396/releaseinfo +217 -292
  20. data/spec/fixtures/tt0112873/index +556 -539
  21. data/spec/fixtures/tt0133093/criticreviews +169 -250
  22. data/spec/fixtures/tt0133093/fullcredits +212 -299
  23. data/spec/fixtures/tt0133093/index +444 -491
  24. data/spec/fixtures/tt0133093/keywords +416 -492
  25. data/spec/fixtures/tt0133093/mediaindex_still_frame +114 -158
  26. data/spec/fixtures/tt0133093/releaseinfo +282 -344
  27. data/spec/fixtures/tt0133093/technical +1144 -0
  28. data/spec/fixtures/tt0133093/trivia +1350 -1230
  29. data/spec/fixtures/tt0169547/index +629 -644
  30. data/spec/fixtures/tt0317248/index +579 -608
  31. data/spec/fixtures/tt1134629/fullcredits +257 -340
  32. data/spec/spec_helper.rb +24 -23
  33. data/spec/spotlite/find_spec.rb +38 -0
  34. data/spec/spotlite/movie_spec.rb +73 -57
  35. data/spec/spotlite/person_spec.rb +60 -1
  36. data/spotlite.gemspec +9 -9
  37. metadata +34 -56
  38. data/lib/spotlite/box_office_top.rb +0 -11
  39. data/lib/spotlite/coming_soon.rb +0 -24
  40. data/lib/spotlite/in_theaters.rb +0 -25
  41. data/lib/spotlite/list.rb +0 -18
  42. data/lib/spotlite/opening_this_week.rb +0 -11
  43. data/lib/spotlite/search.rb +0 -45
  44. data/lib/spotlite/top.rb +0 -23
  45. data/spec/fixtures/movies_coming_soon +0 -2103
  46. data/spec/fixtures/movies_in_theaters +0 -2708
  47. data/spec/fixtures/top +0 -10823
  48. data/spec/spotlite/box_office_top_spec.rb +0 -29
  49. data/spec/spotlite/coming_soon_spec.rb +0 -29
  50. data/spec/spotlite/opening_this_week_spec.rb +0 -29
  51. data/spec/spotlite/search_spec.rb +0 -34
  52. data/spec/spotlite/top_spec.rb +0 -21
  53. data/tasks/fixtures.rake +0 -15
@@ -1,11 +0,0 @@
1
- module Spotlite
2
- # Represents a list of this week's top 10 box office
3
- class BoxOfficeTop < InTheaters
4
- private
5
-
6
- # Returns the last out of two lists at http://www.imdb.com/movies-in-theaters/
7
- def list
8
- @list ||= page.css("div.sub-list").last
9
- end
10
- end
11
- end
@@ -1,24 +0,0 @@
1
- module Spotlite
2
- # Represents a list of movies coming soon
3
- class ComingSoon < List
4
- private
5
-
6
- # Returns an array of +Spotlite::Movie+ objects
7
- def parse_movies
8
- page.css("div.list_item").map do |node|
9
- imdb_id = node.at("a[itemprop='url']")['href'].parse_imdb_id
10
- title = node.at("a[itemprop='url']").text.strip.strip_year
11
- year = node.at("a[itemprop='url']").text.strip.split(" ").last.parse_year
12
-
13
- [imdb_id, title, year]
14
- end.map do |values|
15
- Spotlite::Movie.new(*values)
16
- end
17
- end
18
-
19
- def open_page # :nodoc:
20
- Nokogiri::HTML(open("http://www.imdb.com/movies-coming-soon/",
21
- "Accept-Language" => "en-us"))
22
- end
23
- end
24
- end
@@ -1,25 +0,0 @@
1
- module Spotlite
2
- # Represents a list of movies in theaters: opening this week, and this week's box office top 10
3
- class InTheaters < List
4
- private
5
-
6
- # Returns an array of +Spotlite::Movie+ objects
7
- def parse_movies
8
- # +list+ method is defined in descendant classes
9
- list.css("div.list_item").map do |node|
10
- imdb_id = node.at("a[itemprop='url']")['href'].parse_imdb_id
11
- title = node.at("a[itemprop='url']").text.strip.strip_year
12
- year = node.at("a[itemprop='url']").text.strip.split(" ").last.parse_year
13
-
14
- [imdb_id, title, year]
15
- end.map do |values|
16
- Spotlite::Movie.new(*values)
17
- end
18
- end
19
-
20
- def open_page # :nodoc:
21
- Nokogiri::HTML(open("http://www.imdb.com/movies-in-theaters/",
22
- "Accept-Language" => "en-us"))
23
- end
24
- end
25
- end
@@ -1,18 +0,0 @@
1
- module Spotlite
2
-
3
- # Represents a list of movies
4
- # Search results, movies a person participated in, etc.
5
- class List
6
- # Returns an array of +Spotlite::Movie+ objects
7
- def movies
8
- @movies ||= parse_movies
9
- end
10
-
11
- private
12
-
13
- def page # :nodoc:
14
- @page ||= open_page
15
- end
16
- end
17
-
18
- end
@@ -1,11 +0,0 @@
1
- module Spotlite
2
- # Represents a list of movies that are opening in theaters this week
3
- class OpeningThisWeek < InTheaters
4
- private
5
-
6
- # Returns the first out of two lists at http://www.imdb.com/movies-in-theaters/
7
- def list
8
- @list ||= page.css("div.sub-list").first
9
- end
10
- end
11
- end
@@ -1,45 +0,0 @@
1
- require "cgi"
2
- module Spotlite
3
-
4
- class Search < List
5
- attr_reader :query
6
-
7
- SKIP = ["(TV Episode)", "(TV Series)", "(TV Movie)", "(Video)", "(Short)", "(Video Game)"]
8
-
9
- # Initialize a +Search+ object with string search query
10
- def initialize(query)
11
- @query = query
12
- end
13
-
14
- private
15
-
16
- # Searches for a table containing movie titles and parses it.
17
- # Returns an array of +Spotlite::Movie+ objects
18
- # Returns empty array if no results found
19
- def parse_movies
20
- table = page.at("a[name='tt']").parent.parent.at("table.findList") rescue nil
21
- if !table.nil?
22
- table.css("td.result_text").reject do |node|
23
- # search results will only include movies
24
- SKIP.any? { |skipped| node.text.include? skipped }
25
- end.map do |node|
26
- imdb_id = node.at("a[href^='/title/tt']")['href'].parse_imdb_id
27
- title = node.at("a").text.strip
28
- year = node.children.last.text.parse_year
29
-
30
- [imdb_id, title, year]
31
- end.map do |values|
32
- Spotlite::Movie.new(*values)
33
- end
34
- else
35
- return []
36
- end
37
- end
38
-
39
- def open_page # :nodoc:
40
- Nokogiri::HTML(open("http://www.imdb.com/find?q=#{CGI::escape(@query)}&s=all",
41
- "Accept-Language" => "en-us"))
42
- end
43
- end
44
-
45
- end
@@ -1,23 +0,0 @@
1
- module Spotlite
2
- class Top < List
3
- private
4
-
5
- # Returns an array of +Spotlite::Movie+ objects
6
- def parse_movies
7
- page.css("table.chart td.titleColumn").map do |cell|
8
- imdb_id = cell.at("a[href^='/title/tt']")['href'].parse_imdb_id
9
- title = cell.at("a[href^='/title/tt']").text.strip
10
- year = cell.at("span.secondaryInfo").text.parse_year
11
-
12
- [imdb_id, title, year]
13
- end.map do |values|
14
- Spotlite::Movie.new(*values)
15
- end
16
- end
17
-
18
- def open_page # :nodoc:
19
- Nokogiri::HTML(open("http://www.imdb.com/chart/top",
20
- "Accept-Language" => "en-us"))
21
- end
22
- end
23
- end
@@ -1,2103 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Date: Sun, 15 Dec 2013 14:04:45 GMT
3
- Server: Server
4
- Content-Type: text/html;charset=UTF-8
5
- Content-Language: en-US
6
- Vary: Accept-Encoding,User-Agent
7
- Set-Cookie: uu=BCYnBwCvqKcul9zu91ORNXDTfn6k7BITPfmuH8LN8vBnLSGTkqknzu2ysK8MSWUob00Zl0G19uxp%0D%0Ax4T0NqvSnzSmQlFrUCSkyeRjsttxDBWX7vy2JNg4SyLcvj3D23hraKarXLy%2Ftzuv3YlEqel0cXGa%0D%0AVB1PjmrcHycb03CqH4M59WBVLSa%2B4bmDSuBH4VoziSNuDSVT583IOzeor6Eurg4wGT1yk8mf9b6z%0D%0AEDFGgNjidBBNNU%2FavfVIgas%2FdusFL52GKWP35O8n0f5V1tITFHv1vA%3D%3D%0D%0A; Domain=.imdb.com; Expires=Fri, 02-Jan-2082 17:18:52 GMT; Path=/
8
- Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=Fri, 02-Jan-2082 17:18:52 GMT; Path=/
9
- Set-Cookie: session-id-time=1544796285; Domain=.imdb.com; Expires=Fri, 02-Jan-2082 17:18:52 GMT; Path=/
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
- Transfer-Encoding: chunked
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
- <!DOCTYPE html>
20
- <html
21
- xmlns:og="http://ogp.me/ns#"
22
- xmlns:fb="http://www.facebook.com/2008/fbml">
23
- <head>
24
- <script type="text/javascript">var ue_t0=window.ue_t0||+new Date();</script>
25
- <script type="text/javascript">
26
- var ue_mid = "A1EVAM02EL8SFB";
27
- var ue_sn = "www.imdb.com";
28
- var ue_furl = "fls-na.amazon.com";
29
- var ue_sid = "000-0000000-0000000";
30
- var ue_id = "0YPP5KBSXNY0V02XEJ0H";
31
- (function(e){var c=e,a={main_scope:"mainscopecsm",q:[],t0:c.ue_t0||+new Date(),d:g};function g(h){return +new Date()-(h?0:a.t0)}function d(h){return function(){a.q.push({n:h,a:arguments,t:a.d()})}}function b(k,j,h){var i={m:k,f:j,l:h,fromOnError:1,args:arguments};c.ueLogError(i);return false}b.skipTrace=1;e.onerror=b;function f(){c.uex("ld")}if(e.addEventListener){e.addEventListener("load",f,false)}else{if(e.attachEvent){e.attachEvent("onload",f)}}a.tag=d("tag");a.log=d("log");a.reset=d("rst");c.ue_csm=c;c.ue=a;c.ueLogError=d("err");c.ues=d("ues");c.uet=d("uet");c.uex=d("uex");c.uet("ue")})(window);(function(e,d){var a=e.ue||{};function c(g){if(!g){return}var f=d.head||d.getElementsByTagName("head")[0]||d.documentElement,h=d.createElement("script");h.async="async";h.src=g;f.insertBefore(h,f.firstChild)}function b(){var k=e.ue_cdn||"z-ecx.images-amazon.com",g=e.ue_cdns||"images-na.ssl-images-amazon.com",j="/images/G/01/csminstrumentation/",h=e.ue_file||"ue-full-ef584a44e8ea58e3d4d928956600a9b6._V1_.js",f,i;if(h.indexOf("NSTRUMENTATION_FIL")>=0){return}if("ue_https" in e){f=e.ue_https}else{f=e.location&&e.location.protocol=="https:"?1:0}i=f?"https://":"http://";i+=f?g:k;i+=j;i+=h;c(i)}if(!e.ue_inline){b()}a.uels=c;e.ue=a})(window,document);
32
- </script>
33
-
34
-
35
-
36
- <script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
37
-
38
- <script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
39
- <title>New Movies Coming Soon - IMDb</title>
40
- <script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
41
-
42
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
43
- <link rel="canonical" href="http://www.imdb.com/movies-coming-soon/" />
44
- <meta property="og:url" content="http://www.imdb.com/movies-coming-soon/" />
45
-
46
- <script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
47
- <link rel="icon" type="image/ico" href="http://ia.media-imdb.com/images/G/01/imdb/images/favicon-2165806970._V379387995_.ico" />
48
- <link rel="shortcut icon" type="image/x-icon" href="http://ia.media-imdb.com/images/G/01/imdb/images/desktop-favicon-2165806970._V379390718_.ico" />
49
- <link rel="apple-touch-icon" href="http://ia.media-imdb.com/images/G/01/imdb/images/apple-touch-icon-3173846443._V379391250_.png" />
50
- <link rel="search" type="application/opensearchdescription+xml" href="http://ia.media-imdb.com/images/G/01/imdb/images/imdbsearch-3349468880._V379388505_.xml" title="IMDb" />
51
- <script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
52
-
53
-
54
- <link rel='image_src' href="http://ia.media-imdb.com/images/G/01/imdb/images/logos/imdb_fb_logo-1730868325._V379391653_.png">
55
- <meta property='og:image' content="http://ia.media-imdb.com/images/G/01/imdb/images/logos/imdb_fb_logo-1730868325._V379391653_.png" />
56
-
57
- <meta property='fb:app_id' content='115109575169727' />
58
- <meta property='og:title' content="New Movies Coming Soon" />
59
- <meta property='og:site_name' content='IMDb' />
60
- <meta name="title" content="New Movies Coming Soon - IMDb" />
61
- <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" />
62
- <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" />
63
- <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" />
64
- <meta name="request_id" content="0YPP5KBSXNY0V02XEJ0H" />
65
-
66
- <script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
67
- <link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/consumersite-3630356745._V366641981_.css" />
68
- <!-- h=ics-1d-i-0b501472.us-east-1 -->
69
- <link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-mega-3538633082._V355276482_.css" />
70
- <link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/other-764989002._V368966873_.css" />
71
- <link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/watchlistButton-3418429651._V354773478_.css" />
72
- <!--[if IE]><link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/ie-1918465287._V354866480_.css" /><![endif]-->
73
-
74
- <script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
75
-
76
- <script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
77
-
78
- <script type="text/javascript">
79
- // ensures js doesn't die if ads service fails.
80
- // Note that we need to define the js here, since ad js is being rendered inline after this.
81
- (function(f) {
82
- // Fallback javascript, when the ad Service call fails.
83
-
84
- if((window.csm === undefined || window.generic === undefined || window.consoleLog === undefined)) {
85
- if (console !== undefined && console.log !== undefined) {
86
- console.log("one or more of window.csm, window.generic or window.consoleLog has been stubbed...");
87
- }
88
- }
89
-
90
- window.csm = window.csm || { measure:f, record:f, duration:f, listen:f, metrics:{} };
91
- window.generic = window.generic || { monitoring: { start_timing: f, stop_timing: f } };
92
- window.consoleLog = window.consoleLog || f;
93
- })(function() {});
94
- </script>
95
- <script>
96
- if ('csm' in window) {
97
- csm.measure('csm_head_delivery_finished');
98
- }
99
- </script>
100
- </head>
101
- <body id="styleguide-v2" class="fixed">
102
- <script>
103
- if (typeof uet == 'function') {
104
- uet("bb");
105
- }
106
- </script>
107
- <script>
108
- if ('csm' in window) {
109
- csm.measure('csm_body_delivery_started');
110
- }
111
- </script>
112
- <div id="wrapper">
113
- <div id="root" class="redesign">
114
- <script>
115
- if (typeof uet == 'function') {
116
- uet("ns");
117
- }
118
- </script>
119
- <div id="nb20" class="navbarSprite">
120
- <div id="supertab">
121
- <!-- no content received for slot: top_ad -->
122
-
123
- </div>
124
- <div id="navbar" class="navbarSprite">
125
- <noscript>
126
- <link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-no-js-4175877511._V379390803_.css" />
127
- </noscript>
128
- <!--[if IE]><link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-ie-470687728._V379390980_.css"><![endif]-->
129
- <span id="home_img_holder">
130
- <a href="/?ref_=nv_home" title="Home" class="navbarSprite" id="home_img" ></a> <span class="alt_logo">
131
- <a href="/?ref_=nv_home" title="Home" >IMDb</a>
132
- </span>
133
- </span>
134
- <form
135
- onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
136
- method="get"
137
- action="/find"
138
- class="nav-searchbar-inner"
139
- id="navbar-form"
140
-
141
- >
142
- <div id="nb_search">
143
- <noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
144
- <button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
145
- <input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more...">
146
- <div class="quicksearch_dropdown_wrapper">
147
- <select name="s" id="quicksearch" class="quicksearch_dropdown navbarSprite"
148
- onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
149
- <option value="all" >All</option>
150
- <option value="tt" >Titles</option>
151
- <option value="ep" >TV Episodes</option>
152
- <option value="nm" >Names</option>
153
- <option value="co" >Companies</option>
154
- <option value="kw" >Keywords</option>
155
- <option value="ch" >Characters</option>
156
- <option value="vi" >Videos</option>
157
- <option value="qu" >Quotes</option>
158
- <option value="bi" >Bios</option>
159
- <option value="pl" >Plots</option>
160
- </select>
161
- </div>
162
- <div id="navbar-suggestionsearch"></div>
163
- </div>
164
- </form>
165
- <div id="megaMenu">
166
- <ul id="consumer_main_nav" class="main_nav">
167
- <li class="spacer"></li>
168
- <li class="css_nav_item" id="navTitleMenu">
169
- <p class="navCategory">
170
- <a href="/movies-in-theaters/?ref_=nv_tp_inth_1" >Movies</a>,
171
- <a href="/tv/?ref_=nv_tp_tvhm_2" >TV</a><br />
172
- & <a href="/showtimes/?ref_=nv_tp_sh_3" >Showtimes</a></p>
173
- <span class="downArrow"></span>
174
- <div id="navMenu1" class="sub_nav">
175
- <div id="titleAd"></div>
176
- <div class="subNavListContainer">
177
- <h5>MOVIES</h5>
178
- <ul>
179
- <li><a href="/movies-in-theaters/?ref_=nv_mv_inth_1" >In Theaters</a></li>
180
- <li><a href="/showtimes/?ref_=nv_mv_sh_2" >Showtimes & Tickets</a></li>
181
- <li><a href="/trailers/?ref_=nv_mv_tr_3" >Latest Trailers</a></li>
182
- <li><a href="/movies-coming-soon/?ref_=nv_mv_cs_4" >Coming Soon</a></li>
183
- <li><a href="/calendar/?ref_=nv_mv_cal_5" >Release Calendar</a></li>
184
- </ul>
185
- <h5>CHARTS & TRENDS</h5>
186
- <ul>
187
- <li><a href="/search/title?count=100&title_type=feature,tv_series&ref_=nv_ch_mm_1" >Popular Movies & TV</a></li>
188
- <li><a href="/chart/?ref_=nv_ch_cht_2" >Box Office</a></li>
189
- <li><a href="/search/title?count=100&groups=oscar_best_picture_winners&sort=year,desc&ref_=nv_ch_osc_3" >Oscar Winners</a></li>
190
- <li><a href="/chart/top?ref_=nv_ch_250_4" >Top 250</a></li>
191
- <li><a href="/genre/?ref_=nv_ch_gr_5" >Most Popular by Genre</a></li>
192
- </ul>
193
- </div>
194
- <div class="subNavListContainer">
195
- <h5>TV & VIDEO</h5>
196
- <ul>
197
- <li><a href="/tv/?ref_=nv_tvv_hm_1" >TV Home</a></li>
198
- <li><a href="/tvgrid/?ref_=nv_tvv_ls_2" >On Tonight</a></li>
199
- <li><a href="/watchnow/?ref_=nv_tvv_wn_3" >Watch Now on Amazon</a></li>
200
- <li><a href="/sections/dvd/?ref_=nv_tvv_dvd_4" >DVD & Blu-Ray</a></li>
201
- <li><a href="/tv/blog?ref_=nv_tvv_blog_5" >TV Blog</a></li>
202
- </ul>
203
- <h5>SPECIAL FEATURES</h5>
204
- <ul>
205
- <li><a href="/year-in-review/?ref_=nv_sf_best_1" >Best of 2013</a></li>
206
- <li><a href="/oscars/?ref_=nv_sf_rto_2" >Road to the Oscars 2014</a></li>
207
- <li><a href="/x-ray/?ref_=nv_sf_xray_3" >X-Ray for Movies & TV</a></li>
208
- </ul>
209
- </div>
210
- </div>
211
- </li>
212
- <li class="spacer"></li>
213
- <li class="css_nav_item" id="navNameMenu">
214
- <p class="navCategory">
215
- <a href="/search/name?gender=male,female&ref_=nv_tp_cel_1" >Celebs</a>,
216
- <a href="/event/?ref_=nv_tp_ev_2" >Events</a><br />
217
- & <a href="/media/index/rg1176148480?ref_=nv_tp_ph_3" >Photos</a></p>
218
- <span class="downArrow"></span>
219
- <div id="navMenu2" class="sub_nav">
220
- <div id="nameAd"></div>
221
- <div class="subNavListContainer">
222
- <h5>CELEBS</h5>
223
- <ul>
224
- <li><a href="/search/name?birth_monthday=12-15&refine=birth_monthday&ref_=nv_cel_brn_1" >Born Today</a></li>
225
- <li><a href="/news/celebrity?ref_=nv_cel_nw_2" >Celebrity News</a></li>
226
- <li><a href="/search/name?gender=male,female&ref_=nv_cel_m_3" >Most Popular Celebs</a></li>
227
- </ul>
228
- <h5>PHOTOS</h5>
229
- <ul>
230
- <li><a href="/media/index/rg1176148480?ref_=nv_ph_ls_1" >Latest Stills</a></li>
231
- <li><a href="/media/index/rg1528338944?ref_=nv_ph_lp_2" >Latest Posters</a></li>
232
- <li><a href="/sections/photos/premieres/?ref_=nv_ph_prem_3" >Movie & TV Premieres</a></li>
233
- <li><a href="/sections/photos/red_carpet/?ref_=nv_ph_red_4" >On the Red Carpet</a></li>
234
- <li><a href="/sections/photos/special_galleries/?ref_=nv_ph_sp_5" >Special Galleries</a></li>
235
- </ul>
236
- </div>
237
- <div class="subNavListContainer">
238
- <h5>EVENTS</h5>
239
- <ul>
240
- <li><a href="/oscars/?ref_=nv_ev_rto_1" >Road to the Oscars</a></li>
241
- <li><a href="/emmys/?ref_=nv_ev_rte_2" >Road to the Emmys</a></li>
242
- <li><a href="/comic-con/?ref_=nv_ev_comic_3" >Comic-Con</a></li>
243
- <li><a href="/cannes/?ref_=nv_ev_can_4" >Cannes</a></li>
244
- <li><a href="/tribeca/?ref_=nv_ev_tri_5" >Tribeca</a></li>
245
- <li><a href="/sundance/?ref_=nv_ev_sun_6" >Sundance</a></li>
246
- <li><a href="/event/?ref_=nv_ev_all_7" >More Popular Events</a></li>
247
- </ul>
248
- </div>
249
- </div>
250
- </li>
251
- <li class="spacer"></li>
252
- <li class="css_nav_item" id="navNewsMenu">
253
- <p class="navCategory">
254
- <a href="/news/top?ref_=nv_tp_nw_1" >News</a> &<br />
255
- <a href="/boards/?ref_=nv_tp_bd_2" >Community</a></p>
256
- <span class="downArrow"></span>
257
- <div id="navMenu3" class="sub_nav">
258
- <div id="latestHeadlines">
259
- <div class="subNavListContainer">
260
- <h5>LATEST HEADLINES</h5>
261
- <ul>
262
- <li itemprop="headline">
263
- <a href="/news/ni56544303/?ref_=nv_nw_tn_1" > ‘The Hobbit’ Off to $31 Million Start, Wrestling With Unmet Expectations
264
- </a><br />
265
- <span class="time">20 hours ago</span>
266
- </li>
267
- <li itemprop="headline">
268
- <a href="/news/ni56544093/?ref_=nv_nw_tn_2" > ‘American Hustle’ Scores Big in Limited Box Office Debut
269
- </a><br />
270
- <span class="time">21 hours ago</span>
271
- </li>
272
- <li itemprop="headline">
273
- <a href="/news/ni56542625/?ref_=nv_nw_tn_3" > '12 Years a Slave' leads San Francisco Film Critics Circle nods
274
- </a><br />
275
- <span class="time">14 December 2013</span>
276
- </li>
277
- </ul>
278
- </div>
279
- </div>
280
- <div class="subNavListContainer">
281
- <h5>NEWS</h5>
282
- <ul>
283
- <li><a href="/news/top?ref_=nv_nw_tp_1" >Top News</a></li>
284
- <li><a href="/news/movie?ref_=nv_nw_mv_2" >Movie News</a></li>
285
- <li><a href="/news/tv?ref_=nv_nw_tv_3" >TV News</a></li>
286
- <li><a href="/news/celebrity?ref_=nv_nw_cel_4" >Celebrity News</a></li>
287
- <li><a href="/news/indie?ref_=nv_nw_ind_5" >Indie News</a></li>
288
- </ul>
289
- <h5>COMMUNITY</h5>
290
- <ul>
291
- <li><a href="/boards/?ref_=nv_cm_bd_1" >Message Boards</a></li>
292
- <li><a href="/czone/?ref_=nv_cm_cz_2" >Contributor Zone</a></li>
293
- <li><a href="/games/guess?ref_=nv_cm_qz_3" >Quiz Game</a></li>
294
- <li><a href="/poll/?ref_=nv_cm_pl_4" >Polls</a></li>
295
- </ul>
296
- </div>
297
- </div>
298
- </li>
299
- <li class="spacer"></li>
300
- <li class="css_nav_item" id="navWatchlistMenu">
301
- <p class="navCategory singleLine watchlist">
302
- <a href="/list/watchlist?ref_=nv_wl_all_0" >Watchlist</a>
303
- </p>
304
- <span class="downArrow"></span>
305
- <div id="navMenu4" class="sub_nav">
306
- <h5>
307
- RECENTLY ADDED
308
- </h5>
309
- <ul id="navWatchlist">
310
- </ul>
311
- <script>
312
- if (!('imdb' in window)) { window.imdb = {}; }
313
- window.imdb.watchlistTeaserData = [
314
- {
315
- href : "/list/watchlist",
316
- src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot1_logged_out-1670046337._V360061167_.jpg"
317
- },
318
- {
319
- href : "/search/title?count=100&title_type=feature,tv_series",
320
- src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot2_popular-4090757197._V360060945_.jpg"
321
- },
322
- {
323
- href : "/search/title?count=100&groups=top_250&sort=user_rating,desc&title_type=feature",
324
- src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot3_top250-575799966._V360061165_.jpg"
325
- }
326
- ];
327
- </script>
328
- </div>
329
- </li>
330
- <li class="spacer"></li>
331
- </ul>
332
- <script>
333
- if (!('imdb' in window)) { window.imdb = {}; }
334
- window.imdb.navbarAdSlots = {
335
- titleAd : {
336
- },
337
- nameAd : {
338
- }
339
- }
340
- </script>
341
- </div>
342
- <div id="nb_extra">
343
- <ul id="nb_extra_nav" class="main_nav">
344
- <li class="css_nav_item" id="navProMenu">
345
- <p class="navCategory">
346
- <a
347
- onclick="(new Image()).src='/rg/imdbprohome/navbar/images/b.gif?link=/r/IMDbTabNV/';"
348
- href="/r/IMDbTabNV/"
349
- > <img alt="IMDbPro Menu" src="http://ia.media-imdb.com/images/G/01/imdb/images/navbar/imdbpro_logo_nb-720143162._V377744227_.png" />
350
- </a> </p>
351
- <span class="downArrow"></span>
352
- <div id="navMenuPro" class="sub_nav">
353
- <a
354
- onclick="(new Image()).src='/rg/imdbprohome/navbar/images/b.gif?link=/r/IMDbTabNV/';"
355
- href="/r/IMDbTabNV/"
356
- id="proLink"
357
- > <div id="proAd">
358
- <script>
359
- if (!('imdb' in window)) { window.imdb = {}; }
360
- window.imdb.proMenuTeaser = {
361
- imageUrl : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/imdbpro_menu_user-2082544740._V377744226_.jpg"
362
- };
363
- </script>
364
- </div>
365
- <div class="subNavListContainer">
366
- <img alt="Go to IMDbPro" title="Go to IMDbPro" src="http://ia.media-imdb.com/images/G/01/imdb/images/navbar/imdbpro_logo_menu-2185879182._V377744253_.png" />
367
- <h5>GET INFORMED</h5>
368
- <p>Industry information at your fingertips</p>
369
- <h5>GET CONNECTED</h5>
370
- <p>Over 200,000 Hollywood insiders</p>
371
- <h5>GET DISCOVERED</h5>
372
- <p>Enhance your IMDb Page</p>
373
- <p><strong>Go to IMDbPro &raquo;</strong></p>
374
- </div>
375
- </a> </div>
376
- </li>
377
- <li class="spacer"><span class="ghost">|</span></li>
378
- <li>
379
- <a href="/apps/?ref_=nb_app" >IMDb Apps</a>
380
- </li>
381
- <li class="spacer"><span class="ghost">|</span></li>
382
- <li>
383
- <a href="/help/?ref_=nb_hlp" >Help</a>
384
- </li>
385
- </ul>
386
- </div>
387
- <div id="nb_personal">
388
- <ul id="consumer_user_nav" class="main_nav">
389
- <li class="css_nav_menu" id="navUserMenu">
390
- <p class="navCategory singleLine">
391
- <a rel="login" href="/register/login?ref_=nv_usr_lgin_1" id="nblogin" >Login</a>
392
- </p>
393
- <span class="downArrow"></span>
394
- <div class="sub_nav">
395
- <div class="subNavListContainer">
396
- <br />
397
- <ul>
398
- <li>
399
- <a href="https://secure.imdb.com/register-imdb/form-v2?ref_=nv_usr_reg_2" >Register</a>
400
- </li>
401
- <li>
402
- <a rel="login" href="/register/login?ref_=nv_usr_lgin_3" id="nblogin" >Login</a>
403
- </li>
404
- </ul>
405
- </div>
406
- </div>
407
- </li>
408
- </ul>
409
- </div>
410
- </div>
411
- </div>
412
-
413
- <!-- no content received for slot: navstrip -->
414
-
415
-
416
- <!-- no content received for slot: injected_navstrip -->
417
-
418
- <script>
419
- if (typeof uet == 'function') {
420
- uet("ne");
421
- }
422
- </script>
423
- <div id="pagecontent">
424
-
425
- <!-- no content received for slot: injected_billboard -->
426
-
427
-
428
-
429
- <div id="content-2-wide" class="redesign">
430
-
431
- <div id="main">
432
- <div class="article listo nm">
433
-
434
-
435
- <h1 class="header"><a class="newmovies" href="/movies-in-theaters/">New Movies</a><br />
436
- Coming Soon</h1>
437
-
438
- <ul class="list_tabs">
439
- <li><a
440
- onclick="(new Image()).src='/rg/coming-soon/tab-in-theaters/images/b.gif?link=/movies-in-theaters/';"
441
- href="/movies-in-theaters/"
442
- >In Theaters</a></a></li>
443
- <li class="active"><a>Coming Soon</a></li>
444
-
445
- <li class="linkright"><a href="/showtimes/?ref_=cs_sh" >Showtimes</a> <span>&raquo;</span></li>
446
- </ul>
447
- <div class="header">
448
- <div class="nav">
449
- <div class="desc">
450
- <a href="#Dec20">Dec 20</a>
451
- |
452
- <a href="#Dec27">Dec 27</a>
453
-
454
- </div>
455
-
456
- <div class="pagination"> </div>
457
-
458
- <div class="sort">
459
- &laquo;&nbsp;<a
460
- onclick="(new Image()).src='/rg/coming-soon/previous-month/images/b.gif?link=/movies-coming-soon/2013-12/';"
461
- href="/movies-coming-soon/2013-12/"
462
- >Prev</a>&nbsp;
463
-
464
- <select name="sort" class="sort_field date_select" onchange="window.open(this.options[this.selectedIndex].value,'_top')">
465
- <option selected="selected"
466
- value="/movies-coming-soon/2013-12/">
467
- December&nbsp;&nbsp;2013
468
- </option>
469
- <option
470
- value="/movies-coming-soon/2014-01/">
471
- January&nbsp;&nbsp;&nbsp;2014
472
- </option>
473
- <option
474
- value="/movies-coming-soon/2014-02/">
475
- February&nbsp;&nbsp;2014
476
- </option>
477
- <option
478
- value="/movies-coming-soon/2014-03/">
479
- March&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
480
- </option>
481
- <option
482
- value="/movies-coming-soon/2014-04/">
483
- April&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
484
- </option>
485
- <option
486
- value="/movies-coming-soon/2014-05/">
487
- May&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
488
- </option>
489
- <option
490
- value="/movies-coming-soon/2014-06/">
491
- June&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
492
- </option>
493
- <option
494
- value="/movies-coming-soon/2014-07/">
495
- July&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
496
- </option>
497
- <option
498
- value="/movies-coming-soon/2014-08/">
499
- August&nbsp;&nbsp;&nbsp;&nbsp;2014
500
- </option>
501
- <option
502
- value="/movies-coming-soon/2014-09/">
503
- September&nbsp;2014
504
- </option>
505
- <option
506
- value="/movies-coming-soon/2014-10/">
507
- October&nbsp;&nbsp;&nbsp;2014
508
- </option>
509
- <option
510
- value="/movies-coming-soon/2014-11/">
511
- November&nbsp;&nbsp;2014
512
- </option>
513
- </select>
514
- &nbsp;<a
515
- onclick="(new Image()).src='/rg/coming-soon/next-month/images/b.gif?link=/movies-coming-soon/2014-01/';"
516
- href="/movies-coming-soon/2014-01/"
517
- >Next</a>&nbsp;&raquo;
518
- </div>
519
-
520
- </div>
521
- </div>
522
-
523
-
524
- <div class="list detail">
525
- <h4 class="li_group"><a name="Dec20">December 20&nbsp;</a></h4>
526
- <div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
527
-
528
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
529
- <tbody>
530
- <tr>
531
- <td rowspan="2" valign="top" id="img_primary">
532
- <div class="image">
533
- <a
534
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1229340/';"
535
- href="/title/tt1229340/"
536
- > <div class="hover-over-image zero-z-index">
537
- <img class="poster shadowed"
538
- height="209"
539
- width="140"
540
- alt="Anchorman 2: The Legend Continues (2013) Poster"
541
- title="Anchorman 2: The Legend Continues (2013)"
542
- src="http://ia.media-imdb.com/images/M/MV5BMjE5ODk0NjQzNV5BMl5BanBnXkFtZTgwODk4MDA1MDE@._V1_SY209_CR0,0,140,209_.jpg"
543
- itemprop="image" />
544
- </div>
545
- </a> </div>
546
- </td>
547
- <td class="overview-top">
548
- <h4 itemprop="name"><a
549
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1229340/';"
550
- href="/title/tt1229340/"
551
- title="Anchorman 2: The Legend Continues (2013)"
552
- itemprop='url'> Anchorman 2: The Legend Continues (2013)</a></h4>
553
- <p class="cert-runtime-genre">
554
-
555
- <img title="PG-13"
556
- alt="Certificate PG-13"
557
- class="absmiddle certimage"
558
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V379388624_.png" />
559
- <time itemprop="duration" datetime="PT119M">119 min</time>
560
- &nbsp;&nbsp;-&nbsp;&nbsp;
561
- <span itemprop="genre">Comedy</span>
562
-
563
- </p>
564
- <div class="rating_txt">
565
- </div>
566
- <div class="outline" itemprop="description">
567
- With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm. </div>
568
- <div class="txt-block">
569
- <h5 class="inline">Director:</h5>
570
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
571
- <span itemprop="name">
572
- <a
573
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0570912/';"
574
- href="/name/nm0570912/"
575
- itemprop='url'>Adam McKay</a> </span>
576
- </span>
577
-
578
- </div>
579
- <div class="txt-block">
580
- <h5 class="inline">Stars:</h5>
581
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
582
- <span itemprop="name">
583
- <a
584
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0002071/';"
585
- href="/name/nm0002071/"
586
- itemprop='url'>Will Ferrell</a></span></span>,
587
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
588
- <span itemprop="name">
589
- <a
590
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000775/';"
591
- href="/name/nm0000775/"
592
- itemprop='url'>Christina Applegate</a></span></span>,
593
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
594
- <span itemprop="name">
595
- <a
596
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0748620/';"
597
- href="/name/nm0748620/"
598
- itemprop='url'>Paul Rudd</a></span></span>,
599
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
600
- <span itemprop="name">
601
- <a
602
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0136797/';"
603
- href="/name/nm0136797/"
604
- itemprop='url'>Steve Carell</a></span></span>
605
- </div>
606
- </td>
607
- </tr>
608
- <tr>
609
- <td class="overview-bottom">
610
- <a href="/title/tt1229340/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
611
- </a> <span class="wlb_wrapper">
612
- <a class="wlb_watchlist_lite" data-tconst="tt1229340" data-size="small" data-caller-name="Title">
613
- </a>
614
- </span>
615
- </td>
616
- </tr>
617
- </tbody>
618
- </table>
619
-
620
- <p class="thebuzz">
621
- <strong>The Buzz</strong>: The most quoted movie of the last decade gets its long-awaited sequel just in time for Christmas. Even though they've become major comedy stars in the years since, Will Ferrell, Paul Rudd and Steve Carell are all back to reprise their roles as idiotic, misogynistic, but oddly endearing newsmen. Comedy sequels are notoriously disappointing (I'm looking at you, <a href="/title/tt1411697/">The Hangover Part II</a> (2011)), and there's almost no chance it lives up to the original movie's legacy. Milk may have been a bad decision, but I'm optimistic that <i>Anchorman 2</i> isn't. -- Ray Subers
622
 
623
- </p>
624
- </div>
625
- <div class="list_item even" itemscope itemtype="http://schema.org/Movie">
626
-
627
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
628
- <tbody>
629
- <tr>
630
- <td rowspan="2" valign="top" id="img_primary">
631
- <div class="image">
632
- <a
633
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1800241/';"
634
- href="/title/tt1800241/"
635
- > <div class="hover-over-image zero-z-index">
636
- <img class="poster shadowed"
637
- height="209"
638
- width="140"
639
- alt="American Hustle (2013) Poster"
640
- title="American Hustle (2013)"
641
- src="http://ia.media-imdb.com/images/M/MV5BNjkxMTc0MDc4N15BMl5BanBnXkFtZTgwODUyNTI1MDE@._V1_SY209_CR0,0,140,209_.jpg"
642
- itemprop="image" />
643
- </div>
644
- </a> </div>
645
- </td>
646
- <td class="overview-top">
647
- <h4 itemprop="name"><a
648
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1800241/';"
649
- href="/title/tt1800241/"
650
- title="American Hustle (2013)"
651
- itemprop='url'> American Hustle (2013)</a></h4>
652
- <p class="cert-runtime-genre">
653
-
654
- <img title="R"
655
- alt="Certificate R"
656
- class="absmiddle certimage"
657
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V379391568_.png" />
658
- <time itemprop="duration" datetime="PT138M">138 min</time>
659
- &nbsp;&nbsp;-&nbsp;&nbsp;
660
- <span itemprop="genre">Crime</span>
661
- <span class="ghost">|</span>
662
- <span itemprop="genre">Drama</span>
663
-
664
- </p>
665
- <div class="rating_txt">
666
- <div class="metascore no_ratings">
667
- Metascore: <strong>89</strong><span class="mellow">/100</span>
668
- (<a title="26 review excerpts provided by Metacritic.com"
669
- onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
670
- href="/title/tt1800241/criticreviews">26 reviews</a>)
671
- </div>
672
- </div>
673
- <div class="outline" itemprop="description">
674
- A con man, Irving Rosenfeld, along with his seductive British partner, Sydney Prosser, is forced to work for a wild FBI agent, Richie DiMaso. DiMaso pushes them into a world of Jersey powerbrokers and mafia. </div>
675
- <div class="txt-block">
676
- <h5 class="inline">Director:</h5>
677
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
678
- <span itemprop="name">
679
- <a
680
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0751102/';"
681
- href="/name/nm0751102/"
682
- itemprop='url'>David O. Russell</a> </span>
683
- </span>
684
-
685
- </div>
686
- <div class="txt-block">
687
- <h5 class="inline">Stars:</h5>
688
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
689
- <span itemprop="name">
690
- <a
691
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000288/';"
692
- href="/name/nm0000288/"
693
- itemprop='url'>Christian Bale</a></span></span>,
694
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
695
- <span itemprop="name">
696
- <a
697
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0010736/';"
698
- href="/name/nm0010736/"
699
- itemprop='url'>Amy Adams</a></span></span>,
700
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
701
- <span itemprop="name">
702
- <a
703
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0177896/';"
704
- href="/name/nm0177896/"
705
- itemprop='url'>Bradley Cooper</a></span></span>,
706
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
707
- <span itemprop="name">
708
- <a
709
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2225369/';"
710
- href="/name/nm2225369/"
711
- itemprop='url'>Jennifer Lawrence</a></span></span>
712
- </div>
713
- </td>
714
- </tr>
715
- <tr>
716
- <td class="overview-bottom">
717
- <a href="/title/tt1800241/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
718
- </a> <span class="wlb_wrapper">
719
- <a class="wlb_watchlist_lite" data-tconst="tt1800241" data-size="small" data-caller-name="Title">
720
- </a>
721
- </span>
722
- </td>
723
- </tr>
724
- </tbody>
725
- </table>
726
-
727
- <p class="thebuzz">
728
- <strong>The Buzz</strong>: In the recent past, David O. Russell's pushy, questionable directing style seemed like a potential career-ender, but he's been on a box-office/Oscar-earning roll, and for his latest project he's mashed together the casts of his two most successful outings (<a href="/title/tt0964517/">The Fighter</a> (2010) and <a href="/title/tt1045658/">Silver Linings Playbook</a> (2012)) into a 70s-set true-crime drama with period styling that looks more outrageous than <a href="/title/tt1024648/">Argo</a> (2012)'s.
729
- </p>
730
- </div>
731
- <div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
732
-
733
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
734
- <tbody>
735
- <tr>
736
- <td rowspan="2" valign="top" id="img_primary">
737
- <div class="image">
738
- <a
739
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt2140373/';"
740
- href="/title/tt2140373/"
741
- > <div class="hover-over-image zero-z-index">
742
- <img class="poster shadowed"
743
- height="209"
744
- width="140"
745
- alt="Saving Mr. Banks (2013) Poster"
746
- title="Saving Mr. Banks (2013)"
747
- src="http://ia.media-imdb.com/images/M/MV5BMTc0MTQ3NzE4Nl5BMl5BanBnXkFtZTcwMzA4NDM5OQ@@._V1_SY209_CR0,0,140,209_.jpg"
748
- itemprop="image" />
749
- </div>
750
- </a> </div>
751
- </td>
752
- <td class="overview-top">
753
- <h4 itemprop="name"><a
754
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt2140373/';"
755
- href="/title/tt2140373/"
756
- title="Saving Mr. Banks (2013)"
757
- itemprop='url'> Saving Mr. Banks (2013)</a></h4>
758
- <p class="cert-runtime-genre">
759
-
760
- <img title="PG-13"
761
- alt="Certificate PG-13"
762
- class="absmiddle certimage"
763
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V379388624_.png" />
764
- <time itemprop="duration" datetime="PT125M">125 min</time>
765
- &nbsp;&nbsp;-&nbsp;&nbsp;
766
- <span itemprop="genre">Biography</span>
767
- <span class="ghost">|</span>
768
- <span itemprop="genre">Comedy</span>
769
- <span class="ghost">|</span>
770
- <span itemprop="genre">Drama</span>
771
- <span class="ghost">|</span>
772
- <span itemprop="genre">Family</span>
773
- <span class="ghost">|</span>
774
- <span itemprop="genre">History</span>
775
- <span class="ghost">|</span>
776
- <span itemprop="genre">Music</span>
777
-
778
- </p>
779
- <div class="rating_txt">
780
- <div class="metascore no_ratings">
781
- Metascore: <strong>66</strong><span class="mellow">/100</span>
782
- (<a title="34 review excerpts provided by Metacritic.com"
783
- onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
784
- href="/title/tt2140373/criticreviews">34 reviews</a>)
785
- </div>
786
- </div>
787
- <div class="outline" itemprop="description">
788
- Author P. L. Travers reflects on her difficult childhood while meeting with filmmaker Walt Disney during production for the adaptation of her novel, Mary Poppins. </div>
789
- <div class="txt-block">
790
- <h5 class="inline">Director:</h5>
791
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
792
- <span itemprop="name">
793
- <a
794
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0359387/';"
795
- href="/name/nm0359387/"
796
- itemprop='url'>John Lee Hancock</a> </span>
797
- </span>
798
-
799
- </div>
800
- <div class="txt-block">
801
- <h5 class="inline">Stars:</h5>
802
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
803
- <span itemprop="name">
804
- <a
805
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000668/';"
806
- href="/name/nm0000668/"
807
- itemprop='url'>Emma Thompson</a></span></span>,
808
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
809
- <span itemprop="name">
810
- <a
811
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000158/';"
812
- href="/name/nm0000158/"
813
- itemprop='url'>Tom Hanks</a></span></span>,
814
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
815
- <span itemprop="name">
816
- <a
817
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm4003520/';"
818
- href="/name/nm4003520/"
819
- itemprop='url'>Annie Rose Buckley</a></span></span>,
820
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
821
- <span itemprop="name">
822
- <a
823
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0268199/';"
824
- href="/name/nm0268199/"
825
- itemprop='url'>Colin Farrell</a></span></span>
826
- </div>
827
- </td>
828
- </tr>
829
- <tr>
830
- <td class="overview-bottom">
831
- <a href="/title/tt2140373/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
832
- </a> <span class="wlb_wrapper">
833
- <a class="wlb_watchlist_lite" data-tconst="tt2140373" data-size="small" data-caller-name="Title">
834
- </a>
835
- </span>
836
- </td>
837
- </tr>
838
- </tbody>
839
- </table>
840
-
841
- <p class="thebuzz">
842
- <strong>The Buzz</strong>: John Lee Hancock follows up <a href="/title/tt0878804/">The Blind Side</a> (2009) with what has to be one of the most bankable releases of the year - a bona fide return to movie stardom for Tom Hanks as Walt Disney. Ditto Emma Thompson and, well, pretty much everyone else in the cast.
843
- </p>
844
- </div>
845
- <div class="list_item even" itemscope itemtype="http://schema.org/Movie">
846
-
847
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
848
- <tbody>
849
- <tr>
850
- <td rowspan="2" valign="top" id="img_primary">
851
- <div class="image">
852
- <a
853
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1762399/';"
854
- href="/title/tt1762399/"
855
- > <div class="hover-over-image zero-z-index">
856
- <img class="poster shadowed"
857
- height="209"
858
- width="140"
859
- alt="Walking with Dinosaurs 3D (2013) Poster"
860
- title="Walking with Dinosaurs 3D (2013)"
861
- src="http://ia.media-imdb.com/images/M/MV5BMjE2OTc2MTk1Nl5BMl5BanBnXkFtZTgwNDg5NDU1MDE@._V1_SY209_CR0,0,140,209_.jpg"
862
- itemprop="image" />
863
- </div>
864
- </a> </div>
865
- </td>
866
- <td class="overview-top">
867
- <h4 itemprop="name"><a
868
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1762399/';"
869
- href="/title/tt1762399/"
870
- title="Walking with Dinosaurs 3D (2013)"
871
- itemprop='url'> Walking with Dinosaurs 3D (2013)</a></h4>
872
- <p class="cert-runtime-genre">
873
-
874
- <img title="PG"
875
- alt="Certificate PG"
876
- class="absmiddle certimage"
877
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg-1313470000._V379390491_.png" />
878
- <time itemprop="duration" datetime="PT87M">87 min</time>
879
- &nbsp;&nbsp;-&nbsp;&nbsp;
880
- <span itemprop="genre">Animation</span>
881
- <span class="ghost">|</span>
882
- <span itemprop="genre">Action</span>
883
- <span class="ghost">|</span>
884
- <span itemprop="genre">Family</span>
885
-
886
- </p>
887
- <div class="rating_txt">
888
- </div>
889
- <div class="outline" itemprop="description">
890
- See and feel what it was like when dinosaurs ruled the Earth, in a story where an underdog dino triumphs to become a hero for the ages. </div>
891
- <div class="txt-block">
892
- <h5 class="inline">Directors:</h5>
893
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
894
- <span itemprop="name">
895
- <a
896
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0176905/';"
897
- href="/name/nm0176905/"
898
- itemprop='url'>Barry Cook</a> </span>
899
- </span>
900
- <span class="ghost">|</span>
901
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
902
- <span itemprop="name">
903
- <a
904
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0631473/';"
905
- href="/name/nm0631473/"
906
- itemprop='url'>Neil Nightingale</a> </span>
907
- </span>
908
-
909
- </div>
910
- <div class="txt-block">
911
- <h5 class="inline">Stars:</h5>
912
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
913
- <span itemprop="name">
914
- <a
915
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm2185462/';"
916
- href="/name/nm2185462/"
917
- itemprop='url'>Charlie Rowe</a></span></span>,
918
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
919
- <span itemprop="name">
920
- <a
921
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0881631/';"
922
- href="/name/nm0881631/"
923
- itemprop='url'>Karl Urban</a></span></span>,
924
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
925
- <span itemprop="name">
926
- <a
927
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm3886028/';"
928
- href="/name/nm3886028/"
929
- itemprop='url'>Angourie Rice</a></span></span>,
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/nm0000491/';"
934
- href="/name/nm0000491/"
935
- itemprop='url'>John Leguizamo</a></span></span>
936
- </div>
937
- </td>
938
- </tr>
939
- <tr>
940
- <td class="overview-bottom">
941
- <a href="/title/tt1762399/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
942
- </a> <span class="wlb_wrapper">
943
- <a class="wlb_watchlist_lite" data-tconst="tt1762399" data-size="small" data-caller-name="Title">
944
- </a>
945
- </span>
946
- </td>
947
- </tr>
948
- </tbody>
949
- </table>
950
-
951
- <p class="thebuzz">
952
- <strong>The Buzz</strong>: Fox has kept a lid on this grand-scale adaptation of the BBC mini-series (and eventual ongoing series) after a breakout debut at the American Film Market in 2010 (an event where any number of projects are announced but never seem to materialize).
953
- </p>
954
- </div>
955
- <div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
956
-
957
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
958
- <tbody>
959
- <tr>
960
- <td rowspan="2" valign="top" id="img_primary">
961
- <div class="image">
962
- <a
963
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1798709/';"
964
- href="/title/tt1798709/"
965
- > <div class="hover-over-image zero-z-index">
966
- <img class="poster shadowed"
967
- height="209"
968
- width="140"
969
- alt="Her (2013) Poster"
970
- title="Her (2013)"
971
- src="http://ia.media-imdb.com/images/M/MV5BMjA1Nzk0OTM2OF5BMl5BanBnXkFtZTgwNjU2NjEwMDE@._V1_SY209_CR0,0,140,209_.jpg"
972
- itemprop="image" />
973
- </div>
974
- </a> </div>
975
- </td>
976
- <td class="overview-top">
977
- <h4 itemprop="name"><a
978
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1798709/';"
979
- href="/title/tt1798709/"
980
- title="Her (2013)"
981
- itemprop='url'> Her (2013)</a></h4>
982
- <p class="cert-runtime-genre">
983
-
984
- <img title="R"
985
- alt="Certificate R"
986
- class="absmiddle certimage"
987
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V379391568_.png" />
988
- <time itemprop="duration" datetime="PT120M">120 min</time>
989
- &nbsp;&nbsp;-&nbsp;&nbsp;
990
- <span itemprop="genre">Comedy</span>
991
- <span class="ghost">|</span>
992
- <span itemprop="genre">Drama</span>
993
- <span class="ghost">|</span>
994
- <span itemprop="genre">Romance</span>
995
- <span class="ghost">|</span>
996
- <span itemprop="genre">Sci-Fi</span>
997
-
998
- </p>
999
- <div class="rating_txt">
1000
- <div class="metascore no_ratings">
1001
- Metascore: <strong>90</strong><span class="mellow">/100</span>
1002
- (<a title="8 review excerpts provided by Metacritic.com"
1003
- onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
1004
- href="/title/tt1798709/criticreviews">8 reviews</a>)
1005
- </div>
1006
- </div>
1007
- <div class="outline" itemprop="description">
1008
- A lonely writer develops an unlikely relationship with his newly purchased operating system that's designed to meet his every need. </div>
1009
- <div class="txt-block">
1010
- <h5 class="inline">Director:</h5>
1011
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
1012
- <span itemprop="name">
1013
- <a
1014
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0005069/';"
1015
- href="/name/nm0005069/"
1016
- itemprop='url'>Spike Jonze</a> </span>
1017
- </span>
1018
-
1019
- </div>
1020
- <div class="txt-block">
1021
- <h5 class="inline">Stars:</h5>
1022
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1023
- <span itemprop="name">
1024
- <a
1025
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0001618/';"
1026
- href="/name/nm0001618/"
1027
- itemprop='url'>Joaquin Phoenix</a></span></span>,
1028
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1029
- <span itemprop="name">
1030
- <a
1031
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0010736/';"
1032
- href="/name/nm0010736/"
1033
- itemprop='url'>Amy Adams</a></span></span>,
1034
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1035
- <span itemprop="name">
1036
- <a
1037
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0424060/';"
1038
- href="/name/nm0424060/"
1039
- itemprop='url'>Scarlett Johansson</a></span></span>,
1040
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1041
- <span itemprop="name">
1042
- <a
1043
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm1913734/';"
1044
- href="/name/nm1913734/"
1045
- itemprop='url'>Rooney Mara</a></span></span>
1046
- </div>
1047
- </td>
1048
- </tr>
1049
- <tr>
1050
- <td class="overview-bottom">
1051
- <a href="/title/tt1798709/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
1052
- </a> <span class="wlb_wrapper">
1053
- <a class="wlb_watchlist_lite" data-tconst="tt1798709" data-size="small" data-caller-name="Title">
1054
- </a>
1055
- </span>
1056
- </td>
1057
- </tr>
1058
- </tbody>
1059
- </table>
1060
-
1061
- <p class="thebuzz">
1062
- <strong>The Buzz</strong>: It's so cool that Warner Bros. is taking a chance on Spike Jonze's offbeat follow-up to <a href="/title/tt0386117/">Where the Wild Things Are</a> (2009); it's hard to imagine film executives looking up from their tablets in excitement after being pitched a story about a man who falls in love with an operating system. Starring foot-in-mouth specialist Joaquin Phoenix.
1063
- </p>
1064
- </div>
1065
- <h4 class="li_group"><a name="Dec27">December 27&nbsp;</a></h4>
1066
- <div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
1067
-
1068
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
1069
- <tbody>
1070
- <tr>
1071
- <td rowspan="2" valign="top" id="img_primary">
1072
- <div class="image">
1073
- <a
1074
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt0359950/';"
1075
- href="/title/tt0359950/"
1076
- > <div class="hover-over-image zero-z-index">
1077
- <img class="poster shadowed"
1078
- height="209"
1079
- width="140"
1080
- alt="The Secret Life of Walter Mitty (2013) Poster"
1081
- title="The Secret Life of Walter Mitty (2013)"
1082
- src="http://ia.media-imdb.com/images/M/MV5BODYwNDYxNDk1Nl5BMl5BanBnXkFtZTgwOTAwMTk2MDE@._V1_SY209_CR0,0,140,209_.jpg"
1083
- itemprop="image" />
1084
- </div>
1085
- </a> </div>
1086
- </td>
1087
- <td class="overview-top">
1088
- <h4 itemprop="name"><a
1089
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt0359950/';"
1090
- href="/title/tt0359950/"
1091
- title="The Secret Life of Walter Mitty (2013)"
1092
- itemprop='url'> The Secret Life of Walter Mitty (2013)</a></h4>
1093
- <p class="cert-runtime-genre">
1094
-
1095
- <img title="PG"
1096
- alt="Certificate PG"
1097
- class="absmiddle certimage"
1098
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg-1313470000._V379390491_.png" />
1099
- <time itemprop="duration" datetime="PT114M">114 min</time>
1100
- &nbsp;&nbsp;-&nbsp;&nbsp;
1101
- <span itemprop="genre">Adventure</span>
1102
- <span class="ghost">|</span>
1103
- <span itemprop="genre">Comedy</span>
1104
- <span class="ghost">|</span>
1105
- <span itemprop="genre">Drama</span>
1106
- <span class="ghost">|</span>
1107
- <span itemprop="genre">Fantasy</span>
1108
-
1109
- </p>
1110
- <div class="rating_txt">
1111
- <div class="metascore no_ratings">
1112
- Metascore: <strong>44</strong><span class="mellow">/100</span>
1113
- (<a title="5 review excerpts provided by Metacritic.com"
1114
- onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
1115
- href="/title/tt0359950/criticreviews">5 reviews</a>)
1116
- </div>
1117
- </div>
1118
- <div class="outline" itemprop="description">
1119
- A day-dreamer escapes his anonymous life by disappearing into a world of fantasies filled with heroism, romance and action. When his job along with that of his co-worker are threatened, he takes action in the real world embarking on a global journey that turns into an adventure more extraordinary than anything he could have ever imagined. </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/nm0001774/';"
1126
- href="/name/nm0001774/"
1127
- itemprop='url'>Ben Stiller</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/nm0001774/';"
1137
- href="/name/nm0001774/"
1138
- itemprop='url'>Ben Stiller</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/nm1325419/';"
1143
- href="/name/nm1325419/"
1144
- itemprop='url'>Kristen Wiig</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/nm0004395/';"
1149
- href="/name/nm0004395/"
1150
- itemprop='url'>Adam Scott</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/nm0652663/';"
1155
- href="/name/nm0652663/"
1156
- itemprop='url'>Patton Oswalt</a></span></span>
1157
- </div>
1158
- </td>
1159
- </tr>
1160
- <tr>
1161
- <td class="overview-bottom">
1162
- <a href="/title/tt0359950/?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="tt0359950" 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>: The nicest thing we can say about this remake is: it's the first time we've been curious about a Ben Stiller project since ... <a href="/title/tt1234654/">Greenberg</a> (2010). And something special had to attract Kristen Wiig to make her first major-release appearance since <a href="/title/tt1478338/">Bridesmaids</a> (2011), right?
1174
- </p>
1175
- </div>
1176
- <div class="list_item even" itemscope itemtype="http://schema.org/Movie">
1177
-
1178
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
1179
- <tbody>
1180
- <tr>
1181
- <td rowspan="2" valign="top" id="img_primary">
1182
- <div class="image">
1183
- <a
1184
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1091191/';"
1185
- href="/title/tt1091191/"
1186
- > <div class="hover-over-image zero-z-index">
1187
- <img class="poster shadowed"
1188
- height="209"
1189
- width="140"
1190
- alt="Lone Survivor (2013) Poster"
1191
- title="Lone Survivor (2013)"
1192
- src="http://ia.media-imdb.com/images/M/MV5BMjA0NTgwOTk5Ml5BMl5BanBnXkFtZTcwMjE3NDc5OQ@@._V1_SY209_CR0,0,140,209_.jpg"
1193
- itemprop="image" />
1194
- </div>
1195
- </a> </div>
1196
- </td>
1197
- <td class="overview-top">
1198
- <h4 itemprop="name"><a
1199
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1091191/';"
1200
- href="/title/tt1091191/"
1201
- title="Lone Survivor (2013)"
1202
- itemprop='url'> Lone Survivor (2013)</a></h4>
1203
- <p class="cert-runtime-genre">
1204
-
1205
- <img title="R"
1206
- alt="Certificate R"
1207
- class="absmiddle certimage"
1208
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V379391568_.png" />
1209
- <span itemprop="genre">Action</span>
1210
- <span class="ghost">|</span>
1211
- <span itemprop="genre">Drama</span>
1212
- <span class="ghost">|</span>
1213
- <span itemprop="genre">Thriller</span>
1214
- <span class="ghost">|</span>
1215
- <span itemprop="genre">War</span>
1216
-
1217
- </p>
1218
- <div class="rating_txt">
1219
- <div class="metascore no_ratings">
1220
- Metascore: <strong>60</strong><span class="mellow">/100</span>
1221
- (<a title="4 review excerpts provided by Metacritic.com"
1222
- onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
1223
- href="/title/tt1091191/criticreviews">4 reviews</a>)
1224
- </div>
1225
- </div>
1226
- <div class="outline" itemprop="description">
1227
- Based on the failed June 28, 2005 mission "Operation Red Wings". Four members of SEAL Team 10 were tasked with the mission to capture or kill notorious Taliban leader Ahmad Shahd. </div>
1228
- <div class="txt-block">
1229
- <h5 class="inline">Director:</h5>
1230
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
1231
- <span itemprop="name">
1232
- <a
1233
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0000916/';"
1234
- href="/name/nm0000916/"
1235
- itemprop='url'>Peter Berg</a> </span>
1236
- </span>
1237
-
1238
- </div>
1239
- <div class="txt-block">
1240
- <h5 class="inline">Stars:</h5>
1241
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1242
- <span itemprop="name">
1243
- <a
1244
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000242/';"
1245
- href="/name/nm0000242/"
1246
- itemprop='url'>Mark Wahlberg</a></span></span>,
1247
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1248
- <span itemprop="name">
1249
- <a
1250
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0004936/';"
1251
- href="/name/nm0004936/"
1252
- itemprop='url'>Ben Foster</a></span></span>,
1253
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1254
- <span itemprop="name">
1255
- <a
1256
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0051509/';"
1257
- href="/name/nm0051509/"
1258
- itemprop='url'>Eric Bana</a></span></span>,
1259
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1260
- <span itemprop="name">
1261
- <a
1262
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0077595/';"
1263
- href="/name/nm0077595/"
1264
- itemprop='url'>Josh Berry</a></span></span>
1265
- </div>
1266
- </td>
1267
- </tr>
1268
- <tr>
1269
- <td class="overview-bottom">
1270
- <a href="/title/tt1091191/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
1271
- </a> <span class="wlb_wrapper">
1272
- <a class="wlb_watchlist_lite" data-tconst="tt1091191" data-size="small" data-caller-name="Title">
1273
- </a>
1274
- </span>
1275
- </td>
1276
- </tr>
1277
- </tbody>
1278
- </table>
1279
-
1280
- <p class="thebuzz">
1281
- <strong>The Buzz</strong>: One of two Oscar hopefuls for Universal Pictures (the other being <a href="/title/tt1979320/">Rush</a> (2013)) Peter Berg's contemporary wartime picture is apparently one tough sit, with a small team of Navy SEALS ultimately facing down 200-strong Al Qaeda soldiers. Audiences definitely accept Mark Wahlberg in serious-action mode, and this platform release should find momentum throughout the month of January.
1282
- </p>
1283
- </div>
1284
- <div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
1285
-
1286
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
1287
- <tbody>
1288
- <tr>
1289
- <td rowspan="2" valign="top" id="img_primary">
1290
- <div class="image">
1291
- <a
1292
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt0993846/';"
1293
- href="/title/tt0993846/"
1294
- > <div class="hover-over-image zero-z-index">
1295
- <img class="poster shadowed"
1296
- height="209"
1297
- width="140"
1298
- alt="The Wolf of Wall Street (2013) Poster"
1299
- title="The Wolf of Wall Street (2013)"
1300
- src="http://ia.media-imdb.com/images/M/MV5BMjIxMjgxNTk0MF5BMl5BanBnXkFtZTgwNjIyOTg2MDE@._V1_SY209_CR0,0,140,209_.jpg"
1301
- itemprop="image" />
1302
- </div>
1303
- </a> </div>
1304
- </td>
1305
- <td class="overview-top">
1306
- <h4 itemprop="name"><a
1307
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt0993846/';"
1308
- href="/title/tt0993846/"
1309
- title="The Wolf of Wall Street (2013)"
1310
- itemprop='url'> The Wolf of Wall Street (2013)</a></h4>
1311
- <p class="cert-runtime-genre">
1312
-
1313
- <img title="R"
1314
- alt="Certificate R"
1315
- class="absmiddle certimage"
1316
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V379391568_.png" />
1317
- <time itemprop="duration" datetime="PT180M">180 min</time>
1318
- &nbsp;&nbsp;-&nbsp;&nbsp;
1319
- <span itemprop="genre">Biography</span>
1320
- <span class="ghost">|</span>
1321
- <span itemprop="genre">Comedy</span>
1322
- <span class="ghost">|</span>
1323
- <span itemprop="genre">Crime</span>
1324
- <span class="ghost">|</span>
1325
- <span itemprop="genre">Drama</span>
1326
-
1327
- </p>
1328
- <div class="rating_txt">
1329
- </div>
1330
- <div class="outline" itemprop="description">
1331
- Based on the true story of Jordan Belfort, from his rise to a wealthy stockbroker living the high life to his fall involving crime, corruption and the federal government. </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/nm0000217/';"
1338
- href="/name/nm0000217/"
1339
- itemprop='url'>Martin Scorsese</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/nm0000138/';"
1349
- href="/name/nm0000138/"
1350
- itemprop='url'>Leonardo DiCaprio</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/nm0126260/';"
1355
- href="/name/nm0126260/"
1356
- itemprop='url'>P.J. Byrne</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/nm0269463/';"
1361
- href="/name/nm0269463/"
1362
- itemprop='url'>Jon Favreau</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/nm0005069/';"
1367
- href="/name/nm0005069/"
1368
- itemprop='url'>Spike Jonze</a></span></span>
1369
- </div>
1370
- </td>
1371
- </tr>
1372
- <tr>
1373
- <td class="overview-bottom">
1374
- <a href="/title/tt0993846/?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="tt0993846" 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>: We get the feeling that Martin Scorsese will keep working with Leonardo DiCaprio until he helps his leading man secure his first Best Actor Oscar win. Remember how well the contemporary crime genre worked for Scorsese with <a href="/title/tt0407887/">The Departed</a> (2006), though politics -- widely believed to be his unwillingness to be positioned ahead of his co-stars -- kept DiCaprio out of the Oscar hunt that year. But this is a leading role; the fine supporting cast exists to provide all the necessary context and shading to flesh out this real-life story based on former broker Jordan Belfort's best-selling memoir.
1386
- </p>
1387
- </div>
1388
- <div class="list_item even" itemscope itemtype="http://schema.org/Movie">
1389
-
1390
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
1391
- <tbody>
1392
- <tr>
1393
- <td rowspan="2" valign="top" id="img_primary">
1394
- <div class="image">
1395
- <a
1396
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1322269/';"
1397
- href="/title/tt1322269/"
1398
- > <div class="hover-over-image zero-z-index">
1399
- <img class="poster shadowed"
1400
- height="209"
1401
- width="140"
1402
- alt="August: Osage County (2013) Poster"
1403
- title="August: Osage County (2013)"
1404
- src="http://ia.media-imdb.com/images/M/MV5BNzQ5ODE4NTcxNV5BMl5BanBnXkFtZTgwNjkyNDQ0MDE@._V1_SY209_CR0,0,140,209_.jpg"
1405
- itemprop="image" />
1406
- </div>
1407
- </a> </div>
1408
- </td>
1409
- <td class="overview-top">
1410
- <h4 itemprop="name"><a
1411
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1322269/';"
1412
- href="/title/tt1322269/"
1413
- title="August: Osage County (2013)"
1414
- itemprop='url'> August: Osage County (2013)</a></h4>
1415
- <p class="cert-runtime-genre">
1416
-
1417
- <img title="R"
1418
- alt="Certificate R"
1419
- class="absmiddle certimage"
1420
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/r-2493392566._V379391568_.png" />
1421
- <time itemprop="duration" datetime="PT121M">121 min</time>
1422
- &nbsp;&nbsp;-&nbsp;&nbsp;
1423
- <span itemprop="genre">Comedy</span>
1424
- <span class="ghost">|</span>
1425
- <span itemprop="genre">Drama</span>
1426
-
1427
- </p>
1428
- <div class="rating_txt">
1429
- <div class="metascore no_ratings">
1430
- Metascore: <strong>67</strong><span class="mellow">/100</span>
1431
- (<a title="8 review excerpts provided by Metacritic.com"
1432
- onclick="(new Image()).src='/rg/title-starbar/critics-reviews/images/b.gif?link=criticreviews';"
1433
- href="/title/tt1322269/criticreviews">8 reviews</a>)
1434
- </div>
1435
- </div>
1436
- <div class="outline" itemprop="description">
1437
- A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Oklahoma house they grew up in, and to the dysfunctional woman who raised them. </div>
1438
- <div class="txt-block">
1439
- <h5 class="inline">Director:</h5>
1440
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
1441
- <span itemprop="name">
1442
- <a
1443
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0920274/';"
1444
- href="/name/nm0920274/"
1445
- itemprop='url'>John Wells</a> </span>
1446
- </span>
1447
-
1448
- </div>
1449
- <div class="txt-block">
1450
- <h5 class="inline">Stars:</h5>
1451
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1452
- <span itemprop="name">
1453
- <a
1454
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000658/';"
1455
- href="/name/nm0000658/"
1456
- itemprop='url'>Meryl Streep</a></span></span>,
1457
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1458
- <span itemprop="name">
1459
- <a
1460
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000551/';"
1461
- href="/name/nm0000551/"
1462
- itemprop='url'>Dermot Mulroney</a></span></span>,
1463
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1464
- <span itemprop="name">
1465
- <a
1466
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000210/';"
1467
- href="/name/nm0000210/"
1468
- itemprop='url'>Julia Roberts</a></span></span>,
1469
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1470
- <span itemprop="name">
1471
- <a
1472
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000496/';"
1473
- href="/name/nm0000496/"
1474
- itemprop='url'>Juliette Lewis</a></span></span>
1475
- </div>
1476
- </td>
1477
- </tr>
1478
- <tr>
1479
- <td class="overview-bottom">
1480
- <a href="/title/tt1322269/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
1481
- </a> <span class="wlb_wrapper">
1482
- <a class="wlb_watchlist_lite" data-tconst="tt1322269" data-size="small" data-caller-name="Title">
1483
- </a>
1484
- </span>
1485
- </td>
1486
- </tr>
1487
- </tbody>
1488
- </table>
1489
-
1490
- <p class="thebuzz">
1491
- <strong>The Buzz</strong>: Meryl Streep is back after a year off from the Oscar race with a central role in the film adaptation of Tracy Letts's Pulitzer Prize-winning play. With Letts translating his own work to the screen, we have great faith in second go-round as director (of course, he's helmed episodes of "Shameless", too). The only question mark: This is a Weinstein Company release, and since the studio invested in a clutch of year-end awards candidates, which one will emerge as their frontrunner? Each year, at least one of their gems is cast aside.
1492
- </p>
1493
- </div>
1494
- <div class="list_item odd" itemscope itemtype="http://schema.org/Movie">
1495
-
1496
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
1497
- <tbody>
1498
- <tr>
1499
- <td rowspan="2" valign="top" id="img_primary">
1500
- <div class="image">
1501
- <a
1502
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1335975/';"
1503
- href="/title/tt1335975/"
1504
- > <div class="hover-over-image zero-z-index">
1505
- <img class="poster shadowed"
1506
- height="209"
1507
- width="140"
1508
- alt="47 Ronin (2013) Poster"
1509
- title="47 Ronin (2013)"
1510
- src="http://ia.media-imdb.com/images/M/MV5BMTc0MjE2NzE0OV5BMl5BanBnXkFtZTgwNTU5MjE1MDE@._V1_SX140_CR0,0,140,209_.jpg"
1511
- itemprop="image" />
1512
- </div>
1513
- </a> </div>
1514
- </td>
1515
- <td class="overview-top">
1516
- <h4 itemprop="name"><a
1517
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1335975/';"
1518
- href="/title/tt1335975/"
1519
- title="47 Ronin (2013)"
1520
- itemprop='url'> 47 Ronin (2013)</a></h4>
1521
- <p class="cert-runtime-genre">
1522
-
1523
- <img title="PG-13"
1524
- alt="Certificate PG-13"
1525
- class="absmiddle certimage"
1526
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V379388624_.png" />
1527
- <time itemprop="duration" datetime="PT119M">119 min</time>
1528
- &nbsp;&nbsp;-&nbsp;&nbsp;
1529
- <span itemprop="genre">Action</span>
1530
- <span class="ghost">|</span>
1531
- <span itemprop="genre">Adventure</span>
1532
- <span class="ghost">|</span>
1533
- <span itemprop="genre">Fantasy</span>
1534
-
1535
- </p>
1536
- <div class="rating_txt">
1537
- </div>
1538
- <div class="outline" itemprop="description">
1539
- A band of samurai set out to avenge the death and dishonor of their master at the hands of a ruthless shogun. </div>
1540
- <div class="txt-block">
1541
- <h5 class="inline">Director:</h5>
1542
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
1543
- <span itemprop="name">
1544
- <a
1545
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0727754/';"
1546
- href="/name/nm0727754/"
1547
- itemprop='url'>Carl Rinsch</a> </span>
1548
- </span>
1549
-
1550
- </div>
1551
- <div class="txt-block">
1552
- <h5 class="inline">Stars:</h5>
1553
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1554
- <span itemprop="name">
1555
- <a
1556
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000206/';"
1557
- href="/name/nm0000206/"
1558
- itemprop='url'>Keanu Reeves</a></span></span>,
1559
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1560
- <span itemprop="name">
1561
- <a
1562
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0760796/';"
1563
- href="/name/nm0760796/"
1564
- itemprop='url'>Hiroyuki Sanada</a></span></span>,
1565
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1566
- <span itemprop="name">
1567
- <a
1568
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0793069/';"
1569
- href="/name/nm0793069/"
1570
- itemprop='url'>Kô Shibasaki</a></span></span>,
1571
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1572
- <span itemprop="name">
1573
- <a
1574
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0038355/';"
1575
- href="/name/nm0038355/"
1576
- itemprop='url'>Tadanobu Asano</a></span></span>
1577
- </div>
1578
- </td>
1579
- </tr>
1580
- <tr>
1581
- <td class="overview-bottom">
1582
- <a href="/title/tt1335975/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
1583
- </a> <span class="wlb_wrapper">
1584
- <a class="wlb_watchlist_lite" data-tconst="tt1335975" data-size="small" data-caller-name="Title">
1585
- </a>
1586
- </span>
1587
- </td>
1588
- </tr>
1589
- </tbody>
1590
- </table>
1591
-
1592
- <p class="thebuzz">
1593
- <strong>The Buzz</strong>: Keanu Reeves playing a samurai is the kind of casting that put us in a curious mood, but there's a larger story to focus on here: Carl Rinsch's first outing as director has sparked rumors and reports of a swollen production budget (somewhere around the $200 million mark) and an unhappy studio (Universal) who pulled an executive takeover in the editing suite. Add in an ever-shifting release date (originally planned for November 2012) and it's easy to see why this project has the biggest question mark hovering over it.
1594
- </p>
1595
- </div>
1596
- <div class="list_item even" itemscope itemtype="http://schema.org/Movie">
1597
-
1598
- <table cellspacing="0" cellpadding="0" border="0" class="nm-title-overview-widget-layout">
1599
- <tbody>
1600
- <tr>
1601
- <td rowspan="2" valign="top" id="img_primary">
1602
- <div class="image">
1603
- <a
1604
- onclick="(new Image()).src='/rg/coming-soon/overview-poster/images/b.gif?link=/title/tt1661382/';"
1605
- href="/title/tt1661382/"
1606
- > <div class="hover-over-image zero-z-index">
1607
- <img class="poster shadowed"
1608
- height="209"
1609
- width="140"
1610
- alt="Grudge Match (2013) Poster"
1611
- title="Grudge Match (2013)"
1612
- src="http://ia.media-imdb.com/images/M/MV5BMTY3NTkxMTgzNV5BMl5BanBnXkFtZTgwNjg0MzE2MDE@._V1_SY209_CR0,0,140,209_.jpg"
1613
- itemprop="image" />
1614
- </div>
1615
- </a> </div>
1616
- </td>
1617
- <td class="overview-top">
1618
- <h4 itemprop="name"><a
1619
- onclick="(new Image()).src='/rg/coming-soon/overview-title/images/b.gif?link=/title/tt1661382/';"
1620
- href="/title/tt1661382/"
1621
- title="Grudge Match (2013)"
1622
- itemprop='url'> Grudge Match (2013)</a></h4>
1623
- <p class="cert-runtime-genre">
1624
-
1625
- <img title="PG-13"
1626
- alt="Certificate PG-13"
1627
- class="absmiddle certimage"
1628
- src="http://ia.media-imdb.com/images/G/01/imdb/images/certificates/us/pg_13-2767653680._V379388624_.png" />
1629
- <time itemprop="duration" datetime="PT113M">113 min</time>
1630
- &nbsp;&nbsp;-&nbsp;&nbsp;
1631
- <span itemprop="genre">Comedy</span>
1632
- <span class="ghost">|</span>
1633
- <span itemprop="genre">Sport</span>
1634
-
1635
- </p>
1636
- <div class="rating_txt">
1637
- </div>
1638
- <div class="outline" itemprop="description">
1639
- A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match. </div>
1640
- <div class="txt-block">
1641
- <h5 class="inline">Director:</h5>
1642
- <span itemprop="director" itemscope itemtype="http://schema.org/Person">
1643
- <span itemprop="name">
1644
- <a
1645
- onclick="(new Image()).src='/rg/coming-soon/overview-director/images/b.gif?link=/name/nm0781842/';"
1646
- href="/name/nm0781842/"
1647
- itemprop='url'>Peter Segal</a> </span>
1648
- </span>
1649
-
1650
- </div>
1651
- <div class="txt-block">
1652
- <h5 class="inline">Stars:</h5>
1653
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1654
- <span itemprop="name">
1655
- <a
1656
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000134/';"
1657
- href="/name/nm0000134/"
1658
- itemprop='url'>Robert De Niro</a></span></span>,
1659
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1660
- <span itemprop="name">
1661
- <a
1662
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000230/';"
1663
- href="/name/nm0000230/"
1664
- itemprop='url'>Sylvester Stallone</a></span></span>,
1665
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1666
- <span itemprop="name">
1667
- <a
1668
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000107/';"
1669
- href="/name/nm0000107/"
1670
- itemprop='url'>Kim Basinger</a></span></span>,
1671
- <span itemprop="actors" itemscope itemtype="http://schema.org/Person">
1672
- <span itemprop="name">
1673
- <a
1674
- onclick="(new Image()).src='/rg/coming-soon/overview-stars/images/b.gif?link=/name/nm0000273/';"
1675
- href="/name/nm0000273/"
1676
- itemprop='url'>Alan Arkin</a></span></span>
1677
- </div>
1678
- </td>
1679
- </tr>
1680
- <tr>
1681
- <td class="overview-bottom">
1682
- <a href="/title/tt1661382/?ref_=cs_ov_vi#lb" class="btn2 btn2_simple small title-trailer" itemprop="trailer"> Watch Trailer
1683
- </a> <span class="wlb_wrapper">
1684
- <a class="wlb_watchlist_lite" data-tconst="tt1661382" data-size="small" data-caller-name="Title">
1685
- </a>
1686
- </span>
1687
- </td>
1688
- </tr>
1689
- </tbody>
1690
- </table>
1691
-
1692
- <p class="thebuzz">
1693
- <strong>The Buzz</strong>: Proof that Robert De Niro might just do anything at this stage of his career is he willingness to step into the ring against Sylvester Stallone to satirize the genre that brought both men the most legitimate acclaim of their respective careers. But some noteworthy writers have worked on this script, so hopefully the dialogue and scenarios won't be wasted on the entire cast. Can we hope for a foul-mouthed Kim Basinger?
1694
- </p>
1695
- </div>
1696
- </div>
1697
-
1698
- <div class="see-more">
1699
- <div class="outline keyword">
1700
- <br /><p>IMDb is your definitive source for discovering the latest new movies coming soon to theaters.
1701
- Long before the movies even reach theaters, go to IMDb to get the latest buzz, watch the hottest
1702
- trailers, see photos, find release dates, read reviews, and learn all about the full cast and crew.
1703
- IMDb is your ultimate source for new movies and our "Coming Soon" pages provide you an easy way to
1704
- learn about upcoming movies, many times before the final release dates have been announced. As you
1705
- discover new movies, add them to your Watchlist. The IMDb Watchlist is a quick and easy way to
1706
- track and remember all the upcoming movies that you want to see. Remember, IMDb is your source for
1707
- new movies.</p><br />
1708
- </div>
1709
- &laquo;&nbsp;<a
1710
- onclick="(new Image()).src='/rg/coming-soon/previous-month/images/b.gif?link=/movies-coming-soon/2013-12/';"
1711
- href="/movies-coming-soon/2013-12/"
1712
- >Prev</a>&nbsp;
1713
-
1714
- <select name="sort" class="sort_field date_select" onchange="window.open(this.options[this.selectedIndex].value,'_top')">
1715
- <option selected="selected"
1716
- value="/movies-coming-soon/2013-12/">
1717
- December&nbsp;&nbsp;2013
1718
- </option>
1719
- <option
1720
- value="/movies-coming-soon/2014-01/">
1721
- January&nbsp;&nbsp;&nbsp;2014
1722
- </option>
1723
- <option
1724
- value="/movies-coming-soon/2014-02/">
1725
- February&nbsp;&nbsp;2014
1726
- </option>
1727
- <option
1728
- value="/movies-coming-soon/2014-03/">
1729
- March&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
1730
- </option>
1731
- <option
1732
- value="/movies-coming-soon/2014-04/">
1733
- April&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
1734
- </option>
1735
- <option
1736
- value="/movies-coming-soon/2014-05/">
1737
- May&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
1738
- </option>
1739
- <option
1740
- value="/movies-coming-soon/2014-06/">
1741
- June&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
1742
- </option>
1743
- <option
1744
- value="/movies-coming-soon/2014-07/">
1745
- July&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2014
1746
- </option>
1747
- <option
1748
- value="/movies-coming-soon/2014-08/">
1749
- August&nbsp;&nbsp;&nbsp;&nbsp;2014
1750
- </option>
1751
- <option
1752
- value="/movies-coming-soon/2014-09/">
1753
- September&nbsp;2014
1754
- </option>
1755
- <option
1756
- value="/movies-coming-soon/2014-10/">
1757
- October&nbsp;&nbsp;&nbsp;2014
1758
- </option>
1759
- <option
1760
- value="/movies-coming-soon/2014-11/">
1761
- November&nbsp;&nbsp;2014
1762
- </option>
1763
- </select>
1764
- &nbsp;<a
1765
- onclick="(new Image()).src='/rg/coming-soon/next-month/images/b.gif?link=/movies-coming-soon/2014-01/';"
1766
- href="/movies-coming-soon/2014-01/"
1767
- >Next</a>&nbsp;&raquo;
1768
- <br class="clear" />
1769
- </div>
1770
-
1771
- </div>
1772
- </div>
1773
-
1774
- <div id="sidebar">
1775
-
1776
- <!-- no content received for slot: top_rhs -->
1777
-
1778
- <div class="aux-content-widget-2" id="social-share-widget">
1779
- <div class="social">
1780
- <div class="social_networking">
1781
- <span><strong>Share</strong> this page:</span>
1782
- <a onclick="window.open('http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F', 'newWindow', 'width=626, height=436'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F" target="_blank" title="Share on Facebook" class="share_icon facebook"></a>
1783
- <a onclick="window.open('http://twitter.com/intent/tweet?text=New%20Movies%20Coming%20Soon%20-%20http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F', 'newWindow', 'width=815, height=436'); return false;" href="http://twitter.com/intent/tweet?text=New%20Movies%20Coming%20Soon%20-%20http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F" target="_blank" title="Share on Twitter" class="share_icon twitter"></a>
1784
- <a onclick="$('div.social input[name=share-link]').show().select(); return false;" title="Share the page" class="share_icon share_url_link" href="http://www.imdb.com/movies-coming-soon/"></a>
1785
- </div>
1786
- <input type="text" name="share-link" value="http://www.imdb.com/movies-coming-soon/" readonly>
1787
- </div>
1788
- <script type="text/javascript">generic.monitoring.start_timing("facebook_like_iframe");</script>
1789
- <div class="social_networking_like">
1790
- <iframe
1791
- id="iframe_like"
1792
- name="fbLikeIFrame_0"
1793
- class="social-iframe"
1794
- scrolling="no"
1795
- frameborder="0"
1796
- allowTransparency="allowTransparency"
1797
- ref="http://www.imdb.com/movies-coming-soon/"
1798
- width=280
1799
- height=65></iframe>
1800
- </div>
1801
- </div>
1802
-
1803
-
1804
-
1805
-
1806
- <!-- no content received for slot: bottom_rhs -->
1807
-
1808
- </div>
1809
- <br class="clear"/>
1810
- </div>
1811
-
1812
- <br class="clear" />
1813
- </div>
1814
-
1815
-
1816
- <div id="footer" class="ft">
1817
- <hr width="100%" size=1>
1818
- <div id="rvi-div">
1819
- <div class="recently-viewed">&nbsp;</div>
1820
- <br class="clear">
1821
- <hr width="100%" size="1">
1822
- </div>
1823
- <p class="footer" align="center">
1824
- <a
1825
- onclick="(new Image()).src='/rg/home/footer/images/b.gif?link=/';"
1826
- href="/"
1827
- >Home</a>
1828
- | <a
1829
- onclick="(new Image()).src='/rg/search/footer/images/b.gif?link=/search';"
1830
- href="/search"
1831
- >Search</a>
1832
- | <a
1833
- onclick="(new Image()).src='/rg/siteindex/footer/images/b.gif?link=/a2z';"
1834
- href="/a2z"
1835
- >Site Index</a>
1836
- | <a
1837
- onclick="(new Image()).src='/rg/intheaters/footer/images/b.gif?link=/movies-in-theaters/';"
1838
- href="/movies-in-theaters/"
1839
- >In Theaters</a>
1840
- | <a
1841
- onclick="(new Image()).src='/rg/comingsoon/footer/images/b.gif?link=/movies-coming-soon/';"
1842
- href="/movies-coming-soon/"
1843
- >Coming Soon</a>
1844
- | <a
1845
- onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=/chart/';"
1846
- href="/chart/"
1847
- >Top Movies</a>
1848
- | <a
1849
- onclick="(new Image()).src='/rg/watchlist/footer/images/b.gif?link=/list/watchlist';"
1850
- href="/list/watchlist"
1851
- >Watchlist</a>
1852
- | <a
1853
- onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=/chart/top';"
1854
- href="/chart/top"
1855
- >Top 250</a>
1856
- | <a
1857
- onclick="(new Image()).src='/rg/tv/footer/images/b.gif?link=/sections/tv/';"
1858
- href="/sections/tv/"
1859
- >TV</a>
1860
- | <a
1861
- onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=/news/';"
1862
- href="/news/"
1863
- >News</a>
1864
- | <a
1865
- onclick="(new Image()).src='/rg/video/footer/images/b.gif?link=/features/video/';"
1866
- href="/features/video/"
1867
- >Video</a>
1868
- | <a
1869
- onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=/boards/';"
1870
- href="/boards/"
1871
- >Message Boards</a>
1872
- | <a
1873
- onclick="(new Image()).src='/rg/pressroom/footer/images/b.gif?link=/pressroom/';"
1874
- href="/pressroom/"
1875
- >Press Room</a>
1876
- <br>
1877
-
1878
- <a
1879
- onclick="(new Image()).src='/rg/register-v2/footer/images/b.gif?link=https://secure.imdb.com/register-imdb/form-v2';"
1880
- href="https://secure.imdb.com/register-imdb/form-v2"
1881
- >Register</a>
1882
- | <a
1883
- onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=/help/show_article?rssavailable';"
1884
- href="/help/show_article?rssavailable"
1885
- class="navbarSprite"
1886
- id="footer_rss_image"
1887
- ></a>
1888
- <a
1889
- onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=/help/show_article?rssavailable';"
1890
- href="/help/show_article?rssavailable"
1891
- >RSS</a>
1892
- | <a
1893
- onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=/advertising/';"
1894
- href="/advertising/"
1895
- >Advertising</a>
1896
- | <a
1897
- onclick="(new Image()).src='/rg/helpdesk/footer/images/b.gif?link=/helpdesk/contact';"
1898
- href="/helpdesk/contact"
1899
- >Contact Us</a>
1900
- | <a
1901
- onclick="(new Image()).src='/rg/jobs/footer/images/b.gif?link=/jobs';"
1902
- href="/jobs"
1903
- >Jobs</a>
1904
- | <a
1905
- onclick="(new Image()).src='/rg/IMDbFooter/prosystem/images/b.gif?link=https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627';"
1906
- href="https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627"
1907
- >IMDbPro</a>
1908
- | <a
1909
- onclick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com/';"
1910
- href="http://www.boxofficemojo.com/"
1911
- >Box Office Mojo</a>
1912
- | <a
1913
- onclick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com/';"
1914
- href="http://www.withoutabox.com/"
1915
- >Withoutabox</a>
1916
- | <a
1917
- onclick="(new Image()).src='/rg/LOVEFILM/FOOTER/images/b.gif?link=http://www.lovefilm.com/browse/film/watch-online/';"
1918
- href="http://www.lovefilm.com/browse/film/watch-online/"
1919
- >LOVEFiLM</a>
1920
- <br /><br />
1921
- IMDb Mobile:
1922
- <a
1923
- onclick="(new Image()).src='/rg/mobile-ios/footer/images/b.gif?link=/apps/ios/';"
1924
- href="/apps/ios/"
1925
- >iPhone/iPad</a>
1926
- | <a
1927
- onclick="(new Image()).src='/rg/mobile-android/footer/images/b.gif?link=/android';"
1928
- href="/android"
1929
- >Android</a>
1930
- | <a
1931
- onclick="(new Image()).src='/rg/mobile-web/footer/images/b.gif?link=http://m.imdb.com';"
1932
- href="http://m.imdb.com"
1933
- >Mobile site</a>
1934
- | <a
1935
- onclick="(new Image()).src='/rg/mobile-win7/footer/images/b.gif?link=/windowsphone';"
1936
- href="/windowsphone"
1937
- >Windows Phone 7</a>
1938
- | IMDb Social:
1939
- <a
1940
- onclick="(new Image()).src='/rg/facebook/footer/images/b.gif?link=http://www.facebook.com/imdb';"
1941
- href="http://www.facebook.com/imdb"
1942
- >Facebook</a>
1943
- | <a
1944
- onclick="(new Image()).src='/rg/twitter/footer/images/b.gif?link=http://twitter.com/imdb';"
1945
- href="http://twitter.com/imdb"
1946
- >Twitter</a>
1947
- <br /><br />
1948
- </p>
1949
-
1950
- <p class="footer" align="center">
1951
- <a
1952
- onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
1953
- href="/help/show_article?conditions"
1954
- >Copyright &copy;</a> 1990-2013
1955
- <a
1956
- onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/';"
1957
- href="/help/"
1958
- >IMDb.com, Inc.</a>
1959
- <br>
1960
- <a
1961
- onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
1962
- href="/help/show_article?conditions"
1963
- >Conditions of Use</a> | <a
1964
- onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/privacy';"
1965
- href="/privacy"
1966
- >Privacy Policy</a> | <a
1967
- onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=//www.amazon.com/InterestBasedAds';"
1968
- href="//www.amazon.com/InterestBasedAds"
1969
- >Interest-Based Ads</a>
1970
- <br>
1971
- An <span id="amazon_logo" class="footer_logo" align="middle"></span> company.
1972
- </p>
1973
-
1974
- <table class="footer" id="amazon-affiliates" width="100%">
1975
- <tr>
1976
- <td colspan="10">
1977
- Amazon Affiliates
1978
- </td>
1979
- </tr>
1980
- <tr>
1981
- <td class="amazon-affiliate-site-first">
1982
- <a class="amazon-affiliate-site-link" href="http://www.amazon.com/b?ie=UTF8&node=2858778011&tag=imdbpr1-20">
1983
- <span class="amazon-affiliate-site-name">Amazon Instant Video</span><br>
1984
- <span class="amazon-affiliate-site-desc">Watch Movies &<br>TV Online</span>
1985
- </a>
1986
- </td>
1987
- <td class="amazon-affiliate-site-item-nth">
1988
- <a class="amazon-affiliate-site-link" href=http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20 >
1989
- <span class="amazon-affiliate-site-name">Prime Instant Video</span><br>
1990
- <span class="amazon-affiliate-site-desc">Unlimited Streaming<br>of Movies & TV</span>
1991
- </a>
1992
- </td>
1993
- <td class="amazon-affiliate-site-item-nth">
1994
- <a class="amazon-affiliate-site-link" href=http://www.amazon.de/b?ie=UTF8&node=284266&tag=imdbpr1-de-21 >
1995
- <span class="amazon-affiliate-site-name">Amazon Germany</span><br>
1996
- <span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
1997
- </a>
1998
- </td>
1999
- <td class="amazon-affiliate-site-item-nth">
2000
- <a class="amazon-affiliate-site-link" href=http://www.amazon.it/b?ie=UTF8&node=412606031&tag=imdbpr1-it-21 >
2001
- <span class="amazon-affiliate-site-name">Amazon Italy</span><br>
2002
- <span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
2003
- </a>
2004
- </td>
2005
- <td class="amazon-affiliate-site-item-nth">
2006
- <a class="amazon-affiliate-site-link" href=http://www.amazon.fr/b?ie=UTF8&node=405322&tag=imdbpr1-fr-21 >
2007
- <span class="amazon-affiliate-site-name">Amazon France</span><br>
2008
- <span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
2009
- </a>
2010
- </td>
2011
- <td class="amazon-affiliate-site-item-nth">
2012
- <a class="amazon-affiliate-site-link" href=http://www.amazon.in/movies-tv-shows/b/?ie=UTF&node=976416031&tag=imdbpr1-in-21 >
2013
- <span class="amazon-affiliate-site-name">Amazon India</span><br>
2014
- <span class="amazon-affiliate-site-desc">Buy Movie and<br>TV Show DVDs</span>
2015
- </a>
2016
- </td>
2017
- <td class="amazon-affiliate-site-item-nth">
2018
- <a class="amazon-affiliate-site-link" href=http://www.lovefilm.com/browse/film/watch-online/ >
2019
- <span class="amazon-affiliate-site-name">LOVEFiLM</span><br>
2020
- <span class="amazon-affiliate-site-desc">Watch Movies<br>Online</span>
2021
- </a>
2022
- </td>
2023
- <td class="amazon-affiliate-site-item-nth">
2024
- <a class="amazon-affiliate-site-link" href=http://www.junglee.com/ >
2025
- <span class="amazon-affiliate-site-name">Junglee</span><br>
2026
- <span class="amazon-affiliate-site-desc">India Online<br>Shopping</span>
2027
- </a>
2028
- </td>
2029
- <td class="amazon-affiliate-site-item-nth">
2030
- <a class="amazon-affiliate-site-link" href=http://www.dpreview.com >
2031
- <span class="amazon-affiliate-site-name">DPReview</span><br>
2032
- <span class="amazon-affiliate-site-desc">Digital<br>Photography</span>
2033
- </a>
2034
- </td>
2035
- <td class="amazon-affiliate-site-item-nth">
2036
- <a class="amazon-affiliate-site-link" href=http://www.audible.com >
2037
- <span class="amazon-affiliate-site-name">Audible</span><br>
2038
- <span class="amazon-affiliate-site-desc">Download<br>Audio Books</span>
2039
- </a>
2040
- </td>
2041
- </tr>
2042
- </table>
2043
- </div>
2044
-
2045
- <script type="text/javascript">
2046
-
2047
- var _gaq = _gaq || [];
2048
- var seg = -1;
2049
- _gaq.push(['_setAccount', 'UA-3916519-1']);
2050
- _gaq.push(['_setDomainName', '.imdb.com']);
2051
- _gaq.push(['_setSampleRate', '10']);
2052
- _gaq.push(['_setCustomVar', 2, 'Falkor', 'false']);
2053
- _gaq.push(['_trackPageview']); // must come last
2054
-
2055
- (function() {
2056
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
2057
- ga.src = 'http://www.google-analytics.com/ga.js';
2058
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
2059
- })();
2060
-
2061
- </script>
2062
-
2063
- <!-- no content received for slot: bottom_ad -->
2064
-
2065
- </div>
2066
- </div>
2067
- <script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/jquery-4133058748._V354516613_.js"></script>
2068
- <script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/consumersite-1090587575._V354100634_.js"></script>
2069
- <script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/newmovies-4245406606._V379390146_.js"></script>
2070
- <script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/watchlistButton-2601927528._V368274227_.js"></script>
2071
-
2072
-
2073
- <script type="text/imdblogin-js" id="login">
2074
- jQuery(document).ready(function(){
2075
- window.imdb.login_lightbox("https://secure.imdb.com", "http://www.imdb.com/movies-coming-soon/");
2076
- });
2077
- </script>
2078
-
2079
- <script type="text/javascript">
2080
- jQuery(
2081
- function() {
2082
- var facebookTheme = (window.custom && window.custom.full_page && window.custom.full_page.theme) ? window.custom.full_page.theme : "light",
2083
- url = "http://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&href=http%3A%2F%2Fwww.imdb.com%2Fmovies-coming-soon%2F&colorscheme=" + facebookTheme,
2084
- like = document.getElementById('iframe_like');
2085
- if (like) {
2086
- like.src = url;
2087
- like.onload = function () { generic.monitoring.stop_timing('facebook_like_iframe', '', false); };
2088
- }
2089
- }
2090
-
2091
- );
2092
- </script>
2093
-
2094
- <div id="servertime" time="123"/>
2095
-
2096
-
2097
-
2098
- <script>
2099
- if (typeof uet == 'function') {
2100
- uet("be");
2101
- }
2102
- </script>
2103
- </body>
2104
- </html>