cineworld_uk 2.0.3 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 167199de6102da5dfeac633fd57f8ff0dc787b40
4
- data.tar.gz: 1c853e1b64a2f1ff0a07ca98c871a8ef33a0b5f9
3
+ metadata.gz: b133655c1c0ad6c7645b40f58d71467086548717
4
+ data.tar.gz: 40dcfc563dc86fdf8d182747f4901b55693a4c56
5
5
  SHA512:
6
- metadata.gz: ab31aaae5324bbc068a430722485df50f3787da8e0225f3838ba49c053109f7474466cbf72b30150cca1f26552a126eb7dce01d79858f4afdf3c4c6feb39f03a
7
- data.tar.gz: 05fe1f163f6aa834706a411bb21c4fc2b915ec8842fe765a672e861d75adef818582d9078c834c554bae484c91c47f1f555be69861741ca64919d5af74253c3e
6
+ metadata.gz: 83c9ef91f405d2e1ebf73eef8bdb1ae1dbedaabe489b5328bd3f654c9f9f0fdc78d21ad00c3fe9608095e13a178fd14ca131be34b2702de525832724b20d9c11
7
+ data.tar.gz: ca27029caee988faa8ef91b7486ba3482e0ecc477ad27879c851405c71ff301b2504b1f3f570c2add81c3e8ba8b0734dba5a2991605e9b3dfe6e0f39a791a8d2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 2.0.4 _5th September 2014_
2
+
3
+ Bugfix
4
+
5
+ - fix the parsing
6
+
1
7
  ## 2.0.3 _5th September 2014_
2
8
 
3
9
  Bugfix
@@ -5,9 +5,7 @@ module CineworldUk
5
5
  # Parses a chunk of HTML to derive movie showing data
6
6
  class WhatsonParser
7
7
  # css selector for film html chunks
8
- FILM_CSS = '#filter-reload > .span9 > .row:not(.schedule)'
9
- # css selector for screenings html chunks
10
- SCREENINGS_CSS = '#filter-reload > .span9 > .schedule'
8
+ FILM_CSS = '#filter-reload > .span9 > .film'
11
9
 
12
10
  # @param [Integer] cinema_id cineworld cinema id
13
11
  def initialize(cinema_id)
@@ -17,9 +15,7 @@ module CineworldUk
17
15
  # break up the whats on page into individual chunks for each film
18
16
  # @return [Array<String>] html chunks for a film and it's screenings
19
17
  def films_with_screenings
20
- films_html.each_with_index.map do |html, i|
21
- html + screenings_html[i]
22
- end
18
+ films_html
23
19
  end
24
20
 
25
21
  private
@@ -28,10 +24,6 @@ module CineworldUk
28
24
  whatson_doc.css(FILM_CSS).map { |n| n.to_s.gsub(/^\s+/, '') }
29
25
  end
30
26
 
31
- def screenings_html
32
- whatson_doc.css(SCREENINGS_CSS).map { |n| n.to_s.gsub(/^\s+/, '') }
33
- end
34
-
35
27
  def whatson
36
28
  @whatson ||= CineworldUk::Internal::Website.new.whatson(@cinema_id)
37
29
  end
@@ -1,6 +1,6 @@
1
1
  # Ruby interface for http://www.cineworld.co.uk
2
- # @version 2.0.3
2
+ # @version 2.0.4
3
3
  module CineworldUk
4
4
  # Gem version
5
- VERSION = '2.0.3'
5
+ VERSION = '2.0.4'
6
6
  end
@@ -40,7 +40,6 @@
40
40
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.packed.css" media="all" />
41
41
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.default.packed.css" media="all" />
42
42
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/zebra.datepicker.packed.css" media="all" />
43
- <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-desktop-typography.packed.css" media="all" />
44
43
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-desktop.packed.css" media="all" />
45
44
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-print.packed.css" media="print" />
46
45
  <!--[if IE]>
@@ -82,7 +81,7 @@
82
81
 
83
82
 
84
83
 
85
- <!-- cinwebprweb13.901e.sys.carrenza.net -->
84
+ <!-- cinwebprweb14.901e.sys.carrenza.net -->
86
85
 
87
86
  <!-- Start Visual Website Optimizer Asynchronous Code -->
