odeon_uk 1.1.5 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +8 -1
- data/README.md +1 -0
- data/Rakefile +13 -9
- data/lib/odeon_uk/cinema.rb +14 -42
- data/lib/odeon_uk/film.rb +23 -5
- data/lib/odeon_uk/internal/film_with_screenings_parser.rb +133 -46
- data/lib/odeon_uk/internal/showtimes_page.rb +36 -0
- data/lib/odeon_uk/internal/title_sanitizer.rb +49 -0
- data/lib/odeon_uk/internal/website.rb +36 -0
- data/lib/odeon_uk/screening.rb +56 -22
- data/lib/odeon_uk/version.rb +2 -2
- data/lib/odeon_uk.rb +4 -2
- data/odeon_uk.gemspec +0 -1
- data/test/fixture_updater.rb +72 -0
- data/test/fixtures/{odeon-bfi-imax.html → cinema/bfi_imax.html} +988 -1130
- data/test/fixtures/{odeon-brighton.html → cinema/brighton.html} +1035 -761
- data/test/fixtures/{odeon-london-leicester-square.html → cinema/leicester_square.html} +470 -766
- data/test/fixtures/showtimes/brighton/film_first.html +92 -0
- data/test/fixtures/showtimes/brighton/film_last.html +100 -0
- data/test/fixtures/showtimes/brighton.html +2071 -0
- data/test/fixtures/showtimes/liverpool_one/film_first_dbox.html +188 -0
- data/test/fixtures/showtimes/manchester/film_first_imax.html +182 -0
- data/test/fixtures/{odeon-sitemap.html → sitemap.html} +572 -444
- data/test/lib/odeon_uk/cinema_test.rb +129 -231
- data/test/lib/odeon_uk/film_test.rb +50 -3
- data/test/lib/odeon_uk/internal/film_with_screenings_parser_test.rb +79 -123
- data/test/lib/odeon_uk/internal/showtimes_page_test.rb +51 -0
- data/test/lib/odeon_uk/internal/title_sanitizer_test.rb +105 -0
- data/test/lib/odeon_uk/internal/website_test.rb +59 -0
- data/test/lib/odeon_uk/screening_test.rb +66 -32
- metadata +32 -53
- data/test/fixtures/brighton-showtimes/about-time.html +0 -175
- data/test/fixtures/brighton-showtimes/autism-friendly-planes.html +0 -75
- data/test/fixtures/brighton-showtimes/bolshoi-spartacus-live.html +0 -67
- data/test/fixtures/brighton-showtimes/cinemagic-echo-planet.html +0 -67
- data/test/fixtures/brighton-showtimes/globe-on-screen-twelfth-night.html +0 -67
- data/test/fixtures/brighton-showtimes/met-opera-eugene-onegin.html +0 -67
- data/test/fixtures/brighton-showtimes/national-theatre-live-frankenstein.html +0 -78
- data/test/fixtures/brighton-showtimes/nt-live-war-horse.html +0 -67
- data/test/fixtures/brighton-showtimes/royal-opera-house-turandot.html +0 -66
- data/test/fixtures/brighton-showtimes/rsc-richard-ii.html +0 -67
- data/test/fixtures/brighton-showtimes/star-trek-into-darkness-2d.html +0 -83
- data/test/fixtures/brighton-showtimes/ukjff-from-cable-street-to-brick-lane.html +0 -67
- data/test/fixtures/manchester-showtimes/thor-the-dark-world.html +0 -300
- data/test/fixtures/odeon-brighton-showtimes.html +0 -1238
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: odeon_uk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Croll
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: httparty
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: nokogiri
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -113,30 +99,28 @@ files:
|
|
113
99
|
- lib/odeon_uk/cinema.rb
|
114
100
|
- lib/odeon_uk/film.rb
|
115
101
|
- lib/odeon_uk/internal/film_with_screenings_parser.rb
|
102
|
+
- lib/odeon_uk/internal/showtimes_page.rb
|
103
|
+
- lib/odeon_uk/internal/title_sanitizer.rb
|
104
|
+
- lib/odeon_uk/internal/website.rb
|
116
105
|
- lib/odeon_uk/screening.rb
|
117
106
|
- lib/odeon_uk/version.rb
|
118
107
|
- odeon_uk.gemspec
|
119
|
-
- test/
|
120
|
-
- test/fixtures/
|
121
|
-
- test/fixtures/brighton
|
122
|
-
- test/fixtures/
|
123
|
-
- test/fixtures/
|
124
|
-
- test/fixtures/
|
125
|
-
- test/fixtures/
|
126
|
-
- test/fixtures/
|
127
|
-
- test/fixtures/
|
128
|
-
- test/fixtures/
|
129
|
-
- test/fixtures/brighton-showtimes/star-trek-into-darkness-2d.html
|
130
|
-
- test/fixtures/brighton-showtimes/ukjff-from-cable-street-to-brick-lane.html
|
131
|
-
- test/fixtures/manchester-showtimes/thor-the-dark-world.html
|
132
|
-
- test/fixtures/odeon-bfi-imax.html
|
133
|
-
- test/fixtures/odeon-brighton-showtimes.html
|
134
|
-
- test/fixtures/odeon-brighton.html
|
135
|
-
- test/fixtures/odeon-london-leicester-square.html
|
136
|
-
- test/fixtures/odeon-sitemap.html
|
108
|
+
- test/fixture_updater.rb
|
109
|
+
- test/fixtures/cinema/bfi_imax.html
|
110
|
+
- test/fixtures/cinema/brighton.html
|
111
|
+
- test/fixtures/cinema/leicester_square.html
|
112
|
+
- test/fixtures/showtimes/brighton.html
|
113
|
+
- test/fixtures/showtimes/brighton/film_first.html
|
114
|
+
- test/fixtures/showtimes/brighton/film_last.html
|
115
|
+
- test/fixtures/showtimes/liverpool_one/film_first_dbox.html
|
116
|
+
- test/fixtures/showtimes/manchester/film_first_imax.html
|
117
|
+
- test/fixtures/sitemap.html
|
137
118
|
- test/lib/odeon_uk/cinema_test.rb
|
138
119
|
- test/lib/odeon_uk/film_test.rb
|
139
120
|
- test/lib/odeon_uk/internal/film_with_screenings_parser_test.rb
|
121
|
+
- test/lib/odeon_uk/internal/showtimes_page_test.rb
|
122
|
+
- test/lib/odeon_uk/internal/title_sanitizer_test.rb
|
123
|
+
- test/lib/odeon_uk/internal/website_test.rb
|
140
124
|
- test/lib/odeon_uk/screening_test.rb
|
141
125
|
- test/lib/odeon_uk/version_test.rb
|
142
126
|
- test/test_helper.rb
|
@@ -160,32 +144,27 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
144
|
version: '0'
|
161
145
|
requirements: []
|
162
146
|
rubyforge_project:
|
163
|
-
rubygems_version: 2.2.
|
147
|
+
rubygems_version: 2.2.2
|
164
148
|
signing_key:
|
165
149
|
specification_version: 4
|
166
150
|
summary: It's a scraper, but a nice one
|
167
151
|
test_files:
|
168
|
-
- test/
|
169
|
-
- test/fixtures/
|
170
|
-
- test/fixtures/brighton
|
171
|
-
- test/fixtures/
|
172
|
-
- test/fixtures/
|
173
|
-
- test/fixtures/
|
174
|
-
- test/fixtures/
|
175
|
-
- test/fixtures/
|
176
|
-
- test/fixtures/
|
177
|
-
- test/fixtures/
|
178
|
-
- test/fixtures/brighton-showtimes/star-trek-into-darkness-2d.html
|
179
|
-
- test/fixtures/brighton-showtimes/ukjff-from-cable-street-to-brick-lane.html
|
180
|
-
- test/fixtures/manchester-showtimes/thor-the-dark-world.html
|
181
|
-
- test/fixtures/odeon-bfi-imax.html
|
182
|
-
- test/fixtures/odeon-brighton-showtimes.html
|
183
|
-
- test/fixtures/odeon-brighton.html
|
184
|
-
- test/fixtures/odeon-london-leicester-square.html
|
185
|
-
- test/fixtures/odeon-sitemap.html
|
152
|
+
- test/fixture_updater.rb
|
153
|
+
- test/fixtures/cinema/bfi_imax.html
|
154
|
+
- test/fixtures/cinema/brighton.html
|
155
|
+
- test/fixtures/cinema/leicester_square.html
|
156
|
+
- test/fixtures/showtimes/brighton.html
|
157
|
+
- test/fixtures/showtimes/brighton/film_first.html
|
158
|
+
- test/fixtures/showtimes/brighton/film_last.html
|
159
|
+
- test/fixtures/showtimes/liverpool_one/film_first_dbox.html
|
160
|
+
- test/fixtures/showtimes/manchester/film_first_imax.html
|
161
|
+
- test/fixtures/sitemap.html
|
186
162
|
- test/lib/odeon_uk/cinema_test.rb
|
187
163
|
- test/lib/odeon_uk/film_test.rb
|
188
164
|
- test/lib/odeon_uk/internal/film_with_screenings_parser_test.rb
|
165
|
+
- test/lib/odeon_uk/internal/showtimes_page_test.rb
|
166
|
+
- test/lib/odeon_uk/internal/title_sanitizer_test.rb
|
167
|
+
- test/lib/odeon_uk/internal/website_test.rb
|
189
168
|
- test/lib/odeon_uk/screening_test.rb
|
190
169
|
- test/lib/odeon_uk/version_test.rb
|
191
170
|
- test/test_helper.rb
|
@@ -1,175 +0,0 @@
|
|
1
|
-
<div id="22876" class="film-detail WEEK">
|
2
|
-
<div class="content-container film _WEEK" id="film-22876">
|
3
|
-
<div class="grad-hor">
|
4
|
-
<a href="/films/about_time/14426/">
|
5
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_fedb25894d81108e06f9dd8903ea1d51.jpg"></a>
|
6
|
-
<div class="presentation-info">
|
7
|
-
<h4>
|
8
|
-
<a href="/films/about_time/14426/">About Time</a>
|
9
|
-
</h4>
|
10
|
-
<div class="cert-icon-uk-12A-small"></div>
|
11
|
-
<span class="description"></span>
|
12
|
-
</div>
|
13
|
-
<p> <strong>Charming time-travelling rom-com with Rachel McAdams</strong>
|
14
|
-
</p>
|
15
|
-
<div class="presentation-info">
|
16
|
-
<div rating-master-id="14426" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
17
|
-
<div class="rating-icon-star-small-active s7">
|
18
|
-
<div class="rate-over s1"></div>
|
19
|
-
<div class="rate-over s2"></div>
|
20
|
-
<div class="rate-over s3"></div>
|
21
|
-
<div class="rate-over s4"></div>
|
22
|
-
<div class="rate-over s5"></div>
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
<span class="description"> <strong>Film length: 123 mins</strong>
|
26
|
-
</span>
|
27
|
-
</div>
|
28
|
-
<p class="description">
|
29
|
-
Contains infrequent strong language and moderate sex references
|
30
|
-
</p>
|
31
|
-
</div>
|
32
|
-
<div class="info-corner">
|
33
|
-
<div class="img-bundle">
|
34
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="22876"></div>
|
35
|
-
</div>
|
36
|
-
<div class="btn-group">
|
37
|
-
<a href="http://odeon.trailer.cineweb.de/about_time.mp4" class="btn btn-primary trailer kkvideo-trigger" data-film-id="14426" data-showbooknowbutton="false"> <i class="film-icon-btn-play"></i>
|
38
|
-
Trailer
|
39
|
-
</a>
|
40
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
41
|
-
<span class="caret"></span>
|
42
|
-
</button>
|
43
|
-
<ul class="dropdown-menu">
|
44
|
-
<li>
|
45
|
-
<a href="#">Add to Playlist</a>
|
46
|
-
</li>
|
47
|
-
</ul>
|
48
|
-
</div>
|
49
|
-
</div>
|
50
|
-
</div>
|
51
|
-
<div id="performances-WEEK-22876" class="content-container times-all _WEEK">
|
52
|
-
<div class="accordion-group times-all performances-WEEK _22876" id="tech-22876-0">
|
53
|
-
<div class="content-container tech accordion-heading _WEEK">
|
54
|
-
<a data-toggle="collapse" data-parent="#tech-22876-0-WEEK" class="accordion-toggle" href="#collapse-22876-0-WEEK">in 2D</a>
|
55
|
-
<a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
|
56
|
-
</div>
|
57
|
-
<div id="collapse-22876-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
58
|
-
<div class="accordion-inner">
|
59
|
-
<div class="content-container times containerWEEK">
|
60
|
-
<div class="presentation-info week">
|
61
|
-
<strong>Saturday</strong>
|
62
|
-
<br>14 Sep</div>
|
63
|
-
<ul class="unstyled inline">
|
64
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
65
|
-
<a href="/booking/init/MUZFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 14/09/2013 12:20" data-popup="popup" data-duration="123" data-start="12:20" data-end="14:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">12:20</a>
|
66
|
-
</li>
|
67
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
68
|
-
<a href="/booking/init/RkRFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 14/09/2013 15:10" data-popup="popup" data-duration="123" data-start="15:10" data-end="17:13" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">15:10</a>
|
69
|
-
</li>
|
70
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
71
|
-
<a href="/booking/init/NUVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 14/09/2013 17:50" data-popup="popup" data-duration="123" data-start="17:50" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">17:50</a>
|
72
|
-
</li>
|
73
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
74
|
-
<a href="/booking/init/QkVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 14/09/2013 20:30" data-popup="popup" data-duration="123" data-start="20:30" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">20:30</a>
|
75
|
-
</li>
|
76
|
-
</ul>
|
77
|
-
</div>
|
78
|
-
<div class="content-container times containerWEEK">
|
79
|
-
<div class="presentation-info week">
|
80
|
-
<strong>Sunday</strong>
|
81
|
-
<br>15 Sep</div>
|
82
|
-
<ul class="unstyled inline">
|
83
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
84
|
-
<a href="/booking/init/M0ZFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 15/09/2013 12:20" data-popup="popup" data-duration="123" data-start="12:20" data-end="14:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">12:20</a>
|
85
|
-
</li>
|
86
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
87
|
-
<a href="/booking/init/MEVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 15/09/2013 15:10" data-popup="popup" data-duration="123" data-start="15:10" data-end="17:13" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">15:10</a>
|
88
|
-
</li>
|
89
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
90
|
-
<a href="/booking/init/NkVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 15/09/2013 17:50" data-popup="popup" data-duration="123" data-start="17:50" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">17:50</a>
|
91
|
-
</li>
|
92
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
93
|
-
<a href="/booking/init/Q0VFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 15/09/2013 20:30" data-popup="popup" data-duration="123" data-start="20:30" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">20:30</a>
|
94
|
-
</li>
|
95
|
-
</ul>
|
96
|
-
</div>
|
97
|
-
<div class="content-container times containerWEEK">
|
98
|
-
<div class="presentation-info week">
|
99
|
-
<strong>Monday</strong>
|
100
|
-
<br>16 Sep</div>
|
101
|
-
<ul class="unstyled inline">
|
102
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
103
|
-
<a href="/booking/init/MUVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Super Saver - book About Time on 16/09/2013 15:10" data-popup="popup" data-duration="123" data-start="15:10" data-end="17:13" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">15:10</a>
|
104
|
-
</li>
|
105
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
106
|
-
<a href="/booking/init/N0VFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 16/09/2013 17:50" data-popup="popup" data-duration="123" data-start="17:50" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">17:50</a>
|
107
|
-
</li>
|
108
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
109
|
-
<a href="/booking/init/REVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 16/09/2013 20:30" data-popup="popup" data-duration="123" data-start="20:30" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">20:30</a>
|
110
|
-
</li>
|
111
|
-
</ul>
|
112
|
-
</div>
|
113
|
-
<div class="content-container times containerWEEK">
|
114
|
-
<div class="presentation-info week">
|
115
|
-
<strong>Tuesday</strong>
|
116
|
-
<br>17 Sep</div>
|
117
|
-
<ul class="unstyled inline">
|
118
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
119
|
-
<a href="/booking/init/MkVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Saver - book About Time on 17/09/2013 15:10" data-popup="popup" data-duration="123" data-start="15:10" data-end="17:13" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">15:10</a>
|
120
|
-
</li>
|
121
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSAVER WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
122
|
-
<a href="/booking/init/OEVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Saver - book About Time on 17/09/2013 17:50" data-popup="popup" data-duration="123" data-start="17:50" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">17:50</a>
|
123
|
-
</li>
|
124
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSAVER WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
125
|
-
<a href="/booking/init/RUVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Saver - book About Time on 17/09/2013 20:30" data-popup="popup" data-duration="123" data-start="20:30" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">20:30</a>
|
126
|
-
</li>
|
127
|
-
</ul>
|
128
|
-
</div>
|
129
|
-
<div class="content-container times containerWEEK">
|
130
|
-
<div class="presentation-info week">
|
131
|
-
<strong>Wednesday</strong>
|
132
|
-
<br>18 Sep</div>
|
133
|
-
<ul class="unstyled inline">
|
134
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
135
|
-
<a href="/booking/init/M0VFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Super Saver - book About Time on 18/09/2013 15:10" data-popup="popup" data-duration="123" data-start="15:10" data-end="17:13" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">15:10</a>
|
136
|
-
</li>
|
137
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
138
|
-
<a href="/booking/init/OUVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 18/09/2013 17:50" data-popup="popup" data-duration="123" data-start="17:50" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">17:50</a>
|
139
|
-
</li>
|
140
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
141
|
-
<a href="/booking/init/RkVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 18/09/2013 20:30" data-popup="popup" data-duration="123" data-start="20:30" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">20:30</a>
|
142
|
-
</li>
|
143
|
-
</ul>
|
144
|
-
</div>
|
145
|
-
<div class="content-container times containerWEEK">
|
146
|
-
<div class="content-container brown">
|
147
|
-
<h6>Newbies</h6>
|
148
|
-
</div>
|
149
|
-
<div class="presentation-info week">
|
150
|
-
<strong>Thursday</strong>
|
151
|
-
<br>19 Sep</div>
|
152
|
-
<ul class="unstyled inline">
|
153
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_MORNING WEEK_NEWBIES WEEK_2D WEEK_GENRE_7 show">
|
154
|
-
<a href="/booking/init/NUZFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Super Saver - book About Time on 19/09/2013 10:45" data-popup="popup" data-duration="123" data-start="10:45" data-end="12:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">10:45</a>
|
155
|
-
</li>
|
156
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show">
|
157
|
-
<a href="/booking/init/NEVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Super Saver - book About Time on 19/09/2013 15:10" data-popup="popup" data-duration="123" data-start="15:10" data-end="17:13" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">15:10</a>
|
158
|
-
</li>
|
159
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
160
|
-
<a href="/booking/init/QUVFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 19/09/2013 17:50" data-popup="popup" data-duration="123" data-start="17:50" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">17:50</a>
|
161
|
-
</li>
|
162
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show">
|
163
|
-
<a href="/booking/init/MEZFRjAwMDAwMjNVRFBETVhHIzcxIzE0NDI2/" class="performance-detail" title="Peak - book About Time on 19/09/2013 20:30" data-popup="popup" data-duration="123" data-start="20:30" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">20:30</a>
|
164
|
-
</li>
|
165
|
-
</ul>
|
166
|
-
</div>
|
167
|
-
<div class="content-container times stopper performances-WEEK _22876"></div>
|
168
|
-
</div>
|
169
|
-
</div>
|
170
|
-
</div>
|
171
|
-
<!-- <div class="content-container times stopper performances-WEEK _22876"></div>
|
172
|
-
-->
|
173
|
-
<div class="content-container white performances-WEEK _22876"></div>
|
174
|
-
</div>
|
175
|
-
</div>
|
@@ -1,75 +0,0 @@
|
|
1
|
-
<div id="23718" class="film-detail WEEK">
|
2
|
-
<div class="content-container film _WEEK" id="film-23718">
|
3
|
-
<div class="grad-hor">
|
4
|
-
<a href="/films/autism_friendly_screening_planes/100653/">
|
5
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_259e64588a7f49c6d6f6c9cb01263248.jpg"></a>
|
6
|
-
<div class="presentation-info">
|
7
|
-
<h4>
|
8
|
-
<a href="/films/autism_friendly_screening_planes/100653/">Autism Friendly Screening - Planes</a>
|
9
|
-
</h4>
|
10
|
-
<div class="cert-icon-uk-U-small"></div>
|
11
|
-
<span class="description"></span>
|
12
|
-
</div>
|
13
|
-
<p> <strong>Disney animation 'Planes' follows Dusty, a lowly crop duster plane with a fear of heights who sets his sights on becoming a champion aerial racer.</strong>
|
14
|
-
</p>
|
15
|
-
<div class="presentation-info">
|
16
|
-
<div rating-master-id="100653" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
17
|
-
<div class="rating-icon-star-small-active s0">
|
18
|
-
<div class="rate-over s1"></div>
|
19
|
-
<div class="rate-over s2"></div>
|
20
|
-
<div class="rate-over s3"></div>
|
21
|
-
<div class="rate-over s4"></div>
|
22
|
-
<div class="rate-over s5"></div>
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
<span class="description"> <strong>Film length: 92 mins</strong>
|
26
|
-
</span>
|
27
|
-
</div>
|
28
|
-
<p class="description">Contains no material likely to offend or harm</p>
|
29
|
-
</div>
|
30
|
-
<div class="info-corner">
|
31
|
-
<div class="img-bundle">
|
32
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="23718"></div>
|
33
|
-
</div>
|
34
|
-
<div class="btn-group">
|
35
|
-
<a href="http://odeon.trailer.cineweb.de/planes1.mp4" class="btn btn-primary trailer kkvideo-trigger" data-film-id="100653" data-showbooknowbutton="false"> <i class="film-icon-btn-play"></i>
|
36
|
-
Trailer
|
37
|
-
</a>
|
38
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
39
|
-
<span class="caret"></span>
|
40
|
-
</button>
|
41
|
-
<ul class="dropdown-menu">
|
42
|
-
<li>
|
43
|
-
<a href="#">Add to Playlist</a>
|
44
|
-
</li>
|
45
|
-
</ul>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
</div>
|
49
|
-
<div id="performances-WEEK-23718" class="content-container times-all _WEEK">
|
50
|
-
<div class="accordion-group times-all performances-WEEK _23718" id="tech-23718-0">
|
51
|
-
<div class="content-container tech accordion-heading _WEEK">
|
52
|
-
<a data-toggle="collapse" data-parent="#tech-23718-0-WEEK" class="accordion-toggle" href="#collapse-23718-0-WEEK">in 2D</a>
|
53
|
-
<a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
|
54
|
-
</div>
|
55
|
-
<div id="collapse-23718-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
56
|
-
<div class="accordion-inner">
|
57
|
-
<div class="content-container times containerWEEK">
|
58
|
-
<div class="presentation-info week">
|
59
|
-
<strong>Sunday</strong>
|
60
|
-
<br>15 Sep</div>
|
61
|
-
<ul class="unstyled inline">
|
62
|
-
<li class="WEEK performance-darkgreen WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_U WEEK_MORNING WEEK_2D WEEK_2D WEEK_GENRE_10 show">
|
63
|
-
<a href="/booking/init/MENFRjAwMDAwMjNVRFBETVhHIzcxIzEwMDY1Mw==/" class="performance-detail" title="Peak - book Autism Friendly Screening - Planes on 15/09/2013 11:30" data-popup="popup" data-duration="92" data-start="11:30" data-end="13:02" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">11:30</a>
|
64
|
-
</li>
|
65
|
-
</ul>
|
66
|
-
</div>
|
67
|
-
<div class="content-container times stopper performances-WEEK _23718"></div>
|
68
|
-
</div>
|
69
|
-
</div>
|
70
|
-
</div>
|
71
|
-
<!-- <div class="content-container times stopper performances-WEEK _23718"></div>
|
72
|
-
-->
|
73
|
-
<div class="content-container white performances-WEEK _23718"></div>
|
74
|
-
</div>
|
75
|
-
</div>
|
@@ -1,67 +0,0 @@
|
|
1
|
-
<div id="23988" class="film-detail FUTURE">
|
2
|
-
|
3
|
-
<div class="content-container film _FUTURE" id="film-23988">
|
4
|
-
<div class="grad-hor">
|
5
|
-
<a href="/films/bolshoi_spartacus_live/14845/">
|
6
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_5d1170724fb2186a1df32c5ef6cd7c2d.jpg"></a>
|
7
|
-
<div class="presentation-info">
|
8
|
-
<h4>
|
9
|
-
<a href="/films/bolshoi_spartacus_live/14845/">Bolshoi - Spartacus (Live)</a>
|
10
|
-
</h4>
|
11
|
-
<div class="cert-icon-uk-TBC-small"></div>
|
12
|
-
<span class="description"></span>
|
13
|
-
</div>
|
14
|
-
<p> <strong>Captured by the Roman army, Spartacus and Phrygia are condemned to slavery. After becoming a gladiator, Spartacus foments a legendary rebellion.</strong>
|
15
|
-
</p>
|
16
|
-
|
17
|
-
<div class="presentation-info">
|
18
|
-
<div data-rating-master-id="14845" class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
19
|
-
<div class="rating-icon-buzz-small-active s0" data-rating="0">
|
20
|
-
<div class="rate-over s1"></div>
|
21
|
-
<div class="rate-over s2"></div>
|
22
|
-
<div class="rate-over s3"></div>
|
23
|
-
<div class="rate-over s4"></div>
|
24
|
-
<div class="rate-over s5"></div>
|
25
|
-
</div> <i class="rating-icon-buzz-small-icon"></i>
|
26
|
-
</div>
|
27
|
-
<span class="description"> <strong>Film length: 180 mins</strong>
|
28
|
-
</span>
|
29
|
-
</div>
|
30
|
-
<p class="description"></p>
|
31
|
-
</div>
|
32
|
-
<div class="info-corner">
|
33
|
-
<div class="img-bundle">
|
34
|
-
<div class="film-icon-FUTURE feature-icon-light-2d-medium FUTURE_2D" data-schedule="2D" data-film="23988"></div>
|
35
|
-
</div>
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
<div id="performances-FUTURE-23988" class="content-container times-all _FUTURE">
|
39
|
-
<div class="accordion-group times-all performances-FUTURE _23988" id="tech-23988-0">
|
40
|
-
<div class="content-container tech accordion-heading _FUTURE">
|
41
|
-
<a data-toggle="collapse" data-parent="#tech-23988-0-FUTURE" class="accordion-toggle" href="#collapse-23988-0-FUTURE">in 2D</a>
|
42
|
-
<a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy." data-original-title=""></a>
|
43
|
-
</div>
|
44
|
-
<div id="collapse-23988-0-FUTURE" class="accordion-body in collapse" style="height: auto;">
|
45
|
-
<div class="accordion-inner">
|
46
|
-
|
47
|
-
<div class="content-container times containerFUTURE">
|
48
|
-
<div class="presentation-info future">
|
49
|
-
<strong>Sunday</strong>
|
50
|
-
<br>20 Oct</div>
|
51
|
-
<ul class="unstyled inline">
|
52
|
-
<li class="FUTURE performance-darkgreen FUTURE_TBC FUTURE_AFTERNOON FUTURE_2D show">
|
53
|
-
<a href="/booking/init/OUIwODAwMDAwMjNMQ0RPSk1HIzg5IzE0ODQ1/" class="performance-detail" title="Special Screening - book Bolshoi - Spartacus (Live) on 20/10/2013 16:00" data-popup="popup" data-duration="180" data-start="16:00" data-end="19:00" data-status="normal" data-type="FUTURE" data-auditorium-info="Screen 2" data-is-online="1">16:00</a>
|
54
|
-
</li>
|
55
|
-
</ul>
|
56
|
-
</div>
|
57
|
-
|
58
|
-
<div class="content-container times stopper performances-FUTURE _23988"></div>
|
59
|
-
</div>
|
60
|
-
</div>
|
61
|
-
</div>
|
62
|
-
|
63
|
-
<!-- <div class="content-container times stopper performances-FUTURE _23988"></div>
|
64
|
-
-->
|
65
|
-
<div class="content-container white performances-FUTURE _23988"></div>
|
66
|
-
</div>
|
67
|
-
</div>
|
@@ -1,67 +0,0 @@
|
|
1
|
-
<div id="23922" class="film-detail WEEK">
|
2
|
-
|
3
|
-
<div class="content-container film _WEEK" id="film-23922">
|
4
|
-
<div class="grad-hor">
|
5
|
-
<a href="/films/cinemagic_2013_echo_planet/14829/">
|
6
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_b540b9f8ce83c37740a08d3b15f7e088.jpg"></a>
|
7
|
-
<div class="presentation-info">
|
8
|
-
<h4>
|
9
|
-
<a href="/films/cinemagic_2013_echo_planet/14829/">Cinemagic 2013 - Echo Planet</a>
|
10
|
-
</h4>
|
11
|
-
<div class="cert-icon-uk-TBC-small"></div>
|
12
|
-
<span class="description"></span>
|
13
|
-
</div>
|
14
|
-
<p> <strong>Two young super-powered siblings living in the tropical forests of Thailand must use their special skills to save the planet from the effects of climate change, in this exciting animated adventure.</strong>
|
15
|
-
</p>
|
16
|
-
|
17
|
-
<div class="presentation-info">
|
18
|
-
<div data-rating-master-id="14829" class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
19
|
-
<div class="rating-icon-buzz-small-active s0" data-rating="0">
|
20
|
-
<div class="rate-over s1"></div>
|
21
|
-
<div class="rate-over s2"></div>
|
22
|
-
<div class="rate-over s3"></div>
|
23
|
-
<div class="rate-over s4"></div>
|
24
|
-
<div class="rate-over s5"></div>
|
25
|
-
</div> <i class="rating-icon-buzz-small-icon"></i>
|
26
|
-
</div>
|
27
|
-
<span class="description"> <strong>Film length: 81 mins</strong>
|
28
|
-
</span>
|
29
|
-
</div>
|
30
|
-
<p class="description"></p>
|
31
|
-
</div>
|
32
|
-
<div class="info-corner">
|
33
|
-
<div class="img-bundle">
|
34
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="23922"></div>
|
35
|
-
</div>
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
<div id="performances-WEEK-23922" class="content-container times-all _WEEK">
|
39
|
-
<div class="accordion-group times-all performances-WEEK _23922" id="tech-23922-0">
|
40
|
-
<div class="content-container tech accordion-heading _WEEK">
|
41
|
-
<a data-toggle="collapse" data-parent="#tech-23922-0-WEEK" class="accordion-toggle" href="#collapse-23922-0-WEEK">in 2D</a>
|
42
|
-
<a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy." data-original-title=""></a>
|
43
|
-
</div>
|
44
|
-
<div id="collapse-23922-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
45
|
-
<div class="accordion-inner">
|
46
|
-
|
47
|
-
<div class="content-container times containerWEEK">
|
48
|
-
<div class="presentation-info week">
|
49
|
-
<strong>Sunday</strong>
|
50
|
-
<br>06 Oct</div>
|
51
|
-
<ul class="unstyled inline">
|
52
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-darkgreen WEEK_TBC WEEK_AFTERNOON WEEK_2D WEEK_GENRE_3 WEEK_GENRE_10 show">
|
53
|
-
<a href="/booking/init/MDU4MDEwMDAwMjNDSUlJWkdEIzE3MCMxNDgyOQ==/" class="performance-detail" title="Special Screening - book Cinemagic 2013 - Echo Planet on 06/10/2013 14:00" data-popup="popup" data-duration="81" data-start="14:00" data-end="15:21" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">14:00</a>
|
54
|
-
</li>
|
55
|
-
</ul>
|
56
|
-
</div>
|
57
|
-
|
58
|
-
<div class="content-container times stopper performances-WEEK _23922"></div>
|
59
|
-
</div>
|
60
|
-
</div>
|
61
|
-
</div>
|
62
|
-
|
63
|
-
<!-- <div class="content-container times stopper performances-WEEK _23922"></div>
|
64
|
-
-->
|
65
|
-
<div class="content-container white performances-WEEK _23922"></div>
|
66
|
-
</div>
|
67
|
-
</div>
|
@@ -1,67 +0,0 @@
|
|
1
|
-
<div id="23353" class="film-detail FUTURE">
|
2
|
-
|
3
|
-
<div class="content-container film _FUTURE" id="film-23353">
|
4
|
-
<div class="grad-hor">
|
5
|
-
<a href="/films/globe_on_screen_twelfth_night/14619/">
|
6
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_missing.jpg"></a>
|
7
|
-
<div class="presentation-info">
|
8
|
-
<h4>
|
9
|
-
<a href="/films/globe_on_screen_twelfth_night/14619/">Globe On Screen: Twelfth Night</a>
|
10
|
-
</h4>
|
11
|
-
<div class="cert-icon-uk-U-small"></div>
|
12
|
-
<span class="description"></span>
|
13
|
-
</div>
|
14
|
-
<p> <strong>Globe on Screen will offer those who missed out on the Globe's sensational Twelfth Night a second chance to see the production the critics described as 'sensational...pure comic delight'.</strong>
|
15
|
-
</p>
|
16
|
-
|
17
|
-
<div class="presentation-info">
|
18
|
-
<div data-rating-master-id="14619" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
19
|
-
<div class="rating-icon-star-small-active s10" data-rating="10">
|
20
|
-
<div class="rate-over s1"></div>
|
21
|
-
<div class="rate-over s2"></div>
|
22
|
-
<div class="rate-over s3"></div>
|
23
|
-
<div class="rate-over s4"></div>
|
24
|
-
<div class="rate-over s5"></div>
|
25
|
-
</div>
|
26
|
-
</div>
|
27
|
-
<span class="description"> <strong>Film length: 0 mins</strong>
|
28
|
-
</span>
|
29
|
-
</div>
|
30
|
-
<p class="description">Contains mild sexual innuendo</p>
|
31
|
-
</div>
|
32
|
-
<div class="info-corner">
|
33
|
-
<div class="img-bundle">
|
34
|
-
<div class="film-icon-FUTURE feature-icon-light-2d-medium FUTURE_2D" data-schedule="2D" data-film="23353"></div>
|
35
|
-
</div>
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
<div id="performances-FUTURE-23353" class="content-container times-all _FUTURE">
|
39
|
-
<div class="accordion-group times-all performances-FUTURE _23353" id="tech-23353-0">
|
40
|
-
<div class="content-container tech accordion-heading _FUTURE">
|
41
|
-
<a data-toggle="collapse" data-parent="#tech-23353-0-FUTURE" class="accordion-toggle" href="#collapse-23353-0-FUTURE">in 2D</a>
|
42
|
-
<a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy." data-original-title=""></a>
|
43
|
-
</div>
|
44
|
-
<div id="collapse-23353-0-FUTURE" class="accordion-body in collapse" style="height: auto;">
|
45
|
-
<div class="accordion-inner">
|
46
|
-
|
47
|
-
<div class="content-container times containerFUTURE">
|
48
|
-
<div class="presentation-info future">
|
49
|
-
<strong>Thursday</strong>
|
50
|
-
<br>10 Oct</div>
|
51
|
-
<ul class="unstyled inline">
|
52
|
-
<li class="FUTURE performance-blue FUTURE_ISPEAK FUTURE_U FUTURE_EVENING FUTURE_ODEONPLUSCULTURE FUTURE_2D show">
|
53
|
-
<a href="/booking/init/ODExODAwMDAwMjNMQ0RPSk1HIzg5IzE0NjE5/" class="performance-detail" title="Peak - book Globe On Screen: Twelfth Night on 10/10/2013 19:30" data-popup="popup" data-duration="0" data-start="19:30" data-end="19:30" data-status="normal" data-type="FUTURE" data-auditorium-info="Screen 2" data-is-online="1">19:30</a>
|
54
|
-
</li>
|
55
|
-
</ul>
|
56
|
-
</div>
|
57
|
-
|
58
|
-
<div class="content-container times stopper performances-FUTURE _23353"></div>
|
59
|
-
</div>
|
60
|
-
</div>
|
61
|
-
</div>
|
62
|
-
|
63
|
-
<!-- <div class="content-container times stopper performances-FUTURE _23353"></div>
|
64
|
-
-->
|
65
|
-
<div class="content-container white performances-FUTURE _23353"></div>
|
66
|
-
</div>
|
67
|
-
</div>
|