odeon_uk 2.0.4 → 3.0.0

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.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -1
  3. data/CHANGELOG.md +6 -0
  4. data/Rakefile +29 -0
  5. data/lib/odeon_uk/api/cinema.rb +62 -0
  6. data/lib/odeon_uk/api/response.rb +55 -0
  7. data/lib/odeon_uk/api/screenings.rb +89 -0
  8. data/lib/odeon_uk/cinema.rb +53 -114
  9. data/lib/odeon_uk/configuration.rb +21 -0
  10. data/lib/odeon_uk/html/cinema.rb +101 -0
  11. data/lib/odeon_uk/html/parser/film_with_screenings.rb +160 -0
  12. data/lib/odeon_uk/html/screenings.rb +38 -0
  13. data/lib/odeon_uk/{internal → html}/website.rb +1 -1
  14. data/lib/odeon_uk/internal/title_sanitizer.rb +1 -0
  15. data/lib/odeon_uk/screening.rb +7 -15
  16. data/lib/odeon_uk/version.rb +2 -2
  17. data/lib/odeon_uk.rb +11 -4
  18. data/odeon_uk.gemspec +2 -0
  19. data/rake/fixture_creator.rb +98 -0
  20. data/test/fixtures/api/all_cinemas.plist +0 -0
  21. data/test/fixtures/api/app_init.plist +0 -0
  22. data/test/fixtures/api/film_times/71-100747.plist +0 -0
  23. data/test/fixtures/api/film_times/71-100750.plist +0 -0
  24. data/test/fixtures/api/film_times/71-100790.plist +0 -0
  25. data/test/fixtures/api/film_times/71-14646.plist +0 -0
  26. data/test/fixtures/api/film_times/71-14725.plist +0 -0
  27. data/test/fixtures/api/film_times/71-15086.plist +0 -0
  28. data/test/fixtures/api/film_times/71-15096.plist +0 -0
  29. data/test/fixtures/api/film_times/71-15122.plist +0 -0
  30. data/test/fixtures/api/film_times/71-15130.plist +0 -0
  31. data/test/fixtures/api/film_times/71-15141.plist +0 -0
  32. data/test/fixtures/api/film_times/71-15142.plist +0 -0
  33. data/test/fixtures/api/film_times/71-15143.plist +0 -0
  34. data/test/fixtures/api/film_times/71-15144.plist +0 -0
  35. data/test/fixtures/api/film_times/71-15145.plist +0 -0
  36. data/test/fixtures/api/film_times/71-15170.plist +0 -0
  37. data/test/fixtures/api/film_times/71-15172.plist +0 -0
  38. data/test/fixtures/api/film_times/71-15177.plist +0 -0
  39. data/test/fixtures/api/film_times/71-15179.plist +0 -0
  40. data/test/fixtures/api/film_times/71-15182.plist +0 -0
  41. data/test/fixtures/api/film_times/71-15286.plist +0 -0
  42. data/test/fixtures/api/film_times/71-15360.plist +0 -0
  43. data/test/fixtures/api/film_times/71-15586.plist +0 -0
  44. data/test/fixtures/api/film_times/71-15700.plist +0 -0
  45. data/test/fixtures/api/film_times/71-15718.plist +0 -0
  46. data/test/fixtures/api/film_times/71-15768.plist +0 -0
  47. data/test/fixtures/api/film_times/71-15788.plist +0 -0
  48. data/test/fixtures/api/film_times/71-15793.plist +0 -0
  49. data/test/fixtures/api/film_times/71-15794.plist +0 -0
  50. data/test/fixtures/api/film_times/71-15795.plist +0 -0
  51. data/test/fixtures/api/film_times/71-15796.plist +0 -0
  52. data/test/fixtures/api/film_times/71-15799.plist +0 -0
  53. data/test/fixtures/api/film_times/71-15802.plist +0 -0
  54. data/test/fixtures/api/film_times/71-15814.plist +0 -0
  55. data/test/fixtures/api/film_times/71-15817.plist +0 -0
  56. data/test/fixtures/api/film_times/71-15840.plist +0 -0
  57. data/test/fixtures/{cinema/leicester_square.html → html/cinema/105.html} +384 -313
  58. data/test/fixtures/{cinema/bfi_imax.html → html/cinema/211.html} +677 -355
  59. data/test/fixtures/{cinema/brighton.html → html/cinema/71.html} +899 -431
  60. data/test/fixtures/html/showtimes/11-imax.html +170 -0
  61. data/test/fixtures/html/showtimes/171-d-box.html +203 -0
  62. data/test/fixtures/html/showtimes/71-0.html +59 -0
  63. data/test/fixtures/html/showtimes/71.html +2395 -0
  64. data/test/fixtures/{sitemap.html → html/sitemap.html} +264 -352
  65. data/test/lib/odeon_uk/api/cinema_test.rb +149 -0
  66. data/test/lib/odeon_uk/api/response_test.rb +44 -0
  67. data/test/lib/odeon_uk/api/screenings_test.rb +43 -0
  68. data/test/lib/odeon_uk/cinema_test.rb +373 -148
  69. data/test/lib/odeon_uk/configuration_test.rb +29 -0
  70. data/test/lib/odeon_uk/html/cinema_test.rb +149 -0
  71. data/test/lib/odeon_uk/{internal/film_with_screenings_parser_test.rb → html/parser/film_with_screenings_test.rb} +12 -42
  72. data/test/lib/odeon_uk/html/screenings_test.rb +43 -0
  73. data/test/lib/odeon_uk/html/website_test.rb +37 -0
  74. data/test/lib/odeon_uk/screening_test.rb +17 -83
  75. data/test/support/api_fixtures_helper.rb +34 -0
  76. data/test/support/website_fixtures_helper.rb +25 -0
  77. data/test/test_helper.rb +7 -2
  78. metadata +149 -34
  79. data/lib/odeon_uk/film.rb +0 -65
  80. data/lib/odeon_uk/internal/film_with_screenings_parser.rb +0 -159
  81. data/lib/odeon_uk/internal/showtimes_page.rb +0 -36
  82. data/test/fixture_updater.rb +0 -72
  83. data/test/fixtures/showtimes/brighton/film_first.html +0 -92
  84. data/test/fixtures/showtimes/brighton/film_last.html +0 -100
  85. data/test/fixtures/showtimes/brighton.html +0 -2071
  86. data/test/fixtures/showtimes/liverpool_one/film_first_dbox.html +0 -188
  87. data/test/fixtures/showtimes/manchester/film_first_imax.html +0 -182
  88. data/test/lib/odeon_uk/film_test.rb +0 -142
  89. data/test/lib/odeon_uk/internal/showtimes_page_test.rb +0 -51
  90. data/test/lib/odeon_uk/internal/website_test.rb +0 -59