88
87
  <script type='text/javascript'>
@@ -97,7 +96,7 @@
97
96
  <!-- End Visual Website Optimizer Asynchronous Code -->
98
97
  </head>
99
98
 
100
- <body class="cineworld gb web browser cinema search">
99
+ <body class="cineworld gb multiple-cinema-site web browser cinema search">
101
100
  <div id="fb-root"></div>
102
101
 
103
102
  <div class="notification cookie" style="display: none;">
@@ -141,12 +140,16 @@
141
140
 
142
141
  <div class="navigation" role="navigation">
143
142
  <ul>
144
- <li><a href="/">Home</a></li>
145
143
  <li>
146
144
  <a href="/whatson">What's On</a>
147
145
  <ul>
148
- <li><a href="/events">Bollywood &amp; Event Cinema</a></li>
146
+ <li><a href="/whatson?cinema=all">All Films Now Booking</a></li>
147
+ <li><a href="/whatson/coming/?cinema=all&amp;date=all">Coming Soon</a></li>
148
+ <li><a href="/whatson/future/?cinema=all&amp;date=all">Future Films</a></li>
149
+ <li><a href="/whatson/ending/?cinema=all">Ending Soon</a></li>
149
150
  <li><a href="/whatson/category/junior">Movies for Juniors</a></li>
151
+ <li><a href="/whatson/category/bollywood">Bollywood and South Asian Cinema</a></li>
152
+ <li><a href="/events">Theatre, Opera and Event Cinema</a></li>
150
153
  </ul>
151
154
  </li>
152
155
  <li>
@@ -164,11 +167,9 @@
164
167
  <li><a href="/blog">Cineworld Blog</a></li>
165
168
  <li><a href="/competitions">Offers &amp; Competitions</a></li>
166
169
 
167
- <li><a href="/bargain-tuesdays">Bargain Tuesdays</a></li>
168
170
  <li><a href="/cineworld-foundation">Cineworld Foundation</a></li>
169
- <li><a href="/summer-family-films-2014">Summer Family Films</a></li>
170
- <li><a href="/mega-movies-2014">Mega Movies at Cineworld</a></li>
171
- <li><a href="/take2">Take 2 Offer</a></li>
171
+ <li><a href="/bargain-tuesdays">Bargain Tuesdays</a></li>
172
+ <li><a href="/take2">Take 2</a></li>
172
173
  <li><a href="/baskin-robbins">Baskin Robbins at Cineworld</a></li>
173
174
  <li><a href="/starbucks">Starbucks at Cineworld</a></li>
174
175
  </ul>
@@ -182,12 +183,19 @@
182
183
  <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Apply for Unlimited</a></li>
183
184
  </ul>
184
185
  </li>
185
- <li><a href="/giftcards">Gifts</a></li>
186
+ <li>
187
+ <a href="/giftcards">Gifts</a>
188
+ <ul>
189
+ <li><a href="/shop?category=giftcards">Order Gift Cards by Post</a></li>
190
+ <li><a href="/shop?category=egiftcards">Order e-Gift Vouchers by Email</a></li>
191
+ <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Send Unlimited as a Gift</a></li>
192
+ </ul>
193
+ </li>
186
194
  <li>
187
195
  <form action="/search" method="get" class="search" role="search" data-ajax-action="/search/suggestions">
188
196
  <label class="no-margin inline">
189
197
  <span class="accessible-hide-html-self">Search</span>
190
- <input accesskey="s" autocomplete="off" placeholder="Search" type="search" name="q" />
198
+ <input accesskey="s" autocomplete="off" placeholder="Search films and cinemas..." type="search" name="q" />
191
199
  </label>
192
200
  <ol class="results"></ol>
193
201
  <button type="submit">Search</button>
@@ -501,13 +509,5 @@
501
509
  <img alt="dcsimg" id="dcsimg" width="1" height="1" src="http://statse.webtrendslive.com/dcskzgl9m000000w4dyp4senq_3i2w/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=10.2.81&amp;dcssip=cineworld.co.uk&amp;" />
502
510
  </noscript>
503
511
 
