tomato_power 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.gitignore +18 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +9 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +57 -0
  7. data/Rakefile +1 -0
  8. data/lib/tomato_power/api/api.rb +97 -0
  9. data/lib/tomato_power/api/tomato_methods.rb +82 -0
  10. data/lib/tomato_power/client.rb +35 -0
  11. data/lib/tomato_power/helpers/helpers.rb +12 -0
  12. data/lib/tomato_power/helpers/parsers.rb +28 -0
  13. data/lib/tomato_power/movie/actor.rb +12 -0
  14. data/lib/tomato_power/movie/clip.rb +10 -0
  15. data/lib/tomato_power/movie/movie.rb +56 -0
  16. data/lib/tomato_power/movie/review.rb +15 -0
  17. data/lib/tomato_power/version.rb +3 -0
  18. data/lib/tomato_power.rb +22 -0
  19. data/spec/spec_helper.rb +5 -0
  20. data/spec/support/sample_data/no_results +1 -0
  21. data/spec/support/sample_data/sample_actor +5 -0
  22. data/spec/support/sample_data/sample_actors +186 -0
  23. data/spec/support/sample_data/sample_alias +64 -0
  24. data/spec/support/sample_data/sample_clip +6 -0
  25. data/spec/support/sample_data/sample_clips +147 -0
  26. data/spec/support/sample_data/sample_movie +1 -0
  27. data/spec/support/sample_data/sample_movies +46 -0
  28. data/spec/support/sample_data/sample_review +8 -0
  29. data/spec/support/sample_data/sample_reviews +191 -0
  30. data/spec/support/vcr/TomatoPower_API/API_Methods/valid_methods/should_create_methods.yml +598 -0
  31. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_consider_0_options_valid.yml +306 -0
  32. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_not_raise_error.yml +101 -0
  33. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_return_a_list_of_movie_objects.yml +101 -0
  34. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_url_encode_search_string_before_sending.yml +102 -0
  35. data/spec/support/vcr/TomatoPower_API/List_request/should_return_a_list_of_movie_objects.yml +101 -0
  36. data/spec/support/vcr/TomatoPower_API/List_request/should_url_encode_search_string_before_sending.yml +102 -0
  37. data/spec/support/vcr/TomatoPower_API/Movie_request/cast/should_return_cast_of_movie.yml +356 -0
  38. data/spec/support/vcr/TomatoPower_API/Movie_request/clips/should_return_clips_of_movie.yml +638 -0
  39. data/spec/support/vcr/TomatoPower_API/Movie_request/no_results/should_return_error_string_if_no_results_are_found.yml +49 -0
  40. data/spec/support/vcr/TomatoPower_API/Movie_request/reviews/should_return_reviews.yml +271 -0
  41. data/spec/support/vcr/TomatoPower_API/Movie_request/should_return_single_movie.yml +161 -0
  42. data/spec/support/vcr/TomatoPower_API/Movie_request/similar/should_return_similar_movies.yml +121 -0
  43. data/spec/support/vcr/TomatoPower_Client/box_office_movies/should_return_list_of_movies.yml +396 -0
  44. data/spec/support/vcr/TomatoPower_Client/current_release_dvds/should_return_list_of_movies.yml +427 -0
  45. data/spec/support/vcr/TomatoPower_Client/in_theaters_movies/should_return_list_of_movies.yml +380 -0
  46. data/spec/support/vcr/TomatoPower_Client/new_release_dvds/should_return_list_of_movies.yml +392 -0
  47. data/spec/support/vcr/TomatoPower_Client/opening_movies/should_return_list_of_movies.yml +213 -0
  48. data/spec/support/vcr/TomatoPower_Client/search_by_id/should_return_list_of_movies_by_id.yml +88 -0
  49. data/spec/support/vcr/TomatoPower_Client/search_by_title/should_return_list_of_movies_by_title.yml +89 -0
  50. data/spec/support/vcr/TomatoPower_Client/top_rentals/should_return_list_of_movies.yml +409 -0
  51. data/spec/support/vcr/TomatoPower_Client/upcoming_dvds/should_return_list_of_movies.yml +359 -0
  52. data/spec/support/vcr/TomatoPower_Client/upcoming_movies/should_return_list_of_movies.yml +341 -0
  53. data/spec/support/vcr/TomatoPower_Movie/clips/should_return_clips.yml +250 -0
  54. data/spec/support/vcr/TomatoPower_Movie/full_cast/should_return_cast.yml +279 -0
  55. data/spec/support/vcr/TomatoPower_Movie/reviews/should_return_reviews.yml +205 -0
  56. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similar_movies.yml +231 -0
  57. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similars.yml +81 -0
  58. data/spec/support/vcr.rb +13 -0
  59. data/spec/unit_specs/actor_spec.rb +16 -0
  60. data/spec/unit_specs/api_spec.rb +126 -0
  61. data/spec/unit_specs/client_spec.rb +73 -0
  62. data/spec/unit_specs/clip_spec.rb +14 -0
  63. data/spec/unit_specs/helpers.rb +50 -0
  64. data/spec/unit_specs/helpers_spec.rb +4 -0
  65. data/spec/unit_specs/movie_spec.rb +75 -0
  66. data/spec/unit_specs/parsers_spec.rb +55 -0
  67. data/spec/unit_specs/review_spec.rb +17 -0
  68. data/spec/unit_specs/tomato_power_spec.rb +6 -0
  69. data/tomato_power.gemspec +29 -0
  70. metadata +295 -0