@@ -1,188 +0,0 @@
1
- <div id="25302" class="film-detail WEEK">
2
- <div class="content-container film _WEEK" id="film-25302">
3
- <div class="grad-hor">
4
- <a href="/films/guardians_of_the_galaxy/14690/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_8a1c5df689e494e8d6ce3f1794906bde.jpg"></a>
5
- <div class="presentation-info">
6
- <h4><a href="/films/guardians_of_the_galaxy/14690/">Guardians Of The Galaxy</a></h4>
7
- <a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
8
- </span>
9
- </div>
10
- <p><strong>Action-packed sci-fi about a space-based superhero ensemble.</strong></p>
11
- <div class="presentation-info">
12
- <div data-rating-master-id="14690" data-return-to="/showtimes/week/171/" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
13
- <div class="rating-icon-star-small-active s9" data-rating="9">
14
- <div class="rate-over s1"></div>
15
- <div class="rate-over s2"></div>
16
- <div class="rate-over s3"></div>
17
- <div class="rate-over s4"></div>
18
- <div class="rate-over s5"></div>
19
- </div>
20
- </div>
21
- <span class="description"><strong>Film length: 128 mins</strong></span>
22
- </div>
23
- <p class="description">Moderate fantasy action violence, threat, moderate bad language.</p>
24
- </div>
25
- <div class="info-corner">
26
- <div class="img-bundle">
27
- <div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25302"></div>
28
- <div class="film-icon-WEEK feature-icon-light-gallery-medium WEEK_GALLERY" data-schedule="GALLERY" data-film="25302"></div>
29
- <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="25302"></div> </div>
30
- <div class="btn-group">
31
- <a href="http://odeon.trailer.cineweb.de/guardian.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to="/showtimes/week/171/" data-film-id="14690" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
32
- <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
33
- <span class="caret"></span>
34
- </button>
35
- <ul class="dropdown-menu">
36
- <li><a href="#">Add to Playlist</a></li>
37
- </ul>
38
- </div> </div>
39
- </div>
40
- <div id="performances-WEEK-25302" class="content-container times-all _WEEK">
41
- <div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-0">
42
- <div class="content-container tech accordion-heading _WEEK">
43
- <a data-toggle="collapse" data-parent="#tech-25302-0-WEEK" class="accordion-toggle" href="#collapse-25302-0-WEEK">in IMAX 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. Combined with 3D, to create IMAX 3D, the ultimate film experience. IMAX 3D glasses required."></a>
44
- </div>
45
- <div id="collapse-25302-0-WEEK" class="accordion-body in collapse" style="height: auto;">
46
- <div class="accordion-inner">
47
- <div class="content-container times containerWEEK">
48
- <div class="presentation-info week">
49
- <strong>Friday</strong><br>19 Sep</div>
50
- <ul class="unstyled inline">
51
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_GALLERY WEEK_IMAX3D WEEK_GENRE_14 show">
52
- <a href="https://www.odeon.co.uk/booking/init/NThDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 17 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK ">G</i>
53
- </li>
54
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/REVCQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">20:15</a></li>
55
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RUVCQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 23:10" data-popup="popup" data-duration="128" data-start="23:10" data-end="01:18" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">23:10</a></li> </ul>
56
- </div>
57
- <div class="content-container times containerWEEK">
58
- <div class="presentation-info week">
59
- <strong>Saturday</strong><br>20 Sep</div>
60
- <ul class="unstyled inline">
61
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MTBDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">20:15</a></li>
62
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_GALLERY WEEK_IMAX3D WEEK_GENRE_14 show">
63
- <a href="https://www.odeon.co.uk/booking/init/NDlDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 17 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK ">G</i>
64
- </li>
65
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NzBDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 23:10" data-popup="popup" data-duration="128" data-start="23:10" data-end="01:18" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">23:10</a></li> </ul>
66
- </div>
67
- <div class="content-container times containerWEEK">
68
- <div class="presentation-info week">
69
- <strong>Sunday</strong><br>21 Sep</div>
70
- <ul class="unstyled inline">
71
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_GALLERY WEEK_IMAX3D WEEK_GENRE_14 show">
72
- <a href="https://www.odeon.co.uk/booking/init/NTlDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 17 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK ">G</i>
73
- </li>
74
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MjBDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
75
- </div>
76
- <div class="content-container times containerWEEK">
77
- <div class="presentation-info week">
78
- <strong>Monday</strong><br>22 Sep</div>
79
- <ul class="unstyled inline">
80
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_GALLERY WEEK_IMAX3D WEEK_GENRE_14 show">
81
- <a href="https://www.odeon.co.uk/booking/init/NjlDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 17 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK ">G</i>
82
- </li>
83
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MzBDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
84
- </div>
85
- <div class="content-container times containerWEEK">
86
- <div class="presentation-info week">
87
- <strong>Tuesday</strong><br>23 Sep</div>
88
- <ul class="unstyled inline">
89
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_GALLERY WEEK_IMAX3D WEEK_GENRE_14 show">
90
- <a href="https://www.odeon.co.uk/booking/init/NzlDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 23/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 17 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK ">G</i>
91
- </li>
92
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NDBDQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 12 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
93
- </div>
94
- <div class="content-container times stopper performances-WEEK _25302"></div>
95
- </div>
96
- </div>
97
- </div>
98
- <div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-1">
99
- <div class="content-container tech accordion-heading _WEEK">
100
- <a data-toggle="collapse" data-parent="#tech-25302-1-WEEK" class="accordion-toggle" href="#collapse-25302-1-WEEK">in 2D</a><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>
101
- </div>
102
- <div id="collapse-25302-1-WEEK" class="accordion-body in collapse" style="height: auto;">
103
- <div class="accordion-inner">
104
- <div class="content-container times containerWEEK">
105
- <div class="presentation-info week">
106
- <strong>Wednesday</strong><br>17 Sep</div>
107
- <ul class="unstyled inline">
108
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RDI4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 17/09/2014 14:50" data-popup="popup" data-duration="128" data-start="14:50" data-end="16:58" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:50</a></li>
109
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MzM4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 17/09/2014 17:40" data-popup="popup" data-duration="128" data-start="17:40" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">17:40</a></li>
110
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OTM4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 17/09/2014 20:30" data-popup="popup" data-duration="128" data-start="20:30" data-end="22:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
111
- </div>
112
- <div class="content-container times containerWEEK">
113
- <div class="presentation-info week">
114
- <strong>Thursday</strong><br>18 Sep</div>
115
- <ul class="unstyled inline">
116
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/ODI4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 18/09/2014 12:00" data-popup="popup" data-duration="128" data-start="12:00" data-end="14:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:00</a></li>
117
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RTI4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 18/09/2014 14:50" data-popup="popup" data-duration="128" data-start="14:50" data-end="16:58" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:50</a></li>
118
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NDM4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 18/09/2014 17:40" data-popup="popup" data-duration="128" data-start="17:40" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">17:40</a></li>
119
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QTM4QjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 18/09/2014 20:30" data-popup="popup" data-duration="128" data-start="20:30" data-end="22:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
120
- </div>
121
- <div class="content-container times containerWEEK">
122
- <div class="presentation-info week">
123
- <strong>Friday</strong><br>19 Sep</div>
124
- <ul class="unstyled inline">
125
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MjdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 12:30" data-popup="popup" data-duration="128" data-start="12:30" data-end="14:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:30</a></li>
126
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MzdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 15:20" data-popup="popup" data-duration="128" data-start="15:20" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:20</a></li>
127
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_DBOX WEEK_AUDIODESCRIBED WEEK_DBOX WEEK_2D WEEK_GENRE_14 show">
128
- <a href="https://www.odeon.co.uk/booking/init/N0JBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 17:30" data-popup="popup" data-duration="128" data-start="17:30" data-end="19:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
129
- </li> </ul>
130
- </div>
131
- <div class="content-container times containerWEEK">
132
- <div class="presentation-info week">
133
- <strong>Saturday</strong><br>20 Sep</div>
134
- <ul class="unstyled inline">
135
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NjdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 12:30" data-popup="popup" data-duration="128" data-start="12:30" data-end="14:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:30</a></li>
136
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QzdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 15:20" data-popup="popup" data-duration="128" data-start="15:20" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:20</a></li>
137
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_DBOX WEEK_AUDIODESCRIBED WEEK_DBOX WEEK_2D WEEK_GENRE_14 show">
138
- <a href="https://www.odeon.co.uk/booking/init/NkNBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 17:30" data-popup="popup" data-duration="128" data-start="17:30" data-end="19:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
139
- </li> </ul>
140
- </div>
141
- <div class="content-container times containerWEEK">
142
- <div class="presentation-info week">
143
- <strong>Sunday</strong><br>21 Sep</div>
144
- <ul class="unstyled inline">
145
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NzdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 12:30" data-popup="popup" data-duration="128" data-start="12:30" data-end="14:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:30</a></li>
146
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RDdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 15:20" data-popup="popup" data-duration="128" data-start="15:20" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:20</a></li>
147
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_DBOX WEEK_AUDIODESCRIBED WEEK_DBOX WEEK_2D WEEK_GENRE_14 show">
148
- <a href="https://www.odeon.co.uk/booking/init/N0NBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 17:30" data-popup="popup" data-duration="128" data-start="17:30" data-end="19:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
149
- </li> </ul>
150
- </div>
151
- <div class="content-container times containerWEEK">
152
- <div class="presentation-info week">
153
- <strong>Monday</strong><br>22 Sep</div>
154
- <ul class="unstyled inline">
155
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/ODdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 22/09/2014 12:30" data-popup="popup" data-duration="128" data-start="12:30" data-end="14:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:30</a></li>
156
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RTdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 22/09/2014 15:20" data-popup="popup" data-duration="128" data-start="15:20" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:20</a></li>
157
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_DBOX WEEK_AUDIODESCRIBED WEEK_DBOX WEEK_2D WEEK_GENRE_14 show">
158
- <a href="https://www.odeon.co.uk/booking/init/OENBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 17:30" data-popup="popup" data-duration="128" data-start="17:30" data-end="19:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
159
- </li> </ul>
160
- </div>
161
- <div class="content-container times containerWEEK">
162
- <div class="presentation-info week">
163
- <strong>Tuesday</strong><br>23 Sep</div>
164
- <ul class="unstyled inline">
165
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OTdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 12:30" data-popup="popup" data-duration="128" data-start="12:30" data-end="14:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:30</a></li>
166
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RjdBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 15:20" data-popup="popup" data-duration="128" data-start="15:20" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:20</a></li>
167
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_2D WEEK_DBOX WEEK_AUDIODESCRIBED WEEK_DBOX WEEK_2D WEEK_GENRE_14 show">
168
- <a href="https://www.odeon.co.uk/booking/init/OUNBQjIwMDAwMjNTRVVUVFdFIzE3MSMxNDY5MA==/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 17:30" data-popup="popup" data-duration="128" data-start="17:30" data-end="19:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
169
- </li> </ul>
170
- </div>
171
- <div class="content-container times stopper performances-WEEK _25302"></div>
172
- </div>
173
- </div>
174
- </div>
175
- <!-- <div class="content-container times stopper performances-WEEK _25302"></div>-->
176
- <div class="content-container gallery-key performances-WEEK _25302">
177
- <ul class="unstyled inline">
178
- <li><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/gallery-logo-key.png"></li>
179
- <li><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/gallery-img-key.png"></li>
180
- <li>
181
- <strong>G indicates Gallery showing (over 18s only)</strong> Access to a <strong>VIP bar</strong> area,<br>
182
- <strong>unlimited popcorn, nachos, soft drinks</strong> and the <strong>best seats in the house.</strong>
183
- </li>
184
- </ul>
185
- </div>
186
- <div class="content-container white performances-WEEK _25302"></div>
187
- </div>
188
- </div>
@@ -1,182 +0,0 @@
1
- <div id="25302" class="film-detail WEEK">
2
- <div class="content-container film _WEEK" id="film-25302">
3
- <div class="grad-hor">
4
- <a href="/films/guardians_of_the_galaxy/14690/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_8a1c5df689e494e8d6ce3f1794906bde.jpg"></a>
5
- <div class="presentation-info">
6
- <h4><a href="/films/guardians_of_the_galaxy/14690/">Guardians Of The Galaxy</a></h4>
7
- <a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
8
- </span>
9
- </div>
10
- <p><strong>Action-packed sci-fi about a space-based superhero ensemble.</strong></p>
11
- <div class="presentation-info">
12
- <div data-rating-master-id="14690" data-return-to="/showtimes/week/11/" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
13
- <div class="rating-icon-star-small-active s9" data-rating="9">
14
- <div class="rate-over s1"></div>
15
- <div class="rate-over s2"></div>
16
- <div class="rate-over s3"></div>
17
- <div class="rate-over s4"></div>
18
- <div class="rate-over s5"></div>
19
- </div>
20
- </div>
21
- <span class="description"><strong>Film length: 128 mins</strong></span>
22
- </div>
23
- <p class="description">Moderate fantasy action violence, threat, moderate bad language.</p>
24
- </div>
25
- <div class="info-corner">
26
- <div class="img-bundle">
27
- <div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25302"></div>
28
- <div class="film-icon-WEEK feature-icon-light-3d-medium WEEK_3D" data-schedule="3D" data-film="25302"></div>
29
- <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="25302"></div> </div>
30
- <div class="btn-group">
31
- <a href="http://odeon.trailer.cineweb.de/guardian.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to="/showtimes/week/11/" data-film-id="14690" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
32
- <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
33
- <span class="caret"></span>
34
- </button>
35
- <ul class="dropdown-menu">
36
- <li><a href="#">Add to Playlist</a></li>
37
- </ul>
38
- </div> </div>
39
- </div>
40
- <div id="performances-WEEK-25302" class="content-container times-all _WEEK">
41
- <div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-0">
42
- <div class="content-container tech accordion-heading _WEEK">
43
- <a data-toggle="collapse" data-parent="#tech-25302-0-WEEK" class="accordion-toggle" href="#collapse-25302-0-WEEK">in IMAX 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. Combined with 3D, to create IMAX 3D, the ultimate film experience. IMAX 3D glasses required."></a>
44
- </div>
45
- <div id="collapse-25302-0-WEEK" class="accordion-body in collapse" style="height: auto;">
46
- <div class="accordion-inner">
47
- <div class="content-container times containerWEEK">
48
- <div class="presentation-info week">
49
- <strong>Friday</strong><br>19 Sep</div>
50
- <ul class="unstyled inline">
51
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NDM3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 18:15" data-popup="popup" data-duration="128" data-start="18:15" data-end="20:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:15</a></li> </ul>
52
- </div>
53
- <div class="content-container times containerWEEK">
54
- <div class="presentation-info week">
55
- <strong>Saturday</strong><br>20 Sep</div>
56
- <ul class="unstyled inline">
57
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MjM5NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 18:15" data-popup="popup" data-duration="128" data-start="18:15" data-end="20:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:15</a></li> </ul>
58
- </div>
59
- <div class="content-container times containerWEEK">
60
- <div class="presentation-info week">
61
- <strong>Sunday</strong><br>21 Sep</div>
62
- <ul class="unstyled inline">
63
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MzM5NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 18:15" data-popup="popup" data-duration="128" data-start="18:15" data-end="20:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:15</a></li> </ul>
64
- </div>
65
- <div class="content-container times containerWEEK">
66
- <div class="presentation-info week">
67
- <strong>Monday</strong><br>22 Sep</div>
68
- <ul class="unstyled inline">
69
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NDM5NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 18:15" data-popup="popup" data-duration="128" data-start="18:15" data-end="20:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:15</a></li> </ul>
70
- </div>
71
- <div class="content-container times containerWEEK">
72
- <div class="presentation-info week">
73
- <strong>Tuesday</strong><br>23 Sep</div>
74
- <ul class="unstyled inline">
75
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NTM5NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 18:15" data-popup="popup" data-duration="128" data-start="18:15" data-end="20:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:15</a></li> </ul>
76
- </div>
77
- <div class="content-container times stopper performances-WEEK _25302"></div>
78
- </div>
79
- </div>
80
- </div>
81
- <div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-1">
82
- <div class="content-container tech accordion-heading _WEEK">
83
- <a data-toggle="collapse" data-parent="#tech-25302-1-WEEK" class="accordion-toggle" href="#collapse-25302-1-WEEK">in 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Touch the film and step inside. ODEON uses digital RealD 3D technology to give you the ultimate 3D experience. 3D glasses required."></a>
84
- </div>
85
- <div id="collapse-25302-1-WEEK" class="accordion-body in collapse" style="height: auto;">
86
- <div class="accordion-inner">
87
- <div class="content-container times containerWEEK">
88
- <div class="presentation-info week">
89
- <strong>Thursday</strong><br>18 Sep</div>
90
- <ul class="unstyled inline">
91
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MTM0NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 18/09/2014 20:25" data-popup="popup" data-duration="128" data-start="20:25" data-end="22:33" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:25</a></li> </ul>
92
- </div>
93
- <div class="content-container times containerWEEK">
94
- <div class="presentation-info week">
95
- <strong>Friday</strong><br>19 Sep</div>
96
- <ul class="unstyled inline">
97
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QTE3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 21:00" data-popup="popup" data-duration="128" data-start="21:00" data-end="23:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
98
- </div>
99
- <div class="content-container times containerWEEK">
100
- <div class="presentation-info week">
101
- <strong>Saturday</strong><br>20 Sep</div>
102
- <ul class="unstyled inline">
103
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RDI3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 21:00" data-popup="popup" data-duration="128" data-start="21:00" data-end="23:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
104
- </div>
105
- <div class="content-container times containerWEEK">
106
- <div class="presentation-info week">
107
- <strong>Sunday</strong><br>21 Sep</div>
108
- <ul class="unstyled inline">
109
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RTI3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 21:00" data-popup="popup" data-duration="128" data-start="21:00" data-end="23:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
110
- </div>
111
- <div class="content-container times containerWEEK">
112
- <div class="presentation-info week">
113
- <strong>Monday</strong><br>22 Sep</div>
114
- <ul class="unstyled inline">
115
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RjI3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 21:00" data-popup="popup" data-duration="128" data-start="21:00" data-end="23:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
116
- </div>
117
- <div class="content-container times containerWEEK">
118
- <div class="presentation-info week">
119
- <strong>Tuesday</strong><br>23 Sep</div>
120
- <ul class="unstyled inline">
121
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MDM3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 21:00" data-popup="popup" data-duration="128" data-start="21:00" data-end="23:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
122
- </div>
123
- <div class="content-container times stopper performances-WEEK _25302"></div>
124
- </div>
125
- </div>
126
- </div>
127
- <div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-2">
128
- <div class="content-container tech accordion-heading _WEEK">
129
- <a data-toggle="collapse" data-parent="#tech-25302-2-WEEK" class="accordion-toggle" href="#collapse-25302-2-WEEK">in 2D</a><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>
130
- </div>
131
- <div id="collapse-25302-2-WEEK" class="accordion-body in collapse" style="height: auto;">
132
- <div class="accordion-inner">
133
- <div class="content-container times containerWEEK">
134
- <div class="presentation-info week">
135
- <strong>Thursday</strong><br>18 Sep</div>
136
- <ul class="unstyled inline">
137
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QTc1NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 18/09/2014 14:55" data-popup="popup" data-duration="128" data-start="14:55" data-end="17:03" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">14:55</a></li>
138
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OEY1NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 18/09/2014 17:40" data-popup="popup" data-duration="128" data-start="17:40" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">17:40</a></li> </ul>
139
- </div>
140
- <div class="content-container times containerWEEK">
141
- <div class="presentation-info week">
142
- <strong>Friday</strong><br>19 Sep</div>
143
- <ul class="unstyled inline">
144
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RTg3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 13:00" data-popup="popup" data-duration="128" data-start="13:00" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
145
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/Rjg3NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">15:45</a></li> </ul>
146
- </div>
147
- <div class="content-container times containerWEEK">
148
- <div class="presentation-info week">
149
- <strong>Saturday</strong><br>20 Sep</div>
150
- <ul class="unstyled inline">
151
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NDI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 13:00" data-popup="popup" data-duration="128" data-start="13:00" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
152
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NEI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">15:45</a></li> </ul>
153
- </div>
154
- <div class="content-container times containerWEEK">
155
- <div class="presentation-info week">
156
- <strong>Sunday</strong><br>21 Sep</div>
157
- <ul class="unstyled inline">
158
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NTI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 13:00" data-popup="popup" data-duration="128" data-start="13:00" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
159
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NUI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">15:45</a></li> </ul>
160
- </div>
161
- <div class="content-container times containerWEEK">
162
- <div class="presentation-info week">
163
- <strong>Monday</strong><br>22 Sep</div>
164
- <ul class="unstyled inline">
165
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NjI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 22/09/2014 13:00" data-popup="popup" data-duration="128" data-start="13:00" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
166
- <li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NkI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 22/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">15:45</a></li> </ul>
167
- </div>
168
- <div class="content-container times containerWEEK">
169
- <div class="presentation-info week">
170
- <strong>Tuesday</strong><br>23 Sep</div>
171
- <ul class="unstyled inline">
172
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NzI4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 13:00" data-popup="popup" data-duration="128" data-start="13:00" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
173
- <li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/N0I4NzMwMDAwMjNQS1BPQ0JGIzExIzE0Njkw/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 20 (Wheelchair Accessible)" data-is-online="1">15:45</a></li> </ul>
174
- </div>
175
- <div class="content-container times stopper performances-WEEK _25302"></div>
176
- </div>
177
- </div>
178
- </div>
179
- <!-- <div class="content-container times stopper performances-WEEK _25302"></div>-->
180
- <div class="content-container white performances-WEEK _25302"></div>
181
- </div>
182
- </div>
@@ -1,142 +0,0 @@
1
- require_relative '../../test_helper'
2
-
3
- describe OdeonUk::Film do
4
-
5
- before { WebMock.disable_net_connect! }
6
-
7
- describe '.new(name)' do
8
- it 'stores name' do
9
- film = OdeonUk::Film.new 'Iron Man 3'
10
- film.name.must_equal 'Iron Man 3'
11
- end
12
- end
13
-
14
- describe '.at(cinema_id)' do # integration
15
- let(:website) { Minitest::Mock.new }
16
-
17
- subject { OdeonUk::Film.at(71) }
18
-
19
- before do
20
- website.expect(:showtimes, showtimes_html('brighton'), [71])
21
- end
22
-
23
- it 'returns an array of films' do
24
- OdeonUk::Internal::Website.stub :new, website do
25
- subject.must_be_instance_of(Array)
26
- subject.each do |film|
27
- film.must_be_instance_of(OdeonUk::Film)
28
- end
29
- end
30
- end
31
-
32
- it 'returns a decent number of films' do
33
- OdeonUk::Internal::Website.stub :new, website do
34
- subject.count.must_be :>, 15
35
- end
36
- end
37
-
38
- it 'returns uniquely named films' do
39
- OdeonUk::Internal::Website.stub :new, website do
40
- subject.each_with_index do |item, index|
41
- subject.each_with_index do |jtem, i|
42
- next if index == i
43
- item.name.wont_equal jtem.name
44
- item.wont_equal jtem
45
- end
46
- end
47
- end
48
- end
49
- end
50
-
51
- describe 'comparable' do
52
- it 'includes comparable methods' do
53
- film = OdeonUk::Film.new 'AAAA'
54
- film.methods.must_include :<
55
- film.methods.must_include :>
56
- film.methods.must_include :==
57
- film.methods.must_include :<=>
58
- film.methods.must_include :<=
59
- film.methods.must_include :>=
60
- end
61
-
62
- describe 'uniqueness' do
63
- it 'defines #hash' do
64
- film = OdeonUk::Film.new 'AAAA'
65
- film.methods.must_include :hash
66
- end
67
-
68
- describe '#hash' do
69
- it 'returns a hash of the slug' do
70
- film = OdeonUk::Film.new 'AAAA'
71
- film.hash == film.slug.hash
72
- end
73
- end
74
-
75
- it 'defines #eql?(other)' do
76
- film = OdeonUk::Film.new 'AAAA'
77
- film.methods.must_include :eql?
78
- end
79
-
80
- describe 'two identically named films' do
81
- let(:film) { OdeonUk::Film.new 'AAAA' }
82
- let(:otherfilm) { OdeonUk::Film.new 'AAAA' }
83
-
84
- it 'retuns only one' do
85
- result = [film, otherfilm].uniq
86
- result.count.must_equal 1
87
- result.must_equal [OdeonUk::Film.new('AAAA')]
88
- end
89
- end
90
- end
91
-
92
- describe '<=> (other)' do
93
- subject { film <=> otherfilm }
94
-
95
- describe 'film less than other' do
96
- let(:film) { OdeonUk::Film.new 'AAAA' }
97
- let(:otherfilm) { OdeonUk::Film.new 'BBBB' }
98
-
99
- it 'retuns -1' do
100
- subject.must_equal(-1)
101
- end
102
- end
103
-
104
- describe 'film greater than other' do
105
- let(:film) { OdeonUk::Film.new 'CCCC' }
106
- let(:otherfilm) { OdeonUk::Film.new 'BBBB' }
107
-
108
- it 'retuns 1' do
109
- subject.must_equal 1
110
- end
111
- end
112
-
113
- describe 'film same as other (exact name)' do
114
- let(:film) { OdeonUk::Film.new 'AAAA' }
115
- let(:otherfilm) { OdeonUk::Film.new 'AAAA' }
116
-
117
- it 'retuns 0' do
118
- subject.must_equal 0
119
- end
120
- end
121
-
122
- describe 'film same as other (inexact name)' do
123
- let(:film) { OdeonUk::Film.new 'blue jasmine' }
124
- let(:otherfilm) { OdeonUk::Film.new 'Blue Jasmine' }
125
-
126
- it 'retuns 0' do
127
- subject.must_equal 0
128
- end
129
- end
130
- end
131
- end
132
-
133
- private
134
-
135
- def read_file(filepath)
136
- File.read(File.expand_path(filepath, __FILE__))
137
- end
138
-
139
- def showtimes_html(filename)
140
- read_file("../../../fixtures/showtimes/#{filename}.html")
141
- end
142
- end
@@ -1,51 +0,0 @@
1
- require_relative '../../../test_helper'
2
-
3
- describe OdeonUk::Internal::ShowtimesPage do
4
- let(:described_class) { OdeonUk::Internal::ShowtimesPage }
5
-
6
- let(:website) { Minitest::Mock.new }
7
-
8
- before { WebMock.disable_net_connect! }
9
-
10
- describe '#to_a' do
11
- subject { described_class.new(71).to_a }
12
-
13
- before do
14
- website.expect(:showtimes, brighton_showtimes_html, [71])
15
- end
16
-
17
- it 'returns an non-zero array of film screenings html fragments' do
18
- OdeonUk::Internal::Website.stub :new, website do
19
- subject.must_be_instance_of(Array)
20
- subject.size.must_be :>, 0
21
-
22
- subject.each do |film_html|
23
- film_html.must_be_instance_of(String)
24
- film_html.size.must_be :>, 0
25
- end
26
- end
27
- end
28
-
29
- it 'returns an array with correct content' do
30
- OdeonUk::Internal::Website.stub :new, website do
31
- subject.each do |html|
32
- html.must_include('class="film-detail') # screenings group
33
- html.must_include('class="presentation-info') # title
34
- html.must_include('class="WEEK') # a performance
35
- html.must_include('data-start="') # start time
36
- html.must_include('data-end="') # end time
37
- end
38
- end
39
- end
40
- end
41
-
42
- private
43
-
44
- def read_file(filepath)
45
- File.read(File.expand_path(filepath, __FILE__))
46
- end
47
-
48
- def brighton_showtimes_html
49
- read_file('../../../../fixtures/showtimes/brighton.html')
50
- end
51
- end