504
- <script type="text/javascript">
505
- //<![CDATA[
506
- (function() {
507
- var _analytics_scr = document.createElement('script');
508
- _analytics_scr.type = 'text/javascript'; _analytics_scr.async = true; _analytics_scr.src = '/_Incapsula_Resource?SWJIYLWA=2977d8d74f63d7f8fedbea018b7a1d05&ns=1';
509
- var _analytics_elem = document.getElementsByTagName('script')[0]; _analytics_elem.parentNode.insertBefore(_analytics_scr, _analytics_elem);
510
- })();
511
- // ]]>
512
- </script></body>
512
+ </body>
513
513
  </html>
@@ -40,7 +40,6 @@
40
40
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.packed.css" media="all" />
41
41
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.default.packed.css" media="all" />
42
42
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/zebra.datepicker.packed.css" media="all" />
43
- <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-desktop-typography.packed.css" media="all" />
44
43
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-desktop.packed.css" media="all" />
45
44
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-print.packed.css" media="print" />
46
45
  <!--[if IE]>
@@ -95,7 +94,7 @@
95
94
 
96
95
 
97
96
 
98
- <!-- cinwebprweb15.901e.sys.carrenza.net -->
97
+ <!-- cinwebprweb14.901e.sys.carrenza.net -->
99
98
 
100
99
  <!-- Start Visual Website Optimizer Asynchronous Code -->
101
100
  <script type='text/javascript'>
@@ -110,7 +109,7 @@
110
109
  <!-- End Visual Website Optimizer Asynchronous Code -->
111
110
  </head>
112
111
 
113
- <body class="cineworld gb web browser cinema">
112
+ <body class="cineworld gb multiple-cinema-site web browser cinema">
114
113
  <div id="fb-root"></div>
115
114
 
116
115
  <div class="notification cookie" style="display: none;">
@@ -154,12 +153,16 @@
154
153
 
155
154
  <div class="navigation" role="navigation">
156
155
  <ul>
157
- <li><a href="/">Home</a></li>
158
156
  <li>
159
157
  <a href="/whatson">What's On</a>
160
158
  <ul>
161
- <li><a href="/events">Bollywood &amp; Event Cinema</a></li>
159
+ <li><a href="/whatson?cinema=all">All Films Now Booking</a></li>
160
+ <li><a href="/whatson/coming/?cinema=all&amp;date=all">Coming Soon</a></li>
161
+ <li><a href="/whatson/future/?cinema=all&amp;date=all">Future Films</a></li>
162
+ <li><a href="/whatson/ending/?cinema=all">Ending Soon</a></li>
162
163
  <li><a href="/whatson/category/junior">Movies for Juniors</a></li>
164
+ <li><a href="/whatson/category/bollywood">Bollywood and South Asian Cinema</a></li>
165
+ <li><a href="/events">Theatre, Opera and Event Cinema</a></li>
163
166
  </ul>
164
167
  </li>
165
168
  <li>
@@ -177,11 +180,9 @@
177
180
  <li><a href="/blog">Cineworld Blog</a></li>
178
181
  <li><a href="/competitions">Offers &amp; Competitions</a></li>
179
182
 
180
- <li><a href="/bargain-tuesdays">Bargain Tuesdays</a></li>
181
183
  <li><a href="/cineworld-foundation">Cineworld Foundation</a></li>
182
- <li><a href="/summer-family-films-2014">Summer Family Films</a></li>
183
- <li><a href="/mega-movies-2014">Mega Movies at Cineworld</a></li>
184
- <li><a href="/take2">Take 2 Offer</a></li>
184
+ <li><a href="/bargain-tuesdays">Bargain Tuesdays</a></li>
185
+ <li><a href="/take2">Take 2</a></li>
185
186
  <li><a href="/baskin-robbins">Baskin Robbins at Cineworld</a></li>
186
187
  <li><a href="/starbucks">Starbucks at Cineworld</a></li>
187
188
  </ul>
@@ -195,12 +196,19 @@
195
196
  <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Apply for Unlimited</a></li>
196
197
  </ul>
197
198
  </li>
