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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/cineworld_uk/internal/whatson_parser.rb +2 -10
- data/lib/cineworld_uk/version.rb +2 -2
- data/test/fixtures/cinemas.html +20 -20
- data/test/fixtures/information/brighton.html +39 -33
- data/test/fixtures/information/bristol.html +39 -33
- data/test/fixtures/whatson/brighton.html +5637 -6909
- data/test/fixtures/whatson/brighton/film_first.html +40 -608
- data/test/fixtures/whatson/brighton/film_last.html +25 -15
- data/test/fixtures/whatson/brighton/film_second.html +56 -354
- data/test/fixtures/whatson/glasgow-imax-at-gsc/film_first.html +75 -33
- data/test/fixtures/whatson/the-o2-greenwich/film_first.html +36 -1111
- data/test/lib/cineworld_uk/internal/film_with_screenings_parser_test.rb +3 -3
- data/test/lib/cineworld_uk/internal/whatson_parser_test.rb +2 -2
- data/test/lib/cineworld_uk/screening_test.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b133655c1c0ad6c7645b40f58d71467086548717
|
4
|
+
data.tar.gz: 40dcfc563dc86fdf8d182747f4901b55693a4c56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83c9ef91f405d2e1ebf73eef8bdb1ae1dbedaabe489b5328bd3f654c9f9f0fdc78d21ad00c3fe9608095e13a178fd14ca131be34b2702de525832724b20d9c11
|
7
|
+
data.tar.gz: ca27029caee988faa8ef91b7486ba3482e0ecc477ad27879c851405c71ff301b2504b1f3f570c2add81c3e8ba8b0734dba5a2991605e9b3dfe6e0f39a791a8d2
|
data/CHANGELOG.md
CHANGED
@@ -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 > .
|
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
|
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
|
data/lib/cineworld_uk/version.rb
CHANGED
data/test/fixtures/cinemas.html
CHANGED
@@ -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
|
-
<!--
|
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="/
|
146
|
+
<li><a href="/whatson?cinema=all">All Films Now Booking</a></li>
|
147
|
+
<li><a href="/whatson/coming/?cinema=all&date=all">Coming Soon</a></li>
|
148
|
+
<li><a href="/whatson/future/?cinema=all&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 & 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="/
|
170
|
-
<li><a href="/
|
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
|
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&WT.js=No&WT.tv=10.2.81&dcssip=cineworld.co.uk&" />
|
502
510
|
</noscript>
|
503
511
|
|
504
|
-
|
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
|
-
<!--
|
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="/
|
159
|
+
<li><a href="/whatson?cinema=all">All Films Now Booking</a></li>
|
160
|
+
<li><a href="/whatson/coming/?cinema=all&date=all">Coming Soon</a></li>
|
161
|
+
<li><a href="/whatson/future/?cinema=all&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 & 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="/
|
183
|
-
<li><a href="/
|
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
|
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/
|
244
|
-
<div class="overlay ribbon blue">
|
245
|
-
|
251
|
+
<a href="/whatson/the-boxtrolls?cinema=3">
|
252
|
+
<div class="overlay ribbon blue">Previews Sept 06 & 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/
|
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/
|
255
|
-
|
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/
|
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
|
-
<
|
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="/
|
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">
|
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
|
-
<
|
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
|
-
<
|
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
|
-
<
|
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&WT.js=No&WT.tv=10.2.81&dcssip=cineworld.co.uk&" />
|
1251
1265
|
</noscript>
|
1252
1266
|
|
1253
|
-
|
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
|
-
<!--
|
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="/
|
158
|
+
<li><a href="/whatson?cinema=all">All Films Now Booking</a></li>
|
159
|
+
<li><a href="/whatson/coming/?cinema=all&date=all">Coming Soon</a></li>
|
160
|
+
<li><a href="/whatson/future/?cinema=all&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 & 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="/
|
182
|
-
<li><a href="/
|
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
|
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/
|
243
|
-
<div class="overlay ribbon blue">
|
244
|
-
|
250
|
+
<a href="/whatson/the-boxtrolls?cinema=4">
|
251
|
+
<div class="overlay ribbon blue">Previews Sept 06 & 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/
|
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/
|
254
|
-
|
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/
|
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
|
-
<
|
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="/
|
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">
|
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
|
-
<
|
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
|
-
<
|
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
|
-
<
|
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&WT.js=No&WT.tv=10.2.81&dcssip=cineworld.co.uk&" />
|
1248
1262
|
</noscript>
|
1249
1263
|
|
1250
|
-
|
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>
|