ruby-readability 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --colour
2
+ --format s -c
3
+ --debugger
data/Gemfile CHANGED
@@ -1,4 +1,10 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in ruby-readability.gemspec
4
+ gem 'mini_magick', '3.3'
5
+
6
+ group :test do
7
+ gem "fakeweb", "~> 1.3.0"
8
+ end
9
+
4
10
  gemspec
@@ -0,0 +1,73 @@
1
+ # Ruby Readability
2
+
3
+ Ruby Readability is a tool for extracting the primary readable content of a webpage. It is a Ruby port of arc90's readability project.
4
+
5
+ ## Install
6
+
7
+ Command line:
8
+
9
+ (sudo) gem install ruby-readability
10
+
11
+ Bundler:
12
+
13
+ gem "ruby-readability", :require => 'readability'
14
+
15
+ ## Example
16
+
17
+ require 'rubygems'
18
+ require 'readability'
19
+ require 'open-uri'
20
+
21
+ source = open('http://lab.arc90.com/experiments/readability/').read
22
+ puts Readability::Document.new(source).content
23
+
24
+ ## Options
25
+
26
+ You may provide options to Readability::Document.new, including:
27
+
28
+ :tags - the base whitelist of tags to sanitize, defaults to %w[div p]
29
+ :remove_empty_nodes - remove <p> tags that have no text content; also removes p tags that contain only images
30
+ :attributes - whitelist of allowed attributes
31
+ :debug - provide debugging output, defaults false
32
+ :encoding - if the page is of a known encoding, you can specify it; if left unspecified,
33
+ the encoding will be guessed (only in Ruby 1.9.x)
34
+ :html_headers - in Ruby 1.9.x these will be passed to the guess_html_encoding gem
35
+ to aid with guessing the HTML encoding
36
+ :ignore_image_format - for use with .images. For example: :ignore_image_format => ["gif", "png"]
37
+ :min_image_height - set a minimum image height for .images
38
+ :min_image_width - set a minimum image width for .images
39
+
40
+ ## Command Line Tool
41
+
42
+ Readability comes with a command-line tool for experimentation in bin/readability.
43
+
44
+ Usage: readability [options] URL
45
+ -d, --debug Show debug output
46
+ -i, --images Keep images and links
47
+ -h, --help Show this message
48
+
49
+ ## Images
50
+
51
+ You can get a list of images in the content area with `.images`. This feature requires that the `mini_magick` gem be installed.
52
+
53
+ p Readability::Document.new(source).images
54
+
55
+ ## Potential Issues
56
+
57
+ If you're on a Mac and are getting segmentation faults, see the discussion at https://github.com/tenderlove/nokogiri/issues/404 and consider updating your version of libxml2. Version 2.7.8 of libxml2 with the following worked for me:
58
+
59
+ gem install nokogiri -- --with-xml2-include=/usr/local/Cellar/libxml2/2.7.8/include/libxml2 --with-xml2-lib=/usr/local/Cellar/libxml2/2.7.8/lib --with-xslt-dir=/usr/local/Cellar/libxslt/1.1.26
60
+
61
+ Or if you're using bundler and Rails 3, you can run this command to make bundler always globally build `nokogiri` this way
62
+
63
+ bundle config build.nokogiri -- --with-xml2-include=/usr/local/Cellar/libxml2/2.7.8/include/libxml2 --with-xml2-lib=/usr/local/Cellar/libxml2/2.7.8/lib --with-xslt-dir=/usr/local/Cellar/libxslt/1.1.26
64
+
65
+ # Change Log
66
+
67
+ * Version 0.5.1, released 3/13/2012 - The `ignore_image_format` option now defaults to an empty array, no longer excluding gif files by default. MiniMagic fetches are no longer attempted on local images.
68
+
69
+ # License
70
+
71
+ This code is under the Apache License 2.0. http://www.apache.org/licenses/LICENSE-2.0
72
+
73
+ Ruby port by starrhorne, libc, and iterationlabs. Special thanks to fizx and marcosinger.
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- $KCODE='u'
3
2
  require 'rubygems'
4
3
  require 'open-uri'
5
4
  require 'optparse'
@@ -5,15 +5,18 @@ require 'guess_html_encoding'
5
5
  module Readability
6
6
  class Document
7
7
  DEFAULT_OPTIONS = {
8
- :retry_length => 250,
9
- :min_text_length => 25,
8
+ :retry_length => 250,
9
+ :min_text_length => 25,
10
10
  :remove_unlikely_candidates => true,
11
- :weight_classes => true,
12
- :clean_conditionally => true,
13
- :remove_empty_nodes => true
11
+ :weight_classes => true,
12
+ :clean_conditionally => true,
13
+ :remove_empty_nodes => true,
14
+ :min_image_width => 130,
15
+ :min_image_height => 80,
16
+ :ignore_image_format => []
14
17
  }.freeze
15
18
 
16
- attr_accessor :options, :html
19
+ attr_accessor :options, :html, :best_candidate, :candidates, :best_candidate_has_image
17
20
 
18
21
  def initialize(input, options = {})
19
22
  @options = DEFAULT_OPTIONS.merge(options)
@@ -28,13 +31,80 @@ module Readability
28
31
  @remove_unlikely_candidates = @options[:remove_unlikely_candidates]
29
32
  @weight_classes = @options[:weight_classes]
30
33
  @clean_conditionally = @options[:clean_conditionally]
34
+ @best_candidate_has_image = true
31
35
  make_html
32
36
  end
33
37
 
38
+ def prepare_candidates
39
+ @html.css("script, style").each { |i| i.remove }
40
+ remove_unlikely_candidates! if @remove_unlikely_candidates
41
+ transform_misused_divs_into_paragraphs!
42
+
43
+ @candidates = score_paragraphs(options[:min_text_length])
44
+ @best_candidate = select_best_candidate(@candidates)
45
+ end
46
+
34
47
  def make_html
35
48
  @html = Nokogiri::HTML(@input, nil, @options[:encoding])
36
49
  end
37
50
 