198
- <li><a href="/giftcards">Gifts</a></li>
199
+ <li>
200
+ <a href="/giftcards">Gifts</a>
201
+ <ul>
202
+ <li><a href="/shop?category=giftcards">Order Gift Cards by Post</a></li>
203
+ <li><a href="/shop?category=egiftcards">Order e-Gift Vouchers by Email</a></li>
204
+ <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Send Unlimited as a Gift</a></li>
205
+ </ul>
206
+ </li>
199
207
  <li>
200
208
  <form action="/search" method="get" class="search" role="search" data-ajax-action="/search/suggestions">
201
209
  <label class="no-margin inline">
202
210
  <span class="accessible-hide-html-self">Search</span>
203
- <input accesskey="s" autocomplete="off" placeholder="Search" type="search" name="q" />
211
+ <input accesskey="s" autocomplete="off" placeholder="Search films and cinemas..." type="search" name="q" />
204
212
  </label>
205
213
  <ol class="results"></ol>
206
214
  <button type="submit">Search</button>
@@ -240,22 +248,28 @@
240
248
  <li>
241
249
 
242
250
  <div class="poster has-ribbon">
243
- <a href="/whatson/dawn-of-the-planet-of-the-apes?cinema=3">
244
- <div class="overlay ribbon blue">Tickets Selling Fast</div>
245
- <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/6593_poster_large.jpg" alt="Poster for Film Dawn of the Planet of the Apes" /></div>
251
+ <a href="/whatson/the-boxtrolls?cinema=3">
252
+ <div class="overlay ribbon blue">Previews Sept 06 &amp; 07</div>
253
+
254
+
255
+
256
+ <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/7705_poster_iphone.jpg" alt="Poster for Film The Boxtrolls" /></div>
246
257
  </a>
247
258
  </div>
248
- <a href="/whatson/dawn-of-the-planet-of-the-apes?cinema=3">Dawn of the Planet of the Apes</a>
259
+ <a href="/whatson/the-boxtrolls?cinema=3">The Boxtrolls</a>
249
260
  </li>
250
261
 
251
262
  <li>
252
263
 
253
264
  <div class="poster ">
254
- <a href="/whatson/how-to-train-your-dragon-2?cinema=3">
255
- <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/6670_poster_large.jpg" alt="Poster for Film How To Train Your Dragon 2" /></div>
265
+ <a href="/whatson/sex-tape?cinema=3">
266
+
267
+
268
+
269
+ <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/7670_poster_iphone.jpg" alt="Poster for Film Sex Tape" /></div>
256
270
  </a>
257
271
  </div>
258
- <a href="/whatson/how-to-train-your-dragon-2?cinema=3">How To Train Your Dragon 2</a>
272
+ <a href="/whatson/sex-tape?cinema=3">Sex Tape</a>
259
273
  </li>
260
274
  </ul>
261
275
 
@@ -265,18 +279,18 @@
265
279
  </div>
266
280
 
267
281
  <div class="section light clearfix " >
268
- <h1 id="prices" class="ribbon overlap">How much do tickets cost?</h1>
282
+ <h2 id="prices" class="h1 ribbon overlap">How much do tickets cost?</h2>
269
283
 
270
284
 
271
285
  <div class="promotion block clearfix">
272
- <a href="/blog/allocated-seating-is-here" target="_self"><img src="/assets/media/ads/ad_36299.png" alt="Allocated Seating Is Here" title="Allocated Seating Is Here" /></a>
286
+ <a href="http://www.cineworld.co.uk/unlimited/intro" target="_self"><img src="/assets/media/ads/ad_38211.png" alt="Unleash The Power Of Unlimited Movies" title="Unleash The Power Of Unlimited Movies" /></a>
273
287
  </div>
274
288
 
275
289
  <div class="pricing">
276
290
  <div class="panel anonymous dark">
277
291
  <h2>Register free with <span class="icon-logo-mycineworld">MyCineworld</span> and save your details for faster and easier booking - mycineworld tickets only available online</h2>
278
292
 
279
- <a class="action mycineworld" href="/register">Sign Up</a>
293
+ <a class="action mycineworld" href="/register">Register</a>
280
294
  <a class="action mycineworld" href="/login">Login</a>
281
295
  <a class="action facebook" href="/login/facebook/go?location=%2Fcinemas%2F3%2Finformation%3Ffbl%3Dtrue" data-type="connect" data-location="/cinemas/3/information?fbl=true">Connect with Facebook</a>
