spotlite 0.6.2 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +6 -0
- data/README.md +25 -0
- data/lib/spotlite/movie.rb +39 -6
- data/lib/spotlite/version.rb +1 -1
- data/spec/fixtures/tt0133093/mediaindex_still_frame +822 -0
- data/spec/spec_helper.rb +2 -1
- data/spec/spotlite/movie_spec.rb +18 -0
- metadata +11 -18
- data/LICENSE.txt +0 -22
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e8754775f66068ad620ee484127524451d57d101
|
4
|
+
data.tar.gz: 109dbccb3bcbb29a7f070bf75cbf6c11271280c4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: af469d6ad0ea5f766fe93c8ac0e555fd6d18e245d0dec42d6f340d228cf21f7125ec0fb864b32fdce37415aa1c621b7fc75c9b29ba57b681f023112a682cb202
|
7
|
+
data.tar.gz: db58720b022333d81bcfe43f3c232fc095c5141dc87d9bab489f318531433cfde562e6e9a8190b45ea966da4393e90919a3ab53c5ffe44f8d394ae021f26b2c1
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## v0.7.0 04-Aug-2013
|
2
|
+
|
3
|
+
* Added `images` method to `Movie` class to fetch still frames from media index page
|
4
|
+
* Added `recommended_movies` method to `Movie` class that returns a list of, well, recommended movies
|
5
|
+
* Moved license from LICENSE to README file
|
6
|
+
|
1
7
|
## v0.6.2 25-Jul-2013
|
2
8
|
|
3
9
|
* Fixed issue when movie description and storyline are cut after a link inside them
|
data/README.md
CHANGED
@@ -126,3 +126,28 @@ Adjust methods that are failing, according to the new layout. And refresh fixtur
|
|
126
126
|
$ rake fixtures:refresh
|
127
127
|
|
128
128
|
It will run through all elements of `IMDB_SAMPLES` hash to get fresh data.
|
129
|
+
|
130
|
+
## License
|
131
|
+
|
132
|
+
Copyright (c) 2013 Artem Pakk
|
133
|
+
|
134
|
+
MIT License
|
135
|
+
|
136
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
137
|
+
a copy of this software and associated documentation files (the
|
138
|
+
"Software"), to deal in the Software without restriction, including
|
139
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
140
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
141
|
+
permit persons to whom the Software is furnished to do so, subject to
|
142
|
+
the following conditions:
|
143
|
+
|
144
|
+
The above copyright notice and this permission notice shall be
|
145
|
+
included in all copies or substantial portions of the Software.
|
146
|
+
|
147
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
148
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
149
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
150
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
151
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
152
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
153
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/spotlite/movie.rb
CHANGED
@@ -107,6 +107,19 @@ module Spotlite
|
|
107
107
|
end
|
108
108
|
end
|
109
109
|
|
110
|
+
# Returns an array of recommended movies as an array of initialized objects of +Movie+ class
|
111
|
+
def recommended_movies
|
112
|
+
details.css(".rec-title").map do |node|
|
113
|
+
imdb_id = node.at("a[href^='/title/tt']")['href'].parse_imdb_id
|
114
|
+
title = node.at("a").text.strip
|
115
|
+
year = node.at("span").text.parse_year
|
116
|
+
|
117
|
+
[imdb_id, title, year]
|
118
|
+
end.map do |values|
|
119
|
+
Spotlite::Movie.new(*values)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
110
123
|
# Returns a list of keywords as an array of strings
|
111
124
|
def keywords
|
112
125
|
plot_keywords.css("a[href^='/keyword/']").map { |keyword| keyword.text.strip } rescue []
|
@@ -207,6 +220,20 @@ module Spotlite
|
|
207
220
|
array
|
208
221
|
end
|
209
222
|
|
223
|
+
# Returns URLs of movie still frames as an array of strings
|
224
|
+
def images
|
225
|
+
array = []
|
226
|
+
still_frames.css(".thumb_list img").map do |image|
|
227
|
+
src = image["src"] rescue nil
|
228
|
+
|
229
|
+
if src =~ /^(http:.+@@)/ || src =~ /^(http:.+?)\.[^\/]+$/
|
230
|
+
array << $1 + ".jpg"
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
array
|
235
|
+
end
|
236
|
+
|
210
237
|
private
|
211
238
|
|
212
239
|
def details # :nodoc:
|
@@ -233,19 +260,25 @@ module Spotlite
|
|
233
260
|
@reviews ||= open_page("criticreviews")
|
234
261
|
end
|
235
262
|
|
263
|
+
def still_frames
|
264
|
+
@still_frames ||= open_page("mediaindex?refine=still_frame")
|
265
|
+
end
|
266
|
+
|
236
267
|
def open_page(page = nil) # :nodoc:
|
237
268
|
Nokogiri::HTML(open("http://www.imdb.com/title/tt#{@imdb_id}/#{page}",
|
238
269
|
"Accept-Language" => "en-us"))
|
239
270
|
end
|
240
271
|
|
241
|
-
def parse_staff(
|
272
|
+
def parse_staff(staff) # :nodoc:
|
242
273
|
array = []
|
243
|
-
table = full_credits.at("a[name='#{
|
244
|
-
table
|
245
|
-
|
246
|
-
|
274
|
+
table = full_credits.at("a[name='#{staff}']").parent.parent.parent.parent rescue nil
|
275
|
+
if table
|
276
|
+
table.css("a[href^='/name/nm']").map do |node|
|
277
|
+
imdb_id = node["href"].parse_imdb_id
|
278
|
+
name = node.text.strip
|
247
279
|
|
248
|
-
|
280
|
+
array << {:imdb_id => imdb_id, :name => name}
|
281
|
+
end
|
249
282
|
end
|
250
283
|
|
251
284
|
array.uniq
|
data/lib/spotlite/version.rb
CHANGED
@@ -0,0 +1,822 @@
|
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Date: Sun, 04 Aug 2013 14:40:19 GMT
|
3
|
+
Server: Server
|
4
|
+
Cache-Control: private
|
5
|
+
Cneonction: close
|
6
|
+
Content-Type: text/html; charset=iso-8859-1
|
7
|
+
Set-Cookie: uu=BCYq3Q38Dowgu8-oZ9xV4Hwd9_Q2qLw-WVrRr6F-e7-to-VXauOMkhDMXS-niuiwBQJdtv7Y7N3QFWdyqaQo-jdmZmTVqq3mCKGn8ScPJXow3ybOL4QF-YrUlcFyk4ZTAUBLGE2l2Dlp_Wc_MR7vPcjjt1t0IH6NP2yhDf1NlNd6-tw;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
|
8
|
+
Set-Cookie: cs=mO0mskX5g43tos4JOyed2gnJEiSO2SUS3lFyJI3KgqydujFXrcohV97ZIoQumTIkju9Vcgo5EiSIfycS7Y9E0dmZsoeu2SSyblESJI7vJDOO2RIkjvkSJI7ZEmTOiWIUg=;expires=Mon, 05 Aug 2013 07:00:00 GMT;path=/;domain=.imdb.com
|
9
|
+
Vary: Accept-Encoding,User-Agent
|
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
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
15
|
+
<html xmlns:og="http://opengraphprotocol.org/schema/"
|
16
|
+
xmlns:fb="http://www.facebook.com/2008/fbml">
|
17
|
+
<head>
|
18
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
19
|
+
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime()};</script>
|
20
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
21
|
+
<script>
|
22
|
+
var addClickstreamHeadersToAjax = function(xhr) {
|
23
|
+
xhr.setRequestHeader("x-imdb-parent-id", "1J1KYQRQYB7RAMK1E283");
|
24
|
+
};
|
25
|
+
</script>
|
26
|
+
|
27
|
+
<title>The Matrix Pictures, Photos & Images - IMDb</title>
|
28
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
29
|
+
<link rel="canonical" href="http://www.imdb.com/title/tt0133093/mediaindex" /><meta property="og:url" content="http://www.imdb.com/title/tt0133093/mediaindex" />
|
30
|
+
|
31
|
+
<meta name="title" content="The Matrix Pictures, Photos & Images - IMDb">
|
32
|
+
<meta name="description" content="View the latest pictures, photos and images from The Matrix - Thomas A. Anderson is a man living two lives. By day he is an average computer programm...">
|
33
|
+
|
34
|
+
<meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits">
|
35
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
36
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF8049ade547b40f4ffae1b825b4a96784/css/min/mediaindex.css" ><script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
37
|
+
|
38
|
+
|
39
|
+
<meta name="application-name" content="IMDb" />
|
40
|
+
<meta name="msapplication-tooltip" content="IMDb Web App" />
|
41
|
+
<meta name="msapplication-window" content="width=1500;height=900" />
|
42
|
+
<meta name="msapplication-task" content="name=Find Movie Showtimes;action-uri=/showtimes/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
43
|
+
<meta name="msapplication-task" content="name=Watch HD Trailers;action-uri=/features/hdgallery;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
44
|
+
<meta name="msapplication-task" content="name=What's On TV Tonight;action-uri=/sections/tv/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
45
|
+
<meta name="msapplication-task" content="name=Get Latest Entertainment News;action-uri=/news/top;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
46
|
+
<meta name="msapplication-task" content="name=Sign-in;action-uri=/register/login;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
|
47
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
48
|
+
<link rel="icon" type="image/ico"
|
49
|
+
href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico" />
|
50
|
+
<link rel="shortcut icon" type="image/x-icon"
|
51
|
+
href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/desktop-favicon.ico" />
|
52
|
+
<link rel="apple-touch-icon"
|
53
|
+
href="http://i.media-imdb.com/images/SFc8a0bc1039862e1386365008f0507ea9/apple-touch-icon.png" />
|
54
|
+
<link rel="search" type="application/opensearchdescription+xml"
|
55
|
+
href="http://i.media-imdb.com/images/SFccbe1e4d909ef8b8077201c3c5aac349/imdbsearch.xml" title="IMDb" />
|
56
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
57
|
+
|
58
|
+
<meta property="fb:app_id" content="115109575169727" />
|
59
|
+
<meta property="og:title" content="The Matrix Pictures, Photos & Images - IMDb" />
|
60
|
+
<meta property="og:site_name" content="IMDb" />
|
61
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
|
62
|
+
<!-- start m/s/a/_g_a_s , head -->
|
63
|
+
<!-- begin ads header -->
|
64
|
+
<script>window.ads_js_start = new Date().getTime();</script>
|
65
|
+
<script src="http://z-ecx.images-amazon.com/images/G/01/imdbads/js/collections/ads-1695914558._V377862533_.js"></script>
|
66
|
+
<script>generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);</script>
|
67
|
+
<script>
|
68
|
+
generic.monitoring.set_forester_info("title");
|
69
|
+
generic.monitoring.set_twilight_info(
|
70
|
+
"title_subpage",
|
71
|
+
"Other",
|
72
|
+
"781a2eae2be648cb59868e50470002807848f734",
|
73
|
+
"2013-08-04T14%3A40%3A19GMT",
|
74
|
+
"http://s.media-imdb.com/twilight/?");
|
75
|
+
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
76
|
+
generic.monitoring.start_timing("page_load");
|
77
|
+
generic.seconds_to_midnight = 58781;
|
78
|
+
generic.days_to_midnight = 0.6803356409072876;
|
79
|
+
custom.full_page.data_url = "http://z-ecx.images-amazon.com/images/G/01/imdbads/js/graffiti_data-517108607._V379391793_.js";
|
80
|
+
consoleLog('advertising initialized','ads');
|
81
|
+
</script>
|
82
|
+
<script>
|
83
|
+
ad_utils.register_punt_ad("top_ad","728","90"," \r\n\r\n<a target=\"_blank\" href=\"http://aax-us-east.amazon-adsystem.com/x/c/ZNL.eitqnB5Spjn5lZyD4w/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWlGp4jtiZjg8SHdp6hbfVoDsSiMN7iXJlDudegbfKyTqfQEMg6jjin-iBhdwx9XOaThJu5fWBUd3ypy6TJrMWlcvMVZ7qlYWeOnSFhxdnhORusFSNzoVSDNsAXSCBc3WzmTsuC6mf8tdvDrkqUk.Kd19vK9lyND7HhbidLRyzAY27FSVcouZiP3cSExRimWShmV2ZllRPJmNPzSpfD4gcri1OOwUcYOsbDmvQpTCxyKcgIQXXxkeBc8.EmDP0JeAEG95wbJ.ce83grPRvwdaohm6WtYtRP-473xLbcR5vaQQzGfwb5lkwXr9ORYGRRe19TSFQibFawJGKzoo8NyPq9xf-mpLeHzgHZBvs0mr-t4fKLCsnlfZdMYxLRYv1JEl2O7R5X33CoTPoORgQ8d9dXhqqxebb4MKNufhlZHgWBNuRqcduhncfcXMiBA2kKT6XAQoOPTf0By0RJUjs7w8nKM41kq5PoKLsfr8UpH5OjnjCuXa-GqVfVl.MtdqFHW.DjCNJoo8Dr.fKvlJRB3wPYmut8j.XyeTjYzLtgxbkl8uQDMYHiW6i.N1KImqFtX9xDiuy1b1Ek2GJsLImDsObg1Bf1D7MwtzE.dj-jNVm5dP1zGYmU83kjMIPR1gU96rW5G5s-.NVPryhfAHsgV20.qfMx8sILkTC4-DqSJg0QT2OY1.ZcYr9gbZasYVH67L.bKppDuochC9vfpWjcoUri3dpevMnXifh86chsX9.fXX9Pc1WQZu56jXNKaYI93rRLLkMPg4xOVgBE0OYDu58Po1-kqECSuzJENHtjJouXPrreKEy1agZfOObwbw9xtbChikgtkf6jM5cYeJ3lOh5Ku8TDlWifZXu-aSNgnAWD-w4c5h5HOH2RYPq.14TpNr6lIr8.IJjP0nDgZgEZBqAfisvVu9.3hW183KbpZpdT5t.ZEZvZJpxRMHXXPkTN-R.k1jc562X.rlSn1zI-51DM5W0AD5OJfWYfdR9jmeIgH0BHy6dM8x9HGNyXXhFSqrmfVgih1.Wg9nTHlrN.yVbFJKbXi7B0bP02M9Lp08NBw5qW3O9eVW3FTyVGTMJ2SFJOcG6tOOjTyLJxe5Qf.vSzOSLBm4-3zqlD2hU6VM2ZL7iNIOXrb4qI6iFOTDNtfYUtRDirWaCwn.EAqEnAa3zZqG9M2ifwfiUQJt0ZsYhfJuFAThPJIeWc5phSWO-46-kw__\"\><img src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1371250187275/PIV_grimm_suits_covertaffairs_NBC_Multi-TV_728x90.jpg\" alt=\"\" title=\"\" width=\"728\" height=\"90\" border=\"0\"\></a\>\r\n\r\n<!-- creativeModDate = 1371272531000 -->\n <div id=\"top_ad_webbug\" style=\"display:none;\"\>\n <img src=\"http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=56a6a701-b5ad-49ed-a668-8f565be544da&pj=[PUNT_ORIGIN]\" border=\"0\" height=\"1\" width=\"1\" alt=\"\"/\>\n </div\>\n");
|
84
|
+
</script>
|
85
|
+
<script>
|
86
|
+
ad_utils.register_punt_ad("top_rhs","300","250"," \r\n\r\n<a target=\"_blank\" href=\"http://aax-us-east.amazon-adsystem.com/x/c/QCQlpjDHbbCHnJwGmtPMWQ/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWjHVm3IK9C9EkA0OjMV.DjGHAlPx8i4bmNnYAbhHT6TaiqoASYuob2gSAGhk7MbKdyNY3ExUlgcqjuyPydsdmdFaGQcEuiF2bSgPNaVZLbkuV3VnVIUqAGfaOPxa8ekHIltBLlpsDNXU2Y3hTs-tAEednnGpGac805V4ubgeGm3LAdbykk.H9c-iuUw6I.6f7WZzPP2aAytutvpLoytkpbja8YkBqkNSBL8NwG502BCZ8viR7Lbl-YKnh2B5zgUCWMUwx65SyoNaK7lsWj33vPGYrsYKYSw-Q5Zm-cmr1WeoBdR18aVZsJSqIX.wmZuZ8TwHAGM3QqIZ9bV-KfxSCdzTJ4euf40qyuUpnH5Oz8.4vfhoJI08.uqGthfF1AJkMcvQfY-uYrZMuAusQPoe4dE7Tsu9.qDhws7oNa5s3IqSA0FrYtVyCcuY1PXb.i2JxwB9OcvErOWaEiG1XV1XUTO3.uFvJevSwA2RQq0cKRU85x-qYZyih-8xRx31IRpEPb1GaVGUoweZpG5.lJwA7yz3NiqPJ6npAmS3lSbYM6Gj.giCXQjQVYo8flkju-sex0BxXTM32TeuDfrdxtxjnIDG2BGY2A.3I10y6rxO9iA3Y5JNGDCIOHcwPeofepOjVW.egeosnpuNRq2wlJirWs.EkwVqL7FOpvBCzl6R7XBHp6q6OM5z-PWl-tVm3FtSJFH3Sv9QwxXQJPVWv0oMjTfAdMk3jh9TfSa3mxp-fXvtHu3n1kySzt9Mu7O.sVp0sha1MLXxv9..4n1urx7dFitIoaHX7dpcpCG1hN9jFnDkQB11VyvQh715Jdmxvh05vBD9robMhJvA434i1aJ.rmbX0kWlKR1GkD7-xKixwIY4E-kGYINHyBs.lckdsk1vesY6ypOtEmGJce-BB8N7znIyUTMwNF8jo4wm28kr0nCLIJgm7r9JsxLB.-kOx60PQLYZq2JT-axlEjpkXjEk0ecY3yInsZfO1Ci.KRlMSf2Hm95FYcy4cyd6wWettnkrp7j5IxCQsuKYfHmXM5dl34yFKwDwgpXaUrRskycQv4ADt4spN6HSptN3zqJl7AgOb5.kQ6giF-31YTRU8ZNi47T57Svq6cRmCAFGH5b18Wm5kIP7TDhsFTl9aSpDX3p148W-MLSctPtFAXEhSFsOaEuJWsiMXA0dMOVfoqs1mMLeZj97608YFrOnFQXg-aTMOA__\"\><img src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1368118633133/PIV_300x250_newlogo_shield.jpg\" alt=\"\" title=\"\" width=\"300\" height=\"250\" border=\"0\"\></a\>\r\n\r\n<!-- creativeModDate = 1368549590000 -->\n <div id=\"top_rhs_webbug\" style=\"display:none;\"\>\n <img src=\"http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=33072746-1118-4189-a338-0ecda0ae6da4&pj=[PUNT_ORIGIN]\" border=\"0\" height=\"1\" width=\"1\" alt=\"\"/\>\n </div\>\n");
|
87
|
+
</script>
|
88
|
+
<script>
|
89
|
+
ad_utils.set_dfp_network_id('4215');
|
90
|
+
</script>
|
91
|
+
<!-- end ads header --><!-- end m/s/a/_g_a_s , head -->
|
92
|
+
|
93
|
+
</head>
|
94
|
+
|
95
|
+
<body bgcolor="#ffffff" text="#000000" id="styleguide-v2" class="fixed">
|
96
|
+
<!-- start m/s/a/_g_a_s , body -->
|
97
|
+
<!-- end m/s/a/_g_a_s , body -->
|
98
|
+
|
99
|
+
<div id="wrapper">
|
100
|
+
|
101
|
+
<div id="root">
|
102
|
+
<layer name="root">
|
103
|
+
|
104
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFa88e6ba92e5894e7909b0d2ef5d21e79/css2/site/consumer-navbar-suggestionsearch.css" >
|
105
|
+
|
106
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFe349c433e719491fa3192fed28cfb9e1/wheel/buttons.css" >
|
107
|
+
|
108
|
+
<div id="nb20" class="navbarSprite">
|
109
|
+
<div id="supertab">
|
110
|
+
|
111
|
+
|
112
|
+
<!-- begin TOP_AD -->
|
113
|
+
<div id="top_ad_wrapper" class="dfp_slot">
|
114
|
+
<script type="text/javascript">
|
115
|
+
ad_utils.register_ad('top_ad');
|
116
|
+
</script>
|
117
|
+
<iframe data-dart-params="#imdb2.consumer.title/;!TILE!;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;oe=utf-8;[CLIENT_SIDE_KEYVALUES];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_ad" name="top_ad" class="yesScript" width="0" height="85" data-original-width="0" data-original-height="85" data-config-width="0" data-config-height="85" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
118
|
+
<noscript><a href="http://ad.doubleclick.net/N4215/jump/imdb2.consumer.title/;tile=1;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;ord=282674259004?" target="_blank"><img src="http://ad.doubleclick.net/N4215/ad/imdb2.consumer.title/;tile=1;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;ord=282674259004?" border="0" alt="advertisement" /></a></noscript>
|
119
|
+
</div>
|
120
|
+
<div id="top_ad_reflow_helper"></div>
|
121
|
+
<script>ad_utils.render_ad_fast('top_ad');</script>
|
122
|
+
<!-- End TOP_AD --><!-- _get_ad_for_slot(TOP_AD) -->
|
123
|
+
</div>
|
124
|
+
<div id="navbar" class="navbarSprite">
|
125
|
+
<noscript><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF52e6b9f11712d3ec552179f6c869b63a/css2/site/consumer-navbar-no-js.css"></noscript>
|
126
|
+
<span id="home_img_holder"> <a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" id='home_img' class='navbarSprite' title='Home' ></a>
|
127
|
+
|
128
|
+
<span class="alt_logo">
|
129
|
+
<a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" title='Home' >IMDb</a>
|
130
|
+
</span>
|
131
|
+
</span>
|
132
|
+
|
133
|
+
|
134
|
+
<form onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';" action="/find" method="get" id="navbar-form" class="nav-searchbar-inner" accept-charset="utf-8" >
|
135
|
+
|
136
|
+
<div id="nb_search" >
|
137
|
+
|
138
|
+
<noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
|
139
|
+
<button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
|
140
|
+
<input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more..." >
|
141
|
+
<div class="quicksearch_dropdown_wrapper">
|
142
|
+
|
143
|
+
<select
|
144
|
+
class="quicksearch_dropdown navbarSprite"
|
145
|
+
name="s"
|
146
|
+
id="quicksearch"
|
147
|
+
onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
|
148
|
+
|
149
|
+
<option
|
150
|
+
value="all">All</option>
|
151
|
+
<option
|
152
|
+
value="tt">Titles</option>
|
153
|
+
<option
|
154
|
+
value="ep">TV Episodes</option>
|
155
|
+
<option
|
156
|
+
value="nm">Names</option>
|
157
|
+
<option
|
158
|
+
value="co">Companies</option>
|
159
|
+
<option
|
160
|
+
value="kw">Keywords</option>
|
161
|
+
<option
|
162
|
+
value="ch">Characters</option>
|
163
|
+
<option
|
164
|
+
value="vi">Videos</option>
|
165
|
+
<option
|
166
|
+
value="qu">Quotes</option>
|
167
|
+
<option
|
168
|
+
value="bi">Bios</option>
|
169
|
+
<option
|
170
|
+
value="pl">Plots</option>
|
171
|
+
</select>
|
172
|
+
|
173
|
+
</div>
|
174
|
+
|
175
|
+
<div id="navbar-suggestionsearch"></div>
|
176
|
+
</div>
|
177
|
+
|
178
|
+
</form>
|
179
|
+
|
180
|
+
<div id="nb_personal">
|
181
|
+
|
182
|
+
<ul id="consumer_user_nav" class="main_nav">
|
183
|
+
<li>
|
184
|
+
<a id="nblogin" rel=login href="/register/login?ref_=nb_usr_lgin" class="navbarSprite" >
|
185
|
+
Login
|
186
|
+
</a>
|
187
|
+
<ul class="sub_nav">
|
188
|
+
<li>
|
189
|
+
<a href="https://secure.imdb.com/register-imdb/form-v2?ref_=nb_usr_reg" >
|
190
|
+
Register
|
191
|
+
</a>
|
192
|
+
</li>
|
193
|
+
<li>
|
194
|
+
<a id="nblogin" rel=login href="/register/login?ref_=nb_usr_lgin" >
|
195
|
+
Login
|
196
|
+
</a>
|
197
|
+
</li>
|
198
|
+
</ul>
|
199
|
+
</li>
|
200
|
+
</ul>
|
201
|
+
<span class="ghost">|</span> <a href="/help/?ref_=nb_hlp" >
|
202
|
+
Help</a>
|
203
|
+
|
204
|
+
|
205
|
+
</div>
|
206
|
+
|
207
|
+
|
208
|
+
<div>
|
209
|
+
<ul id="consumer_main_nav" class="main_nav">
|
210
|
+
|
211
|
+
<li class="css_nav_item" aria-haspopup="true">
|
212
|
+
|
213
|
+
|
214
|
+
<a onclick="(new Image()).src='/rg/navbar-movies/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_1_inth';" href="/movies-in-theaters/?ref_=nb_mv_1_inth" class='navbarSprite' > Movies</a>
|
215
|
+
|
216
|
+
<ul class="sub_nav">
|
217
|
+
|
218
|
+
|
219
|
+
<li>
|
220
|
+
<a onclick="(new Image()).src='/rg/intheaters/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_2_inth';" href="/movies-in-theaters/?ref_=nb_mv_2_inth" >In Theaters</a>
|
221
|
+
</li>
|
222
|
+
|
223
|
+
<li>
|
224
|
+
<a onclick="(new Image()).src='/rg/top250/navbar/images/b.gif?link=%2Fchart%2Ftop%3Fref_%3Dnb_mv_3_chttp';" href="/chart/top?ref_=nb_mv_3_chttp" >Top 250</a>
|
225
|
+
</li>
|
226
|
+
|
227
|
+
<li>
|
228
|
+
<a onclick="(new Image()).src='/rg/usboxoffice/navbar/images/b.gif?link=%2Fchart%2F%3Fref_%3Dnb_mv_4_cht';" href="/chart/?ref_=nb_mv_4_cht" >US Box Office</a>
|
229
|
+
</li>
|
230
|
+
|
231
|
+
<li>
|
232
|
+
<a onclick="(new Image()).src='/rg/comingsoon/navbar/images/b.gif?link=%2Fmovies-coming-soon%2F%3Fref_%3Dnb_mv_5_cs';" href="/movies-coming-soon/?ref_=nb_mv_5_cs" >Coming Soon</a>
|
233
|
+
</li>
|
234
|
+
|
235
|
+
<li>
|
236
|
+
<a onclick="(new Image()).src='/rg/trailergallery/navbar/images/b.gif?link=%2Ftrailers%3Fref_%3Dnb_mv_6_tr';" href="/trailers?ref_=nb_mv_6_tr" >Trailer Gallery</a>
|
237
|
+
</li>
|
238
|
+
|
239
|
+
<li>
|
240
|
+
<a onclick="(new Image()).src='/rg/watchnow/navbar/images/b.gif?link=%2Fwatchnow%2F%3Fref_%3Dnb_mv_7_wn';" href="/watchnow/?ref_=nb_mv_7_wn" >Watch Now on AIV</a>
|
241
|
+
</li>
|
242
|
+
|
243
|
+
<li>
|
244
|
+
<a onclick="(new Image()).src='/rg/dvdbluray/navbar/images/b.gif?link=%2Fsections%2Fdvd%2F%3Fref_%3Dnb_mv_8_dvd';" href="/sections/dvd/?ref_=nb_mv_8_dvd" >On DVD & Blu-Ray</a>
|
245
|
+
</li>
|
246
|
+
|
247
|
+
<li>
|
248
|
+
<a onclick="(new Image()).src='/rg/xrayformovies/navbar/images/b.gif?link=%2Fx-ray%2F%3Fref_%3Dnb_mv_9_xray';" href="/x-ray/?ref_=nb_mv_9_xray" >X-Ray for Movies & TV</a>
|
249
|
+
</li>
|
250
|
+
|
251
|
+
<li>
|
252
|
+
<a onclick="(new Image()).src='/rg/oscars/navbar/images/b.gif?link=%2Foscars%2F%3Fref_%3Dnb_mv_10_rto';" href="/oscars/?ref_=nb_mv_10_rto" >Road to the Oscars</a>
|
253
|
+
</li>
|
254
|
+
|
255
|
+
</ul>
|
256
|
+
</li>
|
257
|
+
<li class="css_nav_item" aria-haspopup="true">
|
258
|
+
|
259
|
+
|
260
|
+
<a onclick="(new Image()).src='/rg/navbar-tv/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_1_hm';" href="/tv/?ref_=nb_tv_1_hm" class='navbarSprite' > TV</a>
|
261
|
+
|
262
|
+
<ul class="sub_nav">
|
263
|
+
|
264
|
+
|
265
|
+
<li>
|
266
|
+
<a onclick="(new Image()).src='/rg/tvhome/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_2_hm';" href="/tv/?ref_=nb_tv_2_hm" >TV Home</a>
|
267
|
+
</li>
|
268
|
+
|
269
|
+
<li>
|
270
|
+
<a onclick="(new Image()).src='/rg/besttv/navbar/images/b.gif?link=%2Fsearch%2Ftitle%3Fnum_votes%3D5000%2C%26sort%3Duser_rating%2Cdesc%26title_type%3Dtv_series%26ref_%3Dnb_tv_3_srs';" href="/search/title?num_votes=5000,&sort=user_rating,desc&title_type=tv_series&ref_=nb_tv_3_srs" >Top TV Series</a>
|
271
|
+
</li>
|
272
|
+
|
273
|
+
<li>
|
274
|
+
<a onclick="(new Image()).src='/rg/tvlistings/navbar/images/b.gif?link=%2Ftvgrid%2F%3Fref_%3Dnb_tv_4_ls';" href="/tvgrid/?ref_=nb_tv_4_ls" >TV Listings</a>
|
275
|
+
</li>
|
276
|
+
|
277
|
+
<li>
|
278
|
+
<a onclick="(new Image()).src='/rg/tvepisodesandclips/navbar/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Ffeatures%2Fvideo%2Ftv%2F%3Fref_%3Dnb_tv_5_ep';" href="http://www.imdb.com/features/video/tv/?ref_=nb_tv_5_ep" >TV Episodes</a>
|
279
|
+
</li>
|
280
|
+
|
281
|
+
</ul>
|
282
|
+
</li>
|
283
|
+
<li class="css_nav_item" aria-haspopup="true">
|
284
|
+
|
285
|
+
|
286
|
+
<a onclick="(new Image()).src='/rg/navbar-news/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_1_tp';" href="/news/top?ref_=nb_nw_1_tp" class='navbarSprite' > News</a>
|
287
|
+
|
288
|
+
<ul class="sub_nav">
|
289
|
+
|
290
|
+
|
291
|
+
<li>
|
292
|
+
<a onclick="(new Image()).src='/rg/topnews/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_2_tp';" href="/news/top?ref_=nb_nw_2_tp" >Top News</a>
|
293
|
+
</li>
|
294
|
+
|
295
|
+
<li>
|
296
|
+
<a onclick="(new Image()).src='/rg/movienews/navbar/images/b.gif?link=%2Fnews%2Fmovie%3Fref_%3Dnb_nw_3_mv';" href="/news/movie?ref_=nb_nw_3_mv" >Movie News</a>
|
297
|
+
</li>
|
298
|
+
|
299
|
+
<li>
|
300
|
+
<a onclick="(new Image()).src='/rg/tvnews/navbar/images/b.gif?link=%2Fnews%2Ftv%3Fref_%3Dnb_nw_4_tv';" href="/news/tv?ref_=nb_nw_4_tv" >TV News</a>
|
301
|
+
</li>
|
302
|
+
|
303
|
+
<li>
|
304
|
+
<a onclick="(new Image()).src='/rg/celebritynews/navbar/images/b.gif?link=%2Fnews%2Fcelebrity%3Fref_%3Dnb_nw_5_cel';" href="/news/celebrity?ref_=nb_nw_5_cel" >Celebrity News</a>
|
305
|
+
</li>
|
306
|
+
|
307
|
+
</ul>
|
308
|
+
</li>
|
309
|
+
<li class="css_nav_item" aria-haspopup="true">
|
310
|
+
|
311
|
+
|
312
|
+
<a onclick="(new Image()).src='/rg/navbar-showtimes/navbar/images/b.gif?link=%2Fshowtimes%2F%3Fref_%3Dnb_sh_1_sh';" href="/showtimes/?ref_=nb_sh_1_sh" class='navbarSprite' > Showtimes</a>
|
313
|
+
|
314
|
+
<ul class="sub_nav">
|
315
|
+
|
316
|
+
|
317
|
+
<li>
|
318
|
+
<a onclick="(new Image()).src='/rg/movieshowtimes/navbar/images/b.gif?link=%2Fshowtimes%2F%3Fref_%3Dnb_sh_2_sh';" href="/showtimes/?ref_=nb_sh_2_sh" >Movie Showtimes</a>
|
319
|
+
</li>
|
320
|
+
|
321
|
+
</ul>
|
322
|
+
</li>
|
323
|
+
<li class="css_nav_item" aria-haspopup="true">
|
324
|
+
|
325
|
+
|
326
|
+
<a onclick="(new Image()).src='/rg/navbar-community/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_1_bd';" href="/boards/?ref_=nb_cm_1_bd" class='navbarSprite' > Community</a>
|
327
|
+
|
328
|
+
<ul class="sub_nav">
|
329
|
+
|
330
|
+
|
331
|
+
<li>
|
332
|
+
<a onclick="(new Image()).src='/rg/messageboards/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_2_bd';" href="/boards/?ref_=nb_cm_2_bd" >Message Boards</a>
|
333
|
+
</li>
|
334
|
+
|
335
|
+
<li>
|
336
|
+
<a onclick="(new Image()).src='/rg/lists/navbar/images/b.gif?link=%2Flists%2F%3Fref_%3Dnb_cm_3_nls';" href="/lists/?ref_=nb_cm_3_nls" >Newest Lists</a>
|
337
|
+
</li>
|
338
|
+
|
339
|
+
<li>
|
340
|
+
<a onclick="(new Image()).src='/rg/yourlists/navbar/images/b.gif?link=%2Fprofile%2Flists%3Fref_%3Dnb_cm_4_yls';" href="/profile/lists?ref_=nb_cm_4_yls" >Your Lists</a>
|
341
|
+
</li>
|
342
|
+
|
343
|
+
<li>
|
344
|
+
<a onclick="(new Image()).src='/rg/ratings/navbar/images/b.gif?link=%2Flist%2Fratings%3Fref_%3Dnb_cm_5_yrt';" href="/list/ratings?ref_=nb_cm_5_yrt" >Your Ratings</a>
|
345
|
+
</li>
|
346
|
+
|
347
|
+
<li>
|
348
|
+
<a onclick="(new Image()).src='/rg/contributorzone/navbar/images/b.gif?link=%2Fczone%2F%3Fref_%3Dnb_cm_6_cz';" href="/czone/?ref_=nb_cm_6_cz" >Contributor Zone</a>
|
349
|
+
</li>
|
350
|
+
|
351
|
+
<li>
|
352
|
+
<a onclick="(new Image()).src='/rg/quiz/navbar/images/b.gif?link=%2Fgames%2Fguess%3Fref_%3Dnb_cm_7_qz';" href="/games/guess?ref_=nb_cm_7_qz" >Quiz Game</a>
|
353
|
+
</li>
|
354
|
+
|
355
|
+
</ul>
|
356
|
+
</li>
|
357
|
+
<li class="css_nav_item" aria-haspopup="true">
|
358
|
+
|
359
|
+
|
360
|
+
<a onclick="(new Image()).src='/rg/imdbprohome/navbar/images/b.gif?link=%2Fr%2FIMDbTabNB%2F';" href="/r/IMDbTabNB/" class='navbarSprite' > IMDbPro</a>
|
361
|
+
|
362
|
+
<ul class="sub_nav">
|
363
|
+
|
364
|
+
|
365
|
+
<li>
|
366
|
+
<a onclick="(new Image()).src='/rg/procontact/navbar/images/b.gif?link=%2Fr%2Fnm_ovrview_contact%2Frepresentation%2F';" href="/r/nm_ovrview_contact/representation/" >Contact Info</a>
|
367
|
+
</li>
|
368
|
+
|
369
|
+
<li>
|
370
|
+
<a onclick="(new Image()).src='/rg/prophotos/navbar/images/b.gif?link=%2Fr%2FResume%2Fresume%2Fupdate%2Fphotos';" href="/r/Resume/resume/update/photos" >Add Photos</a>
|
371
|
+
</li>
|
372
|
+
|
373
|
+
</ul>
|
374
|
+
</li>
|
375
|
+
<li class="css_nav_item" aria-haspopup="true">
|
376
|
+
|
377
|
+
|
378
|
+
<a onclick="(new Image()).src='/rg/navbar-apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_1_hm';" href="/apps/?ref_=nb_app_1_hm" class='navbarSprite' > Apps</a>
|
379
|
+
|
380
|
+
<ul class="sub_nav">
|
381
|
+
|
382
|
+
|
383
|
+
<li>
|
384
|
+
<a onclick="(new Image()).src='/rg/apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_2_hm';" href="/apps/?ref_=nb_app_2_hm" >Apps Home</a>
|
385
|
+
</li>
|
386
|
+
|
387
|
+
<li>
|
388
|
+
<a onclick="(new Image()).src='/rg/iosapps/navbar/images/b.gif?link=%2Fapps%2Fios%2F%3Fref_%3Dnb_app_3_ios';" href="/apps/ios/?ref_=nb_app_3_ios" >iPhone + iPad Apps</a>
|
389
|
+
</li>
|
390
|
+
|
391
|
+
<li>
|
392
|
+
<a onclick="(new Image()).src='/rg/androidapps/navbar/images/b.gif?link=%2Fapps%2Fandroid%2F%3Fref_%3Dnb_app_4_andr';" href="/apps/android/?ref_=nb_app_4_andr" >Android Apps</a>
|
393
|
+
</li>
|
394
|
+
|
395
|
+
<li>
|
396
|
+
<a onclick="(new Image()).src='/rg/kindlefireapp/navbar/images/b.gif?link=%2Fapps%2Fkindlefire%2F%3Fref_%3Dnb_app_5_fire';" href="/apps/kindlefire/?ref_=nb_app_5_fire" >Kindle Fire App</a>
|
397
|
+
</li>
|
398
|
+
|
399
|
+
</ul>
|
400
|
+
</li>
|
401
|
+
|
402
|
+
</ul>
|
403
|
+
</div>
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
<div class="nb_extra">
|
408
|
+
<a onclick="(new Image()).src='/rg/watchlist/navbar/images/b.gif?link=%2Flist%2Fwatchlist';" href="/list/watchlist" >Your Watchlist</a>
|
409
|
+
</div>
|
410
|
+
|
411
|
+
|
412
|
+
</div>
|
413
|
+
</div>
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
|
418
|
+
|
419
|
+
|
420
|
+
|
421
|
+
|
422
|
+
|
423
|
+
|
424
|
+
|
425
|
+
<!-- begin injectable INJECTED_NAVSTRIP -->
|
426
|
+
<div id="injected_navstrip_wrapper" class="injected_slot">
|
427
|
+
<iframe id="injected_navstrip" name="injected_navstrip" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe> </div>
|
428
|
+
<script>ad_utils.inject_ad.register('injected_navstrip');</script>
|
429
|
+
<div id="injected_navstrip_reflow_helper"></div>
|
430
|
+
<!-- end injectable INJECTED_NAVSTRIP --><!-- _get_ad_for_slot(INJECTED_NAVSTRIP) -->
|
431
|
+
|
432
|
+
<div id="pagecontent">
|
433
|
+
|
434
|
+
|
435
|
+
|
436
|
+
<!-- begin injectable INJECTED_BILLBOARD -->
|
437
|
+
<div id="injected_billboard_wrapper" class="injected_slot">
|
438
|
+
<iframe id="injected_billboard" name="injected_billboard" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe> </div>
|
439
|
+
<script>ad_utils.inject_ad.register('injected_billboard');</script>
|
440
|
+
<div id="injected_billboard_reflow_helper"></div>
|
441
|
+
<!-- end injectable INJECTED_BILLBOARD --><!-- _get_ad_for_slot(INJECTED_BILLBOARD) -->
|
442
|
+
|
443
|
+
<table id="outerbody" border="0" width="100%" cellspacing="0" cellpadding="0" class="outer_body">
|
444
|
+
<tr valign="top" align="left"><td>
|
445
|
+
|
446
|
+
|
447
|
+
|
448
|
+
<div id="content-2-wide">
|
449
|
+
<div id="header">
|
450
|
+
<h1>All Photos from The Matrix</h1>
|
451
|
+
|
452
|
+
<a href="/rg/mediasingle/assoc-title/title/tt0133093/">The Matrix</a> >
|
453
|
+
<a href="/title/tt0133093/mediaindex">All Photos</a> >
|
454
|
+
<b>Still Frame</b>
|
455
|
+
|
456
|
+
</div>
|
457
|
+
<div id="main" style="margin-left:0px;">
|
458
|
+
|
459
|
+
<p>
|
460
|
+
<div class="leftright" style="margin-bottom:20px;">
|
461
|
+
<div id="left">
|
462
|
+
|
463
|
+
12 photos
|
464
|
+
</div>
|
465
|
+
</div>
|
466
|
+
<br class="clear" />
|
467
|
+
</p>
|
468
|
+
|
469
|
+
|
470
|
+
<div class="thumb_list" style="font-size: 0px;">
|
471
|
+
<a title="Still of Keanu Reeves and Carrie-Anne Moss in The Matrix" href="/media/rm2182645504/tt0133093"><img alt="Still of Keanu Reeves and Carrie-Anne Moss in The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTMxMDg1MjY4OF5BMl5BanBnXkFtZTcwMTU3MTIxNA@@._V1._CR290,0,1130,1130_SS100_.jpg" /></a>
|
472
|
+
|
473
|
+
<a title="Still of Carrie-Anne Moss in The Matrix" href="/media/rm2165868288/tt0133093"><img alt="Still of Carrie-Anne Moss in The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMjQ4NTAzNTE2OV5BMl5BanBnXkFtZTcwMjU3MTIxNA@@._V1._CR461,0,787,787_SS100_.jpg" /></a>
|
474
|
+
|
475
|
+
<a title="Still of Joe Pantoliano in The Matrix" href="/media/rm2149091072/tt0133093"><img alt="Still of Joe Pantoliano in The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMjAxNzc2ODE2NF5BMl5BanBnXkFtZTcwMzU3MTIxNA@@._V1._CR309,0,1092,1092_SS100_.jpg" /></a>
|
476
|
+
|
477
|
+
<a title="The Matrix" href="/media/rm2400749312/tt0133093"><img alt="The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTkyODYyMTI1N15BMl5BanBnXkFtZTcwNDU3MTIxNA@@._V1._CR394,0,921,921_SS100_.jpg" /></a>
|
478
|
+
|
479
|
+
<a title="Still of Keanu Reeves and Carrie-Anne Moss in The Matrix" href="/media/rm3262677248/tt0133093"><img alt="Still of Keanu Reeves and Carrie-Anne Moss in The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTc0OTQ3MDE5OV5BMl5BanBnXkFtZTcwNDI4MTc4Mw@@._V1._CR0,0,1342,1342_SS100_.jpg" /></a>
|
480
|
+
|
481
|
+
<a title="Still of Keanu Reeves in The Matrix" href="/media/rm3245900032/tt0133093"><img alt="Still of Keanu Reeves in The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTYyNDQyOTEyMV5BMl5BanBnXkFtZTcwNTI4MTc4Mw@@._V1._CR487,0,1074,1074_SS100_.jpg" /></a>
|
482
|
+
|
483
|
+
<a title="Still of Keanu Reeves and Hugo Weaving in The Matrix" href="/media/rm3229122816/tt0133093"><img alt="Still of Keanu Reeves and Hugo Weaving in The Matrix" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTU5NTA0OTIxNF5BMl5BanBnXkFtZTcwNjI4MTc4Mw@@._V1._CR491,0,1066,1066_SS100_.jpg" /></a>
|
484
|
+
|
485
|
+
<a title="Carrie-Anne Moss as Trinity" href="/media/rm2302712064/tt0133093"><img alt="Carrie-Anne Moss as Trinity" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTAyMDc1MTU0MDBeQTJeQWpwZ15BbWU2MDI5MzU3Nw@@._V1._CR0,0,580,580_SS100_.jpg" /></a>
|
486
|
+
|
487
|
+
<a title="Keanu Reeves as Thomas " href="/media/rm2537593088/tt0133093"><img alt="Keanu Reeves as Thomas " height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTk2MDgyNzQxMV5BMl5BanBnXkFtZTYwMzkzNTc3._V1._CR0,0,595,595_SS100_.jpg" /></a>
|
488
|
+
|
489
|
+
<a title="Keanu Reeves as Thomas " href="/media/rm2520815872/tt0133093"><img alt="Keanu Reeves as Thomas " height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMTIwMDMzODgyOV5BMl5BanBnXkFtZTYwNjkzNTc3._V1._CR0,0,582,582_SS100_.jpg" /></a>
|
490
|
+
|
491
|
+
<a title="Morpheus fights Agent Smith" href="/media/rm2487261440/tt0133093"><img alt="Morpheus fights Agent Smith" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BNTI0MTI0Mzg5NV5BMl5BanBnXkFtZTYwNzkzNTc3._V1._CR0,0,578,578_SS100_.jpg" /></a>
|
492
|
+
|
493
|
+
<a title="Morpheus and Neo" href="/media/rm2453707008/tt0133093"><img alt="Morpheus and Neo" height="100" width="100" src="http://ia.media-imdb.com/images/M/MV5BMjE1NjI1ODM5M15BMl5BanBnXkFtZTYwOTkzNTc3._V1._CR0,0,586,586_SS100_.jpg" /></a>
|
494
|
+
|
495
|
+
</div>
|
496
|
+
|
497
|
+
<p>
|
498
|
+
<div class="leftright" style="margin-bottom:20px;">
|
499
|
+
<div id="left">
|
500
|
+
|
501
|
+
12 photos
|
502
|
+
</div>
|
503
|
+
</div>
|
504
|
+
<br class="clear" />
|
505
|
+
</p>
|
506
|
+
|
507
|
+
|
508
|
+
|
509
|
+
|
510
|
+
<div>
|
511
|
+
<b>View the latest pictures, photos and images from
|
512
|
+
|
513
|
+
<a href="/title/tt0133093/" >
|
514
|
+
The Matrix</a>
|
515
|
+
</b>
|
516
|
+
- Thomas A. Anderson is a man living two lives. By day he is an average computer programmer and by night a hacker known as Neo. Neo has always questioned his reality, but the truth is far beyond his imagination. Neo finds himself targeted by the police when he is contacted by Morpheus, a legendary computer hacker branded a terrorist by the government. Morpheus awakens Neo to the real world, a ravaged wasteland where most of humanity have been captured by a race of machines that live off of the humans' body heat and electrochemical energy and who imprison their minds within an artificial reality known as the Matrix. As a rebel against the machines, Neo must return to the Matrix and confront the agents: super-powerful computer programs devoted to snuffing out Neo and the entire human rebellion.
|
517
|
+
</div>
|
518
|
+
<div>
|
519
|
+
<a href="plotsummary">Plot Summary</a>
|
520
|
+
|
|
521
|
+
<a href="synopsis">Plot Synopsis</a>
|
522
|
+
</div>
|
523
|
+
|
524
|
+
|
525
|
+
|
526
|
+
</div>
|
527
|
+
<div id="sidebar">
|
528
|
+
|
529
|
+
|
530
|
+
|
531
|
+
|
532
|
+
|
533
|
+
<!-- begin TOP_RHS -->
|
534
|
+
<div id="top_rhs_wrapper" class="dfp_slot">
|
535
|
+
<script type="text/javascript">
|
536
|
+
ad_utils.register_ad('top_rhs');
|
537
|
+
</script>
|
538
|
+
<iframe data-dart-params="#imdb2.consumer.title/;!TILE!;sz=300x250,300x600,11x1;p=tr;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;oe=utf-8;[CLIENT_SIDE_KEYVALUES];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_rhs" name="top_rhs" class="yesScript" width="300" height="250" data-original-width="300" data-original-height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
539
|
+
<noscript><a href="http://ad.doubleclick.net/N4215/jump/imdb2.consumer.title/;tile=2;sz=300x250,300x600,11x1;p=tr;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;ord=282674259004?" target="_blank"><img src="http://ad.doubleclick.net/N4215/ad/imdb2.consumer.title/;tile=2;sz=300x250,300x600,11x1;p=tr;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;ord=282674259004?" border="0" alt="advertisement" /></a></noscript>
|
540
|
+
</div>
|
541
|
+
<div id="top_rhs_reflow_helper"></div>
|
542
|
+
<script>ad_utils.render_ad_fast('top_rhs');</script>
|
543
|
+
<div id="top_rhs_after" class="after_ad" style="visibility:hidden;">
|
544
|
+
<a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a>
|
545
|
+
</div>
|
546
|
+
<!-- End TOP_RHS --><!-- _get_ad_for_slot(TOP_RHS) -->
|
547
|
+
|
548
|
+
|
549
|
+
|
550
|
+
|
551
|
+
<!-- _get_ad_for_slot(RHS_CORNERSTONE) -->
|
552
|
+
|
553
|
+
|
554
|
+
|
555
|
+
|
556
|
+
|
557
|
+
</div>
|
558
|
+
</div>
|
559
|
+
|
560
|
+
<br class="clear" />
|
561
|
+
|
562
|
+
|
563
|
+
<div id="servertime" time="425.792" treatment="control"></div>
|
564
|
+
|
565
|
+
<div id="criticalcontent" data-selector=".thumb_list img"></div>
|
566
|
+
|
567
|
+
</td></tr>
|
568
|
+
</table>
|
569
|
+
<br style="clear:both;" />
|
570
|
+
</div>
|
571
|
+
<div id="footer" class="ft">
|
572
|
+
<hr width="100%" size=1>
|
573
|
+
<div id="rvi-div">
|
574
|
+
<div class="recently-viewed"> </div>
|
575
|
+
<br class="clear">
|
576
|
+
<hr width="100%" size="1">
|
577
|
+
</div>
|
578
|
+
|
579
|
+
<p class="footer" align="center">
|
580
|
+
<a onclick="(new Image()).src='/rg/home/footer/images/b.gif?link=%2F';" href="/" >Home</a>
|
581
|
+
| <a onclick="(new Image()).src='/rg/search/footer/images/b.gif?link=%2Fsearch';" href="/search" >Search</a>
|
582
|
+
| <a onclick="(new Image()).src='/rg/siteindex/footer/images/b.gif?link=%2Fa2z';" href="/a2z" >Site Index</a>
|
583
|
+
| <a onclick="(new Image()).src='/rg/intheaters/footer/images/b.gif?link=%2Fmovies-in-theaters%2F';" href="/movies-in-theaters/" >In Theaters</a>
|
584
|
+
| <a onclick="(new Image()).src='/rg/comingsoon/footer/images/b.gif?link=%2Fmovies-coming-soon%2F';" href="/movies-coming-soon/" >Coming Soon</a>
|
585
|
+
| <a onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=%2Fchart%2F';" href="/chart/" >Top Movies</a>
|
586
|
+
| <a onclick="(new Image()).src='/rg/watchlist/footer/images/b.gif?link=%2Flist%2Fwatchlist';" href="/list/watchlist" >Watchlist</a>
|
587
|
+
| <a onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=%2Fchart%2Ftop';" href="/chart/top" >Top 250</a>
|
588
|
+
| <a onclick="(new Image()).src='/rg/tv/footer/images/b.gif?link=%2Fsections%2Ftv%2F';" href="/sections/tv/" >TV</a>
|
589
|
+
| <a onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=%2Fnews%2F';" href="/news/" >News</a>
|
590
|
+
| <a onclick="(new Image()).src='/rg/video/footer/images/b.gif?link=%2Ffeatures%2Fvideo%2F';" href="/features/video/" >Video</a>
|
591
|
+
| <a onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=%2Fboards%2F';" href="/boards/" >Message Boards</a>
|
592
|
+
| <a onclick="(new Image()).src='/rg/pressroom/footer/images/b.gif?link=%2Fpressroom%2F';" href="/pressroom/" >Press Room</a>
|
593
|
+
<br>
|
594
|
+
|
595
|
+
<a onclick="(new Image()).src='/rg/register-v2/footer/images/b.gif?link=https%3A%2F%2Fsecure.imdb.com%2Fregister-imdb%2Fform-v2';" href="https://secure.imdb.com/register-imdb/form-v2" >Register</a>
|
596
|
+
|
597
|
+
| <a onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=%2Fhelp%2Fshow_article%3Frssavailable';" href="/help/show_article?rssavailable" id="footer_rss_image" class="navbarSprite" ></a> <a onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=%2Fhelp%2Fshow_article%3Frssavailable';" href="/help/show_article?rssavailable" >RSS</a>
|
598
|
+
| <a onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=%2Fadvertising%2F';" href="/advertising/" >Advertising</a>
|
599
|
+
| <a onclick="(new Image()).src='/rg/helpdesk/footer/images/b.gif?link=%2Fhelpdesk%2Fcontact';" href="/helpdesk/contact" >Contact Us</a>
|
600
|
+
| <a onclick="(new Image()).src='/rg/jobs/footer/images/b.gif?link=%2Fjobs';" href="/jobs" >Jobs</a>
|
601
|
+
| <a href="https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627" onClick="(new Image()).src='/rg/IMDbFooter/prosystem/images/b.gif?link=https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627';">IMDbPro</a>
|
602
|
+
| <a href="http://www.boxofficemojo.com" onClick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com';">Box Office Mojo</a>
|
603
|
+
| <a href="http://www.withoutabox.com" onClick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com';">Withoutabox</a>
|
604
|
+
| <a href="http://www.lovefilm.com/browse/film/watch-online/" onClick="(new Image()).src='/rg/LOVEFILM/FOOTER/images/b.gif?link=http://www.lovefilm.com/browse/film/watch-online/';">LOVEFiLM</a>
|
605
|
+
<br /><br />
|
606
|
+
IMDb Mobile:
|
607
|
+
<a onclick="(new Image()).src='/rg/mobile-ios/footer/images/b.gif?link=%2Fapps%2Fios%2F';" href="/apps/ios/" >iPhone/iPad</a>
|
608
|
+
| <a onclick="(new Image()).src='/rg/mobile-android/footer/images/b.gif?link=%2Fandroid';" href="/android" >Android</a>
|
609
|
+
| <a onclick="(new Image()).src='/rg/mobile-web/footer/images/b.gif?link=http%3A%2F%2Fm.imdb.com';" href="http://m.imdb.com" >Mobile site</a>
|
610
|
+
| <a onclick="(new Image()).src='/rg/mobile-win7/footer/images/b.gif?link=%2Fwindowsphone';" href="/windowsphone" >Windows Phone 7</a>
|
611
|
+
| IMDb Social:
|
612
|
+
<a onclick="(new Image()).src='/rg/facebook/footer/images/b.gif?link=http%3A%2F%2Fwww.facebook.com%2Fimdb';" href="http://www.facebook.com/imdb" >Facebook</a>
|
613
|
+
| <a onclick="(new Image()).src='/rg/twitter/footer/images/b.gif?link=http%3A%2F%2Ftwitter.com%2Fimdb';" href="http://twitter.com/imdb" >Twitter</a>
|
614
|
+
<br><br>
|
615
|
+
</p>
|
616
|
+
<p class="footer" align="center">
|
617
|
+
|
618
|
+
<a href="/help/show_article?conditions">Copyright ©</a> 1990-2013
|
619
|
+
<a href="/help/">IMDb.com, Inc.</a>
|
620
|
+
<br>
|
621
|
+
<a href="/help/show_article?conditions">Conditions of Use</a> | <a href="/privacy">Privacy Policy</a> | <a href="//www.amazon.com/InterestBasedAds">Interest-Based Ads</a>
|
622
|
+
<br>
|
623
|
+
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF75f161ebbfc922250664ab159771f349/wheel/logo.css" >
|
624
|
+
An <img id="amazon_logo" align="middle" style="width:80px;height:19px;border:0 none" src="http://i.media-imdb.com/images/SF9bb191c6827273aa978cab39a3587950/b.gif"/> company.
|
625
|
+
|
626
|
+
</p>
|
627
|
+
<table class="footer" id="amazon-affiliates">
|
628
|
+
<tr>
|
629
|
+
<td colspan="10">
|
630
|
+
Amazon Affiliates
|
631
|
+
</td>
|
632
|
+
</tr>
|
633
|
+
<tr>
|
634
|
+
<td class="amazon-affiliate-site-first">
|
635
|
+
<a class="amazon-affiliate-site-link"
|
636
|
+
href="http://www.amazon.com/b?ie=UTF8&node=2858778011&tag=imdbpr1-20">
|
637
|
+
<span class="amazon-affiliate-site-name">Amazon Instant Video</span><br>
|
638
|
+
<span class="amazon-affiliate-site-desc">Watch Movies &<br>TV Online</span>
|
639
|
+
</a>
|
640
|
+
</td>
|
641
|
+
<td class="amazon-affiliate-site-item-nth">
|
642
|
+
<a class="amazon-affiliate-site-link"
|
643
|
+
href="http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20">
|
644
|
+
<span class="amazon-affiliate-site-name">Prime Instant Video</span><br>
|
645
|
+
<span class="amazon-affiliate-site-desc">Unlimited Streaming<br>of Movies & TV</span>
|
646
|
+
</a>
|
647
|
+
</td>
|
648
|
+
<td class="amazon-affiliate-site-item-nth">
|
649
|
+
<a class="amazon-affiliate-site-link"
|
650
|
+
href="http://www.amazon.de/b?ie=UTF8&node=284266&tag=imdbpr1-de-21">
|
651
|
+
<span class="amazon-affiliate-site-name">Amazon Germany</span><br>
|
652
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
653
|
+
</a>
|
654
|
+
</td>
|
655
|
+
<td class="amazon-affiliate-site-item-nth">
|
656
|
+
<a class="amazon-affiliate-site-link"
|
657
|
+
href="http://www.amazon.it/b?ie=UTF8&node=412606031&tag=imdbpr1-it-21">
|
658
|
+
<span class="amazon-affiliate-site-name">Amazon Italy</span><br>
|
659
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
660
|
+
</a>
|
661
|
+
</td>
|
662
|
+
<td class="amazon-affiliate-site-item-nth">
|
663
|
+
<a class="amazon-affiliate-site-link"
|
664
|
+
href="http://www.amazon.fr/b?ie=UTF8&node=405322&tag=imdbpr1-fr-21">
|
665
|
+
<span class="amazon-affiliate-site-name">Amazon France</span><br>
|
666
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
667
|
+
</a>
|
668
|
+
</td>
|
669
|
+
<td class="amazon-affiliate-site-item-nth">
|
670
|
+
<a class="amazon-affiliate-site-link" href="http://www.lovefilm.com/browse/film/watch-online/">
|
671
|
+
<span class="amazon-affiliate-site-name">LOVEFiLM</span><br>
|
672
|
+
<span class="amazon-affiliate-site-desc">Watch Movies<br>Online</span>
|
673
|
+
</a>
|
674
|
+
</td>
|
675
|
+
<td class="amazon-affiliate-site-item-nth">
|
676
|
+
<a class="amazon-affiliate-site-link" href="http://wireless.amazon.com">
|
677
|
+
<span class="amazon-affiliate-site-name">Amazon Wireless</span><br>
|
678
|
+
<span class="amazon-affiliate-site-desc">Cellphones &<br>Wireless Plans</span>
|
679
|
+
</a>
|
680
|
+
</td>
|
681
|
+
<td class="amazon-affiliate-site-item-nth">
|
682
|
+
<a class="amazon-affiliate-site-link" href="http://www.junglee.com/">
|
683
|
+
<span class="amazon-affiliate-site-name">Junglee</span><br>
|
684
|
+
<span class="amazon-affiliate-site-desc">India Online<br>Shopping</span>
|
685
|
+
</a>
|
686
|
+
</td>
|
687
|
+
<td class="amazon-affiliate-site-item-nth">
|
688
|
+
<a class="amazon-affiliate-site-link" href="http://www.dpreview.com">
|
689
|
+
<span class="amazon-affiliate-site-name">DPReview</span><br>
|
690
|
+
<span class="amazon-affiliate-site-desc">Digital<br>Photography</span>
|
691
|
+
</a>
|
692
|
+
</td>
|
693
|
+
<td class="amazon-affiliate-site-item-nth">
|
694
|
+
<a class="amazon-affiliate-site-link" href="http://www.audible.com">
|
695
|
+
<span class="amazon-affiliate-site-name">Audible</span><br>
|
696
|
+
<span class="amazon-affiliate-site-desc">Download<br>Audio Books</span></a>
|
697
|
+
</td>
|
698
|
+
</tr>
|
699
|
+
</table>
|
700
|
+
|
701
|
+
</div>
|
702
|
+
|
703
|
+
|
704
|
+
|
705
|
+
|
706
|
+
|
707
|
+
|
708
|
+
<!-- begin BOTTOM_AD -->
|
709
|
+
<div id="bottom_ad_wrapper" class="dfp_slot">
|
710
|
+
<script type="text/javascript">
|
711
|
+
ad_utils.register_ad('bottom_ad');
|
712
|
+
</script>
|
713
|
+
<iframe data-dart-params="#imdb2.consumer.title/;!TILE!;sz=728x90,2x1;p=b;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;oe=utf-8;[CLIENT_SIDE_KEYVALUES];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="bottom_ad" name="bottom_ad" class="yesScript" width="728" height="90" data-original-width="728" data-original-height="90" data-config-width="728" data-config-height="90" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
714
|
+
<noscript><a href="http://ad.doubleclick.net/N4215/jump/imdb2.consumer.title/;tile=3;sz=728x90,2x1;p=b;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;ord=282674259004?" target="_blank"><img src="http://ad.doubleclick.net/N4215/ad/imdb2.consumer.title/;tile=3;sz=728x90,2x1;p=b;g=ac;g=ad;g=sf;g=baa;tt=f;m=R;mh=R;ml=R;coo=us;coo=au;b=t25;b=t250;fv=1;id=tt0133093;ord=282674259004?" border="0" alt="advertisement" /></a></noscript>
|
715
|
+
</div>
|
716
|
+
<div id="bottom_ad_reflow_helper"></div>
|
717
|
+
<script>ad_utils.render_ad_fast('bottom_ad');</script>
|
718
|
+
<!-- End BOTTOM_AD --><!-- _get_ad_for_slot(BOTTOM_AD) -->
|
719
|
+
|
720
|
+
|
721
|
+
|
722
|
+
</layer>
|
723
|
+
</div>
|
724
|
+
<img src="/rd/?q=50703000000030a090f29616f226e276966600000010c6a08023031333038303430000001037a040379646370000001047&cb=137562721911386" width="1" height="1" alt="" border="0">
|
725
|
+
</div> <!-- id="wrapper" -->
|
726
|
+
<!-- h=iop106 i=2013-08-02 s=legacy(default) t='Sun Aug 4 07:40:19 2013' -->
|
727
|
+
<script src="http://i.media-imdb.com/images/SF539be3987208630802e712857c51a6c9/js/jquery.js" ></script><script src="http://i.media-imdb.com/images/SF4f789f206c87a31b26eb8666da48322e/js/app/win7/sitemode.js" ></script><!-- begin ads footer -->
|
728
|
+
<!-- Begin SIS-SW code -->
|
729
|
+
<iframe id="sis_pixel_sitewide" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe>
|
730
|
+
<script>
|
731
|
+
setTimeout(function(){
|
732
|
+
try{
|
733
|
+
if (! document.getElementById('sis_pixel_3')) {
|
734
|
+
var url_sis = 'http://s.amazon-adsystem.com/iu3?',
|
735
|
+
params_sis = [
|
736
|
+
"d=imdb.com",
|
737
|
+
"a1=",
|
738
|
+
"a2=",
|
739
|
+
"pId=",
|
740
|
+
"r=1",
|
741
|
+
"rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0133093%2Fmediaindex%3Frefine%3Dstill_frame",
|
742
|
+
"encoding=server",
|
743
|
+
"cb=282674259004"
|
744
|
+
];
|
745
|
+
(document.getElementById('sis_pixel_sitewide')).src = url_sis + params_sis.join('&');
|
746
|
+
}
|
747
|
+
}
|
748
|
+
catch(e){
|
749
|
+
consoleLog('Pixel failure ' + e.toString(),'sis');
|
750
|
+
}
|
751
|
+
}, 5);
|
752
|
+
|
753
|
+
</script>
|
754
|
+
<!-- End SIS-SW code -->
|
755
|
+
|
756
|
+
<!-- begin springroll comscore beacon -->
|
757
|
+
<script type="text/javascript" src='http://z-ecx.images-amazon.com/images/G/01/imdbads/js/beacon-58460835._V379390778_.js'></script>
|
758
|
+
<script type="text/javascript">
|
759
|
+
COMSCORE.beacon({
|
760
|
+
c1: 2,
|
761
|
+
c2:"6034961",
|
762
|
+
c3:"",
|
763
|
+
c4:"http://www.imdb.com/title/tt0133093/mediaindex?refine=still_frame",
|
764
|
+
c5:"",
|
765
|
+
c6:"",
|
766
|
+
c15:""
|
767
|
+
});
|
768
|
+
</script>
|
769
|
+
<noscript>
|
770
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0133093%2Fmediaindex%3Frefine%3Dstill_frame&c5=c6=&15=&cj=1"/>
|
771
|
+
</noscript>
|
772
|
+
<!-- end springroll comscore beacon -->
|
773
|
+
|
774
|
+
<script type="text/javascript">
|
775
|
+
(function() {
|
776
|
+
var foreseescript = document.createElement("script");
|
777
|
+
foreseescript.setAttribute("defer", true);
|
778
|
+
foreseescript.setAttribute("src", "http://z-ecx.images-amazon.com/images/G/01/imdbads/foresee/foresee-trigger-4277353327._V379388232_.js");
|
779
|
+
document.getElementsByTagName("head")[0].appendChild(foreseescript);
|
780
|
+
})();
|
781
|
+
</script>
|
782
|
+
<script>
|
783
|
+
(function() {
|
784
|
+
var aanSegmentScript = document.createElement('script'),
|
785
|
+
url = "http://www.amazon.com/aan/2009-05-01/imdb/default?slot=sitewide-iframe&u=[CLIENT_SIDE_ORD]&ord=[CLIENT_SIDE_ORD]",
|
786
|
+
final_url = url.replace(ad_utils.ord_regex, ad_utils.ord);
|
787
|
+
|
788
|
+
aanSegmentScript.setAttribute("defer", true);
|
789
|
+
aanSegmentScript.src = final_url;
|
790
|
+
document.getElementsByTagName("head")[0].appendChild(aanSegmentScript);
|
791
|
+
})();
|
792
|
+
</script>
|
793
|
+
|
794
|
+
<script>(function(g){window.jQuery && jQuery(function(){g.document_is_ready()});g.monitoring.stop_timing('page_load','',true);g.monitoring.all_events_started();})(generic);</script>
|
795
|
+
<!-- end ads footer -->
|
796
|
+
<script src="http://i.media-imdb.com/images/SF478cec6a48c8de4413dbc404879752d1/js/jquery/plugins/jquery.colorbox-min.js" ></script><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF73051487323537a6449a6bb75bc86d43/css/min/lightbox.css" ><script type="text/imdblogin-js" id="login">
|
797
|
+
jQuery(document).ready(function(){
|
798
|
+
window.imdb.login_lightbox("https://secure.imdb.com",
|
799
|
+
"http://www.imdb.com/title/tt0133093/mediaindex?refine=still_frame");
|
800
|
+
});
|
801
|
+
</script>
|
802
|
+
<script src="http://i.media-imdb.com/images/SF124828d5e3ce85f98c8cfc700bceb7d1/js/cc/loginbox.js" ></script><script src="http://i.media-imdb.com/images/SF4fc1fad51f421b89bc458c801122c287/js/navbar.js" ></script><script src="http://i.media-imdb.com/images/SF2acc8d694b360edb1f184747accc161f/js/cc/suggestionsearch.js" charset="UTF-8"></script><script src="http://i.media-imdb.com/images/SFa507920689e62a48c5db36fb1f549cb3/a/js/timer.js" ></script><script src="http://i.media-imdb.com/images/SF13b529abb2d7f5490100996dd20b6a68/js/jquery/plugins/jquery.appear-1.1.1.min.js" ></script><script src="http://i.media-imdb.com/images/SFa4be5baa8d51e22640d81fa1e6773c7c/js/app/clickstream/rvi.js" ></script>
|
803
|
+
|
804
|
+
<script type="text/javascript">
|
805
|
+
|
806
|
+
var _gaq = _gaq || [];
|
807
|
+
_gaq.push(['_setAccount', 'UA-3916519-1']);
|
808
|
+
_gaq.push(['_setDomainName', '.imdb.com']); _gaq.push(['_setSampleRate', '10']);
|
809
|
+
_gaq.push(['_trackPageview']); // must come last
|
810
|
+
|
811
|
+
(function() {
|
812
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
813
|
+
ga.src = 'http://www.google-analytics.com/ga.js';
|
814
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
815
|
+
})();
|
816
|
+
|
817
|
+
</script>
|
818
|
+
<script src="http://i.media-imdb.com/images/SF14176f459bd0474f6a0284a9c3ba61f7/a/js/beacon.js" ></script><script>COMSCORE.beacon({c1:2,c2:"6034961",c3:"",c4:"http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0133093%2Fmediaindex%3Frefine%3Dstill_frame",c5:"",c6:"",c15:""});</script>
|
819
|
+
<noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0133093%2Fmediaindex%3Frefine%3Dstill_frame&c5=c6=&15=&cj=1"/></noscript>
|
820
|
+
|
821
|
+
</body>
|
822
|
+
</html>
|
data/spec/spec_helper.rb
CHANGED
@@ -30,7 +30,8 @@ IMDB_SAMPLES = {
|
|
30
30
|
"http://www.imdb.com/movies-coming-soon/" => "movies_coming_soon",
|
31
31
|
"http://www.imdb.com/name/nm0005132/" => "nm0005132/index",
|
32
32
|
"http://www.imdb.com/name/nm1659547/" => "nm1659547/index",
|
33
|
-
"http://www.imdb.com/name/nm0864666/" => "nm0864666/index"
|
33
|
+
"http://www.imdb.com/name/nm0864666/" => "nm0864666/index",
|
34
|
+
"http://www.imdb.com/title/tt0133093/mediaindex?refine=still_frame" => "tt0133093/mediaindex_still_frame"
|
34
35
|
}
|
35
36
|
|
36
37
|
unless ENV['LIVE_TEST']
|
data/spec/spotlite/movie_spec.rb
CHANGED
@@ -106,6 +106,15 @@ describe "Spotlite::Movie" do
|
|
106
106
|
end
|
107
107
|
end
|
108
108
|
|
109
|
+
it "should return an array of recommended movies as an array of initialized objects of Movie class" do
|
110
|
+
@movie.recommended_movies.should be_an(Array)
|
111
|
+
@movie.recommended_movies.size.should eql(12)
|
112
|
+
@movie.recommended_movies.each {|movie| movie.should be_a(Spotlite::Movie)}
|
113
|
+
@movie.recommended_movies.first.imdb_id.should eql("0234215")
|
114
|
+
@movie.recommended_movies.first.title.should eql("The Matrix Reloaded")
|
115
|
+
@movie.recommended_movies.first.year.should eql(2003)
|
116
|
+
end
|
117
|
+
|
109
118
|
it "should return plot keywords" do
|
110
119
|
@movie.keywords.should be_an(Array)
|
111
120
|
@movie.keywords.size.should be_within(50).of(250)
|
@@ -219,6 +228,15 @@ describe "Spotlite::Movie" do
|
|
219
228
|
)
|
220
229
|
end
|
221
230
|
|
231
|
+
it "should return an array of still frames URLs" do
|
232
|
+
@movie.images.should be_an(Array)
|
233
|
+
@movie.images.size.should eql(12)
|
234
|
+
@movie.images.should include(
|
235
|
+
"http://ia.media-imdb.com/images/M/MV5BMjQ4NTAzNTE2OV5BMl5BanBnXkFtZTcwMjU3MTIxNA@@.jpg",
|
236
|
+
"http://ia.media-imdb.com/images/M/MV5BMTAyMDc1MTU0MDBeQTJeQWpwZ15BbWU2MDI5MzU3Nw@@.jpg"
|
237
|
+
)
|
238
|
+
end
|
239
|
+
|
222
240
|
end
|
223
241
|
|
224
242
|
end
|
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spotlite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.7.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Artem Pakk
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-08-04 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: nokogiri
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -30,7 +27,6 @@ dependencies:
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rspec
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
@@ -38,7 +34,6 @@ dependencies:
|
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - ~>
|
44
39
|
- !ruby/object:Gem::Version
|
@@ -46,17 +41,15 @@ dependencies:
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: fakeweb
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>='
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>='
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
55
|
description: Spotlite gem helps you fetch all kinds of publicly available information
|
@@ -71,7 +64,6 @@ files:
|
|
71
64
|
- .gitignore
|
72
65
|
- CHANGELOG.md
|
73
66
|
- Gemfile
|
74
|
-
- LICENSE.txt
|
75
67
|
- README.md
|
76
68
|
- Rakefile
|
77
69
|
- lib/spotlite.rb
|
@@ -101,6 +93,7 @@ files:
|
|
101
93
|
- spec/fixtures/tt0133093/fullcredits
|
102
94
|
- spec/fixtures/tt0133093/index
|
103
95
|
- spec/fixtures/tt0133093/keywords
|
96
|
+
- spec/fixtures/tt0133093/mediaindex_still_frame
|
104
97
|
- spec/fixtures/tt0133093/releaseinfo
|
105
98
|
- spec/fixtures/tt0133093/trivia
|
106
99
|
- spec/fixtures/tt0169547/index
|
@@ -119,27 +112,26 @@ files:
|
|
119
112
|
homepage: http://github.com/defeed/spotlite
|
120
113
|
licenses:
|
121
114
|
- MIT
|
115
|
+
metadata: {}
|
122
116
|
post_install_message:
|
123
117
|
rdoc_options: []
|
124
118
|
require_paths:
|
125
119
|
- lib
|
126
120
|
required_ruby_version: !ruby/object:Gem::Requirement
|
127
|
-
none: false
|
128
121
|
requirements:
|
129
|
-
- -
|
122
|
+
- - '>='
|
130
123
|
- !ruby/object:Gem::Version
|
131
124
|
version: '0'
|
132
125
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
133
|
-
none: false
|
134
126
|
requirements:
|
135
|
-
- -
|
127
|
+
- - '>='
|
136
128
|
- !ruby/object:Gem::Version
|
137
129
|
version: '0'
|
138
130
|
requirements: []
|
139
131
|
rubyforge_project:
|
140
|
-
rubygems_version:
|
132
|
+
rubygems_version: 2.0.3
|
141
133
|
signing_key:
|
142
|
-
specification_version:
|
134
|
+
specification_version: 4
|
143
135
|
summary: Ruby gem to fetch publicly available information about movies from IMDb
|
144
136
|
test_files:
|
145
137
|
- spec/fixtures/movies_coming_soon
|
@@ -157,6 +149,7 @@ test_files:
|
|
157
149
|
- spec/fixtures/tt0133093/fullcredits
|
158
150
|
- spec/fixtures/tt0133093/index
|
159
151
|
- spec/fixtures/tt0133093/keywords
|
152
|
+
- spec/fixtures/tt0133093/mediaindex_still_frame
|
160
153
|
- spec/fixtures/tt0133093/releaseinfo
|
161
154
|
- spec/fixtures/tt0133093/trivia
|
162
155
|
- spec/fixtures/tt0169547/index
|
data/LICENSE.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright (c) 2013 Artem Pakk
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|