51
+ def images(content=nil, reload=false)
52
+ begin
53
+ require 'mini_magick'
54
+ rescue LoadError
55
+ raise "Please install mini_magick in order to use the #images feature."
56
+ end
57
+
58
+ @best_candidate_has_image = false if reload
59
+
60
+ prepare_candidates
61
+ list_images = []
62
+ tested_images = []
63
+ content = @best_candidate[:elem] unless reload
64
+
65
+ return list_images if content.nil?
66
+ elements = content.css("img").map(&:attributes)
67
+
68
+ elements.each do |element|
69
+ url = element["src"].value
70
+ height = element["height"].nil? ? 0 : element["height"].value.to_i
71
+ width = element["width"].nil? ? 0 : element["width"].value.to_i
72
+ format = File.extname(url).gsub(".", "")
73
+ image = {:width => width, :height => height, :format => format}
74
+ image = load_image(url) if url =~ /\Ahttps?:\/\//i && (height.zero? || width.zero?)
75
+
76
+ next unless image
77
+
78
+ if tested_images.include?(url)
79
+ debug("Image was tested: #{url}")
80
+ next
81
+ end
82
+
83
+ tested_images.push(url)
84
+ if image_meets_criteria?(image)
85
+ list_images << url
86
+ else
87
+ debug("Image discarded: #{url} - height: #{image[:height]} - width: #{image[:width]} - format: #{image[:format]}")
88
+ end
89
+ end
90
+
91
+ (list_images.empty? and content != @html) ? images(@html, true) : list_images
92
+ end
93
+
94
+ def load_image(url)
95
+ begin
96
+ MiniMagick::Image.open(url)
97
+ rescue => e
98
+ debug("Image error: #{e}")
99
+ nil
100
+ end
101
+ end
102
+
103
+ def image_meets_criteria?(image)
104
+ return false if options[:ignore_image_format].include?(image[:format].downcase)
105
+ image[:width] >= (options[:min_image_width] || 0) && image[:height] >= (options[:min_image_height] || 0)
106
+ end
107
+
38
108
  REGEXES = {
39
109
  :unlikelyCandidatesRe => /combx|comment|community|disqus|extra|foot|header|menu|remark|rss|shoutbox|sidebar|sponsor|ad-break|agegate|pagination|pager|popup/i,
40
110
  :okMaybeItsACandidateRe => /and|article|body|column|main|shadow/i,
@@ -57,15 +127,10 @@ module Readability
57
127
  def content(remove_unlikely_candidates = :default)
58
128
  @remove_unlikely_candidates = false if remove_unlikely_candidates == false
59
129
 
60
- @html.css("script, style").each(&:remove)
61
-
62
- remove_unlikely_candidates! if @remove_unlikely_candidates
63
- transform_misused_divs_into_paragraphs!
64
- candidates = score_paragraphs(options[:min_text_length])
65
- best_candidate = select_best_candidate(candidates)
66
- article = get_article(candidates, best_candidate)
130
+ prepare_candidates
131
+ article = get_article(@candidates, @best_candidate)
67
132
 
68
- cleaned_article = sanitize(article, candidates, options)
133
+ cleaned_article = sanitize(article, @candidates, options)
69
134
  if article.text.strip.length < options[:retry_length]
70
135
  if @remove_unlikely_candidates
71
136
  @remove_unlikely_candidates = false
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "ruby-readability"
6
- s.version = '0.5.0'
6
+ s.version = '0.5.1'
7
7
  s.authors = ["Andrew Cantino", "starrhorne", "libc", "Kyle Maxwell"]
8
8
  s.email = ["andrew@iterationlabs.com"]
9
9
  s.homepage = "http://github.com/iterationlabs/ruby-readability"
@@ -17,7 +17,8 @@ Gem::Specification.new do |s|
17
17
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
18
  s.require_paths = ["lib"]
19
19
 
20
- s.add_development_dependency "rspec", ">= 2.6"
20
+ s.add_development_dependency "rspec", ">= 2.8"
21
+ s.add_development_dependency "rspec-expectations", ">= 2.8"
21
22
  s.add_development_dependency "rr", ">= 1.0"
22
23
  s.add_dependency 'nokogiri', '>= 1.4.2'
23
24
  s.add_dependency 'guess_html_encoding', '>= 0.0.2'
@@ -0,0 +1,2069 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
2
+
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xml:lang="en-GB">
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+ <head profile="http://dublincore.org/documents/dcq-html/">
27
+ <meta http-equiv="X-UA-Compatible" content="IE=8" />
28
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
29
+ <title>BBC News - Submarine escape: A WWII survival tale from Kefalonia</title>
30
+ <meta name="Description" content="Historian Tim Clayton tells the story of submariner, John Capes, which became one of the most controversial survival stories of World War II."/>
31
+ <meta name="OriginalPublicationDate" content="2011/12/02 00:03:39"/>
32
+ <meta name="UKFS_URL" content="/news/magazine-15959067"/>
33
+ <meta name="THUMBNAIL_URL" content="http://news.bbcimg.co.uk/media/images/57047000/jpg/_57047875_john_capes_464rnsm.jpg"/>
34
+ <meta name="Headline" content="Escape from a WWII submarine"/>
35
+ <meta name="IFS_URL" content="/news/magazine-15959067"/>
36
+ <meta name="Section" content="Magazine"/>
37
+ <meta name="contentFlavor" content="STORY"/>
38
+ <meta name="CPS_ID" content="15959067" />
39
+ <meta name="CPS_SITE_NAME" content="BBC News" />
40
+ <meta name="CPS_SECTION_PATH" content="Magazine" />
41
+ <meta name="CPS_ASSET_TYPE" content="STY" />
42
+ <meta name="CPS_PLATFORM" content="HighWeb" />
43
+ <meta name="CPS_AUDIENCE" content="International" />
44
+
45
+ <meta property="og:title" content="Escape from a WWII submarine"/>
46
+ <meta property="og:type" content="article"/>
47
+ <meta property="og:url" content="http://www.bbc.co.uk/news/magazine-15959067"/>
48
+ <meta property="og:site_name" content="BBC News"/>
49
+ <meta property="og:image" content="http://news.bbcimg.co.uk/media/images/57071000/jpg/_57071538_perseus_thoctarides.jpg"/>
50
+
51
+ <meta name="bbcsearch_noindex" content="atom"/>
52
+ <link rel="canonical" href="http://www.bbc.co.uk/news/magazine-15959067" />
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+ <!-- THIS FILE CONFIGURES NEWS V6 -->
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+ <!-- hi/news/head_first.inc -->
85
+
86
+
87
+
88
+ <!-- PULSE_ENABLED:yes -->
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+ <meta http-equiv="X-UA-Compatible" content="IE=8" /> <link rel="schema.dcterms" href="http://purl.org/dc/terms/" /> <link rel="index" href="http://www.bbc.co.uk/a-z/" title="A to Z" /> <link rel="help" href="http://www.bbc.co.uk/help/" title="BBC Help" /> <link rel="copyright" href="http://www.bbc.co.uk/terms/" title="Terms of Use" /> <link rel="icon" href="http://www.bbc.co.uk/favicon.ico" type="image/x-icon" /> <meta name="viewport" content="width = 996" /> <link rel="stylesheet" type="text/css" href="http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/style/main.css" /> <script type="text/javascript"> if (! window.gloader) { window.gloader = [ "glow", {map: "http://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script> <script type="text/javascript" src="http://node1.bbcimg.co.uk/glow/gloader.0.1.6.js"></script> <script type="text/javascript" src="http://static.bbc.co.uk/frameworks/requirejs/0.10.1/sharedmodules/require.js"></script> <script type="text/javascript"> bbcRequireMap = {"jquery-1":"http://static.bbc.co.uk/frameworks/jquery/0.1.8/sharedmodules/jquery-1.6.2", "jquery-1.4":"http://static.bbc.co.uk/frameworks/jquery/0.1.8/sharedmodules/jquery-1.4", "swfobject-2":"http://static.bbc.co.uk/frameworks/swfobject/0.1.3/sharedmodules/swfobject-2", "demi-1":"http://static.bbc.co.uk/frameworks/demi/0.8.0/sharedmodules/demi-1", "gelui-1":"http://static.bbc.co.uk/frameworks/gelui/0.9.3/sharedmodules/gelui-1", "cssp!gelui-1/overlay":"http://static.bbc.co.uk/frameworks/gelui/0.9.3/sharedmodules/gelui-1/overlay.css", "istats-1":"http://static.bbc.co.uk/frameworks/nedstat/0.5.0/sharedmodules/istats-1", "relay-1":"http://static.bbc.co.uk/frameworks/relay/0.0.13/sharedmodules/relay-1", "clock-1":"http://static.bbc.co.uk/frameworks/clock/0.1.5/sharedmodules/clock-1", "canvas-clock-1":"http://static.bbc.co.uk/frameworks/clock/0.1.5/sharedmodules/canvas-clock-1", "cssp!clock-1":"http://static.bbc.co.uk/frameworks/clock/0.1.5/sharedmodules/clock-1.css", "jssignals-1":"http://static.bbc.co.uk/frameworks/jssignals/0.3.2/modules/jssignals-1", "jcarousel-1":"http://static.bbc.co.uk/frameworks/jcarousel/0.1.6/modules/jcarousel-1"}; require({ baseUrl: 'http://static.bbc.co.uk/', paths: bbcRequireMap, waitSeconds: 30 }); </script> <script type="text/javascript" src="http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/script/barlesque.js"></script>
149
+ <!--[if (IE 6)|(IE 7)|(IE 8)]> <style type="text/css"> .blq-gvl-3 #blq-mast, body #blq-container.blq-gvl-3 .blq-foot-opaque { background: transparent; -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000,endColorstr=#B2000000)"; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000,endColorstr=#B2000000); } .blq-gvl-3 #blq-mast.blq-mast-light { -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000)"; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000); } html body #blq-container #blq-nav {background: transparent;} .blq-gvl-3 #blq-mast #blq-search { padding: 5px 4px 4px 7px; } .blq-gvl-3 #blq-nav-main a { background-position: right 12px; } .blq-gvl-3 #blq-nav-main { background-position: 97% 18px; } .blq-morepanel-shown #blq-nav-m a { background-position: 83% -17px} </style> <![endif]--> <!--[if IE 6]> <style type="text/css"> .blq-clearfix {height:1%;} .blq-gvl-3 #blq-mast-home .blq-home {display:none;} .blq-gvl-3 #blq-autosuggest { margin-left:-7px; padding-bottom:8px} .blq-gvl-3 #blq-nav-main { background-position: 96% 17px; } .blq-gvl-3 #blq-mast-home img {visibility: hidden;} .blq-gvl-3 #blq-mast-home a {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod='crop', src='http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/img/blocks/light.png');} .blq-gvl-3 #blq-mast-home a {cursor:pointer} .blq-gvl-3 #blq-mast-home span.blq-home {height:32px; width:107px;} .blq-footer-image-light, .blq-footer-image-dark {width: 68px;height: 21px;display: block;} .blq-footer-image-dark img, .blq-footer-image-light img { visibility: hidden; } .blq-footer-image-light {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod='scale', src='http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/img/blocks/light.png');} .blq-footer-image-dark {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod='scale', src='http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/img/blocks/dark.png');} </style> <script type="text/javascript"> try { document.execCommand("BackgroundImageCache",false,true); } catch(e) {} </script> <![endif]--> <!--[if lt IE 6]> <style> html body #blq-container #blq-foot { background: #4c4c4c; } html body #blq-container #blq-foot a, html body #blq-container #blq-foot p, html body #blq-container #blq-foot li { color: white; } </style> <![endif]--> <script type="text/javascript"> blq.setEnvironment('live'); if (blq.setLabel) blq.setLabel('searchSuggestion', "Search"); </script> <!-- BBCDOTCOM ipIsAdvertiseCombined: true journalismVariant: true adsEnabled: false flagpole: not set -->
150
+ <script type="text/javascript">
151
+ if(typeof(bbcdotcom) == "undefined") bbcdotcom = {};
152
+ </script>
153
+
154
+
155
+
156
+
157
+ <!-- shared/head -->
158
+ <meta http-equiv="imagetoolbar" content="no" />
159
+ <!--[if !(lt IE 6)]>
160
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/type.css" />
161
+
162
+
163
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/global.css" />
164
+
165
+
166
+ <link rel="stylesheet" type="text/css" media="print" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/print.css" />
167
+
168
+ <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 976px)" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/mobile.css" />
169
+
170
+
171
+
172
+
173
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/components/components.css" />
174
+
175
+ <![endif]-->
176
+ <!--[if !IE]>-->
177
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/type.css" />
178
+
179
+
180
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/global.css" />
181
+
182
+
183
+ <link rel="stylesheet" type="text/css" media="print" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/print.css" />
184
+
185
+ <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 976px)" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/mobile.css" />
186
+
187
+
188
+
189
+
190
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/components/components.css" />
191
+
192
+ <!--<![endif]-->
193
+ <script type="text/javascript">
194
+ /*<![CDATA[*/
195
+ gloader.load(["glow","1","glow.dom"],{onLoad:function(glow){glow.dom.get("html").addClass("blq-js")}});
196
+ gloader.load(["glow","1","glow.dom"],{onLoad:function(glow){glow.ready(function(){if (glow.env.gecko){var gv = glow.env.version.split(".");for (var i=gv.length;i<4;i++){gv[i]=0;}if((gv[0]==1 && gv[1]==9 && gv[2]==0)||(gv[0]==1 && gv[1]<9)||(gv[0]<1)){glow.dom.get("body").addClass("firefox-older-than-3-5");}}});}});
197
+
198
+ window.disableFacebookSDK=true;
199
+ if (window.location.pathname.indexOf('+')>=0){window.disableFacebookSDK=true;}
200
+
201
+ /*]]>*/
202
+ </script>
203
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/locationservices/locator/v4_0/locator.js"></script>
204
+
205
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/core/3_3_1/bbc_fmtj.js"></script>
206
+
207
+ <script type="text/javascript">
208
+ <!--
209
+ bbc.fmtj.page = {
210
+ serverTime: 1322844032000,
211
+ editionToServe: 'international',
212
+ queryString: null,
213
+ referrer: 'http://www.bbc.co.uk/news/',
214
+ section: 'magazine',
215
+ sectionPath: '/Magazine',
216
+ siteName: 'BBC News',
217
+ siteToServe: 'news',
218
+ siteVersion: 'cream',
219
+ storyId: '15959067',
220
+ assetType: 'story',
221
+ uri: '/news/magazine-15959067',
222
+ country: 'br',
223
+ masthead: false,
224
+ adKeyword: null,
225
+ templateVersion: 'v1_0'
226
+ }
227
+ -->
228
+ </script>
229
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/common/3_2_1/bbc_fmtj_common.js"></script>
230
+
231
+
232
+ <script type="text/javascript">$useMap({map:"http://news.bbcimg.co.uk/js/map/map_0_0_29.js"});</script>
233
+ <script type="text/javascript">$loadView("0.0",["bbc.fmtj.view"]);</script>
234
+ <script type="text/javascript">$render("livestats-heatmap");</script>
235
+
236
+
237
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/config/apps/4_7_1/bbc_fmtj_config.js"></script>
238
+
239
+
240
+
241
+
242
+ <script type="text/javascript">
243
+ //<![CDATA[
244
+ require(['jquery-1'], function($){
245
+
246
+ // set up EMP once it's loaded
247
+ var setUp = function(){
248
+ // use our own pop out page
249
+ embeddedMedia.setPopoutUrl('/player/emp/2_0_23/popout/pop.stm');
250
+
251
+ // store EMP's notifyParent function
252
+ var oldNotifyParent = embeddedMedia.console.notifyParent;
253
+ // use our own to add livestats to popout
254
+ embeddedMedia.console.notifyParent = function(childWin){
255
+ oldNotifyParent(childWin);
256
+ // create new live stats url
257
+ var liveStatsUrl = bbc.fmtj.av.emp.liveStatsForPopout($('#livestats').attr('src'));
258
+ var webBug = $('<img />', {
259
+ id: 'livestats',
260
+ src: liveStatsUrl
261
+ });
262
+ // append it to popout
263
+ $(childWin.document).find('body').append(webBug);
264
+ }
265
+ }
266
+
267
+ // check if console is available to manipulate
268
+ if(window.embeddedMedia && window.embeddedMedia.console){
269
+ setUp();
270
+ }
271
+ // otherwise emp is still loading, so add event listener
272
+ else{
273
+ $(document).bind('empReady', function(){
274
+ setUp();
275
+ });
276
+ }
277
+ });
278
+ //]]>
279
+ </script>
280
+
281
+ <!-- Top level sections -->
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+ <!-- get BUMP from cdn -->
290
+ <script type="text/javascript" src="http://emp.bbci.co.uk/emp/bump?emp=worldwide&amp;enableClear=0"></script>
291
+
292
+ <!-- load glow and required modules -->
293
+ <script type="text/javascript">
294
+ //<![CDATA[
295
+ gloader.load(['glow', '1', 'glow.dom']);
296
+ //]]>
297
+ </script>
298
+
299
+
300
+
301
+ <!-- pull in our emp code -->
302
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/app/av/emp/2_0_23/emp.js"></script>
303
+ <!-- pull in compatibility.js -->
304
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/app/av/emp/2_0_23/compatibility.js"></script>
305
+
306
+
307
+ <script type="text/javascript">
308
+ //<![CDATA[
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+ // set site specific config
320
+
321
+ bbc.fmtj.av.emp.configs.push('news');
322
+
323
+
324
+ // when page loaded, write all created emps
325
+ glow.ready(function(){
326
+ if(typeof bbcdotcom !== 'undefined' && bbcdotcom.av && bbcdotcom.av.emp){
327
+ bbcdotcom.av.emp.configureAll();
328
+ }
329
+ embeddedMedia.writeAll();
330
+ // mark the emps as loaded
331
+ bbc.fmtj.av.emp.loaded = true;
332
+ });
333
+ //]]>
334
+ </script>
335
+ <!-- Check for advertising testing -->
336
+
337
+ <meta name="viewport" content="width = 996" />
338
+
339
+ <!-- shared/head_story -->
340
+ <!-- THESE STYLESHEETS VARY ACCORDING TO PAGE CONTENT -->
341
+
342
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/layout/story.css" />
343
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/2_0_7/cream/hi/shared/story.css" />
344
+
345
+
346
+ <!-- js story view -->
347
+ <script type="text/javascript">$loadView("0.0",["bbc.fmtj.view.news.story"]);</script>
348
+
349
+ <!-- EMP -->
350
+ <script type="text/javascript" src="http://news.bbc.co.uk/js/app/av/emp/compatibility.js"></script>
351
+ <!-- /EMP -->
352
+ <!-- #CREAM hi news international head.inc -->
353
+ <!-- is suitable for ads adding isadvertise ... -->
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+ <link href="http://news.bbcimg.co.uk/css/screen/shared/0.3.87/3pt_ads.css" rel="stylesheet" type="text/css" />
382
+
383
+
384
+
385
+
386
+ <script type="text/javascript">
387
+ /*<![CDATA[*/
388
+ if(typeof BBC === 'undefined') var BBC = {};
389
+ BBC.adverts = {setZone: function(){}, configure: function(){}, write: function(){}, show: function(){}};
390
+
391
+ window.bbcdotcom={};
392
+ bbcdotcom.createObject = function(namespace){
393
+ var names = namespace.split('.'),
394
+ next = '',
395
+ i = 0,
396
+ len = names.length;
397
+ for(i; i < len; i++){
398
+ if('' !== next) {
399
+ next = ("object" === typeof next[names[i]]) ? next[names[i]] : next[names[i]] = {};
400
+ } else {
401
+ next = ("object" === typeof window[names[i]]) ? window[names[i]] : window[names[i]] = {};
402
+ }
403
+ }
404
+ }
405
+ /*]]>*/
406
+ </script>
407
+
408
+
409
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/app/bbccom/0.3.87/bbccom.js"></script>
410
+
411
+
412
+ <script type="text/javascript">
413
+ /*<![CDATA[*/
414
+ (function(){
415
+
416
+ var fiddleredition = '(none)';
417
+ var url = '/news/magazine-15959067';
418
+ switch('/news/magazine-15959067') {
419
+ case "/":
420
+ case "/default.stm":
421
+ url = (fiddleredition === "domestic") ? "/1/hi/default.stm" : "/2/hi/default.stm";
422
+ break;
423
+ case "/sport":
424
+ case "/sport/":
425
+ case "/sport/default.stm":
426
+ url = (fiddleredition === "domestic") ? "/sport1/hi/default.stm" : "/sport2/hi/default.stm";
427
+ break;
428
+ };
429
+
430
+ var zone = "3pt_zone_file",
431
+ zoneOverride = false;
432
+
433
+
434
+
435
+ if(/[?|&]zone=((?!preview)\w*\/*\w+)(&|$)/.test(window.location.search)) {
436
+ zone = RegExp.$1;
437
+ };
438
+
439
+ if(/[?|&]zone=(http:\/\/.+(\.bbc\.co\.uk\/){1}.*(bbccom){1}.*\.js)(&|$)/.test(window.location.search)) {
440
+ if (RegExp.$1.indexOf("/../") === -1) {
441
+ zone = RegExp.$1;
442
+ zoneOverride = true;
443
+ };
444
+ };
445
+
446
+
447
+ BBC.adverts.setScriptRoot("http://news.bbcimg.co.uk/js/app/bbccom/0.3.87/");
448
+
449
+
450
+ BBC.adverts.init({
451
+ domain: "www.bbc.co.uk",
452
+ location: url,
453
+ zoneVersion: zone,
454
+ zoneOverride: zoneOverride,
455
+ zoneReferrer: document.referrer
456
+ });
457
+
458
+ })();
459
+
460
+ if(BBC.adverts.getNewsGvl3()) {
461
+
462
+ document.write('<script language="JavaScript" src="http://news.bbcimg.co.uk/js/app/bbccom/0.3.87/advert.js"><\/script>');
463
+
464
+ }
465
+
466
+ /*]]>*/
467
+ </script>
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+ <script type="text/javascript">
476
+ if(BBC.adverts){
477
+ BBC.adverts.setPageVersion('(none)');
478
+ }
479
+ </script>
480
+
481
+
482
+
483
+
484
+
485
+
486
+
487
+ <!-- hi/news/head_last.inc -->
488
+
489
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/1_4_29/cream/hi/news/skin.css" />
490
+
491
+
492
+
493
+
494
+ <script type="text/javascript">
495
+ gloader.load(["glow","1","glow.dom"],{onLoad: function(glow){
496
+ glow.ready(function(){
497
+ var adImageUrl = BBC.adverts.getAdvertTag('printableversionsponsorship','','standardUri');
498
+
499
+ if (glow.env.ie ) {
500
+ window.onbeforeprint = function(){
501
+ var printAdvert = glow.dom.get("#print-advert");
502
+ if (printAdvert.get("img").length == 0)
503
+ {
504
+ printAdvert.append('<img src="'+adImageUrl+'" alt="" />');
505
+ }
506
+ };
507
+ }else{
508
+ glow.dom.get("head").append('<style type="text/css">#print-advert {display:none};</style><style type="text/css" media="print">#print-advert::after{content:url('+adImageUrl+');} #print-advert{display:block;overflow:hidden;}</style>');
509
+ }
510
+ });
511
+ }});
512
+ </script>
513
+
514
+
515
+
516
+ <link rel="apple-touch-icon" href="http://news.bbcimg.co.uk/img/1_0_1/cream/hi/news/iphone.png"/>
517
+ <script type="text/javascript">
518
+ blq.setLabel('searchSuggestion', 'Search BBC News');
519
+ blq.externalGoTrackingConfig = {
520
+ ".story-body a":"{path}/ext/story-body/{dir}",
521
+ ".story-related .related-links a":"{path}/ext/related-links/{dir}",
522
+ ".story-related .newstracker-list a":"{path}/ext/newstracker/{dir}"
523
+ }
524
+ </script>
525
+
526
+
527
+
528
+ <!-- MVT ENABLED:yes -->
529
+
530
+
531
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/mvt/optimost/1_0_0/global_head.js"></script>
532
+
533
+
534
+
535
+ </head>
536
+
537
+
538
+ <!--[if lte IE 6]><body class="news ie"><![endif]-->
539
+ <!--[if IE 7]><body class="news ie7"><![endif]-->
540
+ <!--[if IE 8]><body class="news ie8"><![endif]-->
541
+ <!--[if !IE]>--><body class="news"><!--<![endif]-->
542
+ <div class="livestats-web-bug"><img alt="" id="livestats" src="http://stats.bbc.co.uk/o.gif?~RS~s~RS~News~RS~t~RS~HighWeb_Story~RS~i~RS~15959067~RS~p~RS~99189~RS~a~RS~International~RS~u~RS~/news/magazine-15959067~RS~r~RS~http://www.bbc.co.uk/news/~RS~q~RS~~RS~z~RS~32~RS~"/></div>
543
+
544
+
545
+
546
+
547
+ <!-- NEDSTAT -->
548
+
549
+
550
+
551
+
552
+
553
+
554
+
555
+
556
+
557
+
558
+ <script type="text/javascript">
559
+ //<![CDATA[
560
+ window.bbcFlagpoles_istats = "ON";
561
+ window.istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=news.magazine.story.15959067.page&cps_asset_id=15959067&page_type=story&section=magazine&app_version=6.2.65-RC3&first_pub=2011-12-02T00:03:39+00:00&last_editorial_update=2011-12-02T00:03:39+00:00&title=Escape+from+a+WWII+submarine&comments_box=false&cps_media_type=&cps_media_state=&app_type=web&ml_name=SSI&ml_version=0.5.0&language=en-GB';
562
+ // ]]>
563
+ </script>
564
+
565
+ <!-- NEDSTAT -->
566
+ <!-- Begin iStats 20100118 (UX-CMC 1.1009.3) -->
567
+ <script type="text/javascript">
568
+ // <![CDATA[
569
+ (function() {
570
+ var cookieDisabled = (document.cookie.indexOf('NO-SA=') != -1),
571
+ hasCookieLabels = (document.cookie.indexOf('sa_labels=') != -1),
572
+ hasClickThrough = /^#sa-(.*?)(?:-sa(.*))?$/.test(document.location.hash),
573
+ runSitestat;
574
+
575
+ runSitestat = !cookieDisabled && !hasCookieLabels && !hasClickThrough;
576
+
577
+ if (runSitestat && bbcFlagpoles_istats === 'ON') {
578
+ sitestat(istatsTrackingUrl);
579
+ }
580
+
581
+ function sitestat(n){var j=document,f=j.location,b="";if(j.cookie.indexOf("st_ux=")!=-1){var k=j.cookie.split(";");var e="st_ux",h=document.domain,a="/";if(typeof ns_!="undefined"&&typeof ns_.ux!="undefined"){e=ns_.ux.cName||e;h=ns_.ux.cDomain||h;a=ns_.ux.cPath||a}for(var g=0,f=k.length;g<f;g++){var m=k[g].indexOf("st_ux=");if(m!=-1){b="&"+unescape(k[g].substring(m+6))}}document.cookie=e+"=; expires="+new Date(new Date().getTime()-60).toGMTString()+"; path="+a+"; domain="+h}ns_pixelUrl=n;n=ns_pixelUrl+"&ns__t="+(new Date().getTime())+"&ns_c="+((j.characterSet)?j.characterSet:j.defaultCharset)+"&ns_ti="+escape(j.title)+b+"&ns_jspageurl="+escape(f&&f.href?f.href:j.URL)+"&ns_referrer="+escape(j.referrer);if(n.length>2000&&n.lastIndexOf("&")){n=n.substring(0,n.lastIndexOf("&")+1)+"ns_cut="+n.substring(n.lastIndexOf("&")+1,n.lastIndexOf("=")).substring(0,40)}(j.images)?new Image().src=n:j.write('<p><i'+'mg src="'+n+'" height="1" width="1" alt="" /></p>')};
582
+ })();
583
+ // ]]>
584
+ </script>
585
+ <noscript><p class="blq-hide"><img src="//sa.bbc.co.uk/bbc/bbc/s?name=news.magazine.story.15959067.page&amp;cps_asset_id=15959067&amp;page_type=story&amp;section=magazine&amp;app_version=6.2.65-RC3&amp;first_pub=2011-12-02T00:03:39+00:00&amp;last_editorial_update=2011-12-02T00:03:39+00:00&amp;title=Escape+from+a+WWII+submarine&amp;comments_box=false&amp;cps_media_type=&amp;cps_media_state=&amp;app_type=web&amp;ml_name=SSI&amp;ml_version=0.5.0&amp;language=en-GB" height="1" width="1" alt="" /></p></noscript>
586
+ <!-- End iStats (UX-CMC) -->
587
+ <!-- END NEDSTAT -->
588
+
589
+ <div id="blq-global" class="blq-gvl-3"> <div id="blq-pre-mast" xml:lang="en-GB"> <!-- Pre mast --> </div> </div> <div id="blq-container-outer"> <div id="blq-container" class="blq-lang-en-GB blq-dotcom blq-gvl-3"> <div id="blq-container-inner" xml:lang="en-GB"> <div id="blq-acc" class="blq-rst"> <p id="blq-mast-home" class="blq-no-images"><a href="http://www.bbc.co.uk/" hreflang="en-GB"> <span class="blq-home"><acronym title="British Broadcasting Corporation">BBC</acronym></span><img src="http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/img/blocks/light.png" alt="" id="blq-blocks" width="84" height="24" /></a></p> <p class="blq-hide"><strong><a id="page-top">Accessibility links</a></strong></p> <ul id="blq-acc-links"> <li class="blq-hide"><a href="#main-content">Skip to content</a></li> <li class="blq-hide"><a href="#blq-local-nav">Skip to local navigation</a></li> <li class="blq-hide"><a href="#blq-nav-main">Skip to bbc.co.uk navigation</a></li> <li class="blq-hide"><a href="#blq-search">Skip to bbc.co.uk search</a></li> <li id="blq-acc-help"><a href="http://www.bbc.co.uk/help/">Help</a></li> <li class="blq-hide"><a href="http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul> </div> <div id="blq-main" class="blq-clearfix">
590
+
591
+
592
+ <div class="magazine has-no-ticker">
593
+ <div id="header-wrapper">
594
+
595
+
596
+ <h2 id="header">
597
+ <a rel="index" href="http://www.bbc.co.uk/news/"><img alt="BBC News" src="http://news.bbcimg.co.uk/img/1_0_1/cream/hi/news/news-blocks.gif" /></a>
598
+ <span class="section-title">Magazine</span>
599
+ </h2>
600
+
601
+
602
+ <div class="bbccom_advert_placeholder">
603
+ <script type="text/javascript">$render("advert","advert-sponsor-section");</script>
604
+ </div>
605
+ <script type="text/javascript">$render("advert-post-script-load");</script>
606
+
607
+
608
+
609
+ <div id="blq-local-nav">
610
+ <ul id="nav" class="nav">
611
+
612
+
613
+ <li class="first-child selected"><a href="/news/">Home</a></li>
614
+
615
+
616
+ <li><a href="/news/uk/">UK</a></li>
617
+
618
+
619
+ <li><a href="/news/world/africa/">Africa</a></li>
620
+
621
+
622
+ <li><a href="/news/world/asia/">Asia</a></li>
623
+
624
+
625
+ <li><a href="/news/world/europe/">Europe</a></li>
626
+
627
+
628
+ <li><a href="/news/world/latin_america/">Latin America</a></li>
629
+
630
+
631
+ <li><a href="/news/world/middle_east/">Mid-East</a></li>
632
+
633
+
634
+ <li><a href="/news/world/us_and_canada/">US &amp; Canada</a></li>
635
+
636
+
637
+ <li><a href="/news/business/">Business</a></li>
638
+
639
+
640
+ <li><a href="/news/health/">Health</a></li>
641
+
642
+
643
+ <li><a href="/news/science_and_environment/">Sci/Environment</a></li>
644
+
645
+
646
+ <li><a href="/news/technology/">Tech</a></li>
647
+
648
+
649
+ <li><a href="/news/entertainment_and_arts/">Entertainment</a></li>
650
+
651
+
652
+ <li><a href="/news/10462520">Video</a></li>
653
+ </ul>
654
+
655
+ <ul id="sub-nav" class="nav">
656
+
657
+ <li class="first-child selected"><a href="/news/magazine/">Magazine</a></li>
658
+
659
+ <li><a href="/news/in_pictures/">In Pictures</a></li>
660
+
661
+ <li><a href="/news/also_in_the_news/">Also in the News</a></li>
662
+
663
+ <li><a href="http://www.bbc.co.uk/blogs/theeditors/">Editors' Blog</a></li>
664
+
665
+ <li><a href="/news/have_your_say/">Have Your Say</a></li>
666
+
667
+ <li><a href="/news/world_radio_and_tv/">World Radio and TV</a></li>
668
+
669
+ <li><a href="/news/special_reports/">Special Reports</a></li>
670
+ </ul>
671
+ </div>
672
+
673
+
674
+ </div>
675
+ <!-- START CPS_SITE CLASS: international -->
676
+ <div id="content-wrapper" class="international">
677
+
678
+ <div class="advert">
679
+
680
+ <div class="bbccom_advert_placeholder">
681
+ <script type="text/javascript">$render("advert","advert-leaderboard");</script>
682
+ </div>
683
+ <script type="text/javascript">$render("advert-post-script-load");</script>
684
+
685
+ </div>
686
+
687
+ <!-- START CPS_SITE CLASS: story -->
688
+ <div id="main-content" class="story blq-clearfix">
689
+ <!-- No EWA -->
690
+
691
+
692
+
693
+
694
+
695
+
696
+ <div id="print-advert">
697
+
698
+ </div>
699
+
700
+
701
+
702
+
703
+
704
+ <div class="layout-block-a">
705
+ <div class="story-body">
706
+ <span class="story-date">
707
+ <span class="date">2 December 2011</span>
708
+ <span class="time-text">Last updated at </span><span class="time">00:03 GMT</span>
709
+ </span>
710
+
711
+ <div id="page-bookmark-links-head" class="share-help">
712
+ <h3>Share this page</h3>
713
+ <ul>
714
+ <li class="delicious">
715
+ <a title="Post this story to Delicious" href="http://del.icio.us/post?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">Delicious</a>
716
+ </li>
717
+ <li class="digg">
718
+ <a title="Post this story to Digg" href="http://digg.com/submit?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">Digg</a>
719
+ </li>
720
+ <li class="facebook">
721
+ <a title="Post this story to Facebook" href="http://www.facebook.com/sharer.php?u=http://www.bbc.co.uk/news/magazine-15959067&amp;t=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">Facebook</a>
722
+ </li>
723
+ <li class="reddit">
724
+ <a title="Post this story to reddit" href="http://reddit.com/submit?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">reddit</a>
725
+ </li>
726
+ <li class="stumbleupon">
727
+ <a title="Post this story to StumbleUpon" href="http://www.stumbleupon.com/submit?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">StumbleUpon</a>
728
+ </li>
729
+ <li class="twitter">
730
+ <a title="Post this story to Twitter" href="http://twitter.com/home?status=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia+http://www.bbc.co.uk/news/magazine-15959067">Twitter</a>
731
+ </li>
732
+ <li class="email">
733
+ <a title="Email this story" href="http://newsvote.bbc.co.uk/mpapps/pagetools/email/www.bbc.co.uk/news/magazine-15959067">Email</a>
734
+ </li>
735
+ <li class="print">
736
+ <a title="Print this story" href="?print=true">Print</a>
737
+ </li>
738
+ </ul>
739
+ <!-- Social media icons by Paul Annet | http://nicepaul.com/icons -->
740
+ </div>
741
+ <script type="text/javascript">
742
+ <!--
743
+ $render("page-bookmark-links","page-bookmark-links-head",{
744
+ useForgeShareTools:"true",
745
+ position:"top",
746
+ site:'News',
747
+ headline:'BBC News - Submarine escape: A WWII survival tale from Kefalonia',
748
+ storyId:'15959067',
749
+ sectionId:'99189',
750
+ url:'http://www.bbc.co.uk/news/magazine-15959067',
751
+ edition:'International'
752
+ });
753
+ -->
754
+ </script>
755
+
756
+
757
+
758
+
759
+
760
+ <h1 class="story-header">Submarine escape: A WWII survival tale from Kefalonia</h1>
761
+
762
+
763
+
764
+
765
+
766
+ <span class="byline">
767
+ <span class="byline-name">By Tim Clayton</span>
768
+ <span class="byline-title">Military historian</span>
769
+ </span>
770
+
771
+ <div class="caption body-width">
772
+ <img src="http://news.bbcimg.co.uk/media/images/57027000/jpg/_57027794_perseus_getty.jpg" width="464" height="261" alt="Launch of HMS Perseus in May 1929" />
773
+
774
+ <span style="width:464px;">HMS Perseus was launched in May 1929</span>
775
+ </div>
776
+ <div class="embedded-hyper">
777
+ <a class="hidden" href="#story_continues_1">Continue reading the main story</a>
778
+
779
+
780
+
781
+
782
+ <div class="hyperpuff">
783
+
784
+
785
+
786
+
787
+
788
+
789
+ <!-- Specific version for 15959067 -->
790
+
791
+
792
+ <h2><a href="/news/magazine/">In today&#039;s Magazine</a></h2>
793
+
794
+
795
+
796
+ <ul>
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
811
+ <li>
812
+ <a class="story" rel="published-1322784486414" href="/news/magazine-15988056">Quiz of the week&#039;s news</a>
813
+
814
+ </li>
815
+
816
+
817
+
818
+
819
+
820
+
821
+
822
+
823
+
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+ <li>
832
+ <a class="story" rel="published-1322679328267" href="/news/magazine-14779271">Should animals be stunned before slaughter?</a>
833
+
834
+ </li>
835
+
836
+
837
+
838
+
839
+
840
+
841
+
842
+
843
+
844
+
845
+
846
+
847
+
848
+
849
+
850
+
851
+ <li>
852
+ <a class="story" rel="published-1322709870366" href="/news/magazine-15972527">Lingering stigma helps Aids epidemic ravage US South</a>
853
+
854
+ </li>
855
+
856
+
857
+
858
+
859
+
860
+
861
+
862
+
863
+
864
+
865
+
866
+
867
+
868
+
869
+
870
+
871
+ <li>
872
+ <a class="story" rel="published-1322742714248" href="/news/magazine-15970341">Why we quit Australia for the UK</a>
873
+
874
+ </li>
875
+
876
+
877
+ </ul>
878
+
879
+
880
+
881
+
882
+
883
+
884
+ </div>
885
+
886
+ </div> <p class="introduction" id="story_continues_1">Seventy years ago, off the Greek island of Kefalonia, the British submarine HMS Perseus hit an Italian mine, sparking one of the greatest and most controversial survival stories of World War II.</p>
887
+ <p>The clear waters of the Mediterranean were a death trap for British submarines in World War II.</p>
888
+ <p>Some were bombed from the air, others hunted with sonar and depth charges, and many, perhaps most, collided with mines.</p>
889
+ <p>Two fifths of the subs that ventured into the Mediterranean were sunk and when a submarine sank it became a communal coffin - everyone on board died. That was the rule. </p>
890
+ <p>In fact, during the whole of the war there were only four escapes from stricken British submarines. And the most remarkable of these took place on 6 December 1941, when HMS Perseus plummeted to the seabed. </p>
891
+ <span class="cross-head">Enigma</span>
892
+ <p>When she left the British submarine base at Malta at the end of November 1941, HMS Perseus had on board her 59 crew and two passengers, one of whom was John Capes, a 31-year-old Navy stoker en route to Alexandria. </p>
893
+ <div class="caption">
894
+ <img src="http://news.bbcimg.co.uk/media/images/57027000/jpg/_57027786_john_capes229_rnsm.jpg" width="224" height="299" alt="John Capes" />
895
+
896
+ <span style="width:224px;">John Capes: Stoker on the Perseus</span>
897
+ </div>
898
+ <p>Tall, dark, handsome and a bit of an enigma, Capes had been educated at Dulwich College, and as the son of a diplomat he would naturally have been officer class rather than one of the lowliest of the mechanics who looked after the engines. </p>
899
+ <p>On the rough winter night of 6 December, Perseus was on the surface of the sea 3km (two miles) off the coast of Kefalonia, recharging her batteries under cover of darkness in preparation for another day underwater. </p>
900
+ <p>According to newspaper articles Capes later wrote or contributed to, he was relaxing in a makeshift bunk converted from a spare torpedo tube when, with no warning, there was a devastating explosion. </p>
901
+ <p>The boat twisted, plunged, and hit the bottom with what Capes described as a &quot;nerve-shattering jolt&quot;. </p>
902
+ <p>His bunk reared up and threw him across the compartment. The lights went out. </p>
903
+ <div class="story-feature wide ">
904
+ <a class="hidden" href="#story_continues_2">Continue reading the main story</a> <h2>Escape from the Deep</h2>
905
+ <!-- pullout-items-->
906
+
907
+ <!-- pullout-body-->
908
+ <ul>
909
+ <li> Louis de Bernieres returns to Kefalonia to tell the story of John Capes and HMS Perseus</li>
910
+ <li> Tim Clayton acted as a programme consultant</li>
911
+ <li> Broadcast on Friday 2 December 2011 at 1100 GMT on BBC Radio 4, or listen again on <a href="http://www.bbc.co.uk/iplayer" >iPlayer</a></li>
912
+ </ul>
913
+ <!-- pullout-links-->
914
+ </div> <p id="story_continues_2">Capes guessed they had hit a mine. Finding that he could stand, he groped for a torch. In the increasingly foul air and rising water of the engine room he found &quot;the mangled bodies of a dozen dead&quot;. </p>
915
+ <p>But that was as far as he could get. The engine room door was forced shut by the pressure of water on the other side. &quot;It was creaking under the great pressure. Jets and trickles from the rubber joint were seeping through,&quot; said Capes.</p>
916
+ <p>He dragged any stokers who showed signs of life towards the escape hatch and fitted them and himself with Davis Submarine Escape Apparatus, a rubber lung with an oxygen bottle, mouthpiece and goggles. </p>
917
+ <div class="story-feature wide ">
918
+ <a class="hidden" href="#story_continues_3">Continue reading the main story</a> <h2>British WWII submarine escapes</h2>
919
+ <!-- pullout-items-->
920
+ <div class="caption body-narrow-width">
921
+ <img src="http://news.bbcimg.co.uk/media/images/57060000/gif/_57060487_sub_escapes304x416.gif" width="304" height="416" alt="Graphic showing the depth at which British WWII submariners escaped" />
922
+
923
+ </div>
924
+
925
+ <!-- pullout-body-->
926
+ <ul>
927
+ <li> HMS Umpire sank near Norfolk, England on 19 July 1941. Escapees: 14-15</li>
928
+ <li> HMS Stratagem sank near Malacca, Malaysia on 22 November 1944. Escapees: 10</li>
929
+ <li> HMS Perseus sank near Kefalonia, Greece on 6 December 1941. Escapees: 1 </li>
930
+ <li> HMS P32 sank near Tripoli, Libya on 18 August 1941 (but the wreck was discovered only in 1999). Escapees: 2</li>
931
+ </ul>
932
+ <!-- pullout-links-->
933
+ </div> <p id="story_continues_3">This equipment had only been tested to a depth of 100ft (30m). The depth gauge showed just over 270ft, and as far as Capes knew, no-one had ever made an escape from such a depth. </p>
934
+ <p>In fact the gauge was broken, over-estimating the depth by 100ft, but time was running out. It was difficult to breathe now. </p>
935
+ <p>He flooded the compartment, lowered the canvas trunk beneath the escape hatch and with great difficulty released the damaged bolts on the hatch. </p>
936
+ <p>He pushed his injured companions into the trunk, up through the hatch and away into the cold sea above. Then he took a last swig of rum from his blitz bottle, ducked under and passed through the hatch himself. </p>
937
+ <p>&quot;I let go, and the buoyant oxygen lifted me quickly upward. Suddenly I was alone in the middle of the great ocean. </p>
938
+ <p>&quot;The pain became frantic, my lungs and whole body as fit to burst apart. Agony made me dizzy. How long can I last? </p>
939
+ <p>&quot;Then, with the suddenness of certainty, I burst to the surface and wallowed in a slight swell with whitecaps here and there.&quot;</p>
940
+ <p>But having made the deepest escape yet recorded, his ordeal was not over. </p>
941
+ <p>His fellow injured stokers had not made it to the surface with him so he found himself alone in the middle of a cold December sea. </p>
942
+ <p>In the darkness he spotted a band of white cliffs and realised he had no choice but to strike out for those. </p>
943
+ <span class="cross-head">Story doubted</span>
944
+ <p>The next morning, Capes was found unconscious by two fishermen on the shore of Kefalonia. </p>
945
+ <p>For the following 18 months he was passed from house to house, to evade the Italian occupiers. He lost 70lb (32kg) in weight and dyed his hair black in an effort to blend in. </p>
946
+ <p>He recalled later: &quot;Always, at the moment of despair, some utterly poor but friendly and patriotic islander would risk the lives of all his family for my sake. </p>
947
+ <div class="caption body-narrow-width">
948
+ <img src="http://news.bbcimg.co.uk/media/images/57055000/jpg/_57055063_perseus_thoctarides.jpg" width="304" height="171" alt="Kostas Thoctarides swimming next to the wreck of HMS Perseus" />
949
+
950
+ <span style="width:304px;">Kostas Thoctarides and his dive team found the wreck of HMS Perseus in 1997</span>
951
+ </div>
952
+ <p>&quot;They even gave me one of their prize possessions, a donkey called Mareeka. There was one condition attached to her - I had to take a solemn vow not to eat her.&quot; </p>
953
+ <p>He was finally taken off the island on a fishing boat in May 1943, in a clandestine operation organised by the Royal Navy. </p>
954
+ <p>A dangerous, roundabout journey of 640km took him to Turkey and from there back to the submarine service in Alexandria. </p>
955
+ <p>Despite being awarded a medal for his escape, Capes&#039;s story was so extraordinary that many people, both within and outside the Navy, doubted it.</p>
956
+ <p>Was he really on the boat at all? After all, he was not on the crew list. And submarine commanders had been ordered to bolt escape hatches shut from the outside to prevent them lifting during depth charge attacks. </p>
957
+ <p>There were no witnesses, he had a reputation as a great storyteller, and his own written accounts after the war varied in their details. </p>
958
+ <p>And the depth gauge reading 270ft made his story all the harder to believe.</p>
959
+ <p>John Capes died in 1985 but it was not until 1997 that his story was finally verified. </p>
960
+ <p>In a series of dives to the wreck of Perseus, Kostas Thoctarides discovered Capes&#039;s empty torpedo tube bunk, the hatch and compartment exactly as he had described it, and finally, his blitz bottle from which he had taken that last fortifying swig of rum. </p>
961
+ <p><em>Tim Clayton is the author of Sea Wolves: the Extraordinary Story of Britain&#039;s WW2 Submarines. </em></p>
962
+ <p class="transmission-info">BBC Radio 4&#039;s <a href="http://www.bbc.co.uk/programmes/b017mx3x" >Escape from the Deep</a> is broadcast on Friday 2 December 2011 at 1100 GMT. Or listen again on BBC <a href="http://www.bbc.co.uk/iplayer/" >iPlayer</a>.</p>
963
+
964
+
965
+ </div><!-- / story-body -->
966
+
967
+ <div>
968
+ <!--Related hypers and stories -->
969
+ <div class="story-related">
970
+ <h2>More on This Story</h2>
971
+
972
+
973
+
974
+
975
+
976
+ <div class="hyperpuff">
977
+
978
+ <div class="hyper-container-title">
979
+
980
+ <h3 class="hyper-depth-header"><a href="/news/magazine/" class="special-report">In today&#039;s Magazine
981
+ </a>
982
+ </h3>
983
+
984
+
985
+
986
+
987
+
988
+
989
+ <!-- Specific version for 15959067 -->
990
+
991
+
992
+
993
+
994
+
995
+
996
+
997
+
998
+ <!-- Non specific version -->
999
+
1000
+
1001
+ <div id="group-title-2" class="hyper-related-assets">
1002
+
1003
+
1004
+
1005
+ <ul>
1006
+
1007
+
1008
+
1009
+
1010
+ <li class=" medium-image first-child">
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+ <h5 class=" hyper-story-header">
1026
+ <a class="story" rel="published-1322784486414" href="/news/magazine-15988056"><img src="http://news.bbcimg.co.uk/media/images/57060000/jpg/_57060600_streep_pathe144.jpg" alt="Meryl Streep" />Quiz of the week&#039;s news</a>
1027
+
1028
+ </h5>
1029
+
1030
+
1031
+ <p>The weekly world quiz of the news, with seven questions.</p>
1032
+ <hr />
1033
+ </li>
1034
+
1035
+ </ul>
1036
+
1037
+
1038
+ </div>
1039
+ <script type="text/javascript">$render("hyper-related-assets","group-title-2");</script>
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+ <!-- Non specific version -->
1048
+
1049
+
1050
+ <div id="group-title-3" class="hyper-related-assets">
1051
+
1052
+
1053
+
1054
+ <ul>
1055
+
1056
+
1057
+
1058
+
1059
+ <li class=" with-summary first-child">
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+
1067
+
1068
+
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+ <h5 class=" hyper-story-header">
1075
+ <a class="story" rel="published-1322679328267" href="/news/magazine-14779271">Should animals be stunned before slaughter?</a>
1076
+
1077
+ </h5>
1078
+
1079
+
1080
+ <p>Animal welfare and religious freedom are at the heart of a debate over moves to restrict the slaughter of conscious animals.</p>
1081
+ </li>
1082
+
1083
+ </ul>
1084
+
1085
+
1086
+ </div>
1087
+ <script type="text/javascript">$render("hyper-related-assets","group-title-3");</script>
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+ <!-- Non specific version -->
1096
+
1097
+
1098
+ <div id="group-title-4" class="hyper-related-assets">
1099
+
1100
+
1101
+
1102
+ <ul>
1103
+
1104
+
1105
+
1106
+
1107
+ <li class=" with-summary first-child">
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+ <h5 class=" hyper-story-header">
1123
+ <a class="story" rel="published-1322709870366" href="/news/magazine-15972527">Lingering stigma helps Aids epidemic ravage US South</a>
1124
+
1125
+ </h5>
1126
+
1127
+
1128
+ <p>How the conservative South&#039;s reluctance to speak frankly about HIV/Aids has hampered its ability to fight the disease.</p>
1129
+ </li>
1130
+
1131
+ </ul>
1132
+
1133
+
1134
+ </div>
1135
+ <script type="text/javascript">$render("hyper-related-assets","group-title-4");</script>
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+ <!-- Non specific version -->
1144
+
1145
+
1146
+ <div id="group-title-5" class="hyper-related-assets">
1147
+
1148
+
1149
+
1150
+ <ul>
1151
+
1152
+
1153
+
1154
+
1155
+ <li class=" medium-image first-child">
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+ <h5 class=" hyper-story-header">
1171
+ <a class="story" rel="published-1322742714248" href="/news/magazine-15970341"><img src="http://news.bbcimg.co.uk/media/images/57061000/jpg/_57061216_passports_226.jpg" alt="Passports" />Why we quit Australia for the UK</a>
1172
+
1173
+ </h5>
1174
+
1175
+
1176
+ <p>We received hundreds of emails in response to our story about the large numbers of British people giving up on life in Australia. Some readers have been sharing their experiences of leaving - and staying - Down Under. </p>
1177
+ <hr />
1178
+ </li>
1179
+
1180
+ </ul>
1181
+
1182
+
1183
+ </div>
1184
+ <script type="text/javascript">$render("hyper-related-assets","group-title-5");</script>
1185
+
1186
+
1187
+
1188
+ </div>
1189
+
1190
+ </div>
1191
+
1192
+
1193
+
1194
+ <script type="text/javascript">$render("page-newstracker","ID");</script>
1195
+
1196
+
1197
+ <div class="related-internet-links">
1198
+ <h3>Related Internet links</h3>
1199
+ <ul class="related-links">
1200
+
1201
+ <li class="column-1 first-child">
1202
+ <a href="http://www.timclayton.co.uk/">Tim Clayton</a>
1203
+ </li>
1204
+ </ul>
1205
+ </div>
1206
+
1207
+
1208
+ <p class="disclaimer">The BBC is not responsible for the content of external Internet sites</p>
1209
+ </div>
1210
+ <script type="text/javascript">$render("page-related-items","ID");</script>
1211
+
1212
+ </div>
1213
+
1214
+
1215
+ <div class="share-body-bottom">
1216
+ <div id="page-bookmark-links-foot" class="share-help">
1217
+ <h3>Share this page</h3>
1218
+ <ul>
1219
+ <li class="delicious">
1220
+ <a title="Post this story to Delicious" href="http://del.icio.us/post?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">Delicious</a>
1221
+ </li>
1222
+ <li class="digg">
1223
+ <a title="Post this story to Digg" href="http://digg.com/submit?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">Digg</a>
1224
+ </li>
1225
+ <li class="facebook">
1226
+ <a title="Post this story to Facebook" href="http://www.facebook.com/sharer.php?u=http://www.bbc.co.uk/news/magazine-15959067&amp;t=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">Facebook</a>
1227
+ </li>
1228
+ <li class="reddit">
1229
+ <a title="Post this story to reddit" href="http://reddit.com/submit?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">reddit</a>
1230
+ </li>
1231
+ <li class="stumbleupon">
1232
+ <a title="Post this story to StumbleUpon" href="http://www.stumbleupon.com/submit?url=http://www.bbc.co.uk/news/magazine-15959067&amp;title=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia">StumbleUpon</a>
1233
+ </li>
1234
+ <li class="twitter">
1235
+ <a title="Post this story to Twitter" href="http://twitter.com/home?status=BBC+News+-+Submarine+escape%3A+A+WWII+survival+tale+from+Kefalonia+http://www.bbc.co.uk/news/magazine-15959067">Twitter</a>
1236
+ </li>
1237
+ <li class="email">
1238
+ <a title="Email this story" href="http://newsvote.bbc.co.uk/mpapps/pagetools/email/www.bbc.co.uk/news/magazine-15959067">Email</a>
1239
+ </li>
1240
+ <li class="print">
1241
+ <a title="Print this story" href="?print=true">Print</a>
1242
+ </li>
1243
+ </ul>
1244
+ <!-- Social media icons by Paul Annet | http://nicepaul.com/icons -->
1245
+
1246
+ <div class="bbccom_advert_placeholder">
1247
+ <script type="text/javascript">$render("advert","advert-sponsor-module","page-bookmark-links");</script>
1248
+ </div>
1249
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1250
+
1251
+ </div>
1252
+ <script type="text/javascript">
1253
+ <!--
1254
+ $render("page-bookmark-links","page-bookmark-links-foot",{
1255
+ useForgeShareTools:"true",
1256
+ position:"bottom",
1257
+ site:'News',
1258
+ headline:'BBC News - Submarine escape: A WWII survival tale from Kefalonia',
1259
+ storyId:'15959067',
1260
+ sectionId:'99189',
1261
+ url:'http://www.bbc.co.uk/news/magazine-15959067',
1262
+ edition:'International'
1263
+ });
1264
+ -->
1265
+ </script>
1266
+
1267
+ </div>
1268
+
1269
+
1270
+
1271
+ <div class="bbccom_advert_placeholder">
1272
+ <script type="text/javascript">$render("advert","advert-google-adsense");</script>
1273
+ </div>
1274
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1275
+
1276
+
1277
+
1278
+ </div><!-- / layout-block-a -->
1279
+
1280
+ <div class="layout-block-b">
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+ <div class="hyperpuff">
1287
+
1288
+ <div class="bbccom_advert_placeholder">
1289
+ <script type="text/javascript">$render("advert","advert-mpu-high");</script>
1290
+ </div>
1291
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+ <div id="range-top-stories" class="top-stories-range-module">
1298
+
1299
+ <h2 class="top-stories-range-module-header">Top Stories</h2>
1300
+
1301
+
1302
+
1303
+ <!-- Non specific version -->
1304
+
1305
+ <ul>
1306
+
1307
+
1308
+
1309
+
1310
+
1311
+
1312
+
1313
+
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+
1320
+ <li class=" first-child medium-image">
1321
+ <a class="story" rel="published-1322811623809" href="/news/world-europe-15997784"><img src="http://news.bbcimg.co.uk/media/images/57082000/jpg/_57082329_013435550-1.jpg" alt="German Chancellor Angela Merkel addresses the Bundestag in Berlin on 2 December 2011" />Merkel pushes euro fiscal union</a>
1322
+
1323
+ </li>
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+ <li>
1339
+ <a class="story" rel="published-1322795341936" href="/news/world-asia-15997268">Suu Kyi hopeful on Burma progress</a>
1340
+
1341
+ </li>
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+ <li>
1357
+ <a class="story" rel="published-1322823493278" href="/news/world-africa-16000522">Nando&#039;s axes Mugabe &#039;dictator&#039; ad</a>
1358
+
1359
+ </li>
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+ <li>
1375
+ <a class="story" rel="published-1322833347815" href="/news/business-16005502">Unemployment in US falls to 8.6%</a>
1376
+
1377
+ </li>
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+ <li>
1393
+ <a class="story" rel="published-1322825345909" href="/news/world-africa-16003299">ICC seeks Sudan minister&#039;s arrest</a>
1394
+
1395
+ </li>
1396
+
1397
+ </ul>
1398
+
1399
+
1400
+
1401
+ </div>
1402
+ <script type="text/javascript">$render("range-top-stories","range-top-stories");</script>
1403
+
1404
+
1405
+
1406
+ <div class="bbccom_advert_placeholder">
1407
+ <script type="text/javascript">$render("advert","advert-mpu-low");</script>
1408
+ </div>
1409
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1410
+
1411
+
1412
+
1413
+ <div id="features" class="feature-generic">
1414
+
1415
+ <h2 class="features-header">Features &amp; Analysis</h2>
1416
+
1417
+ <ul class="feature-main">
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+ <!-- Specific version for 15959067 -->
1424
+
1425
+
1426
+
1427
+ <li class="medium-image">
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+ <h3 class=" feature-header">
1443
+ <a class="story" rel="published-1322784486414" href="/news/magazine-15988056"><img src="http://news.bbcimg.co.uk/media/images/57071000/jpg/_57071447_streep_pathe144.jpg" alt="Meryl Streep" />It&#039;s quiz time!</a>
1444
+
1445
+ </h3>
1446
+
1447
+
1448
+ <p>Meryl Streep&#039;s last Oscar was for which film?
1449
+ <span id="dna-comment-count___CPS__15988056" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1450
+
1451
+ <hr />
1452
+ </li>
1453
+
1454
+
1455
+ <li class="medium-image">
1456
+
1457
+
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+ <h3 class=" feature-header">
1471
+ <a class="story" rel="published-1322824699439" href="/news/world-middle-east-15948031"><img src="http://news.bbcimg.co.uk/media/images/57082000/jpg/_57082020_al_thani_afp144.jpg" alt="Qatari prime minister" />League of its own</a>
1472
+
1473
+ </h3>
1474
+
1475
+
1476
+ <p>How Arab leaders embraced revolution
1477
+ <span id="dna-comment-count___CPS__15948031" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1478
+
1479
+ <hr />
1480
+ </li>
1481
+
1482
+
1483
+ <li class="medium-image">
1484
+
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+ <h3 class=" feature-header">
1499
+ <a class="story" rel="published-1322830041714" href="/news/in-pictures-16000230"><img src="http://news.bbcimg.co.uk/media/images/57085000/jpg/_57085352_99898.jpg" alt="Delegates are seen beneath a ceiling painted by Spanish artist Miquel Barcelo during a special session of the UN Human Rights Council, Geneva" />Day in pictures</a>
1500
+
1501
+ </h3>
1502
+
1503
+
1504
+ <p>24 hours of news photos from around the world
1505
+ <span id="dna-comment-count___CPS__16000230" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1506
+
1507
+ <hr />
1508
+ </li>
1509
+
1510
+
1511
+
1512
+
1513
+ </ul>
1514
+ </div>
1515
+ <script type="text/javascript">$render("feature-generic","features");</script>
1516
+
1517
+
1518
+
1519
+ <div id="most-popular" class="livestats livestats-tabbed tabbed range-most-popular">
1520
+
1521
+ <h2 class="livestats-header">Most Popular</h2>
1522
+
1523
+
1524
+ <h3 class="tab "><a href="#">Shared</a></h3>
1525
+
1526
+ <div class="panel ">
1527
+ <ol>
1528
+ <li
1529
+ class="first-child ol1">
1530
+ <a
1531
+ href="http://www.bbc.co.uk/news/world-europe-15995845"
1532
+ class="story">
1533
+ <span
1534
+ class="livestats-icon livestats-1">1: </span>New Icelandic volcano eruption could have global impact</a>
1535
+ </li>
1536
+ <li
1537
+ class="ol2">
1538
+ <a
1539
+ href="http://www.bbc.co.uk/news/magazine-15959067"
1540
+ class="story">
1541
+ <span
1542
+ class="livestats-icon livestats-2">2: </span>Escape from a WWII submarine</a>
1543
+ </li>
1544
+ <li
1545
+ class="ol3">
1546
+ <a
1547
+ href="http://www.bbc.co.uk/news/uk-15999234"
1548
+ class="story">
1549
+ <span
1550
+ class="livestats-icon livestats-3">3: </span>Clarkson complaints reach 21,000</a>
1551
+ </li>
1552
+ <li
1553
+ class="ol4">
1554
+ <a
1555
+ href="http://www.bbc.co.uk/news/world-africa-16000522"
1556
+ class="story">
1557
+ <span
1558
+ class="livestats-icon livestats-4">4: </span>Nando's axes Mugabe 'dictator' ad</a>
1559
+ </li>
1560
+ <li
1561
+ class="ol5">
1562
+ <a
1563
+ href="http://www.bbc.co.uk/news/world-latin-america-16000331"
1564
+ class="story">
1565
+ <span
1566
+ class="livestats-icon livestats-5">5: </span>'No 2012 end of world' for Maya</a>
1567
+ </li>
1568
+ </ol>
1569
+ </div>
1570
+
1571
+ <h3 class="tab open"><a href="#">Read</a></h3>
1572
+
1573
+ <div class="panel open">
1574
+ <ol>
1575
+ <li
1576
+ class="first-child ol1">
1577
+ <a
1578
+ href="http://www.bbc.co.uk/news/world-asia-16008958"
1579
+ class="story">
1580
+ <span
1581
+ class="livestats-icon livestats-1">1: </span>Furore over Pakistan 'ISI' photo</a>
1582
+ </li>
1583
+ <li
1584
+ class="ol2">
1585
+ <a
1586
+ href="http://www.bbc.co.uk/news/world-europe-15997784"
1587
+ class="story">
1588
+ <span
1589
+ class="livestats-icon livestats-2">2: </span>Merkel pushes euro fiscal union</a>
1590
+ </li>
1591
+ <li
1592
+ class="ol3">
1593
+ <a
1594
+ href="http://www.bbc.co.uk/news/world-europe-16000340"
1595
+ class="story">
1596
+ <span
1597
+ class="livestats-icon livestats-3">3: </span>Jail for 'stupidest bank robber' </a>
1598
+ </li>
1599
+ <li
1600
+ class="ol4">
1601
+ <a
1602
+ href="http://www.bbc.co.uk/news/magazine-15959067"
1603
+ class="story">
1604
+ <span
1605
+ class="livestats-icon livestats-4">4: </span>Escape from a WWII submarine</a>
1606
+ </li>
1607
+ <li
1608
+ class="ol5">
1609
+ <a
1610
+ href="http://www.bbc.co.uk/news/world-asia-india-15997648"
1611
+ class="story">
1612
+ <span
1613
+ class="livestats-icon livestats-5">5: </span>India Dalit boy 'killed for name'</a>
1614
+ </li>
1615
+ <li
1616
+ class="ol6">
1617
+ <a
1618
+ href="http://www.bbc.co.uk/news/world-africa-16000522"
1619
+ class="story">
1620
+ <span
1621
+ class="livestats-icon livestats-6">6: </span>Nando's axes Mugabe 'dictator' ad</a>
1622
+ </li>
1623
+ <li
1624
+ class="ol7">
1625
+ <a
1626
+ href="http://www.bbc.co.uk/news/uk-15999234"
1627
+ class="story">
1628
+ <span
1629
+ class="livestats-icon livestats-7">7: </span>Clarkson complaints reach 21,000</a>
1630
+ </li>
1631
+ <li
1632
+ class="ol8">
1633
+ <a
1634
+ href="http://www.bbc.co.uk/news/in-pictures-16000230"
1635
+ class="story">
1636
+ <span
1637
+ class="livestats-icon livestats-8">8: </span>Day in pictures: 2 December 2011</a>
1638
+ </li>
1639
+ <li
1640
+ class="ol9">
1641
+ <a
1642
+ href="http://www.bbc.co.uk/news/business-16005502"
1643
+ class="story">
1644
+ <span
1645
+ class="livestats-icon livestats-9">9: </span>US jobless rate drops to 8.6%</a>
1646
+ </li>
1647
+ <li
1648
+ class="ol10">
1649
+ <a
1650
+ href="http://www.bbc.co.uk/news/world-europe-15995845"
1651
+ class="story">
1652
+ <span
1653
+ class="livestats-icon livestats-10">10: </span>New Icelandic volcano eruption could have global impact</a>
1654
+ </li>
1655
+ </ol>
1656
+ </div>
1657
+
1658
+ <h3 class="tab "><a href="#">Video/Audio</a></h3>
1659
+
1660
+ <div class="panel ">
1661
+ <ol>
1662
+ <li
1663
+ class="first-child has-icon-watch ol1">
1664
+ <a
1665
+ href="http://www.bbc.co.uk/2/hi/programmes/click_online/9653411.stm"
1666
+ class="story">
1667
+ <span
1668
+ class="livestats-icon livestats-1">1: </span>A touchscreen car and other tech news<span
1669
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1670
+ </li>
1671
+ <li
1672
+ class="has-icon-watch ol2">
1673
+ <a
1674
+ href="http://www.bbc.co.uk/news/video_and_audio/"
1675
+ class="story">
1676
+ <span
1677
+ class="livestats-icon livestats-2">2: </span>One-minute World News<span
1678
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1679
+ </li>
1680
+ <li
1681
+ class="has-icon-watch ol3">
1682
+ <a
1683
+ href="http://www.bbc.co.uk/news/world-us-canada-15997347"
1684
+ class="story">
1685
+ <span
1686
+ class="livestats-icon livestats-3">3: </span>Obamas embrace Christmas with Kermit<span
1687
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1688
+ </li>
1689
+ <li
1690
+ class="has-icon-watch ol4">
1691
+ <a
1692
+ href="http://www.bbc.co.uk/news/world-africa-16002239"
1693
+ class="story">
1694
+ <span
1695
+ class="livestats-icon livestats-4">4: </span>Nando's 'Mugabe' ad causes controversy<span
1696
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1697
+ </li>
1698
+ <li
1699
+ class="has-icon-watch ol5">
1700
+ <a
1701
+ href="http://www.bbc.co.uk/news/uk-15997820"
1702
+ class="story">
1703
+ <span
1704
+ class="livestats-icon livestats-5">5: </span>Public sector strikers 'should be shot'<span
1705
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1706
+ </li>
1707
+ <li
1708
+ class="has-icon-watch ol6">
1709
+ <a
1710
+ href="http://www.bbc.co.uk/news/world-europe-15996754"
1711
+ class="story">
1712
+ <span
1713
+ class="livestats-icon livestats-6">6: </span>Icelandic volcano flood warning <span
1714
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1715
+ </li>
1716
+ <li
1717
+ class="has-icon-watch ol7">
1718
+ <a
1719
+ href="http://www.bbc.co.uk/news/world-europe-15995948"
1720
+ class="story">
1721
+ <span
1722
+ class="livestats-icon livestats-7">7: </span>Inside Warsaw's Euro 2012 stadium<span
1723
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1724
+ </li>
1725
+ <li
1726
+ class="has-icon-watch ol8">
1727
+ <a
1728
+ href="http://www.bbc.co.uk/news/business-15978276"
1729
+ class="story">
1730
+ <span
1731
+ class="livestats-icon livestats-8">8: </span>Tokyo Motor Show: Is hi-tech the answer?<span
1732
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1733
+ </li>
1734
+ <li
1735
+ class="has-icon-watch ol9">
1736
+ <a
1737
+ href="http://www.bbc.co.uk/news/world-asia-15997908"
1738
+ class="story">
1739
+ <span
1740
+ class="livestats-icon livestats-9">9: </span>Clinton: Democracy is the goal<span
1741
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1742
+ </li>
1743
+ <li
1744
+ class="has-icon-watch ol10">
1745
+ <a
1746
+ href="http://www.bbc.co.uk/news/10317943"
1747
+ class="story">
1748
+ <span
1749
+ class="livestats-icon livestats-10">10: </span>Anger at Clarkson and more news<span
1750
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1751
+ </li>
1752
+ </ol>
1753
+ </div>
1754
+
1755
+ <div class="bbccom_advert_placeholder">
1756
+ <script type="text/javascript">$render("advert","advert-sponsor-module","range-most-popular","most-popular");</script>
1757
+ </div>
1758
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1759
+
1760
+ </div>
1761
+
1762
+ <script type="text/javascript">$render("most-popular","most-popular");</script>
1763
+
1764
+ </div>
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ <div class="hyperpuff">
1774
+ <div id="promotional-content" class="hyper-promotional-content">
1775
+
1776
+ <h2>Elsewhere on BBC News</h2>
1777
+
1778
+ <ul>
1779
+
1780
+
1781
+
1782
+ <li class="large-image first-child">
1783
+
1784
+
1785
+
1786
+
1787
+
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+
1796
+ <h3>
1797
+ <a class="story" rel="published-1322738381158" href="http://www.bbc.co.uk/news/business-15980470"><img src="http://news.bbcimg.co.uk/media/images/57056000/jpg/_57056172_zhai624.jpg" alt="Zhai Meiqing" />Giving a bit back</a>
1798
+
1799
+ </h3>
1800
+
1801
+ <p>The entrepreneur and now multi-millionaire at the forefront of China&#039;s new-found philanthropic thinking</p>
1802
+ </li>
1803
+ </ul>
1804
+
1805
+ <div class="bbccom_advert_placeholder">
1806
+ <script type="text/javascript">$render("advert","advert-sponsor-module","hyper-promotional-content","giving-a-bit-back");</script>
1807
+ </div>
1808
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1809
+
1810
+ </div>
1811
+ <script type="text/javascript">$render("hyper-promotional-content","promotional-content");</script>
1812
+
1813
+
1814
+ </div>
1815
+
1816
+
1817
+
1818
+ <div class="bbccom_advert_placeholder">
1819
+ <script type="text/javascript">$render("advert","advert-partner-button");</script>
1820
+ </div>
1821
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1822
+
1823
+
1824
+
1825
+
1826
+
1827
+
1828
+
1829
+ <div class="hyperpuff">
1830
+
1831
+
1832
+
1833
+ <div id="container-programme-promotion" class="container-programme-promotion">
1834
+ <h2 class="programmes-header">Programmes</h2>
1835
+
1836
+
1837
+
1838
+
1839
+ <ul class="programme-breakout">
1840
+
1841
+
1842
+
1843
+ <li class="first-child large-image">
1844
+
1845
+
1846
+
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+
1857
+ <h3 class=" programme-header">
1858
+ <a class="story" rel="published-1322819536000" href="/2/hi/programmes/click_online/9653411.stm"><img src="http://news.bbcimg.co.uk/media/images/57078000/jpg/_57078529_jex_1252322_de27-1.jpg" alt="Toyota Fun Vii" />Click<span class="gvl3-icon-wrapper"><span class="gvl3-icon gvl3-icon-invert-watch"> Watch</span></span></a>
1859
+
1860
+ </h3>
1861
+
1862
+ <p>Toyota&#039;s futuristic car that changes colour and other tech news in Click&#039;s weekly bulletin</p>
1863
+
1864
+
1865
+ <div class="bbccom_advert_placeholder">
1866
+ <script type="text/javascript">$render("advert","advert-sponsor-module","programme-breakout","click");</script>
1867
+ </div>
1868
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1869
+
1870
+ </li>
1871
+ </ul>
1872
+ </div>
1873
+ <script type="text/javascript">$render("container-programmes-promotion","container-programme-promotion");</script>
1874
+
1875
+ </div>
1876
+
1877
+
1878
+
1879
+ <div class="bbccom_advert_placeholder">
1880
+ <script type="text/javascript">$render("advert","advert-mpu-bottom");</script>
1881
+ </div>
1882
+ <script type="text/javascript">$render("advert-post-script-load");</script>
1883
+
1884
+
1885
+ </div>
1886
+
1887
+ <!-- END #MAIN-CONTENT & CPS_ASSET_TYPE CLASS: story -->
1888
+ </div>
1889
+ <!-- END CPS_AUDIENCE CLASS: international -->
1890
+
1891
+ </div>
1892
+ <div id="related-services" class="footer">
1893
+ <div id="news-services">
1894
+ <h2>Services</h2>
1895
+ <ul>
1896
+ <li id="service-feeds"><a href="http://www.bbc.co.uk/news/10628494"><span class="gvl3-feeds-icon-large services-icon">&nbsp;</span>News feeds</a></li>
1897
+ <li id="service-mobile" class="first-child"><a href="http://www.bbc.co.uk/news/help-10801499"><span class="gvl3-mobile-icon-large services-icon">&nbsp;</span>Mobile</a></li>
1898
+ <li id="service-podcasts"><a href="http://www.bbc.co.uk/podcasts/"><span class="gvl3-podcast-icon-large services-icon">&nbsp;</span>Podcasts</a></li>
1899
+ <li id="service-alerts"><a href="http://www.bbc.co.uk/news/10628323"><span class="gvl3-alerts-icon-large services-icon">&nbsp;</span>Alerts</a></li>
1900
+ <li id="service-email-news"><a href="http://newsvote.bbc.co.uk/email"><span class="gvl3-email-icon-large services-icon">&nbsp;</span>E-mail news</a></li>
1901
+ </ul>
1902
+ </div>
1903
+ <div id="news-related-sites">
1904
+ <h2>About BBC News</h2>
1905
+ <ul>
1906
+ <li class="column-1"><a href="http://www.bbc.co.uk/blogs/theeditors/">Editors' blog</a></li>
1907
+ <li class="column-1"><a href="http://www.bbc.co.uk/journalism/">BBC College of Journalism</a></li>
1908
+ <li class="column-1"><a href="http://www.bbc.co.uk/news/10621655">News sources</a></li>
1909
+ <li class="column-1"><a href="http://www.bbc.co.uk/worldservice/trust/">World Service Trust</a></li>
1910
+ </ul>
1911
+ </div>
1912
+ </div>
1913
+
1914
+
1915
+
1916
+
1917
+
1918
+
1919
+ </div><!-- close magazine -->
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+ </div> <div id="blq-mast" class="blq-rst blq-mast-light blq-new-nav" xml:lang="en-GB"> <div id="blq-acc-mobile"><a href="/news/mobile/" id="blq-acc-mobile-link">Mobile</a></div> <form method="get" action="http://search.bbc.co.uk/search" accept-charset="utf-8"> <p> <input type="hidden" name="go" value="toolbar" /> <input type="hidden" value="http://www.bbc.co.uk/news/magazine-15959067" name="uri" /> <input type="hidden" name="scope" value="news" /> <label for="blq-search" class="blq-hide">Search term:</label> <input id="blq-search" type="text" name="q" value="" maxlength="128" /> <input id="blq-search-btn" type="submit" value="Search" /> </p> </form> <h2 class="blq-hide">bbc.co.uk navigation</h2> <ul id="blq-nav-main" class="blq-not-uk"> <li id="blq-nav-n"><a href="http://www.bbc.co.uk/news/" hreflang="en-GB">News</a></li> <li id="blq-nav-s"><a href="http://news.bbc.co.uk/sport/" hreflang="en-GB">Sport</a></li> <li id="blq-nav-w"><a href="http://news.bbc.co.uk/weather/" hreflang="en-GB">Weather</a></li> <li id="blq-nav-tr"> <a href="http://www.bbc.com/travel/" hreflang="en-GB">Travel</a> </li> <li id="blq-nav-t"><a href="http://www.bbc.co.uk/tv/" hreflang="en-GB">TV</a></li> <li id="blq-nav-r"><a href="http://www.bbc.co.uk/radio/" hreflang="en-GB">Radio</a></li> <li id="blq-nav-m"><a href="#blq-nav">More</a></li> </ul> </div> <div id="blq-nav" class="blq-orange blq-rst"> <div id="blq-nav-links" class="blq-clearfix" xml:lang="en-GB"> <div id="blq-nav-links-inner"> <ul class="blq-nav-sub blq-first"> <li><a href="http://www.bbc.co.uk/cbbc/">CBBC</a></li> <li><a href="http://www.bbc.co.uk/cbeebies/">CBeebies</a></li> <li><a href="http://www.bbc.co.uk/comedy/">Comedy</a></li> <li><a href="http://www.bbc.co.uk/food/">Food</a></li> <li><a href="http://www.bbc.co.uk/health/">Health</a></li> </ul> <ul class="blq-nav-sub"> <li><a href="http://www.bbc.co.uk/history/">History</a></li> <li><a href="http://www.bbc.co.uk/learning/">Learning</a></li> <li><a href="http://www.bbc.co.uk/music/">Music</a></li> <li><a href="http://www.bbc.co.uk/science/">Science</a></li> <li><a href="http://www.bbc.co.uk/nature/">Nature</a></li> </ul> <ul class="blq-nav-sub blq-last"> <li><a href="http://www.bbc.co.uk/local/">Local</a></li> <li><a href="http://www.bbc.co.uk/northernireland/">Northern Ireland</a></li> <li><a href="http://www.bbc.co.uk/scotland/">Scotland</a></li> <li><a href="http://www.bbc.co.uk/wales/">Wales</a></li> <li id="blq-az"><a href="http://www.bbc.co.uk/a-z/">Full A-Z<span class="blq-hide"> of BBC sites</span></a></li> </ul> </div> </div> </div> <!--[if IE 6]> <div id="blq-ie6-upgrade"> <p> <span>You're using the Internet Explorer 6 browser to view the BBC website. Our site will work much better if you change to a more modern browser. It's free, quick and easy.</span> <a href="http://www.browserchoice.eu/">Find out more <span>about upgrading your browser</span> here&hellip;</a> </p> </div> <![endif]--> <div id="blq-foot" xml:lang="en-GB" class="blq-rst blq-clearfix blq-foot-transparent blq-foot-text-dark"> <div id="blq-footlinks"> <h2 class="blq-hide">BBC links</h2> <ul id="blq-bbclinks"> <li> <a href="http://www.bbc.co.uk/aboutthebbc/">About the BBC</a> </li> <li> <a href="http://www.bbc.co.uk/help/">BBC Help</a> </li> <li> <a href="http://news.bbc.co.uk/newswatch/ifs/hi/feedback/default.stm">Contact Us</a> </li> <li> <a href="http://www.bbc.co.uk/accessibility/">Accessibility Help</a> </li> <li> <a href="http://www.bbc.co.uk/terms/">Terms of Use</a> </li> <li> <a href="http://www.bbc.co.uk/careers/">Careers</a> </li> <li> <a href="http://www.bbc.co.uk/privacy/">Privacy &amp; Cookies</a> </li> <li> <a href="http://www.bbc.co.uk/bbc.com/furtherinformation/">Advertise With Us</a> </li> <li> <a href="http://www.bbc.co.uk/bbc.com/ad-choices/" hreflang="en-GB">Ad Choices</a> </li> </ul> </div> <p id="blq-logo" class="blq-footer-image-dark"><img src="http://static.bbc.co.uk/frameworks/barlesque/1.13.3/desktop/3/img/blocks/dark.png" width="84" height="24" alt="BBC" /></p> <p id="blq-disclaim"><span id="blq-copy">BBC &copy; 2011</span> <a href="http://www.bbc.co.uk/help/web/links/">The BBC is not responsible for the content of external sites. Read more.</a></p> <div id="blq-obit"><p><strong>This page is best viewed in an up-to-date web browser with style sheets (CSS) enabled. While you will be able to view the content of this page in your current browser, you will not be able to get the full visual experience. Please consider upgrading your browser software or enabling style sheets (CSS) if you are able to do so.</strong></p></div> </div> </div>
1927
+ <div id="bbccomWebBug" class="bbccomWebBug"></div>
1928
+ <script type="text/javascript">
1929
+ bbcdotcom.stats = {
1930
+ "adEnabled" : "yes",
1931
+ "contentType" : "HTML",
1932
+ "audience" : "br"
1933
+ };
1934
+ </script>
1935
+
1936
+ <script type="text/javascript" src="http://js.revsci.net/gateway/gw.js?csid=J08781"></script>
1937
+ <script type="text/javascript">
1938
+ /*<![CDATA[*/
1939
+ var adKeyword = document.getElementsByName('ad_keyword');
1940
+ if('/news/uk-11767495' == window.location.pathname) {
1941
+ J08781.DM_addEncToLoc("Section","Royal Wedding");
1942
+ } else if (undefined != adKeyword[0]) {
1943
+ J08781.DM_addEncToLoc("Section",adKeyword[0].content);
1944
+ } else if ("undefined" != typeof bbc &&
1945
+ "undefined" != typeof bbc.fmtj &&
1946
+ "undefined" != typeof bbc.fmtj.page &&
1947
+ "undefined" != typeof bbc.fmtj.page.section) {
1948
+ J08781.DM_addEncToLoc("Section", bbc.fmtj.page.section);
1949
+ }
1950
+ J08781.DM_tag();
1951
+ /*]]>*/
1952
+ </script>
1953
+
1954
+
1955
+ <!-- SiteCatalyst code version: H.21.
1956
+ Copyright 1996-2010 Adobe, Inc. All Rights Reserved
1957
+ More info available at http://www.omniture.com -->
1958
+
1959
+ <script type="text/javascript">
1960
+ var s_account = "bbcwglobalprod";
1961
+ </script>
1962
+
1963
+
1964
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/app/bbccom/0.3.87/s_code.js"></script>
1965
+
1966
+ <script type="text/javascript"><!--
1967
+ /* You may give each page an identifying name, server, and channel on
1968
+ the next lines. */
1969
+
1970
+ /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
1971
+ var s_code=scw.t();if(s_code)document.write(s_code)//--></script>
1972
+ <script type="text/javascript"><!--
1973
+ if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
1974
+ //--></script><noscript><div><a href="http://www.omniture.com" title="Web Analytics"><img
1975
+ src="http://bbc.112.2o7.net/b/ss/bbcwglobalprod/1/H.21--NS/0"
1976
+ height="1" width="1" alt="" /></a></div></noscript><!--/DO NOT REMOVE/-->
1977
+ <!-- End SiteCatalyst code version: H.21. -->
1978
+
1979
+
1980
+
1981
+ <!-- Begin comScore Tag -->
1982
+ <script type="text/javascript">
1983
+ document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));</script>
1984
+ <script type="text/javascript">
1985
+ COMSCORE.beacon({
1986
+ c1:2,
1987
+ c2:"6035051",
1988
+ c3:"",
1989
+ c4:"www.bbc.co.uk/news/magazine-15959067",
1990
+ c5:"",
1991
+ c6:"",
1992
+ c15:""
1993
+ });
1994
+ </script>
1995
+ <noscript>
1996
+ <div>
1997
+ <img src="http://b.scorecardresearch.com/b?c1=2&amp;c2=6035051&amp;c3=&amp;c4=www.bbc.co.uk/news/magazine-15959067&amp;c5=&amp;c6=&amp;c15=&amp;cv=1.3&amp;cj=1" style="display:none" width="0" height="0" alt="" />
1998
+ </div>
1999
+ </noscript>
2000
+ <!-- End comScore Tag -->
2001
+
2002
+ <!-- Begin Cedexis tag -->
2003
+ <script type="text/javascript">
2004
+ (function(w, d) {
2005
+ var a = function() {
2006
+ var a = d.createElement('script');
2007
+ a.type = 'text/javascript';
2008
+ a.async = 'async';
2009
+ a.src = '//' + ((w.location.protocol === 'https:') ? 's3.amazonaws.com/cdx-radar/' : 'radar.cedexis.com/') + '01-10271-radar10.min.js';
2010
+ d.body.appendChild(a);
2011
+ };
2012
+ if (w.addEventListener) {
2013
+ w.addEventListener('load', a, false);
2014
+ } else if (w.attachEvent) {
2015
+ w.attachEvent('onload', a);
2016
+ }
2017
+ }(window, document));
2018
+ </script>
2019
+ <!-- End Cedexis tag -->
2020
+
2021
+
2022
+
2023
+
2024
+
2025
+
2026
+
2027
+
2028
+
2029
+
2030
+
2031
+
2032
+ <!-- Effective Measure BBCCOM-1195 -->
2033
+ <script type="text/javascript">
2034
+ (function() {
2035
+ var em = document.createElement('script'); em.type = 'text/javascript'; em.async = true;
2036
+ em.src = ('https:' == document.location.protocol ? 'https://me-ssl' : 'http://me-cdn') + '.effectivemeasure.net/em.js';
2037
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(em, s);
2038
+ })();
2039
+ </script>
2040
+ <noscript>
2041
+ <div>
2042
+ <img src="//me.effectivemeasure.net/em_image" alt="" style="position:absolute; left:-5px;" />
2043
+ </div>
2044
+ </noscript>
2045
+ <!-- End Effective Measure -->
2046
+
2047
+
2048
+ <!-- Start QuBit -->
2049
+ <script type="text/javascript" src="//d3c3cq33003psk.cloudfront.net/bbc-filter.js" defer="defer"></script>
2050
+ <!-- End QuBit -->
2051
+ </div> </div> <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementById('blq-main') }); istats.track('download', { region: document.getElementById('blq-main') }); }); } </script>
2052
+
2053
+
2054
+ <!-- shared/foot -->
2055
+ <script type="text/javascript">
2056
+ bbc.fmtj.common.removeNoScript({});
2057
+ bbc.fmtj.common.tabs.createTabs({});
2058
+ </script>
2059
+ <!-- hi/news/foot.inc -->
2060
+ <!-- shared/foot_story -->
2061
+ <!-- #CREAM hi news international foot.inc -->
2062
+
2063
+
2064
+
2065
+ </body>
2066
+ </html>
2067
+
2068
+
2069
+