282
296
  </div>
@@ -1031,7 +1045,7 @@
1031
1045
  </div>
1032
1046
 
1033
1047
  <div class="section light clearfix " >
1034
- <h1 id="services" class="ribbon">Summary of facilities</h1>
1048
+ <h2 id="h1 services" class="ribbon">Summary of facilities</h2>
1035
1049
 
1036
1050
  <ul class="unstyled clearfix services">
1037
1051
  <li>
@@ -1075,7 +1089,7 @@
1075
1089
 
1076
1090
 
1077
1091
  <div class="section light clearfix " >
1078
- <h1 id="directions" class="ribbon">How do I get there?</h1>
1092
+ <h2 id="directions" class="h1 ribbon">How do I get there?</h2>
1079
1093
 
1080
1094
  <div class="row">
1081
1095
  <div class="span6">
@@ -1111,7 +1125,7 @@
1111
1125
 
1112
1126
 
1113
1127
  <div class="section light clearfix " >
1114
- <h1 id="hire" class="ribbon">Hire Cineworld Brighton</h1>
1128
+ <h2 id="hire" class="h1 ribbon">Hire Cineworld Brighton</h2>
1115
1129
 
1116
1130
  <div class="row hire">
1117
1131
  <div class="span6">
@@ -1250,13 +1264,5 @@
1250
1264
  <img alt="dcsimg" id="dcsimg" width="1" height="1" src="http://statse.webtrendslive.com/dcskzgl9m000000w4dyp4senq_3i2w/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=10.2.81&amp;dcssip=cineworld.co.uk&amp;" />
1251
1265
  </noscript>
1252
1266
 
1253
- <script type="text/javascript">
1254
- //<![CDATA[
1255
- (function() {
1256
- var _analytics_scr = document.createElement('script');
1257
- _analytics_scr.type = 'text/javascript'; _analytics_scr.async = true; _analytics_scr.src = '/_Incapsula_Resource?SWJIYLWA=2977d8d74f63d7f8fedbea018b7a1d05&ns=2';
1258
- var _analytics_elem = document.getElementsByTagName('script')[0]; _analytics_elem.parentNode.insertBefore(_analytics_scr, _analytics_elem);
1259
- })();
1260
- // ]]>
1261
- </script></body>
1267
+ </body>
1262
1268
  </html>
@@ -40,7 +40,6 @@
40
40
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.packed.css" media="all" />
41
41
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.default.packed.css" media="all" />
42
42
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/zebra.datepicker.packed.css" media="all" />
43
- <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-desktop-typography.packed.css" media="all" />
44
43
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-desktop.packed.css" media="all" />
45
44
  <link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld-print.packed.css" media="print" />
46
45
  <!--[if IE]>
@@ -94,7 +93,7 @@
94
93
 
95
94
 
96
95
 
97
- <!-- cinwebprweb12.901e.sys.carrenza.net -->
96
+ <!-- cinwebprweb15.901e.sys.carrenza.net -->
98
97
 
99
98
  <!-- Start Visual Website Optimizer Asynchronous Code -->
100
99
  <script type='text/javascript'>
@@ -109,7 +108,7 @@
109
108
  <!-- End Visual Website Optimizer Asynchronous Code -->
110
109
  </head>
111
110
 
112
- <body class="cineworld gb web browser cinema">
111
+ <body class="cineworld gb multiple-cinema-site web browser cinema">
113
112
  <div id="fb-root"></div>
114
113
 
115
114
  <div class="notification cookie" style="display: none;">
@@ -153,12 +152,16 @@
153
152
 
154
153
  <div class="navigation" role="navigation">
155
154
  <ul>
156
- <li><a href="/">Home</a></li>
157
155
  <li>
158
156
  <a href="/whatson">What's On</a>
159
157
  <ul>
160
- <li><a href="/events">Bollywood &amp; Event Cinema</a></li>
158
+ <li><a href="/whatson?cinema=all">All Films Now Booking</a></li>
159
+ <li><a href="/whatson/coming/?cinema=all&amp;date=all">Coming Soon</a></li>
160
+ <li><a href="/whatson/future/?cinema=all&amp;date=all">Future Films</a></li>
161
+ <li><a href="/whatson/ending/?cinema=all">Ending Soon</a></li>
161
162
  <li><a href="/whatson/category/junior">Movies for Juniors</a></li>