@@ -0,0 +1,638 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/771189410/clips.json?apikey=<API_KEY>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Wed, 20 Feb 2013 18:51:40 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=5A9A27D1020B518A84C461FF1072237C.localhost; Path=/
35
+ - ServerID=1335; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1d-20.mashery.com
40
+ Content-Length:
41
+ - '4645'
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! '
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+ {"clips":[{"title":"Jack The Giant Slayer","duration":"128","thumbnail":"http://content.internetvideoarchive.com/content/photos/6993/455091_060.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11161153"}},{"title":"Jack
76
+ The Giant Slayer (Uk)","duration":"94","thumbnail":"http://content.internetvideoarchive.com/content/photos/7566/31669_048.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11161217"}},{"title":"Jack
77
+ The Giant Slayer: Bryan Singer On Using Sumi-cam","duration":"74","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/118492_005.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176077"}},{"title":"Jack
78
+ The Giant Slayer: Eddie Marsan On His Character","duration":"65","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/548428_006.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176078"}},{"title":"Jack
79
+ The Giant Slayer: Ewan Mcgregor On His Character","duration":"35","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/763022_014.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176079"}},{"title":"Jack
80
+ The Giant Slayer: Bill Nighy On Playing The Role Of A Giant","duration":"64","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/209510_020.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176080"}},{"title":"Jack
81
+ The Giant Slayer: Ian Mcshane On Giants In The Film","duration":"16","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/561642_002.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176081"}},{"title":"Jack
82
+ The Giant Slayer: Stanley Tucci On His Character","duration":"25","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/762171_009.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176082"}},{"title":"Jack
83
+ The Giant Slayer: Eleanor Tomlinson On The Adaptation Of The Story","duration":"46","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/403103_005.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176083"}},{"title":"Jack
84
+ The Giant Slayer: Nicholas Hoult On His Character","duration":"89","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/564509_015.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176084"}},{"title":"Jack
85
+ The Giant Slayer: Do These Giants Have Any Weaknesses?","duration":"59","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/578054_008.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176085"}},{"title":"Jack
86
+ The Giant Slayer: Run!","duration":"57","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/178016_027.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176086"}},{"title":"Jack
87
+ The Giant Slayer: Here Comes The Thunder","duration":"75","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/712750_009.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176087"}},{"title":"Jack
88
+ The Giant Slayer: I Had This","duration":"69","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/312795_026.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176088"}},{"title":"Jack
89
+ The Giant Slayer: There''s Someone Behind Me Isn''t There?","duration":"65","thumbnail":"http://content.internetvideoarchive.com/content/photos/8233/959249_025.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11176089"}},{"title":"Jack
90
+ The Giant Slayer (Trailer 1)","duration":"100","thumbnail":"http://content.internetvideoarchive.com/content/photos/6993/455091_060_1.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11175869"}},{"title":"Jack
91
+ The Giant Slayer Trailer","duration":"147","thumbnail":"","links":{"alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/11174140"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771189410/clips.json","alternate":"http://www.rottentomatoes.com/m/jack_the_giant_slayer/trailers/","rel":"http://api.rottentomatoes.com/api/public/v1.0/movies/771189410.json"}}
92
+
93
+ '
94
+ http_version:
95
+ recorded_at: Wed, 20 Feb 2013 18:51:40 GMT
96
+ - request:
97
+ method: get
98
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/id/clips.json?apikey=<API_KEY>
99
+ body:
100
+ encoding: US-ASCII
101
+ string: ''
102
+ headers:
103
+ Accept:
104
+ - ! '*/*'
105
+ User-Agent:
106
+ - Ruby
107
+ response:
108
+ status:
109
+ code: 500
110
+ message: Internal Server Error
111
+ headers:
112
+ Cache-Control:
113
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
114
+ Content-Language:
115
+ - en-US
116
+ Content-Type:
117
+ - text/html; charset=UTF-8
118
+ Date:
119
+ - Wed, 20 Feb 2013 19:50:20 GMT
120
+ Expires:
121
+ - Sat, 6 May 1995 12:00:00 GMT
122
+ Pragma:
123
+ - no-cache
124
+ Server:
125
+ - Mashery Proxy
126
+ Vary:
127
+ - User-Agent,Accept-Encoding
128
+ X-Mashery-Responder:
129
+ - prod-j-worker-us-east-1c-19.mashery.com
130
+ Transfer-Encoding:
131
+ - chunked
132
+ Connection:
133
+ - keep-alive
134
+ body:
135
+ encoding: US-ASCII
136
+ string: ! "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<!DOCTYPE html>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
137
+ \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<html lang=\"en\" xmlns:fb=\"http://www.facebook.com/2008/fbml\"
138
+ xmlns:og=\"http://opengraphprotocol.org/schema/\">\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<head
139
+ prefix=\"og: http://ogp.me/ns# flixstertomatoes: http://ogp.me/ns/apps/flixstertomatoes#\">\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\n<meta
140
+ http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>Oops!</title>\n\n\n<meta
141
+ name=\"robots\" content=\"NOINDEX\" />\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\n\n\n<link
142
+ rel=\"apple-touch-icon\" href=\"http://images.rottentomatoescdn.com/images/icons/apple-touch-icon.png\"/>\n\n<link
143
+ rel=\"shortcut icon\" href=\"http://images.rottentomatoescdn.com/images/icons/favicon.ico\"
144
+ type=\"image/x-icon\"/>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\t<link
145
+ rel=\"stylesheet\" href=\"//images.rottentomatoescdn.com/assets/v/prod20130219/styles?f=/styles/rt_global.css&f=/styles/comp/Autocomplete.css&f=/styles/comp/Rating.css&f=/styles/comp/social.css&f=/styles/comp/LoginDialog.css&f=/styles/jqueryui/rt-theme/jquery-ui-1.8.13.custom-dialog.css\"\"
146
+ type=\"text/css\"/>\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\t<link
147
+ rel=\"stylesheet\" href=\"//images.rottentomatoescdn.com/assets/v/prod20130219/styles?f=/styles/comp/LoginDialog.css\"
148
+ type=\"text/css\"/>\n\t\n\t\n \t\n<style></style>\t\t\t\t\t\t\t\t\t\t\t\n\n\n\n<script
149
+ src=\"//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js\"></script>\n\n\n<script
150
+ type='text/javascript'>\nvar googletag = googletag || {};\ngoogletag.cmd =
151
+ googletag.cmd || [];\n(function() {\nvar gads = document.createElement('script');\ngads.async
152
+ = true;\ngads.type = 'text/javascript';\nvar useSSL = 'https:' == document.location.protocol;\ngads.src
153
+ = (useSSL ? 'https:' : 'http:') + \n'//www.googletagservices.com/tag/js/gpt.js';\nvar
154
+ node = document.getElementsByTagName('script')[0];\nnode.parentNode.insertBefore(gads,
155
+ node);\n})();\n</script>\n\n\n<script type=\"text/javascript\">\nvar _gaq
156
+ = _gaq || [['_setAccount', 'UA-2265251-1']];\n</script>\n\n\n\n\n\n\n\n\n\n<script>\n\t//
157
+ Swallow console.log in IE8 to prevent JS error.\n\tif (typeof console ===
158
+ \"undefined\" || typeof console.log === \"undefined\") {\n\t\tconsole={};\n\t\tconsole.log
159
+ = function(msg){};\n\t\tconsole.error = function(msg){};\n\t}\t\n\t\n\tRT
160
+ = window.RT || {};\n\t\n\tRT.getCookie = function(c) {\n\t\tvar d = document.cookie.indexOf(c
161
+ + \"=\");\n\t\tvar a = d + c.length + 1;\n\t\tif ((!d) && (c != document.cookie.substring(0,
162
+ c.length))) {\n\t\t\treturn null\n\t\t}\n\t\tif (d == -1) {\n\t\t\treturn
163
+ null\n\t\t}\n\t\tvar b = document.cookie.indexOf(\";\", a);\n\t\tif (b ==
164
+ -1) {\n\t\t\tb = document.cookie.length\n\t\t}\n\t\treturn unescape(document.cookie.substring(a,
165
+ b))\n\t};\n\twindow.getCookie = RT.getCookie;\n\t\n\t/* RT.setCookie(key,
166
+ value, expires_days, path, domain, secure) */\n\tRT.setCookie = function(c,
167
+ e, a, h, d, g) {\n\t\tvar b = new Date();\n\t\tb.setTime(b.getTime());\n\t\tif
168
+ (a) {\n\t\t\ta = a * 1000 * 60 * 60 * 24\n\t\t}\n\t\tvar f = new Date(b.getTime()
169
+ + (a));\n\t\tdocument.cookie = c + \"=\" + encodeURIComponent(e)\n\t\t\t\t+
170
+ ((a) ? \";expires=\" + f.toGMTString() : \"\")\n\t\t\t\t+ ((h) ? \";path=\"
171
+ + h : \"\") + ((d) ? \";domain=\" + d : \"\")\n\t\t\t\t+ ((g) ? \";secure\"
172
+ : \"\")\n\t}\n\twindow.setCookie = RT.setCookie;\n\t\n\tRT.deleteCookie =
173
+ function(a, c, b) {\n\t\tif (getCookie(a)) {\n\t\t\tdocument.cookie = a +
174
+ \"=\" + ((c) ? \";path=\" + c : \"\")\n\t\t\t\t\t+ ((b) ? \";domain=\" + b
175
+ : \"\")\n\t\t\t\t\t+ \";expires=Thu, 01-Jan-1970 00:00:01 GMT\"\n\t\t}\n\t}\n\twindow.deleteCookie
176
+ = RT.deleteCookie;\n\t\n\tRT.cookieHas = function(sKey) { \n\t\treturn (new
177
+ RegExp(\"(?:^|;\\\\s*)\" + escape(sKey).replace(/[\\-\\.\\+\\*]/g, \"\\$&\")
178
+ + \"\\\\s*\\\\=\")).test(document.cookie); \n\t}\n\t\n\t/* Setup interstitial
179
+ deferred (resolves if interstitial shown) */\n\tRT.interstitialShown = $.Deferred();\n\t\t\n\tRT.social_init
180
+ = new $.Deferred(); // See http://trac.flixsterqa.com/wiki/Dev/header for
181
+ detailed explanation of these 4 deferreds \n\tRT.fb_ready = new $.Deferred();
182
+ \ \n\tRT.fb_connected = new $.Deferred(); \n\tRT.fb_login = new $.Deferred();
183
+ \ \n\tRT.Facebook = {}; \n\tRT.ads={};\n\tRT.FlixsterID=\"\";\n\t\n\t/*
184
+ Bring out legacy global vars */\n\twindow.social_init = RT.social_init;\n\twindow.fb_ready
185
+ = RT.fb_ready;\n\twindow.fb_connected = RT.fb_connected;\n\twindow.fb_login
186
+ = RT.fb_login;\n\t\n\t/* Constant Login state object */\t\n\t\n\tRT.Login
187
+ = {\n\t\t\t'initLoggedInState' : false, \n\t\t\t'initLoggedInFB' : false,
188
+ \n\t\t\t'initLoggedInFLX' : false, \n\t\t\t'initLoggedInRT' : false, \n\t\t\t'initUserId'
189
+ : '', \n\t\t\t'initSourcePlatform' : '', \n\t\t\t'initLoginPlatform' : '',
190
+ \n\t\t\t'updatedFbLoggedIn' : null,\n\t\t\t'nativeLoginUrl' : 'https://www.rottentomatoes.com/user/account/login-iframe/'\n\t};\n\t\t\n\tRT.StaticHost
191
+ = 'http://images.rottentomatoescdn.com';\n\tRT.Host = 'http://www.rottentomatoes.com';\n\t\n\t/*
192
+ Social variables */\n\tRT.Social = {\n\t\t'enabled' : false, \n\t\t'shareReadReviews'
193
+ : false, \n\t\t'shareRating' : false, \n\t\t'shareWts' : false,\n\t\t'activity'
194
+ : []\n\t};\n\t\n\t/* Resolve social_init right away if server sessioned */\n\t\t\t\t\n\t\n</script>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
195
+ \n\n\n\n\n\t\n\t\n\t\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
196
+ \n\n\n\n\n\t\n\t\t<script type=\"text/javascript\" src=\"//images.rottentomatoescdn.com/assets/v/prod20130219/scripts?f=/js/globals.js&f=/js/lib/json2.js&f=/js/backbone/underscore-min.js&f=/js/backbone/backbone-min.js&f=/js/jquery/ui/jquery-ui-1.10.0.custom.min.js&f=/js/jquery/plugins/jquery.flixster.js&f=/js/jquery/plugins/jquery.rt_showMoreLink.js&f=/js/jquery/plugins/jquery.tmpl.js&f=/js/comp/Autocomplete.js&f=/js/comp/HoverTip.js&f=/js/comp/SocialSwitch.js&f=/js/comp/JumpList.js\"
197
+ defer></script>\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\t\n\t\n\t\t\n\t\n\n\n
198
+ \n<script type=\"text/javascript\">\n\tvar _qevents = _qevents || [];\n\t_qevents.push(
199
+ { qacct:\"p-0fuRlG_jy3lfA\"} );\n\tvar qcsegments = decodeURIComponent(RT.getCookie(\"qcsegments\"));\n\t\n\tfunction
200
+ qc_results(result) {\n\t\tvar qcsegments = \"\";\n\t\tvar quantSegs=\"\";\n\t\tfor
201
+ (var i = 0; i < result.segments.length; i++) {\n\t\t\tquantSegs += result.segments[i].id;
202
+ \n\t\t\tqcsegments += \"qcs=\" + result.segments[i].id;\n\t\t\tif (i<result.segments.length-1)
203
+ { \n\t\t\t\tquantSegs += ',';\n\t\t\t\tqcsegments += \";\";\n\t\t\t}\n\t\t}\t\n\t\tsetCookie(\"qcs\",quantSegs,90,\"/\");\n\t\tsetCookie(\"qcsegments\",qcsegments,90,\"/\");\n\t}\n</script>\n<script
204
+ type=\"text/javascript\" src=\"http://edge.quantserve.com/quant.js\" defer>
205
+ </script> \n<script type=\"text/javascript\" src=\"http://pixel.quantserve.com/api/segments.json?a=p-0fuRlG_jy3lfA&callback=qc_results\"
206
+ defer></script>\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
207
+ \n\n\n\n\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t<script type=\"text/javascript\"
208
+ src=\"http://assets.pinterest.com/js/pinit.js\" defer></script> \n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\t\n\n\n\n\n\n<script>\n\n</script>\n\n\n</head>\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\t\n\t\n\t\n\n\n\n\n<body
209
+ class=\"body\" id=\"\" >\n<div id=\"emptyPlaceholder\"></div> \n\n\n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
210
+ id=\"overlay_oop\" style=\"height:0px;\">\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n
211
+ \r\n \r\n\r\n\r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<script
212
+ type='text/javascript'>\r\ngoogletag.cmd.push(function() {\r\n\t\r\n\t\r\n\tvar
213
+ slot=googletag.defineOutOfPageSlot('/6327//prestitial', 'overlay_oop')\r\n\t\r\n\t\r\n\t\t.addService(googletag.pubads())\r\n\t\t.setTargeting(\"qcs\",
214
+ [])\r\n\t\t.setTargeting(\"gender\", \"\")\r\n\t\t.setTargeting(\"age\", \"0\")\r\n\t\t.setTargeting(\"url\",
215
+ \"/api/public/v1.0/movies/id/clips.json\")\r\n\t\t.setTargeting(\"env\", \"prod\")\r\n\t\r\n\t\r\n\t\r\n\t\t\t\r\n\t\t\t\r\n\t\r\n\t\t.setTargeting(\"unit\",
216
+ \"overlay\")\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t;\r\n \r\n\t\r\n\t\r\n\r\n\tgoogletag.pubads().collapseEmptyDivs();\r\n\tgoogletag.enableServices();\r\n\tgoogletag.display(\"overlay_oop\");\r\n\t\r\n});\r\n</script>\r\n\r\n\r\n\r\n\n</div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<style>#skin_ad
217
+ { height:0px !important; }</style>\n<div id=\"skin_ad\"> \n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n
218
+ \r\n \r\n\r\n\r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<script
219
+ type='text/javascript'>\r\ngoogletag.cmd.push(function() {\r\n\t\r\n\t\r\n\t\r\n\tvar
220
+ slot=googletag.defineSlot('/6327//skin', [[1,1],[1,2]], 'skin_ad')\r\n\t\r\n\t\t.addService(googletag.pubads())\r\n\t\t.setTargeting(\"qcs\",
221
+ [])\r\n\t\t.setTargeting(\"gender\", \"\")\r\n\t\t.setTargeting(\"age\", \"0\")\r\n\t\t.setTargeting(\"url\",
222
+ \"/api/public/v1.0/movies/id/clips.json\")\r\n\t\t.setTargeting(\"env\", \"prod\")\r\n\t\r\n\t\r\n\t\r\n\t\t\t\r\n\t\t\t\r\n\t\r\n\t\t.setTargeting(\"unit\",
223
+ \"skin\")\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t;\r\n \r\n\t\r\n\t\r\n slot.oldRenderEnded
224
+ = slot.renderEnded;\r\n slot.renderEnded = function(){\r\n \tslot.oldRenderEnded();\r\n
225
+ \ \tvar wrapper = $(\"#skin_ad\");\r\n \twrapper.css(\"height\",\"\").css(\"width\",\"\");\r\n
226
+ \ \t \r\n \t\r\n };\r\n \r\n\r\n\tgoogletag.pubads().collapseEmptyDivs();\r\n\tgoogletag.enableServices();\r\n\tgoogletag.display(\"skin_ad\");\r\n\t\r\n});\r\n</script>\r\n\r\n\r\n\r\n\n</div>\n\n
227
+ \n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
228
+ id=\"fb-root\"></div>\n<script>\n\twindow.fbAsyncInit = function() {\n\t\tFB.init({\n\t\t\tappId:
229
+ '326803741017', \n\t\t\tstatus: true, \n\t\t\tcookie: true, \n\t\t\txfbml:
230
+ true,\n\t\t\toauth: true,\n\t\t\tchannelUrl: \"http://www.rottentomatoes.com/facebook/channel.html\"\n\t\t});\t\t\n\t\t\n\t\t//
231
+ FB scripts ready. (Does not imply logged in)\n\t\tfb_ready.resolve();\n\t\n\t\tFB.Event.subscribe('auth.statusChange',
232
+ function(response) { \n\t\t\t//console.log(\"auth.statusChange status=\" +
233
+ JSON.stringify(response));\n\t\t\tif(response.status == \"connected\"){\n\t\t\t\t//
234
+ *** NOTE: - Workaround for BCK-1119 ***\n\t\t\t\t// Talk to Peter or Mike
235
+ before changing. We must ensure the first AJAX call after auth.statusChange
236
+ is completed by\n\t\t\t\t// itself before more calls are sent. This allows
237
+ FB token-exchange (if required) to occur uninterrupted. \n\t\t\t\t// Permanent
238
+ fix is to ensure token-exchange is locked (backend ticket)\n\t\t\t\t\n\t\t\t\tRT.Facebook.userID
239
+ = response.authResponse.userID;\n\t\t\t\t$.ajax( {\n\t\t\t\t\turl : '/home/header/',
240
+ dataType : \"html\",\n\t\t\t\t\tdata : null\n\t\t\t\t}).success( function(response,
241
+ status) {\t\t\n\t\t\t\t\t$(function(){ // DOM ready required \n\t\t\t\t\t\n\t\t\t\t\t\t$(\"#user_navigation\").html(response);\n\t\t\t\t\t\tRT.FlixsterID=$(\"#user_navigation
242
+ .secondary_nav\").data(\"flixsterid\");\n\t\t\t\t\t\n\t\t\t\t\t\tRT.social_init.resolve();\n\t\t\t\t\t\tRT.fb_connected.resolve();\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\t\t\n\t\t\n\t\tFB.Event.subscribe('auth.login',
243
+ function(response) { \n\t\t\t//console.log(\"auth.login status=\" + response.status);\n\t\t\tvar
244
+ fbresp = response;\n\t\t\tif(response.status == \"connected\"){\n\t\t\t\tRT.Facebook.userID
245
+ = response.authResponse.userID;\n\t\t\t\t\n\t\t\t\t// Wait until social_init
246
+ fires to protect token-exchange (see note above)\n\t\t\t\tRT.social_init.done(function(){\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\tfb_login.resolve();\t\t\n\t\t\t\t\tRT.Login.updatedFbLoggedIn
247
+ = true;\n\t\t\t\t});\n\t\t\t}\t\t\t\t\n\t\t});\n\t\t\n\t};\n\n\t\n\t// Async
248
+ loading of FB JS SDK\n\t(function(d, debug){\n\t\tvar js, id = 'facebook-jssdk',
249
+ ref = d.getElementsByTagName('script')[0];\n\t\tif (d.getElementById(id))
250
+ {return;}\n\t\tjs = d.createElement('script'); js.id = id; js.async = true;\n\t\tjs.src
251
+ = \"//connect.facebook.net/en_US/all\" + (debug ? \"/debug\" : \"\") + \".js\";\n\t\tref.parentNode.insertBefore(js,
252
+ ref);\n\t}(document, /*debug*/ false));\n\t\n\t// Async loading of plusone.js\t\n\t(function(){\n\t
253
+ \ var po = document.createElement('script'); po.type = 'text/javascript';
254
+ po.async = true;\n\t po.src = 'https://apis.google.com/js/plusone.js';\n\t
255
+ \ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po,
256
+ s);\n\t}());\n \n\t// Async loading of Twitter\n\t!function(d,s,id){var
257
+ js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=\"//platform.twitter.com/widgets.js\";fjs.parentNode.insertBefore(js,fjs);}}(document,\"script\",\"twitter-wjs\");\t\n\t\n\t\n\t//
258
+ Async loading of StumbleUpon\n\t(function() {\n\t var li = document.createElement('script');
259
+ li.type = 'text/javascript'; li.async = true;\n\t li.src = 'https://platform.stumbleupon.com/1/widgets.js';\n\t
260
+ \ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(li,
261
+ s);\n\t})();\n</script>\n\n<div class=\"head\" id=\"head\">\n\t<div class=\"headerbackground\"></div>\t\n\t<div
262
+ id=\"top_header_bar\" class=\"clearfix\">\n\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\n\t\t<div>\n\t\t\t\n\t\t</div>\n\t\t\n\t\t<div
263
+ id=\"user_navigation\" class=\"clearfix\"> \n \t\t\t\n \t\t\t \t\t \t \t\t\t\t\n\t\t\t\t<a
264
+ id=\"header_login_link\" href=\"/login/\" style=\"margin-right:10px;\">RT
265
+ Login</a>\n\n\t\t\t\t<a class=\"fb_button fb_button_medium rt_fblogin\" href=\"javascript:void(0);\"><span
266
+ class=\"fb_button_text\">Log In</span></a>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t</div>\n\t\t\n\t</div>\n\t\n\t<div
267
+ class=\"header_main\">\n\t\t<a class=\"rt-logo \" href=\"/\">Rotten Tomatoes</a>\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
268
+ id=\"searchBar\">\n <form style=\"position:relative;\" id=\"searchformnew\"
269
+ name=\"searchformnew\" method=\"get\" action=\"/search/\">\n <fieldset
270
+ comp=\"Autocomplete\" tabindex=\"-1\">\n <div class=\"searchBox\"
271
+ sub=\"searchBox\">\n \t<input sub=\"input\" type=\"text\" name=\"search\"
272
+ onblur=\"this.parentNode.parentNode.className='';\" onfocus=\"this.parentNode.parentNode.className='selected';
273
+ if (value == 'ZIP Code or City, State' || value == 'Search movies, actors,
274
+ critics') { value ='' }\" id=\"mini_searchbox\" value=\"Search movies, actors,
275
+ critics\" defaulttext=\"Search movies, actors, critics\" name=\"search\"
276
+ gtbfieldid=\"27\" autocomplete=\"off\" />\n \t<button sub=\"submitbutton\"
277
+ type=\"submit\"><span class=\"icon magnify\"></span></button>\n </div>\n
278
+ \ <ul sub=\"result\" class=\"autocomplete subnav\"></ul>\n <input
279
+ type=\"hidden\" value=\"rt\" name=\"sitesearch\"/>\n </fieldset>\n
280
+ \ </form>\n <div id=\"searchBar_right\"></div>\n</div>\n\n\t\t\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
281
+ \n\n\n\n\n\n\n\t\n\t\n\t\t \n\t\t\n\t\t<ul id=\"nav_primary\" class=\"drop_menu\">\n\t
282
+ \ <li class=\"no-js\">\n\t \t<ul class=\"subnav movies\">\n \t\t\t<li>\n\t\t\t
283
+ \ \t<ul class=\"subnav_items\">\n\t\t\t\t \t<li><a href=\"/movie/box-office/\">Box
284
+ Office</a></li>\n\t\t\t\t \t<li><a href=\"/movie/in-theaters/\">In
285
+ Theaters</a></li>\n\t\t\t\t \t<li><a href=\"/movie/upcoming/\">Upcoming</a></li>\n\t\t\t\t\t\t\t<li><a
286
+ href=\"/top/\">Top Movies</a></li>\n\t\t\t\t \t<li><a href=\"/movie/certified-fresh/\">Certified
287
+ Fresh</a></li>\n\t\t\t\t \t<li><a href=\"/movie_times/\">Showtimes</a></li>\n\t\t\t\t
288
+ \ \t<li><a href=\"/trailers/\">Trailers</a></li>\n\t\t\t\t \t<li><a
289
+ href=\"/movie/photos/\">Photos</a></li>\n\t\t\t \t\t</ul>\n\t \t\t\t</li>\n\t
290
+ \ \t\t\t\n\t\t \t\t<li class=\"subnav_extra\">\n\t\t \t\t\t<h4>Opening
291
+ this week</h4>\n\t\t \t\t\t<ul>\n\t\t\t \t\t\t\n\t\t\t \t\t\t\t<li
292
+ class=\"center\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a href=\"/m/snitch_2013/\"
293
+ title=\"Snitch\" class=\"\" >\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
294
+ \n \n\n\n\n\n\t\n\t\n\t\n\n\n<img src=\"http://content8.flixster.com/movie/11/16/83/11168350_tmb.jpg\"
295
+ width=\"54\" height=\"80\" alt=\"\" title=\"\" />\n</a><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
296
+ href=\"/m/snitch_2013/\" class=\"\" >Snitch</a></p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<span
297
+ class=\"tMeterIcon tiny\" >\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t<span
298
+ title=\"Fresh\" class=\"icon \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\t\n\t\n\n\t\n\ntiny
299
+ fresh\"></span><span class=\"tMeterScore\">80%</span>\n\t\t\n\t\t\n\t\n\t</span></li>\n\t\t\t
300
+ \ \t\t\t\n\t\t\t \t\t\t\t<li class=\"center\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
301
+ href=\"/m/dark_skies_2013/\" title=\"Dark Skies\" class=\"\" >\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
302
+ \n \n\n\n\n\n\t\n\t\n\t\n\n\n<img src=\"http://content6.flixster.com/movie/11/16/87/11168752_tmb.jpg\"
303
+ width=\"54\" height=\"80\" alt=\"\" title=\"\" />\n</a><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
304
+ href=\"/m/dark_skies_2013/\" class=\"\" >Dark Skies</a></p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<span
305
+ class=\"tMeterIcon tiny\" >\n\t\n\t\t\n\t\t<span class=\"greyline right\">&mdash;&mdash;</span>\n\t\n\t</span></li>\n\t\t\t
306
+ \ \t\t\t\n\t\t\t \t\t\t\t<li class=\"center\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
307
+ href=\"/m/bless_me_ultima_2012/\" title=\"Bless Me, Ultima\" class=\"\" >\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
308
+ \n \n\n\n\n\n\t\n\t\n\t\n\n\n<img src=\"http://content9.flixster.com/movie/11/16/89/11168991_tmb.jpg\"
309
+ width=\"54\" height=\"80\" alt=\"\" title=\"\" />\n</a><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
310
+ href=\"/m/bless_me_ultima_2012/\" class=\"\" >Bless Me, Ultima</a></p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<span
311
+ class=\"tMeterIcon tiny\" >\n\t\n\t\t\n\t\t<span class=\"greyline right\">&mdash;&mdash;</span>\n\t\n\t</span></li>\n\t\t\t
312
+ \ \t\t\t\n\t\t \t\t\t</ul>\n\t\t \t\t</li>\n\t \t\t</ul>\n\t
313
+ \ \t\t<h2 class=\"menu_label\"><a href=\"/\">Movies <span class=\"icon
314
+ dropdown_arrows\"></span></a></h2>\n\t </li>\n\t \t\t \n\t <li
315
+ class=\"no-js\">\t \n\t \t<ul class=\"subnav dvd\">\n\t \t\t<li>\n\t\t\t
316
+ \ \t<ul class=\"subnav_items\">\n\t\t\t\t\t\t\t<li><a href=\"/dvd/top_rentals.php\"
317
+ >Top Rentals</a></li>\n\t\t\t\t\t\t\t<li><a href=\"/dvd/new_releases.php\"
318
+ >New Releases</a></li>\n\t\t\t\t\t\t\t<li><a href=\"/dvd/netflix/\" >Netflix
319
+ Streaming</a></li>\n\t\t\t\t\t\t\t<li><a href=\"/dvd/current_releases.php\"
320
+ >Current Releases</a></li>\n\t\t\t\t\t\t\t<li><a href=\"/dvd/upcoming.php\"
321
+ >Upcoming</a></li>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<li><a href=\"/dvd/certified_fresh.php\"
322
+ >Certified Fresh</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t \t\t<li
323
+ class=\"subnav_extra\">\n\t\t \t\t\t<h4>New on DVD</h4>\n\t\t \t\t\t<ul>\n\t\t
324
+ \ \t\t\t\t\t\t\t\t\t\t\n\t\t \t\t\t\t\t<li class=\"center\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
325
+ href=\"/m/argo_2012/\" title=\"Argo\" class=\"\" >\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
326
+ \n \n\n\n\n\n\t\n\t\n\t\n\n\n<img src=\"http://content7.flixster.com/movie/11/16/91/11169181_tmb.jpg\"
327
+ width=\"54\" height=\"81\" alt=\"\" title=\"\" />\n</a><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
328
+ href=\"/m/argo_2012/\" class=\"\" >Argo</a></p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<span
329
+ class=\"tMeterIcon tiny\" >\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t<span
330
+ title=\"Fresh\" class=\"icon \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\t\n\t\n\n\t\n\ntiny
331
+ fresh\"></span><span class=\"tMeterScore\">96%</span>\n\t\t\n\t\t\n\t\n\t</span></li>\n\t\t
332
+ \ \t\t\t\t\t\t\t\t\t\t\n\t\t \t\t\t\t\t<li class=\"center\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
333
+ href=\"/m/monsters_inc_3d/\" title=\"Monsters, Inc. 3D\" class=\"\" >\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
334
+ \n \n\n\n\n\n\t\n\t\n\t\n\n\n<img src=\"http://content6.flixster.com/movie/11/16/65/11166524_tmb.jpg\"
335
+ width=\"54\" height=\"80\" alt=\"\" title=\"\" />\n</a><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
336
+ href=\"/m/monsters_inc_3d/\" class=\"\" >Monsters, Inc. 3D</a></p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<span
337
+ class=\"tMeterIcon tiny\" >\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t<span
338
+ title=\"Fresh\" class=\"icon \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\t\n\t\n\n\t\n\ntiny
339
+ fresh\"></span><span class=\"tMeterScore\">96%</span>\n\t\t\n\t\t\n\t\n\t</span></li>\n\t\t
340
+ \ \t\t\t\t\t\t\t\t\t\t\n\t\t \t\t\t\t\t<li class=\"center\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
341
+ href=\"/m/sinister_2012/\" title=\"Sinister\" class=\"\" >\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
342
+ \n \n\n\n\n\n\t\n\t\n\t\n\n\n<img src=\"http://content8.flixster.com/movie/11/16/93/11169338_tmb.jpg\"
343
+ width=\"53\" height=\"77\" alt=\"\" title=\"\" />\n</a><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
344
+ href=\"/m/sinister_2012/\" class=\"\" >Sinister</a></p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<span
345
+ class=\"tMeterIcon tiny\" >\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t<span
346
+ title=\"Fresh\" class=\"icon \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\t\n\t\n\n\t\n\ntiny
347
+ fresh\"></span><span class=\"tMeterScore\">63%</span>\n\t\t\n\t\t\n\t\n\t</span></li>\n\t\t
348
+ \ \t\t\t\t\t\n\t\t \t\t\t</ul>\n\t\t \t\t\n\t\t \t\t</li>\t\t\t\t\t\n\t\t\t\t</ul>\n\t\t\t\t<h2
349
+ class=\"menu_label\"><a href=\"/dvd/\">DVD <span class=\"icon dropdown_arrows\"></span></a></h2>\n\t
350
+ \ </li>\n\t <li class=\"no-js\">\n\t \t<ul class=\"subnav
351
+ celebrities\">\n\t \t\t<li>\n\t\t\t \t<ul class=\"subnav_items\">\n\t\t\t\t\t\t\t<li><a
352
+ href=\"/celebrity/\">View All</a></li>\n\t\t\t \t</ul>\n\t\t\t \t</li>\n\t\t
353
+ \ \t\t<li class=\"subnav_extra\">\n\t\t \t\t\t<h4>Who's In Theaters
354
+ This Weekend?</h4>\n\t\t \t\t\t<ul>\t\t\t\t\t\t\t\t\t\t\t\n\t\t \t\t\t\t\n\t\t\t\t\t\t\t\n\t\t
355
+ \ \t\t\t\t\n\t\t\t \t\t\t\t<li class=\"center\">\n\t\t\t \t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a
356
+ class=\"\" href=\"/celebrity/bruce_willis/\" title=\"Bruce Willis\">\n\t\t\t\t\t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<img
357
+ class=\"\" alt=\"Bruce Willis\" src=\"http://content6.flixster.com/site/10/25/56/10255696_tmb.jpg\"
358
+ width=\"80\" height=\"64\" /> \n\t\t\t\t\t\t\t\t\t</a>\n\t\t\t \t\t\t\t\t<p>\n\t\t\t
359
+ \ \t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a class=\"\"
360
+ href=\"/celebrity/bruce_willis/\" >\n\t\t\t \t\t\t\t\t\t\tBruce Willis\n\t\t\t
361
+ \ \t\t\t\t\t\t</a>\n\t\t\t \t\t\t\t\t</p>\n\t\t\t \t\t\t\t</li>\t\t
362
+ \ \t\t\t\t\n\t\t \t\t\t\t\n\t\t\t \t\t\t\t<li class=\"center\">\n\t\t\t
363
+ \ \t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a class=\"\"
364
+ href=\"/celebrity/josh_duhamel/\" title=\"Josh Duhamel\">\n\t\t\t\t\t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<img
365
+ class=\"\" alt=\"Josh Duhamel\" src=\"http://content7.flixster.com/site/10/25/56/10255697_tmb.jpg\"
366
+ width=\"80\" height=\"64\" /> \n\t\t\t\t\t\t\t\t\t</a>\n\t\t\t \t\t\t\t\t<p>\n\t\t\t
367
+ \ \t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a class=\"\"
368
+ href=\"/celebrity/josh_duhamel/\" >\n\t\t\t \t\t\t\t\t\t\tJosh Duhamel\n\t\t\t
369
+ \ \t\t\t\t\t\t</a>\n\t\t\t \t\t\t\t\t</p>\n\t\t\t \t\t\t\t</li>\t\t
370
+ \ \t\t\t\t\n\t\t \t\t\t\t\n\t\t\t \t\t\t\t<li class=\"center\">\n\t\t\t
371
+ \ \t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a class=\"\"
372
+ href=\"/celebrity/julianne_hough/\" title=\"Julianne Hough\">\n\t\t\t\t\t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<img
373
+ class=\"\" alt=\"Julianne Hough\" src=\"http://content8.flixster.com/site/10/25/56/10255698_tmb.jpg\"
374
+ width=\"80\" height=\"64\" /> \n\t\t\t\t\t\t\t\t\t</a>\n\t\t\t \t\t\t\t\t<p>\n\t\t\t
375
+ \ \t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<a class=\"\"
376
+ href=\"/celebrity/julianne_hough/\" >\n\t\t\t \t\t\t\t\t\t\tJulianne
377
+ Hough\n\t\t\t \t\t\t\t\t\t</a>\n\t\t\t \t\t\t\t\t</p>\n\t\t\t
378
+ \ \t\t\t\t</li>\t\t \t\t\t\t\n\t\t \t\t\t\t\n\t\t \t\t\t</ul>\n\t\t
379
+ \ \t\t\n\t\t \t\t</li>\t\t\t\t \n\t\t\t\t</ul>\n\t \t<h2
380
+ class=\"menu_label\"><a href=\"/celebrity/\">Celebrities <span class=\"icon
381
+ dropdown_arrows\"></span></a></h2>\n\t </li> \n\t \n\t <li
382
+ class=\"no-js\">\n\t \t<ul class=\"subnav news\">\n\t \t\t<li>\n\t\t\t
383
+ \ \t<ul class=\"subnav_items\">\n\t\t\t\t\t\t\t<li><a href=\"/features/\">Features</a></li>\n\t\t\t\t\t\t\t<li><a
384
+ href=\"/guides/\">Guides</a></li>\n\t\t\t\t\t\t\t<li><a href=\"/news/\">News</a></li>\n\t\t\t\t\t\t\t<li
385
+ class=\"smaller\">&nbsp;</li>\n\t\t\t\t\t\t\t<li class=\"smaller\">COLUMNS:</li>\n\t\t\t\t\t\t\t<li><a
386
+ href=\"/news/columns/column.php?id=68\">24 Frames</a></li>\n\t\t\t\t\t\t\t<li><a
387
+ href=\"/news/columns/column.php?id=27\">Box Office Guru</a></li>\n\t\t\t\t\t\t\t<li><a
388
+ href=\"/news/columns/column.php?id=34\">Critics Consensus</a></li>\n\t\t\t\t\t\t\t<li><a
389
+ href=\"/news/columns/column.php?id=62\">Five Favorite Films</a></li>\n\t\t\t\t\t\t\t<li><a
390
+ href=\"/news/columns/column.php?id=65\">Parental Guidance</a></li>\n\t\t\t\t\t\t\t<li><a
391
+ href=\"/news/columns/column.php?id=69\">Red Carpet Roundup</a></li>\n\t\t\t\t\t\t\t<li><a
392
+ href=\"/news/columns/column.php?id=36\">RT on DVD</a></li>\n\t\t\t\t\t\t\t<li><a
393
+ href=\"/news/columns/column.php?id=39\">Total Recall</a></li>\n\t\t\t\t\t\t\t<li><a
394
+ href=\"/news/columns/column.php?id=67\">Video Interviews</a></li>\n\t\t\t\t\t\t\t<li><a
395
+ href=\"/news/columns/column.php?id=33\">Weekly Ketchup</a></li>\n\t\t\t \t</ul>\n\t\t\t
396
+ \ \t</li>\n\t\t \t\t<li class=\"subnav_extra\">\n\t\t \t\t\t<h4>What's
397
+ Hot on Rotten Tomatoes</h4>\n\t\t \t\t\t<ul>\n\t\t\t \t\t\t\n\t\t\t\t\t\t\t\t<li
398
+ class=\"center\">\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<a href=\"/m/argo_2012/news/1926866/rt_on_dvd__blu-ray_best_picture_nominee_argo_and_sinister/\">\n\t\t\t\t\t\t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<img
399
+ class=\"\" alt=\"RT on DVD & Blu-Ray\" src=\"http://content7.flixster.com/site/10/25/57/10255769_tmb.jpg\"
400
+ width=\"80\" height=\"80\" />\n\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p><a
401
+ href=\"/m/argo_2012/news/1926866/rt_on_dvd__blu-ray_best_picture_nominee_argo_and_sinister/\">RT
402
+ on DVD & Blu-Ray</a></p>\t\t\t\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<li
403
+ class=\"center\">\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<a href=\"http://www.rottentomatoes.com/m/the_internship_2013/trailers/11175890/\">\n\t\t\t\t\t\t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<img
404
+ class=\"\" alt=\"The Internship Trailer\" src=\"http://content7.flixster.com/site/10/25/57/10255789_tmb.jpg\"
405
+ width=\"80\" height=\"80\" />\n\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p><a
406
+ href=\"http://www.rottentomatoes.com/m/the_internship_2013/trailers/11175890/\">The
407
+ Internship Trailer</a></p>\t\t\t\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\n\t\t
408
+ \ \t\t\t</ul>\n\t\t \t\t\n\t\t \t\t</li>\t\t\t\t \n\t\t\t\t</ul>\n\t\t\t\t<h2
409
+ class=\"menu_label\"><a href=\"/news/\">News <span class=\"icon dropdown_arrows\"></span></a></h2>\n\t
410
+ \ </li>\n\n\t <li class=\"no-js\">\n\t \t<ul class=\"subnav
411
+ critics\">\n\t \t\t<li>\n\t\t\t \t<ul class=\"subnav_items\">\n\t\t\t\t\t\t\t<li><a
412
+ href=\"/critics/authors.php\">Critics List</a></li>\n\t\t\t\t\t\t\t<li><a
413
+ href=\"/critics/sources.php\">Publications List</a></li>\n\t\t\t\t\t\t\t<li><a
414
+ href=\"/critics/latest_reviews.php\">Latest Reviews</a></li>\n\t\t\t \t</ul>\n\t\t\t
415
+ \ \t</li>\n\t\t \t\t<li class=\"subnav_extra\">\n\t\t \t\t\t<h4>Spotlight</h4>\n\t\t
416
+ \ \t\t\t<ul>\t\t \t\t\t\n\t\t\t \t\t\t\n\t\t\t\t\t\t\t\t<li
417
+ class=\"center\">\n\t\t\t\t\t\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
418
+ \ \n\n\n\n\n\n<a href=\"/critic/elvis-mitchell/\" class=\"\" ><img src=\"http://content7.flixster.com/critic/16/1637_tmb.gif\"
419
+ width=\"72\" height=\"72\" alt=\"Elvis Mitchell\" /></a>\n\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
420
+ \ \n\n\n\n\n\n<a href=\"/critic/elvis-mitchell/\" class=\"\" >Elvis Mitchell</a>\n</p>\t\t\t\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\n\t\t
421
+ \ \t\t\t</ul>\n\t\t \t\t\n\t\t \t\t\t</li>\t\t\t\t \n\t\t\t\t\t</ul>\n\t
422
+ \ \t<h2 class=\"menu_label\"><a href=\"/critics/\">Critics <span class=\"icon
423
+ dropdown_arrows\"></span></a></h2>\n\t </li> \n </ul>\n\t\t\n\t\n\n\n\t\t\n\t</div>\n</div>\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
424
+ \n\n\n\n\t\n\n\n<div class=\"body_main\" >\n\t\n\t<div class=\"main_header
425
+ clearfix\"><div class=\"pageBreadcrumbs fl\">\n\t\n\t\t<strong>Oops!</strong>\n\t\n</div></div>\n\t\t\t\t\n\t\t\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
426
+ class=\"content_box \" >\n\t<div class=\"content_header clearfix\">\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t<h3>We
427
+ had a small issue processing your request...</h3>\t\n\t\t\t\n\t\t\n\t\t\n\t\t\n\t</div>\n\t<div
428
+ class=\"content_body clearfix\">\n\t\t\n\t\t\t\t\t<div class=\"media_block\">\n\t\t\t\t\t\t<div
429
+ class=\"media_block_image icon huge spilled\"></div>\n\t\t\t\t\t\t<div class=\"media_block_content\">\n\t\t\t\t\t\t\t<p>\n\t\t\t
430
+ \ DON'T PANIC! We've logged the problem and we'll get it patched
431
+ up soon.\n\t\t\t <a href = \"javascript:history.go(-1);\">Click
432
+ here</a> to return to the previous page to try it again,\n\t\t\t or
433
+ you can <a href = \"http://flixster.desk.com/customer/portal/emails/new\">send
434
+ us a note</a> about the problem.\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t<p style=\"margin-top:25px;\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tuuid:none\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\n\t</div>\n\t<div
435
+ class=\"content_footer clearfix\">\n\t\t\n\t</div>\n</div>\n\n\t\t\t\n\t\t\n</div>\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
436
+ class=\"hidden login_dialog center\" comp=\"LoginDialog\">\n <div class=\"clearfix\"><a
437
+ href=\"javascript:void(0);\" sub=\"close\" class=\"close_button fr\"></a></div>\n
438
+ \ <p sub=\"prompt\">Log in with Facebook to share your reviews with friends,
439
+ create a want-to-see list, and more!</p>\n <p><a class=\"fb_button fb_button_medium
440
+ rt_fblogin\" scope=\"email,publish_actions\"><span class=\"fb_button_text\">Log
441
+ In with Facebook</span></a></p>\n</div>\n\n\n<div class=\"foot\">\n\t<div
442
+ class=\"foot_nav\">\n\t <a href=\"/help_desk/\">Help</a> | <a href=\"http://www.flixster.com/about/\"
443
+ target=\"_blank\">About</a> | <a href=\"/help_desk/jobs/\">Jobs</a> | <a href=\"/help_desk/critics.php\">Critics
444
+ Submission</a> | <a href=\"http://developer.rottentomatoes.com\">API</a> |
445
+ <a href=\"/help_desk/licensing.php\">Licensing</a> | <a href=\"/mobile/info/\"
446
+ >Mobile</a> \n\t</div>\n\t<div class=\"foot_browse\">\n\t\n\t</div>\n\t<div
447
+ class=\"copyright\">\n\t\t\n\n\t\t<span class=\"easteregg\">Copyright &copy;</span>
448
+ Flixster, Inc. All rights reserved.\n\t\t<script>\n\t\t$(\".easteregg\").click(function(){\n\t\t\tvar
449
+ str=\"http://209.237.233.58/api/public/v1.0/movies/id/clips.json?apikey=<API_KEY>\\n
450
+ /errors/500.jsp\\n web235.flixster.com (us)\\n GA:empty\\n release: prod20130219\\n
451
+ rt-git-desc:RTRELEASE.2013-02-19.16-23-16 d46e259\\n flixster-git-desc:RTRELEASE.2013-02-19.16-23-16
452
+ d7a0054\";\n\t\t\talert(str);\n\t\t});\n\t\t</script>\t\t \n\t\t<a href=\"/copyright\">Copyright
453
+ Policy</a> \n\t\t| <a href=\"/privacy\">Privacy Policy</a>\n\t\t| <a href=\"/terms\">Terms
454
+ of Service</a>\n\t\t| <a href=\"/privacy#thirdparty\">Ad Choices</a>\n\t</div>\n</div>\n<div
455
+ id=\"hover-tip\" class=\"hover_tip\"><span sub=\"tip\"></span></div>\n\n\n<script
456
+ type=\"text/javascript\"></script>\n\n\n\n\n \n\n<script type=\"text/javascript\">
457
+ \n//<![CDATA[\n<!-- Begin comScore Tag -->\nif (typeof COMSCORE == \"undefined\")
458
+ { var COMSCORE={}}COMSCORE.beacon=function(d){if(!d){return}var a=1.6,e=document,g=e.location,c=function(h){if(h==null){return\"\"}return(encodeURIComponent||escape)(h)},f=[(g.protocol==\"https:\"?\"https://sb\":\"http://b\"),\".scorecardresearch.com/b?\",\"c1=\",c(d.c1),\"&c2=\",c(d.c2),\"&rn=\",Math.random(),\"&c7=\",c(g.href),\"&c3=\",c(d.c3),\"&c4=\",c(d.c4),\"&c5=\",c(d.c5),\"&c6=\",c(d.c6),\"&c15=\",c(d.c15),\"&c16=\",c(d.c16),\"&c8=\",c(e.title),\"&c9=\",c(e.referrer),\"&cv=\",a].join(\"\");f=f.length>1500?f.substr(0,1495)+\"&ct=1\":f;var
459
+ b=new Image();b.onload=function(){};b.src=f;return f };\nCOMSCORE.beacon({
460
+ c1:2, c2:\"3000068\", c3:\"\", c4:\"http://www.rottentomatoes.com\", c5:\"\",
461
+ c6:\"\", c15:\"\" });\n<!-- End comScore Tag -->\n//]]-->\n</script>\n\n\n<!--
462
+ START Nielsen Online SiteCensus V6.0 -->\n<!-- COPYRIGHT 2010 Nielsen Online
463
+ -->\n<script type=\"text/javascript\" src=\"//secure-us.imrworldwide.com/v60.js\"></script>\n<script
464
+ type=\"text/javascript\">\n var pvar = { cid: \"us-203323h\", content: \"0\",
465
+ server: \"secure-us\" };\n var trac = nol_t(pvar);\n trac.record().post();\n</script>\n<noscript><div>
466
+ <img src=\"//secure-us.imrworldwide.com/cgi-bin/m?ci=us-203323h&amp;cg=0&amp;cc=1&amp;ts=noscript\"
467
+ width=\"1\" height=\"1\" alt=\"\" /> </div></noscript>\n<!-- END Nielsen Online
468
+ SiteCensus V6.0 --> \n\n\n\n<script type=\"text/javascript\">\n _gaq.push(['_setDomainName',
469
+ 'www.rottentomatoes.com'],\n ['_setAllowHash', false], \n \n ['_setAllowAnchor',
470
+ true],\n ['_setCampNameKey', 'c'],\n ['_setCampMediumKey', 'm'],\n ['_setCampSourceKey',
471
+ 's'],\n ['_setCampaignCookieTimeout', 0]); \n\n \n \n \n\t\n\t\n\t\n\t\t_gaq.push(['_setCustomVar',
472
+ 1, 'Login Type', 'Anon', 2]);\n\t\tfb_connected.done(function(){\t\t\n\t\t\t_gaq.push(['_setCustomVar',
473
+ 1, 'Login Type', 'Anon+FB', 2]);\n\t\t});\n\t\tfb_login.done(function(){\t\t\n\t\t\t_gaq.push(['_setCustomVar',
474
+ 1, 'Login Type', 'Anon+FB-Login', 2]);\n\t\t});\n\t\n \n\n \n \n \n _gaq.push(['_trackPageview']);\n
475
+ \ \n \n \n \n //_gaq.push(['_trackPageLoadTime']); Deprecated\n (function()
476
+ {\n var ga = document.createElement('script'); ga.type = 'text/javascript';
477
+ ga.async = true;\n ga.src = ('https:' == document.location.protocol ? 'https://ssl'
478
+ : 'http://www') + '.google-analytics.com/ga.js';\n var s = document.getElementsByTagName('script')[0];
479
+ s.parentNode.insertBefore(ga, s);\n })();\n</script>\n\n\n<noscript>\n<div
480
+ style=\"display: none;\"><img src=\"http://pixel.quantserve.com/pixel/p-0fuRlG_jy3lfA.gif\"
481
+ height=\"1\" width=\"1\" alt=\"Quantcast\"/></div>\n</noscript>\n\t\n\n\n\n\n\n\t\n\n</body>\n\n\n\n</html>"
482
+ http_version:
483
+ recorded_at: Wed, 20 Feb 2013 19:50:20 GMT
484
+ - request:
485
+ method: get
486
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/770669920/clips.json?apikey=<API_KEY>
487
+ body:
488
+ encoding: US-ASCII
489
+ string: ''
490
+ headers:
491
+ Accept:
492
+ - ! '*/*'
493
+ User-Agent:
494
+ - Ruby
495
+ response:
496
+ status:
497
+ code: 200
498
+ message: OK
499
+ headers:
500
+ Cache-Control:
501
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
502
+ Content-Language:
503
+ - en-US
504
+ Content-Type:
505
+ - text/javascript;charset=ISO-8859-1
506
+ Date:
507
+ - Thu, 21 Feb 2013 16:51:00 GMT
508
+ Expires:
509
+ - Sat, 6 May 1995 12:00:00 GMT
510
+ Pragma:
511
+ - no-cache
512
+ Server:
513
+ - Mashery Proxy
514
+ Set-Cookie:
515
+ - JSESSIONID=94DC26B445026AD398E964D33E9912AF.localhost; Path=/
516
+ - ServerID=1336; Path=/
517
+ Vary:
518
+ - User-Agent,Accept-Encoding
519
+ X-Mashery-Responder:
520
+ - prod-j-worker-us-east-1b-16.mashery.com
521
+ Content-Length:
522
+ - '281'
523
+ Connection:
524
+ - keep-alive
525
+ body:
526
+ encoding: US-ASCII
527
+ string: ! '
528
+
529
+
530
+
531
+
532
+
533
+
534
+
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+
550
+
551
+
552
+
553
+
554
+
555
+
556
+ {"clips":[],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/770669920/clips.json","alternate":"http://www.rottentomatoes.com/m/deadly_mission/trailers/","rel":"http://api.rottentomatoes.com/api/public/v1.0/movies/770669920.json"}}
557
+
558
+ '
559
+ http_version:
560
+ recorded_at: Thu, 21 Feb 2013 16:51:00 GMT
561
+ - request:
562
+ method: get
563
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/clips.json?apikey=<API_KEY>
564
+ body:
565
+ encoding: US-ASCII
566
+ string: ''
567
+ headers:
568
+ Accept:
569
+ - ! '*/*'
570
+ User-Agent:
571
+ - Ruby
572
+ response:
573
+ status:
574
+ code: 200
575
+ message: OK
576
+ headers:
577
+ Cache-Control:
578
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
579
+ Content-Language:
580
+ - en-US
581
+ Content-Type:
582
+ - text/javascript;charset=ISO-8859-1
583
+ Date:
584
+ - Thu, 21 Feb 2013 16:52:18 GMT
585
+ Expires:
586
+ - Sat, 6 May 1995 12:00:00 GMT
587
+ Pragma:
588
+ - no-cache
589
+ Server:
590
+ - Mashery Proxy
591
+ Set-Cookie:
592
+ - JSESSIONID=6824760135BA8A9A020E62E9478416FA.localhost; Path=/
593
+ - ServerID=1335; Path=/
594
+ Vary:
595
+ - User-Agent,Accept-Encoding
596
+ X-Mashery-Responder:
597
+ - prod-j-worker-us-east-1b-16.mashery.com
598
+ Content-Length:
599
+ - '524'
600
+ Connection:
601
+ - keep-alive
602
+ body:
603
+ encoding: US-ASCII
604
+ string: ! '
605
+
606
+
607
+
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+
628
+
629
+
630
+
631
+
632
+
633
+ {"clips":[{"title":"Mission: Impossible III","duration":"92","thumbnail":"http://content.internetvideoarchive.com/content/photos/860/036139_317345.jpg","links":{"alternate":"http://www.rottentomatoes.com/m/mission_impossible_3/trailers/10891918"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/clips.json","alternate":"http://www.rottentomatoes.com/m/mission_impossible_3/trailers/","rel":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854.json"}}
634
+
635
+ '
636
+ http_version:
637
+ recorded_at: Thu, 21 Feb 2013 16:52:18 GMT
638
+ recorded_with: VCR 2.4.0