163
+ <li><a href="/whatson/category/bollywood">Bollywood and South Asian Cinema</a></li>
164
+ <li><a href="/events">Theatre, Opera and Event Cinema</a></li>
162
165
  </ul>
163
166
  </li>
164
167
  <li>
@@ -176,11 +179,9 @@
176
179
  <li><a href="/blog">Cineworld Blog</a></li>
177
180
  <li><a href="/competitions">Offers &amp; Competitions</a></li>
178
181
 
179
- <li><a href="/bargain-tuesdays">Bargain Tuesdays</a></li>
180
182
  <li><a href="/cineworld-foundation">Cineworld Foundation</a></li>
181
- <li><a href="/summer-family-films-2014">Summer Family Films</a></li>
182
- <li><a href="/mega-movies-2014">Mega Movies at Cineworld</a></li>
183
- <li><a href="/take2">Take 2 Offer</a></li>
183
+ <li><a href="/bargain-tuesdays">Bargain Tuesdays</a></li>
184
+ <li><a href="/take2">Take 2</a></li>
184
185
  <li><a href="/baskin-robbins">Baskin Robbins at Cineworld</a></li>
185
186
  <li><a href="/starbucks">Starbucks at Cineworld</a></li>
186
187
  </ul>
@@ -194,12 +195,19 @@
194
195
  <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Apply for Unlimited</a></li>
195
196
  </ul>
196
197
  </li>
197
- <li><a href="/giftcards">Gifts</a></li>
198
+ <li>
199
+ <a href="/giftcards">Gifts</a>
200
+ <ul>
201
+ <li><a href="/shop?category=giftcards">Order Gift Cards by Post</a></li>
202
+ <li><a href="/shop?category=egiftcards">Order e-Gift Vouchers by Email</a></li>
203
+ <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Send Unlimited as a Gift</a></li>
204
+ </ul>
205
+ </li>
198
206
  <li>
199
207
  <form action="/search" method="get" class="search" role="search" data-ajax-action="/search/suggestions">
200
208
  <label class="no-margin inline">
201
209
  <span class="accessible-hide-html-self">Search</span>
202
- <input accesskey="s" autocomplete="off" placeholder="Search" type="search" name="q" />
210
+ <input accesskey="s" autocomplete="off" placeholder="Search films and cinemas..." type="search" name="q" />
203
211
  </label>
204
212
  <ol class="results"></ol>
205
213
  <button type="submit">Search</button>
@@ -239,22 +247,28 @@
239
247
  <li>
240
248
 
241
249
  <div class="poster has-ribbon">
242
- <a href="/whatson/dawn-of-the-planet-of-the-apes?cinema=4">
243
- <div class="overlay ribbon blue">Tickets Selling Fast</div>
244
- <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/6593_poster_large.jpg" alt="Poster for Film Dawn of the Planet of the Apes" /></div>
250
+ <a href="/whatson/the-boxtrolls?cinema=4">
251
+ <div class="overlay ribbon blue">Previews Sept 06 &amp; 07</div>
252
+
253
+
254
+
255
+ <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/7705_poster_iphone.jpg" alt="Poster for Film The Boxtrolls" /></div>
245
256
  </a>
246
257
  </div>
247
- <a href="/whatson/dawn-of-the-planet-of-the-apes?cinema=4">Dawn of the Planet of the Apes</a>
258
+ <a href="/whatson/the-boxtrolls?cinema=4">The Boxtrolls</a>
248
259
  </li>
249
260
 
250
261
  <li>
251
262
 
252
263
  <div class="poster ">
253
- <a href="/whatson/how-to-train-your-dragon-2?cinema=4">
254
- <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/6670_poster_large.jpg" alt="Poster for Film How To Train Your Dragon 2" /></div>
264
+ <a href="/whatson/sex-tape?cinema=4">
265
+
266
+
267
+
268
+ <div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/7670_poster_iphone.jpg" alt="Poster for Film Sex Tape" /></div>
255
269
  </a>
256
270
  </div>
257
- <a href="/whatson/how-to-train-your-dragon-2?cinema=4">How To Train Your Dragon 2</a>
271
+ <a href="/whatson/sex-tape?cinema=4">Sex Tape</a>
258
272
  </li>
259
273
  </ul>
260
274
 
@@ -264,18 +278,18 @@
264
278
  </div>
265
279
 
266
280
  <div class="section light clearfix " >
267
- <h1 id="prices" class="ribbon overlap">How much do tickets cost?</h1>
281
+ <h2 id="prices" class="h1 ribbon overlap">How much do tickets cost?</h2>
268
282
 
269
283
 
270
284
  <div class="promotion block clearfix">
271
- <a href="/blog/allocated-seating-is-here" target="_self"><img src="/assets/media/ads/ad_36299.png" alt="Allocated Seating Is Here" title="Allocated Seating Is Here" /></a>
285
+ <a href="http://www.cineworld.co.uk/unlimited/intro" target="_self"><img src="/assets/media/ads/ad_38211.png" alt="Unleash The Power Of Unlimited Movies" title="Unleash The Power Of Unlimited Movies" /></a>
272
286
  </div>
273
287
 
274
288
  <div class="pricing">
275
289
  <div class="panel anonymous dark">
276
290
  <h2>Register free with <span class="icon-logo-mycineworld">MyCineworld</span> and save your details for faster and easier booking - mycineworld tickets only available online</h2>
277
291
 
278
- <a class="action mycineworld" href="/register">Sign Up</a>
292
+ <a class="action mycineworld" href="/register">Register</a>
279
293
  <a class="action mycineworld" href="/login">Login</a>
280
294
  <a class="action facebook" href="/login/facebook/go?location=%2Fcinemas%2F4%2Finformation%3Ffbl%3Dtrue" data-type="connect" data-location="/cinemas/4/information?fbl=true">Connect with Facebook</a>
281
295
  </div>
@@ -1030,7 +1044,7 @@
1030
1044
  </div>
1031
1045
 
1032
1046
  <div class="section light clearfix " >
1033
- <h1 id="services" class="ribbon">Summary of facilities</h1>
1047
+ <h2 id="h1 services" class="ribbon">Summary of facilities</h2>
1034
1048
 
1035
1049
  <ul class="unstyled clearfix services">
1036
1050
  <li>
@@ -1072,7 +1086,7 @@
1072
1086
 
1073
1087
 
1074
1088
  <div class="section light clearfix " >
1075
- <h1 id="directions" class="ribbon">How do I get there?</h1>
1089
+ <h2 id="directions" class="h1 ribbon">How do I get there?</h2>
1076
1090
 
1077
1091
  <div class="row">
1078
1092
  <div class="span6">
@@ -1108,7 +1122,7 @@
1108
1122
 
1109
1123
 
1110
1124
  <div class="section light clearfix " >
1111
- <h1 id="hire" class="ribbon">Hire Cineworld Bristol</h1>
1125
+ <h2 id="hire" class="h1 ribbon">Hire Cineworld Bristol</h2>
1112
1126
 
1113
1127
  <div class="row hire">
1114
1128
  <div class="span6">
@@ -1247,13 +1261,5 @@
1247
1261
  <img alt="dcsimg" id="dcsimg" width="1" height="1" src="http://statse.webtrendslive.com/dcskzgl9m000000w4dyp4senq_3i2w/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=10.2.81&amp;dcssip=cineworld.co.uk&amp;" />
1248
1262
  </noscript>
1249
1263
 
1250
- <script type="text/javascript">
1251
- //<![CDATA[
1252
- (function() {
1253
- var _analytics_scr = document.createElement('script');
1254
- _analytics_scr.type = 'text/javascript'; _analytics_scr.async = true; _analytics_scr.src = '/_Incapsula_Resource?SWJIYLWA=2977d8d74f63d7f8fedbea018b7a1d05&ns=5';
1255
- var _analytics_elem = document.getElementsByTagName('script')[0]; _analytics_elem.parentNode.insertBefore(_analytics_scr, _analytics_elem);
1256
- })();
1257
- // ]]>
1258
- </script></body>
1264
+ </body>
1259
1265
  </html>