web-page-parser 1.1.0 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +5 -5
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/lib/web-page-parser/parsers/bbc_news_page_parser.rb +56 -3
  5. data/lib/web-page-parser/parsers/guardian_page_parser.rb +33 -3
  6. data/lib/web-page-parser/parsers/independent_page_parser.rb +2 -2
  7. data/lib/web-page-parser/parsers/new_york_times_page_parser.rb +8 -3
  8. data/lib/web-page-parser/parsers/rt_page_parser.rb +49 -0
  9. data/lib/web-page-parser/parsers/the_intercept_page_parser.rb +6 -1
  10. data/lib/web-page-parser/parsers/washingtonpost_page_parser.rb +38 -2
  11. data/spec/fixtures/bbc_news/31014941.html +1123 -0
  12. data/spec/fixtures/bbc_news/32271505.html +1168 -0
  13. data/spec/fixtures/bbc_news/32275608.html +1142 -0
  14. data/spec/fixtures/guardian/duplicate-headline.html +2735 -0
  15. data/spec/fixtures/guardian/julian-assange-donald-trump-hillary-clinton-interview.html +1752 -0
  16. data/spec/fixtures/guardian/university-extremist-speakers.html +1590 -0
  17. data/spec/fixtures/independent/boris-johnson.html +1086 -0
  18. data/spec/fixtures/independent/lord-burns.html +726 -0
  19. data/spec/fixtures/new_york_times/show-banned-french-comedian-has-new-one-2018.html +305 -0
  20. data/spec/fixtures/new_york_times/trump-kim-policy.html +305 -0
  21. data/spec/fixtures/rt/338045.html +682 -0
  22. data/spec/fixtures/rt/338237.html +682 -0
  23. data/spec/fixtures/theintercept/pentagon-missionary.html +211 -0
  24. data/spec/fixtures/washingtonpost/israeli-ambassador.html +747 -0
  25. data/spec/fixtures/washingtonpost/sgt-bowe-bergdahls-capture-remains-amystery-2018.html +381 -0
  26. data/spec/fixtures/washingtonpost/trump-kim-summit.html +379 -0
  27. data/spec/fixtures/washingtonpost/will-a-bust-follow-the-boom-in-britain-2018.html +386 -0
  28. data/spec/parsers/bbc_news_page_spec.rb +132 -11
  29. data/spec/parsers/guardian_page_spec.rb +100 -0
  30. data/spec/parsers/independent_page_parser_spec.rb +52 -0
  31. data/spec/parsers/new_york_times_page_parser_spec.rb +75 -10
  32. data/spec/parsers/rt_page_parser_spec.rb +87 -0
  33. data/spec/parsers/the_intercept_page_parser_spec.rb +30 -0
  34. data/spec/parsers/washingtonpost_page_parser_spec.rb +93 -1
  35. data/spec/web-page-parser +1 -0
  36. metadata +98 -56
  37. metadata.gz.sig +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 03275ebf096ab1230e14cc43df8d273bfb39a4de
4
- data.tar.gz: 628fb68509c4352ac1962036cf1e33c0a51e9390
2
+ SHA256:
3
+ metadata.gz: 102673d611bfc1084f5589446aa1af2c5f13c284fecb886b390388016840fc3e
4
+ data.tar.gz: 7007c1d110671741727f0ff3ba4765caf572f7569b2bac16a28ff59355e4ab61
5
5
  SHA512:
6
- metadata.gz: efb4b1cde955569cb14431a8d3748a348255a408acd15c7975715fd1b56a909489a143d2869187b834c066d6763a13276f7cc8b548112d61ea054fad0b8164ac
7
- data.tar.gz: 083055dbff7568b6576a64c191d57406a316aaabd60e59f1eb77a2c960ed125899ead48cf2dcb3d894b2955f2d76d7a8494240d94bc3b2990e71b9485a51c62a
6
+ metadata.gz: 185c883bd54d06e541f866cc296347837efe8fd7d55f32c272269e07ab8cee8cacb320787e1dcfe6b3da47070cd8897340a32c622a19e9035a62ff009fef4379
7
+ data.tar.gz: e4dcf1155e02160b64a38286b0f8b74b39b26375f6b775b29b6fcdfc10e3f6e9c4955011a4b212e7358601cd47c796265155905f7ee23aa2c72eba2963b7be7f
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -2,7 +2,7 @@
2
2
  module WebPageParser
3
3
 
4
4
  class BbcNewsPageParserFactory < WebPageParser::ParserFactory
5
- URL_RE = ORegexp.new("(www|news)\.bbc\.co\.uk/.+/([a-z-]+-)?[0-9]+(\.stm)?$")
5
+ URL_RE = ORegexp.new("(www|news)\.bbc\.co\.uk/.+/([a-z-]+-)?[0-9-]+(\.stm)?$")
6
6
  INVALID_URL_RE = ORegexp.new("in_pictures|pop_ups|sport1")
7
7
 
8
8
  def self.can_parse?(options)
@@ -148,9 +148,12 @@ module WebPageParser
148
148
 
149
149
  def title
150
150
  return @title if @title
151
- @title = html_doc.css('h1.story-header').text.strip
151
+ @title = html_doc.css('h1.story-body__h1').text.strip
152
152
 
153
153
  # for older bbc articles
154
+ if @title.empty?
155
+ @title = html_doc.css('h1.story-header').text.strip
156
+ end
154
157
  if @title.empty?
155
158
  @title = html_doc.css('div#meta-information h1').text.strip
156
159
  end
@@ -168,7 +171,13 @@ module WebPageParser
168
171
  def content
169
172
  return @content if @content
170
173
  @content = []
171
- story_body = html_doc.css('div.story-body')
174
+
175
+ story_body = html_doc.css('div.story-body > div.story-body__inner')
176
+
177
+ # Pre April 2015
178
+ if story_body.children.empty?
179
+ story_body = html_doc.css('div.story-body')
180
+ end
172
181
 
173
182
  # for older bbc articles
174
183
  if story_body.children.empty?
@@ -182,7 +191,10 @@ module WebPageParser
182
191
 
183
192
  story_body.children.each do |n|
184
193
  @content << n.text.strip if n.name == 'p'
194
+ # Pre-April 2015 headings
185
195
  @content << n.text.strip if n.name == 'span' and n['class'].include? 'cross-head'
196
+ # Post April 2015 headings
197
+ @content << n.text.strip if n.name == 'h2' and n['class'].to_s =~ /crosshead/
186
198
  end
187
199
  @content
188
200
  end
@@ -197,5 +209,46 @@ module WebPageParser
197
209
 
198
210
  end
199
211
 
212
+ class BbcNewsPageParserV6 < WebPageParser::BaseParser
213
+ require 'nokogiri'
214
+
215
+ def html_doc
216
+ @html_document ||= Nokogiri::HTML(page)
217
+ end
218
+
219
+ def title
220
+ @title ||= html_doc.css('h1.story-body__h1').text.strip
221
+ end
222
+
223
+ def content
224
+ return @content if @content
225
+ @content = []
226
+
227
+ story_body = html_doc.css('div.story-body > div.story-body__inner')
228
+
229
+ story_body.children.each do |n|
230
+ case n.name
231
+ when 'p', 'h2', 'h3'
232
+ @content << n.text.strip
233
+ when 'ul'
234
+ if n['class'] =~ /story-body/
235
+ n.css('li').each do |li|
236
+ @content << li.text.strip
237
+ end
238
+ end
239
+ end
240
+ end
241
+ @content
242
+ end
243
+
244
+ def date
245
+ return @date if @date
246
+ if date_meta = html_doc.at_css('meta[name=OriginalPublicationDate]')
247
+ @date = DateTime.parse(date_meta['content']) rescue nil
248
+ end
249
+ @date
250
+ end
251
+
252
+ end
200
253
 
201
254
  end
@@ -9,7 +9,7 @@ module WebPageParser
9
9
  end
10
10
 
11
11
  def self.create(options = {})
12
- GuardianPageParserV2.new(options)
12
+ GuardianPageParserV3.new(options)
13
13
  end
14
14
  end
15
15
 
@@ -56,13 +56,27 @@ module WebPageParser
56
56
  @html_document ||= Nokogiri::HTML(page)
57
57
  end
58
58
 
59
+ def css_first_text(top_e, *selectors)
60
+ selectors.each do |s|
61
+ top_e.css(s).each do |e|
62
+ next if e.nil?
63
+ text = e.text.strip
64
+ return text unless text.empty?
65
+ end
66
+ end
67
+ nil
68
+ end
69
+
59
70
  def title
60
- @title ||= html_doc.css('div#main-article-info h1:first').text.strip
71
+ return @title if @title
72
+ @title = css_first_text(html_doc, 'h1[itemprop=headline]', 'div#main-article-info h1:first')
73
+ @title = html_doc.css('title').text.split('|').first.strip if @title.nil?
74
+ @title
61
75
  end
62
76
 
63
77
  def content
64
78
  return @content if @content
65
- story_body = html_doc.css('div#article-body-blocks *').select do |e|
79
+ story_body = html_doc.css('div#article-body-blocks *, div[itemprop=articleBody] *').select do |e|
66
80
  e.name == 'p' or e.name == 'h2' or e.name == 'h3'
67
81
  end
68
82
  story_body.collect { |p| p.text.empty? ? nil : p.text.strip }.compact
@@ -82,4 +96,20 @@ module WebPageParser
82
96
  end
83
97
  end
84
98
 
99
+ class GuardianPageParserV3 < GuardianPageParserV2
100
+ def content
101
+ return @content if @content
102
+ story_body = html_doc.css('div#article-body-blocks *, div[itemprop=articleBody] *').select do |e|
103
+ e.name == 'p' or e.name == 'h2' or e.name == 'h3' or e.name == 'ul'
104
+ end
105
+ story_body.collect do |p|
106
+ if p.name == 'ul'
107
+ p.css('li').collect { |li| li.text.empty? ? nil : li.text.strip }
108
+ else
109
+ p.text.empty? ? nil : p.text.strip
110
+ end
111
+ end.flatten.compact
112
+ end
113
+ end
114
+
85
115
  end
@@ -28,13 +28,13 @@ module WebPageParser
28
28
  end
29
29
 
30
30
  def title
31
- @title ||= html_doc.css('div#main h1.title').text.strip
31
+ @title ||= html_doc.css('div#main h1.title,article h1[itemprop="headline"]').text.strip
32
32
  end
33
33
 
34
34
  def content
35
35
  return @content if @content
36
36
  content = []
37
- story_body = html_doc.css('div.articleContent p')
37
+ story_body = html_doc.css('div.articleContent p,div[itemprop="articleBody"] > p')
38
38
  story_body.each do |p|
39
39
  p.search('script,object').remove
40
40
  p = p.text
@@ -84,9 +84,14 @@ module WebPageParser
84
84
  def content
85
85
  return @content if @content
86
86
  @content = []
87
- story_body = html_doc.css('p.story-content')
87
+ # 2018
88
+ story_body = html_doc.css('article#story div.StoryBodyCompanionColumn p')
88
89
  if story_body.empty?
89
- # old style
90
+ # 2017
91
+ story_body = html_doc.css('p.story-content')
92
+ end
93
+ if story_body.empty?
94
+ # older style
90
95
  story_body = html_doc.css('p[itemprop=articleBody]')
91
96
  end
92
97
  story_body.each do |p|
@@ -97,7 +102,7 @@ module WebPageParser
97
102
 
98
103
  def date
99
104
  return @date if @date
100
- if date_meta = html_doc.at_css('meta[name=dat]')
105
+ if date_meta = html_doc.at_css('meta[name=dat],meta[itemprop=datePublished]')
101
106
  @date = DateTime.parse(date_meta['content']) rescue nil
102
107
  end
103
108
  @date
@@ -0,0 +1,49 @@
1
+ module WebPageParser
2
+ class RTPageParserFactory < WebPageParser::ParserFactory
3
+ URL_RE = ORegexp.new("(www\.)?rt\.com/[^/]+/[0-9]+-.*$")
4
+ INVALID_URL_RE = ORegexp.new("/(in-vision|in-motion)/")
5
+ def self.can_parse?(options)
6
+ url = options[:url].split('#').first
7
+ return nil if INVALID_URL_RE.match(url)
8
+ URL_RE.match(url)
9
+ end
10
+
11
+ def self.create(options = {})
12
+ RTPageParserV1.new(options)
13
+ end
14
+ end
15
+
16
+ # RTPageParserV1 parses RT web pages using html parsing.
17
+ class RTPageParserV1 < WebPageParser::BaseParser
18
+ require 'nokogiri'
19
+
20
+ def html_doc
21
+ @html_document ||= Nokogiri::HTML(page)
22
+ end
23
+
24
+ def title
25
+ @title ||= html_doc.css('h1.article__heading').text.strip
26
+ end
27
+
28
+ def content
29
+ return @content if @content
30
+ story_summary = html_doc.css('div.article__summary').text.strip
31
+ story_body = html_doc.css('div.article__text > *').select do |e|
32
+ e.name == 'p' or e.name == 'h2' or e.name == 'h3'
33
+ end
34
+ story_body.collect! { |p| p.text.empty? ? nil : p.text.strip }.compact
35
+ story_body.unshift story_summary unless story_summary.empty?
36
+ story_body
37
+ end
38
+
39
+ def date
40
+ @date ||= DateTime.parse(html_doc.at_css('div.article time.date:first').text.strip)
41
+ end
42
+
43
+ def filter_url(url)
44
+ # some wierd guardian problem with some older articles
45
+ url.to_s.gsub("www.guprod.gnl", "www.guardian.co.uk")
46
+ end
47
+ end
48
+
49
+ end
@@ -42,7 +42,7 @@ module WebPageParser
42
42
 
43
43
  def content
44
44
  return @content if @content
45
- story_body = html_doc.css('article div.ti-body p').collect do |p|
45
+ story_body = html_doc.css('div.PostContent div p, article div.ti-body p').collect do |p|
46
46
  p.text.strip.gsub(160.chr(Encoding::UTF_8), ' ') # convert &nbsp; to actual space
47
47
  end
48
48
  @content = story_body.select { |p| !p.empty? }
@@ -55,6 +55,11 @@ module WebPageParser
55
55
  @date = DateTime.parse(date_string) rescue nil
56
56
  end
57
57
  return @date if @date
58
+ if date_span = html_doc.css('span.PostByline-date')
59
+ date_string = date_span.text.strip
60
+ @date = DateTime.parse(date_string) rescue nil
61
+ end
62
+ return @date if @date
58
63
  # failing that, get it from the url
59
64
  @date = DateTime.parse(url.scan(/[0-9]{4}\/[0-9]{2}\/[0-9]{2}/).first.to_s) rescue nil
60
65
  end
@@ -12,7 +12,7 @@ module WebPageParser
12
12
  end
13
13
 
14
14
  # WashingtonPostPageParserV1 parses washpo web pages using html
15
- # parsing.
15
+ # parsing. Doesn't work since 2018
16
16
  class WashingtonPostPageParserV1 < WebPageParser::BaseParser
17
17
  require 'nokogiri'
18
18
 
@@ -33,7 +33,7 @@ module WebPageParser
33
33
 
34
34
  def content
35
35
  return @content if @content
36
- story_body = html_doc.css('div.article_body *,div#main-content article *').select do |e|
36
+ story_body = html_doc.css('div.article_body *,div#main-content article *,article[itemprop="articleBody"] *').select do |e|
37
37
  next false if e.attributes['class'].to_s["pin-and-stack"]
38
38
  e.name == 'p' or e.name == 'blockquote'
39
39
  end
@@ -56,4 +56,40 @@ module WebPageParser
56
56
  @date
57
57
  end
58
58
  end
59
+
60
+ # WashingtonPostPageParserV2 parses washpo web pages using html
61
+ # parsing. Works since June 2018.
62
+ class WashingtonPostPageParserV2 < WebPageParser::BaseParser
63
+ require 'nokogiri'
64
+
65
+ # WashPo articles have a uuid in the url
66
+ def guid_from_url
67
+ # get the last large number from the url, if there is one
68
+ url.to_s.scan(/[a-f0-9-]{30,40}/).last
69
+ end
70
+
71
+ def html_doc
72
+ @html_document ||= Nokogiri::HTML(page)
73
+ end
74
+
75
+ def title
76
+ @title ||= html_doc.css('h1[itemprop="headline"]').text.strip
77
+ end
78
+
79
+ def content
80
+ return @content if @content
81
+ story_body = html_doc.css('article:first p,article:first div.subhead').collect { |p| p.text.strip }
82
+ @content = story_body.select { |p| !p.empty? }
83
+ end
84
+
85
+ def date
86
+ return @date if @date
87
+ if date_meta = html_doc.at_css('*[itemprop="datePublished"]')
88
+ @date = DateTime.parse(date_meta['content']).new_offset(0) rescue nil
89
+ end
90
+ @date
91
+ end
92
+
93
+ end
94
+
59
95
  end
@@ -0,0 +1,1123 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en-GB" id="responsive-news" prefix="og: http://ogp.me/ns#">
3
+ <head >
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6
+ <title>China media: Military might - BBC News</title>
7
+ <meta name="description" content="Papers play down doubts that China's planned military parade marking the end of Word War Two is aimed at 'taunting' Japan.">
8
+
9
+ <meta name="x-country" content="gb">
10
+ <meta name="x-audience" content="Domestic">
11
+ <meta name="CPS_AUDIENCE" content="Domestic">
12
+ <link rel="canonical" href="http://www.bbc.co.uk/news/world-asia-china-31014941">
13
+
14
+ <link rel="alternate" hreflang="en-gb" href="http://www.bbc.co.uk/news/world-asia-china-31014941">
15
+ <link rel="alternate" hreflang="en" href="http://www.bbc.com/news/world-asia-china-31014941">
16
+ <meta property="og:title" content="China media: Military might - BBC News" />
17
+ <meta property="og:type" content="article" />
18
+ <meta property="og:description" content="Papers play down doubts that China's planned military parade marking the end of Word War Two is aimed at 'taunting' Japan." />
19
+ <meta property="og:site_name" content="BBC News" />
20
+ <meta property="og:locale" content="en_GB" />
21
+ <meta property="og:article:author" content="BBC News" />
22
+ <meta property="og:article:section" content="China" />
23
+ <meta property="og:url" content="http://www.bbc.co.uk/news/world-asia-china-31014941" />
24
+ <meta property="og:image" content="http://ichef.bbci.co.uk/news/1024/media/images/80567000/jpg/_80567877_armychina-epa.jpg" />
25
+
26
+ <meta name="twitter:card" content="summary_large_image">
27
+ <meta name="twitter:site" content="@BBCNews">
28
+ <meta name="twitter:title" content="China media: Military might - BBC News">
29
+ <meta name="twitter:description" content="Papers play down doubts that China's planned military parade marking the end of Word War Two is aimed at 'taunting' Japan.">
30
+ <meta name="twitter:creator" content="@BBCNews">
31
+ <meta name="twitter:image:src" content="http://ichef.bbci.co.uk/news/560/media/images/80567000/jpg/_80567877_armychina-epa.jpg">
32
+ <meta name="twitter:domain" content="www.bbc.co.uk">
33
+
34
+ <script type="application/ld+json">
35
+ {
36
+ "@context": "http://schema.org"
37
+ ,"@type": "NewsArticle"
38
+ ,"description": "Papers play down doubts that China's planned military parade marking the end of Word War Two is aimed at 'taunting' Japan."
39
+ ,"url": "http://www.bbc.co.uk/news/world-asia-china-31014941"
40
+ ,"publisher": {
41
+ "@type": "Organization",
42
+ "name": "BBC News",
43
+ "logo": "http://www.bbc.co.uk/news/special/2015/newsspec_10857/bbc_news_logo.png?cb=1"
44
+ }
45
+
46
+ ,"headline": "China media: Military might"
47
+ ,"image": ["http://ichef.bbci.co.uk/news/560/media/images/80567000/jpg/_80567877_armychina-epa.jpg"]
48
+ ,"datePublished": "2015-01-28T06:38:34+00:00"
49
+ }
50
+ </script>
51
+
52
+
53
+ <meta name="apple-mobile-web-app-title" content="BBC News">
54
+ <link rel="apple-touch-icon-precomposed" sizes="57x57" href="http://static.bbci.co.uk/news/1.69.0321/apple-touch-icon-57x57-precomposed.png">
55
+ <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://static.bbci.co.uk/news/1.69.0321/apple-touch-icon-72x72-precomposed.png">
56
+ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://static.bbci.co.uk/news/1.69.0321/apple-touch-icon-114x114-precomposed.png">
57
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://static.bbci.co.uk/news/1.69.0321/apple-touch-icon.png">
58
+ <link rel="apple-touch-icon" href="http://static.bbci.co.uk/news/1.69.0321/apple-touch-icon.png">
59
+ <meta name="application-name" content="BBC News">
60
+ <meta name="msapplication-TileImage" content="http://static.bbci.co.uk/news/1.69.0321/windows-eight-icon-144x144.png">
61
+ <meta name="msapplication-TileColor" content="#CC0101">
62
+ <meta http-equiv="cleartype" content="on">
63
+ <meta name="mobile-web-app-capable" content="yes">
64
+ <meta name="robots" content="NOODP,NOYDIR" />
65
+ <meta name="theme-color" content="#cc0101">
66
+ <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
67
+
68
+ <script>
69
+ (function() {
70
+ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
71
+ var msViewportStyle = document.createElement("style");
72
+ msViewportStyle.appendChild(
73
+ document.createTextNode("@-ms-viewport{width:auto!important}")
74
+ );
75
+ document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
76
+ }
77
+ })();
78
+ </script>
79
+
80
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <script type="text/javascript">window.bbcredirection={geo:true}</script> <!--orb.ws.require.lib--> <script type="text/javascript">/*<![CDATA[*/ if (typeof window.define !== 'function' || typeof window.require !== 'function') { document.write('<script class="js-require-lib" src="http://static.bbci.co.uk/frameworks/requirejs/lib.js"><'+'/script>'); } /*]]>*/</script> <script type="text/javascript"> bbcRequireMap = {"jquery-1":"http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.7.2", "jquery-1.4":"http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.4", "jquery-1.9":"http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.9.1", "swfobject-2":"http://static.bbci.co.uk/frameworks/swfobject/0.1.10/sharedmodules/swfobject-2", "demi-1":"http://static.bbci.co.uk/frameworks/demi/0.10.0/sharedmodules/demi-1", "gelui-1":"http://static.bbci.co.uk/frameworks/gelui/0.9.13/sharedmodules/gelui-1", "cssp!gelui-1/overlay":"http://static.bbci.co.uk/frameworks/gelui/0.9.13/sharedmodules/gelui-1/overlay.css", "istats-1":"http://static.bbci.co.uk/frameworks/istats/0.26.31/modules/istats-1", "relay-1":"http://static.bbci.co.uk/frameworks/relay/0.2.6/sharedmodules/relay-1", "clock-1":"http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/clock-1", "canvas-clock-1":"http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/canvas-clock-1", "cssp!clock-1":"http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/clock-1.css", "jssignals-1":"http://static.bbci.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1", "jcarousel-1":"http://static.bbci.co.uk/frameworks/jcarousel/0.1.10/modules/jcarousel-1", "bump-3":"//emp.bbci.co.uk/emp/bump-3/bump-3"}; require({ baseUrl: 'http://static.bbci.co.uk/', paths: bbcRequireMap, waitSeconds: 30 }); </script> <script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies_flag === 'undefined') { bbccookies_flag = 'ON'; } showCTA_flag = true; cta_enabled = (showCTA_flag && (bbccookies_flag === 'ON')); (function(){var e="ckns_policy",m="Thu, 01 Jan 1970 00:00:00 GMT",k={ads:true,personalisation:true,performance:true,necessary:true};function f(p){if(f.cache[p]){return f.cache[p]}var o=p.split("/"),q=[""];do{q.unshift((o.join("/")||"/"));o.pop()}while(q[0]!=="/");f.cache[p]=q;return q}f.cache={};function a(p){if(a.cache[p]){return a.cache[p]}var q=p.split("."),o=[];while(q.length&&"|co.uk|com|".indexOf("|"+q.join(".")+"|")===-1){if(q.length){o.push(q.join("."))}q.shift()}f.cache[p]=o;return o}a.cache={};function i(o,t,p){var z=[""].concat(a(window.location.hostname)),w=f(window.location.pathname),y="",r,x;for(var s=0,v=z.length;s<v;s++){r=z[s];for(var q=0,u=w.length;q<u;q++){x=w[q];y=o+"="+t+";"+(r?"domain="+r+";":"")+(x?"path="+x+";":"")+(p?"expires="+p+";":"");bbccookies.set(y,true)}}}window.bbccookies={_setEverywhere:i,cookiesEnabled:function(){var o="ckns_testcookie"+Math.floor(Math.random()*100000);this.set(o+"=1");if(this.get().indexOf(o)>-1){g(o);return true}return false},set:function(o){return document.cookie=o},get:function(){return document.cookie},_setPolicy:function(o){return h.apply(this,arguments)},readPolicy:function(){return b.apply(this,arguments)},_deletePolicy:function(){i(e,"",m)},isAllowed:function(){return true},_isConfirmed:function(){return c()!==null},_acceptsAll:function(){var o=b();return o&&!(j(o).indexOf("0")>-1)},_getCookieName:function(){return d.apply(this,arguments)},_showPrompt:function(){var o=(!this._isConfirmed()&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable);return(window.orb&&window.orb.fig)?o&&(window.orb.fig("no")||window.orb.fig("ck")):o}};bbccookies._getPolicy=bbccookies.readPolicy;function d(p){var o=(""+p).match(/^([^=]+)(?==)/);return(o&&o.length?o[0]:"")}function j(o){return""+(o.ads?1:0)+(o.personalisation?1:0)+(o.performance?1:0)}function h(r){if(typeof r==="undefined"){r=k}if(typeof arguments[0]==="string"){var o=arguments[0],q=arguments[1];if(o==="necessary"){q=true}r=b();r[o]=q}else{if(typeof arguments[0]==="object"){r.necessary=true}}var p=new Date();p.setYear(p.getFullYear()+1);p=p.toUTCString();bbccookies.set(e+"="+j(r)+";domain=bbc.co.uk;path=/;expires="+p+";");bbccookies.set(e+"="+j(r)+";domain=bbc.com;path=/;expires="+p+";");return r}function l(o){if(o===null){return null}var p=o.split("");return{ads:!!+p[0],personalisation:!!+p[1],performance:!!+p[2],necessary:true}}function c(){var o=new RegExp("(?:^|; ?)"+e+"=(\\d\\d\\d)($|;)"),p=document.cookie.match(o);if(!p){return null}return p[1]}function b(o){var p=l(c());if(!p){p=k}if(o){return p[o]}else{return p}}function g(o){return document.cookie=o+"=;expires="+m+";"}function n(){var o='<script type="text/javascript" src="http://static.bbci.co.uk/frameworks/bbccookies/0.6.9/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})(); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/
81
+ (function(){window.fig=window.fig||{};window.fig.manager={include:function(a){a=a||window;var e=a.document,g=e.cookie,b=g.match(/(?:^|; ?)ckns_orb_fig=([^;]+)/);if(!b&&g.indexOf("ckns_orb_nofig=1")>-1){this.setFig(a,{no:1})}else{if(b){b=this.deserialise(decodeURIComponent(RegExp.$1));this.setFig(a,b)}e.write('<script src="https://ssl.bbc.co.uk/frameworks/fig/1/fig.js"><'+"/script>")}},confirm:function(a){a=a||window;if(a.orb&&a.orb.fig&&a.orb.fig("no")){this.setNoFigCookie(a)}if(a.orb===undefined||a.orb.fig===undefined){this.setFig(a,{no:1});this.setNoFigCookie(a)}},setNoFigCookie:function(a){a.document.cookie="ckns_orb_nofig=1; expires="+new Date(new Date().getTime()+1000*60*10).toGMTString()+";"},setFig:function(a,b){(function(){var c=b;a.orb=a.orb||{};a.orb.fig=function(d){return(arguments.length)?c[d]:c}})()},deserialise:function(b){var a={};b.replace(/([a-z]{2}):([0-9]+)/g,function(){a[RegExp.$1]=+RegExp.$2});return a}}})();fig.manager.include();/*]]>*/</script>
82
+
83
+ <!--[if (gt IE 8) | (IEMobile)]><!-->
84
+ <link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/style/orb.css">
85
+ <!--<![endif]-->
86
+
87
+ <!--[if (lt IE 9) & (!IEMobile)]>
88
+ <link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/style/orb-ie.css">
89
+ <![endif]-->
90
+
91
+ <script type="text/javascript">/*<![CDATA[*/ (function(undefined){if(!window.bbc){window.bbc={}}var ROLLING_PERIOD_DAYS=30;window.bbc.Mandolin=function(id,segments,opts){var now=new Date().getTime(),storedItem,DEFAULT_START=now,DEFAULT_RATE=1,COOKIE_NAME="ckpf_mandolin";opts=opts||{};this._id=id;this._segmentSet=segments;this._store=new window.window.bbc.Mandolin.Storage(COOKIE_NAME);this._opts=opts;this._rate=(opts.rate!==undefined)?+opts.rate:DEFAULT_RATE;this._startTs=(opts.start!==undefined)?new Date(opts.start).getTime():new Date(DEFAULT_START).getTime();this._endTs=(opts.end!==undefined)?new Date(opts.end).getTime():daysFromNow(ROLLING_PERIOD_DAYS);this._signupEndTs=(opts.signupEnd!==undefined)?new Date(opts.signupEnd).getTime():this._endTs;this._segment=null;if(typeof id!=="string"){throw new Error("Invalid Argument: id must be defined and be a string")}if(Object.prototype.toString.call(segments)!=="[object Array]"){throw new Error("Invalid Argument: Segments are required.")}if(opts.rate!==undefined&&(opts.rate<0||opts.rate>1)){throw new Error("Invalid Argument: Rate must be between 0 and 1.")}if(this._startTs>this._endTs){throw new Error("Invalid Argument: end date must occur after start date.")}if(!(this._startTs<this._signupEndTs&&this._signupEndTs<=this._endTs)){throw new Error("Invalid Argument: SignupEnd must be between start and end date")}removeExpired.call(this,now);var overrides=window.bbccookies.get().match(/ckns_mandolin_setSegments=([^;]+)/);if(overrides!==null){eval("overrides = "+decodeURIComponent(RegExp.$1)+";");if(overrides[this._id]&&this._segmentSet.indexOf(overrides[this._id])==-1){throw new Error("Invalid Override: overridden segment should exist in segments array")}}if(overrides!==null&&overrides[this._id]){this._segment=overrides[this._id]}else{if((storedItem=this._store.getItem(this._id))){this._segment=storedItem.segment}else{if(this._startTs<=now&&now<this._signupEndTs&&now<=this._endTs&&this._store.isEnabled()===true){this._segment=pick(segments,this._rate);if(opts.end===undefined){this._store.setItem(this._id,{segment:this._segment})}else{this._store.setItem(this._id,{segment:this._segment,end:this._endTs})}log.call(this,"mandolin_segment")}}}log.call(this,"mandolin_view")};window.bbc.Mandolin.prototype.getSegment=function(){return this._segment};function log(actionType,params){var that=this;require(["istats-1"],function(istats){istats.log(actionType,that._id+":"+that._segment,params?params:{})})}function removeExpired(expires){var items=this._store.getItems(),expiresInt=+expires;for(var key in items){if(items[key].end!==undefined&&+items[key].end<expiresInt){this._store.removeItem(key)}}}function getLastExpirationDate(data){var winner=0,rollingExpire=daysFromNow(ROLLING_PERIOD_DAYS);for(var key in data){if(data[key].end===undefined&&rollingExpire>winner){winner=rollingExpire}else{if(+data[key].end>winner){winner=+data[key].end}}}return(winner)?new Date(winner):new Date(rollingExpire)}window.bbc.Mandolin.prototype.log=function(params){log.call(this,"mandolin_log",params)};window.bbc.Mandolin.prototype.convert=function(params){log.call(this,"mandolin_convert",params);this.convert=function(){}};function daysFromNow(n){var endDate;endDate=new Date().getTime()+(n*60*60*24)*1000;return endDate}function pick(segments,rate){var picked,min=0,max=segments.length-1;if(typeof rate==="number"&&Math.random()>rate){return null}do{picked=Math.floor(Math.random()*(max-min+1))+min}while(picked>max);return segments[picked]}window.bbc.Mandolin.Storage=function(name){validateCookieName(name);this._cookieName=name;this._isEnabled=(bbccookies.isAllowed(this._cookieName)===true&&bbccookies.cookiesEnabled()===true)};window.bbc.Mandolin.Storage.prototype.setItem=function(key,value){var storeData=this.getItems();storeData[key]=value;this.save(storeData);return value};window.bbc.Mandolin.Storage.prototype.isEnabled=function(){return this._isEnabled};window.bbc.Mandolin.Storage.prototype.getItem=function(key){var storeData=this.getItems();return storeData[key]};window.bbc.Mandolin.Storage.prototype.removeItem=function(key){var storeData=this.getItems();delete storeData[key];this.save(storeData)};window.bbc.Mandolin.Storage.prototype.getItems=function(){return deserialise(this.readCookie(this._cookieName)||"")};window.bbc.Mandolin.Storage.prototype.save=function(data){window.bbccookies.set(this._cookieName+"="+encodeURIComponent(serialise(data))+"; expires="+getLastExpirationDate(data).toUTCString()+";")};window.bbc.Mandolin.Storage.prototype.readCookie=function(name){var nameEq=name+"=",ca=window.bbccookies.get().split("; "),i,c;validateCookieName(name);for(i=0;i<ca.length;i++){c=ca[i];if(c.indexOf(nameEq)===0){return decodeURIComponent(c.substring(nameEq.length,c.length))}}return null};function serialise(o){var str="";for(var p in o){if(o.hasOwnProperty(p)){str+='"'+p+'"'+":"+(typeof o[p]==="object"?(o[p]===null?"null":"{"+serialise(o[p])+"}"):'"'+o[p].toString()+'"')+","}}return str.replace(/,\}/g,"}").replace(/,$/g,"")}function deserialise(str){var o;str="{"+str+"}";if(!validateSerialisation(str)){throw"Invalid input provided for deserialisation."}eval("o = "+str);return o}var validateSerialisation=(function(){var OBJECT_TOKEN="<Object>",ESCAPED_CHAR='"\\n\\r\\u2028\\u2029\\u000A\\u000D\\u005C',ALLOWED_CHAR="([^"+ESCAPED_CHAR+"]|\\\\["+ESCAPED_CHAR+"])",KEY='"'+ALLOWED_CHAR+'+"',VALUE='(null|"'+ALLOWED_CHAR+'*"|'+OBJECT_TOKEN+")",KEY_VALUE=KEY+":"+VALUE,KEY_VALUE_SEQUENCE="("+KEY_VALUE+",)*"+KEY_VALUE,OBJECT_LITERAL="({}|{"+KEY_VALUE_SEQUENCE+"})",objectPattern=new RegExp(OBJECT_LITERAL,"g");return function(str){if(str.indexOf(OBJECT_TOKEN)!==-1){return false}while(str.match(objectPattern)){str=str.replace(objectPattern,OBJECT_TOKEN)}return str===OBJECT_TOKEN}})();function validateCookieName(name){if(name.match(/ ,;/)){throw"Illegal name provided, must be valid in browser cookie."}}})(); /*]]>*/</script> <script type="text/javascript"> document.documentElement.className += (document.documentElement.className? ' ' : '') + 'orb-js'; fig.manager.confirm(); </script> <script src="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/script/orb/api.min.js"></script> <script type="text/javascript"> window.orb_masthead_test = new bbc.Mandolin( 'orb_masthead', ['simple', 'control'], { rate: 6/1000, start: new Date('09/22/2014 08:00:00 GMT'), /* format: mm/dd/yyyy hh:mm:ss */ signupEnd: new Date('09/24/2014 08:00:00 GMT'), end: new Date('10/06/2014 08:00:00 GMT') } ); var blq = { environment: function() { return 'live'; } } </script> <script type="text/javascript"> /*<![CDATA[*/ function oqsSurveyManager(w, flag) { if (flag !== 'OFF') { w.document.write('<script type="text/javascript" src="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/script/vendor/edr.js"><'+'/script>'); } } oqsSurveyManager(window, 'ON'); /*]]>*/ </script> <!-- BBCDOTCOM template: responsive webservice -->
92
+ <!-- BBCDOTCOM head --><script type="text/javascript"> /*<![CDATA[*/ var _sf_startpt = (new Date()).getTime(); /*]]>*/ </script><style type="text/css">.bbccom_display_none{display:none;}</style><script type="text/javascript"> /*<![CDATA[*/ var bbcdotcomConfig, googletag = googletag || {}; googletag.cmd = googletag.cmd || []; var bbcdotcom = false; (function(){ if(typeof require !== 'undefined') { require({ paths:{ "bbcdotcom":"http://static.bbci.co.uk/bbcdotcom/0.3.314/script" } }); } })(); /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ var bbcdotcom = { adverts: { keyValues: { set: function() {} } }, advert: { write: function () {}, show: function () {}, isActive: function () { return false; }, layout: function() { return { reset: function() {} } } }, config: { init: function() {}, isActive: function() {}, setSections: function() {}, isAdsEnabled: function() {}, setAdsEnabled: function() {}, isAnalyticsEnabled: function() {}, setAnalyticsEnabled: function() {}, setAssetPrefix: function() {}, setJsPrefix: function() {}, setSwfPrefix: function() {}, setCssPrefix: function() {}, setConfig: function() {}, getJsPrefix: function () {}, getSwfPrefix: function () {}, getCssPrefix: function () {} }, survey: { init: function(){ return false; } }, data: {}, init: function() {}, objects: function(str) { return false; }, locale: { set: function() {} }, setAdKeyValue: function() {}, utils: { addEvent: function() {}, addHtmlTagClass: function() {}, log: function () {} }, addLoadEvent: function() {} }; /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (typeof orb !== 'undefined' && typeof orb.fig === 'function') { if (orb.fig('ad') && orb.fig('uk') == 0) { bbcdotcom.data = { ads: (orb.fig('ad') ? 1 : 0), stats: (orb.fig('uk') == 0 ? 1 : 0), statsProvider: orb.fig('ap') }; } } else { document.write('<script type="text/javascript" src="'+('https:' == document.location.protocol ? 'https://ssl.bbc.com' : 'http://tps.bbc.com')+'/wwscripts/data">\x3C/script>'); } })(); /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (typeof orb === 'undefined' || typeof orb.fig !== 'function') { bbcdotcom.data = { ads: bbcdotcom.data.a, stats: bbcdotcom.data.b, statsProvider: bbcdotcom.data.c }; } if (bbcdotcom.data.ads == 1) { document.write('<script type="text/javascript" src="'+('https:' == document.location.protocol ? 'https://ssl.bbc.co.uk' : 'http://www.bbc.co.uk')+'/wwscripts/flag">\x3C/script>'); } })(); /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (window.bbcdotcom && (typeof bbcdotcom.flag == 'undefined' || (typeof bbcdotcom.data.ads !== 'undefined' && bbcdotcom.flag.a != 1))) { bbcdotcom.data.ads = 0; } if (/[?|&]ads-debug/.test(window.location.href) || document.cookie.indexOf('ads-debug=') !== -1) { bbcdotcom.data.ads = 1; bbcdotcom.data.stats = 1; } if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcom.assetPrefix = "http://static.bbci.co.uk/bbcdotcom/0.3.314/"; document.write('<link rel="stylesheet" type="text/css" href="http://static.bbci.co.uk/bbcdotcom/0.3.314/style/orb/bbccom.css" />'); (function() { var useSSL = 'https:' == document.location.protocol; var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js'; document.write('<scr' + 'ipt src="' + src + '">\x3C/script>'); })(); if (/(sandbox|int)(.dev)*.bbc.co*/.test(window.location.href) || /[?|&]ads-debug/.test(window.location.href) || document.cookie.indexOf('ads-debug=') !== -1) { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/0.3.314/script/orb/individual.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/0.3.314/script/orb/bbcdotcom.js">\x3C/script>'); } if(/[\\?&]ads=([^&#]*)/.test(window.location.href)) { document.write('<script type="text/javascript" src="http://static.bbci.co.uk/bbcdotcom/0.3.314/script/orb/adverts/adSuites.js">\x3C/script>'); } } })(); /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ (function(){ if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcomConfig = {"adFormat":"standard","adKeyword":"","adMode":"smart","adsEnabled":true,"appAnalyticsSections":"news>world","asyncEnabled":false,"disableInitialLoad":false,"advertInfoPageUrl":"http:\/\/www.bbc.co.uk\/faqs\/online\/adverts_general","advertisementText":"Advertisement","analyticsEnabled":true,"appName":"tabloid","assetPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/0.3.314\/","continuousPlayEnabled":true,"customAdParams":[],"customStatsParams":[],"headline":"China media: Military might","id":"31014941","inAssociationWithText":"In association with","keywords":"","language":"","orbTransitional":false,"outbrainEnabled":true,"palEnv":"live","productName":"","sections":[],"siteCatalystEnabled":true,"slots":"","sponsoredByText":"Sponsored by","summary":"Papers play down doubts that China's planned military parade marking the end of Word War Two is aimed at 'taunting' Japan.","type":"STORY","staticBase":"\/bbcdotcom","staticHost":"http:\/\/static.bbci.co.uk","staticVersion":"0.3.314","staticPrefix":"http:\/\/static.bbci.co.uk\/bbcdotcom\/0.3.314","dataHttp":"tps.bbc.com","dataHttps":"ssl.bbc.com","flagHttp":"www.bbc.co.uk","flagHttps":"ssl.bbc.co.uk","analyticsHttp":"sa.bbc.com","analyticsHttps":"ssa.bbc.com"}; bbcdotcom.config.init(bbcdotcomConfig, bbcdotcom.data, window.location, window.document); bbcdotcom.config.setAssetPrefix("http://static.bbci.co.uk/bbcdotcom/0.3.314/"); document.write('<!--[if IE 7]><script type="text/javascript">bbcdotcom.config.setIE7(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 8]><script type="text/javascript">bbcdotcom.config.setIE8(true);\x3C/script><![endif]-->'); if (!bbcdotcom.config.isAsync() && bbcdotcom.config.isIE7()) { document.write('<link rel="stylesheet" type="text/css" href="http://static.bbci.co.uk/bbcdotcom/0.3.314/style/orb/bbccom-ie7.css" />'); } } })(); /*]]>*/ </script> <script type="text/javascript">/*<![CDATA[*/
93
+ window.bbcFlagpoles_istats = 'ON';
94
+ window.orb = window.orb || {};
95
+
96
+ /*]]>*/</script>
97
+ <script type="text/javascript"> /* <![CDATA[ */ define('id-statusbar-config', { 'translation_signedout': "Sign in", 'translation_signedin': "Your account", 'use_overlay' : false, 'signin_url' : "https://ssl.bbc.co.uk/id/signin?ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941", 'locale' : "en-GB", 'policyname' : "", 'ptrt' : "http://www.bbc.co.uk/news/world-asia-china-31014941" }); /* ]]> */ </script> <script type="text/javascript"> require(['istats-1'], function(istats){ if (typeof(document) != 'undefined' && typeof(document.cookie) != 'undefined') { var cookieAphidMatch = document.cookie.match(/ckpf_APHID=([^;]*)/); if (cookieAphidMatch && typeof(cookieAphidMatch[1]) == 'string') { istats.addLabels({'bbc_hid': cookieAphidMatch[1]}); } } })(); </script> <script type="text/javascript"> (function () { if (! window.require) { throw new Error('idcta: could not find require module'); } var map = {}; map['idapp-1'] = 'http://static.bbci.co.uk/idapp/0.66.06/modules/idapp/idapp-1'; map['idcta/idcta-1'] = 'http://static.bbci.co.uk/id/0.27.23/modules/idcta/idcta-1'; map['idcta/idCookie'] = 'http://static.bbci.co.uk/id/0.27.23/modules/idcta/idCookie'; map['idcta/overlayManager'] = 'http://static.bbci.co.uk/id/0.27.23/modules/idcta/overlayManager'; require({paths: map}); define('id-config', {"idapp":{"version":"0.66.06","hostname":"ssl.bbc.co.uk","insecurehostname":"www.bbc.co.uk","tld":"bbc.co.uk"},"idtranslations":{"version":"0.31.1"},"identity":{"baseUrl":"https:\/\/talkback.live.bbc.co.uk\/identity","cookieAgeDays":730},"pathway":{"name":null,"staticAssetUrl":"http:\/\/static.bbci.co.uk\/idapp\/0.66.06\/modules\/idapp\/idapp-1\/View.css"}}); })(); </script>
98
+ <link type="text/css" rel="stylesheet" href="http://static.bbci.co.uk/news/1.69.0321/stylesheets/services/news/core.css">
99
+ <!--[if lt IE 9]>
100
+ <link type="text/css" rel="stylesheet" href="http://static.bbci.co.uk/news/1.69.0321/stylesheets/services/news/old-ie.css">
101
+ <script src="http://static.bbci.co.uk/news/1.69.0321/js/vendor/html5shiv/html5shiv.js"></script>
102
+ <![endif]-->
103
+ <script id="news-loader"> if (document.getElementById("responsive-news")) { window.bbcNewsResponsive = true; } var isIE = (function() { var undef, v = 3, div = document.createElement('div'), all = div.getElementsByTagName('i'); while ( div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->', all[0] ); return v > 4 ? v : undef; }()); var modernDevice = 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window, forceCore = document.cookie.indexOf('ckps_force_core') !== -1, holepunched = isIE > 6 && document.getElementById('js-holepunched'); window.cutsTheMustard = (modernDevice && !forceCore) || holepunched; if (window.cutsTheMustard) { document.documentElement.className += ' ctm'; var insertPoint = document.getElementById('news-loader'), config = {"asset":{"asset_id":"31014941","asset_uri":"\/news\/world-asia-china-31014941","first_created":{"date":"2015-01-28 06:09:52","timezone_type":3,"timezone":"Europe\/London"},"last_updated":{"date":"2015-01-28 06:38:34","timezone_type":3,"timezone":"Europe\/London"},"options":{"allowRightHandSide":true,"allowRelatedStoriesBox":true,"includeComments":false,"isIgorSeoTagsEnabled":false,"hasNewsTracker":false,"allowAdvertising":true,"hasContentWarning":false,"allowDateStamp":true,"allowHeadline":true,"isKeyContent":false,"allowPrintingSharingLinks":true,"isBreakingNews":false,"suitableForSyndication":true},"section":{"name":"China","id":"101361","uri":"\/news\/world\/asia\/china","urlIdentifier":"\/news\/world\/asia\/china"},"edition":"Domestic","audience":null,"iStats_counter_name":"news.world.asia.china.story.31014941.page","type":"STY","headline":"China media: Military might","mediaType":null},"smpBrand":null,"staticHost":"http:\/\/static.bbci.co.uk","environment":"live","locatorVersion":"0.46.3","pathPrefix":"\/news","staticPrefix":"http:\/\/static.bbci.co.uk\/news\/1.69.0321","jsPath":"http:\/\/static.bbci.co.uk\/news\/1.69.0321\/js","cssPath":"http:\/\/static.bbci.co.uk\/news\/1.69.0321\/stylesheets\/services\/news","cssPostfix":"","dynamic":null,"features":{"localnews":true,"video":true,"liveeventcomponent":true,"mediaassetpage":true,"travel":true,"gallery":true,"rollingnews":true,"rumanalytics":true,"sportstories":true,"radiopromo":true,"fromothernewssites":true,"locallive":true,"weather":true},"features2":{"chartbeat":true,"connected_stream":true,"connected_stream_promo":true,"nav":true,"pulse_survey":false,"correspondents":true,"explainer_banner":false,"tablet_explainer_banner":true,"blogs":true,"open_graph":true,"follow_us":true,"multi_client_cache":true,"marketdata_markets":true,"marketdata_shares":true,"nations_pseudo_nav":true,"politics_vote2014":true,"politics_scotref_polltracker":true,"politics_polltracker":true,"politics_election2015_hub":true,"politics_election2015_nation_hubs":true,"politics_election2015_results":true,"politics_scotref_live":true,"politics_scotref_results":true,"politics_scotref":true,"politics_councils":true,"politics_councils_az":true,"politics_constituencies_az":true,"politics_constituencies":true,"politics_election2015_manifestos":true,"politics_eu_regions":true,"politics_election2015_topic_pages":true,"breaking_news":true,"responsive_breaking_news":true,"live_event":true,"most_popular":true,"most_popular_tabs":true,"most_popular_by_day":true,"routing":true,"rum":true,"radiopromonownext":true,"config_based_layout":true,"orb":true,"enhanced_gallery":true,"map_most_watched":true,"top_stories_promo":true,"features_and_analysis":true,"section_labels":true,"index_title":true,"share_tools":true,"local_live_promo":true,"adverts":true,"adexpert":true,"igor_geo_redirect":true,"igor_device_redirect":true,"live":true,"comscore_mmx":true,"find_local_news":true,"comments":true,"comments_enhanced":true,"browser_notify":true,"stream_grid_promo":true,"top_stories_max_volume":true,"record_livestats":true,"contact_form":true,"channel_page":true,"portlet_global_variants":true,"suppress_lep_timezone":true,"story_recommendations":true,"cedexis":true,"story_single_column_layout":true},"configuration":{"showtimestamp":"1","showweather":"1","showsport":"1","showolympics":"1","showfeaturemain":"1","showsitecatalyst":"1","candyplatform":"EnhancedMobile","showwatchlisten":"1","showspecialreports":"","videotopiccandyid":"","showvideofeedsections":"1","showstorytopstories":"","showstoryfeaturesandanalysis":"1","showstorymostpopular":"","showgallery":"1","cms":"cps","channelpagecandyid":"10318089"},"pollingHost":"http:\/\/polling.bbc.co.uk","service":"news","locale":"en-GB","locatorHost":null,"locatorFlagPole":true,"barlesqueVarsConfig":{"tabletexplainerbannerFlagpoleEnabled":false},"local":{"allowLocationLookup":true},"isWorldService":false,"rumAnalytics":{"server":"http:\/\/ingest.rum.bbc.co.uk","key":"news","sample_rate":0.1,"url_params":null,"edition":"domestic"},"isChannelPage":false,"suitenameMap":"","languageVariant":"","commentsHost":"http:\/\/feeds.bbci.co.uk"}; config.configuration['get'] = function (key) { return this[key.toLowerCase()]; }; var bootstrapUI=function(){var e=function(){if(navigator.userAgent.match(/(Android (2.0|2.1))|(Nokia)|(OSRE\/)|(Opera (Mini|Mobi))|(w(eb)?OSBrowser)|(UCWEB)|(Windows Phone)|(XBLWP)|(ZuneWP)/))return!1;if(navigator.userAgent.match(/MSIE 10.0/))return!0;var e,t=document,n=t.head||t.getElementsByTagName("head")[0],r=t.createElement("style"),s=t.implementation||{hasFeature:function(){return!1}};r.type="text/css",n.insertBefore(r,n.firstChild),e=r.sheet||r.styleSheet;var i=s.hasFeature("CSS2","")?function(t){if(!e||!t)return!1;var n=!1;try{e.insertRule(t,0),n=!/unknown/i.test(e.cssRules[0].cssText),e.deleteRule(e.cssRules.length-1)}catch(r){}return n}:function(t){return e&&t?(e.cssText=t,0!==e.cssText.length&&!/unknown/i.test(e.cssText)&&0===e.cssText.replace(/\r+|\n+/g,"").indexOf(t.split(" ")[0])):!1};return i('@font-face{ font-family:"font";src:"font.ttf"; }')}();e&&(document.getElementsByTagName("html")[0].className+=" ff"),function(){var e=document.documentElement.style;("flexBasis"in e||"WebkitFlexBasis"in e||"msFlexBasis"in e)&&(document.documentElement.className+=" flex")}();var t,n,r,s,i,a,o={},u=function(){t=window.innerWidth,n=window.innerHeight},c=function(e){var t=document.createElement("link");t.setAttribute("rel","stylesheet"),t.setAttribute("type","text/css"),t.setAttribute("href",r+e+s+".css"),t.setAttribute("media",a[e]),i.parentNode.insertBefore(t,i),delete a[e]},l=function(e,r,s){r&&!s&&(t>=r||n>=r)&&c(e),s&&!r&&(s>=t||s>=n)&&c(e),r&&s&&(t>=r||n>=r)&&(s>=t||s>=n)&&c(e)},f=function(e){if(o[e])return o[e];var t=e.match(/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/),n=e.match(/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/),r=t&&parseFloat(t[1])||null,s=n&&parseFloat(n[1])||null;return o[e]=[r,s],o[e]},m=function(){var e=0;for(var t in a)e++;return e},d=function(){m()||window.removeEventListener("resize",h,!1);for(var e in a){var t=a[e],n=f(t);l(e,n[0],n[1])}},h=function(){u(),d()},v=function(e,t){a=e,r=t.path+("/"!==t.path.substr(-1)?"/":""),s=t.postfix,i=t.insertBefore,u(),d(),window.addEventListener("resize",h,!1)};return{stylesheetLoaderInit:v}}(); bootstrapUI.stylesheetLoaderInit({ 'compact': '(max-width: 599px)', 'tablet' : '(min-width: 600px)', 'wide' : '(min-width: 1008px)' }, { path: 'http://static.bbci.co.uk/news/1.69.0321/stylesheets/services/news', postfix: '', insertBefore: insertPoint }); var loadRequire = function(){ var js_paths = {"jquery-1.9":"vendor\/jquery-1\/jquery","jquery-1":"http:\/\/static.bbci.co.uk\/frameworks\/jquery\/0.3.0\/sharedmodules\/jquery-1.7.2","demi-1":"http:\/\/static.bbci.co.uk\/frameworks\/demi\/0.10.0\/sharedmodules\/demi-1","swfobject-2":"http:\/\/static.bbci.co.uk\/frameworks\/swfobject\/0.1.10\/sharedmodules\/swfobject-2","jquery":"vendor\/jquery-2\/jquery.min","domReady":"vendor\/require\/domReady","translation":"module\/translations\/en-GB","bump-3":"\/\/emp.bbci.co.uk\/emp\/bump-3\/bump-3"}; js_paths.navigation = 'module/nav/navManager'; requirejs.config({ baseUrl: 'http://static.bbci.co.uk/news/1.69.0321/js', map: { 'vendor/locator': { 'module/bootstrap': 'vendor/locator/bootstrap', 'locator/stats': 'vendor/locator/stats', 'locator/locatorView': 'vendor/locator/locatorView' } }, paths: js_paths, waitSeconds: 30 }); define('config', function () { return config; }); require(['compiled/all'], function() {
104
+ require(['domReady'], function (domReady) { domReady(function () { require(["module\/dotcom\/handlerAdapter","module\/rumAdaptor","module\/stats\/statsSubscriberAdapter","module\/alternativeJsStrategy\/loader","module\/iconLoaderAdapter","module\/components\/breakingNewsAdapter","module\/indexTitleAdaptor","module\/findLocalNewsAdaptor","module\/navigation\/handlerAdaptor","module\/noTouchDetectionForCss","module\/components\/responsiveImage","module\/components\/timestampAdaptor","module\/components\/videoPlayer"], function() { require(["module\/strategiserAdaptor"]); }); }); }); });
105
+ }; loadRequire(); } else { var l = document.createElement('link'); l.href = 'http://static.bbci.co.uk/news/1.69.0321/icons/generated/icons.fallback.css'; l.rel = 'stylesheet'; document.getElementsByTagName('head')[0].appendChild(l); } </script> <script type="text/javascript"> /*<![CDATA[*/ bbcdotcom.init({adsToDisplay:['leaderboard', 'sponsor_section', 'mpu', 'outbrain_ar_5', 'outbrain_ar_7', 'outbrain_ar_8', 'outbrain_ar_9', 'native', 'mpu_bottom', 'adsense']}); /*]]>*/ </script> <noscript><link href="http://static.bbci.co.uk/news/1.69.0321/icons/generated/icons.fallback.css" rel="stylesheet"></noscript>
106
+
107
+
108
+ <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1">
109
+ </head>
110
+ <!--[if IE]><body id="asset-type-sty" class="ie device--feature"><![endif]-->
111
+ <!--[if !IE]>--><body id="asset-type-sty" class="device--feature"><!--<![endif]-->
112
+ <div class="direction" >
113
+
114
+ <!-- BBCDOTCOM bodyFirst --><div id="bbccom_interstitial_ad" class="bbccom_display_none"></div><div id="bbccom_interstitial" class="bbccom_display_none"><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isActive('ads')) { googletag.cmd.push(function() { googletag.display('bbccom_interstitial'); }); } }()); /*]]>*/ </script></div><div id="bbccom_wallpaper_ad" class="bbccom_display_none"></div><div id="bbccom_wallpaper" class="bbccom_display_none"><script type="text/javascript"> /*<![CDATA[*/ (function() { var wallpaper; if (window.bbcdotcom && bbcdotcom.config.isActive('ads')) { if (bbcdotcom.config.isAsync()) { googletag.cmd.push(function() { googletag.display('bbccom_wallpaper'); }); } else { googletag.display("wallpaper"); } wallpaper = bbcdotcom.adverts.adRegister.getAd('wallpaper'); if (wallpaper !== null && wallpaper !== undefined) { wallpaper.setDomElement('bbccom_wallpaper'); } } }()); /*]]>*/ </script></div><script type="text/javascript"> /*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isActive('ads')) { document.write(unescape('%3Cscript id="gnlAdsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } if (window.bbcdotcom && bbcdotcom.config.isActive('analytics')) { document.write(unescape('%3Cscript id="gnlAnalyticsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } if (window.bbcdotcom && bbcdotcom.config.isActive('continuousPlay')) { document.write(unescape('%3Cscript id="gnlContinuousPlayEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } }()); /*]]>*/ </script> <div id="blq-global"> <div id="blq-pre-mast"> </div> </div> <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <section> <div id="bbccookies" class="bbccookies-banner orb-banner-wrapper bbccookies-d"> <div id="bbccookies-prompt" class="orb-banner b-g-p b-r b-f"> <h2 class="orb-banner-title"> Cookies on the BBC website </h2> <p class="orb-banner-content" dir="ltr"> We use cookies to ensure that we give you the best experience on our website.<span class="bbccookies-international-message"> We also use cookies to ensure we show you advertising that is relevant to you.</span> If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the BBC website. However, if you would like to, you can change your cookie settings at any time. </p> <ul class="orb-banner-options"> <li id="bbccookies-continue"> <button type="button" id="bbccookies-continue-button">Continue</button> </li> <li id="bbccookies-settings"> <a href="/privacy/cookies/managing/cookie-settings.html">Change settings</a> </li> <li id="bbccookies-more"><a href="/privacy/cookies/bbc">Find out more</a></li></ul> </div> </div> </section> ]]></script> <script type="text/javascript">/*<![CDATA[*/ (function(){if(bbccookies._showPrompt()){var g=document,b=g.getElementById("blq-pre-mast"),e=g.getElementById("blq-bbccookies-tmpl"),a,f;if(b&&g.createElement){a=g.createElement("div");f=e.innerHTML;f=f.replace("<"+"![CDATA[","").replace("]]"+">","");a.innerHTML=f;b.appendChild(a);blqCookieContinueButton=g.getElementById("bbccookies-continue-button");blqCookieContinueButton.onclick=function(){a.parentNode.removeChild(a);return false};bbccookies._setPolicy()}var c=g.getElementById("bbccookies");if(c&&!window.orb.fig("uk")){c.className=c.className.replace(/\bbbccookies-d\b/,"");c.className=c.className+(" bbccookies-w")}}})(); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ if (bbccookies.isAllowed('s1')) { var istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=news.world.asia.china.story.31014941.page&cps_asset_id=31014941&page_type=Story&section=%2Fnews%2Fworld%2Fasia%2Fchina&first_pub=2015-01-28T06%3A09%3A52%2B00%3A00&last_editorial_update=2015-01-28T06%3A38%3A34%2B00%3A00&title=China+media%3A+Military+might&for_nation=gb&pal_route=asset&ml_name=barlesque&app_type=responsive&language=en-GB&ml_version=0.26.31&pal_webapp=tabloid&prod_name=news&app_name=news'; require(['istats-1'], function (istats) { istats.addCollector({'name': 'default', 'url': '//sa.bbc.co.uk/bbc/bbc/s', 'seperator': '&' }); var counterName = (window.istats_countername) ? window.istats_countername : istatsTrackingUrl.match(/[\?&]name=([^&]*)/i)[1]; istats.setCountername(counterName); if (/\bIDENTITY=/.test(document.cookie)) { istats.addLabels({'bbc_identity': '1'}); } if (/\bckns_policy=\d\d0/.test(document.cookie)) { istats.addLabels({'ns_nc': '1'}); } var c = (document.cookie.match(/\bckns_policy=(\d\d\d)/) || []).pop() || ''; var screenWidthAndHeight = 'unavailable'; if (window.screen && screen.width && screen.height) { screenWidthAndHeight = screen.width + 'x' + screen.height; } istats.addLabels('cps_asset_id=31014941&page_type=Story&section=%2Fnews%2Fworld%2Fasia%2Fchina&first_pub=2015-01-28T06%3A09%3A52%2B00%3A00&last_editorial_update=2015-01-28T06%3A38%3A34%2B00%3A00&title=China+media%3A+Military+might&for_nation=gb&pal_route=asset&ml_name=barlesque&app_type=responsive&language=en-GB&ml_version=0.26.31&pal_webapp=tabloid&prod_name=news&app_name=news'); istats.addLabels({ 'blq_s': '4d', 'blq_r': '2.7', 'blq_v': 'default', 'blq_e': 'pal', 'bbc_mc': (c ? 'ad' + c.charAt(0) + 'ps' + c.charAt(1) + 'pf' + c.charAt(2) : 'not_set'), 'screen_resolution': screenWidthAndHeight, 'ns_referrer': encodeURI(((window.orb.referrer) ? window.orb.referrer : document.referrer)) } ); istats.invoke(); }); } /*]]>*/</script> <!-- Begin iStats 20100118 (UX-CMC 1.1009.3) --> <script type="text/javascript">/*<![CDATA[*/ if (bbccookies.isAllowed('s1')) { (function () { require(['istats-1'], function (istats) { istatsTrackingUrl = istats.getDefaultURL(); if (istats.isEnabled() && bbcFlagpoles_istats === 'ON') { sitestat(istatsTrackingUrl); } else { window.ns_pixelUrl = istatsTrackingUrl; /* used by Flash library to track */ } 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 = "&" + decodeURI(k[g].substring(m + 6)) } } bbccookies.set(e + "=; expires=" + new Date(new Date().getTime() - 60).toGMTString() + "; path=" + a + "; domain=" + h); } window.ns_pixelUrl = n; } }); })(); } else { window.istats = {enabled: false}; } /*]]>*/</script> <noscript><p style="position: absolute; top: -999em;"><img src="//sa.bbc.co.uk/bbc/bbc/s?name=news.world.asia.china.story.31014941.page&amp;cps_asset_id=31014941&amp;page_type=Story&amp;section=%2Fnews%2Fworld%2Fasia%2Fchina&amp;first_pub=2015-01-28T06%3A09%3A52%2B00%3A00&amp;last_editorial_update=2015-01-28T06%3A38%3A34%2B00%3A00&amp;title=China+media%3A+Military+might&amp;for_nation=gb&amp;pal_route=asset&amp;ml_name=barlesque&amp;app_type=responsive&amp;language=en-GB&amp;ml_version=0.26.31&amp;pal_webapp=tabloid&amp;prod_name=news&amp;app_name=news&amp;blq_js_enabled=0&amp;blq_s=4d&amp;blq_r=2.7&amp;blq_v=default&amp;blq_e=pal " height="1" width="1" alt=""/></p></noscript> <!-- End iStats (UX-CMC) -->
115
+ <!--[if (gt IE 8) | (IEMobile)]><!--> <header id="orb-banner" role="banner"> <!--<![endif]--> <!--[if (lt IE 9) & (!IEMobile)]> <![if (IE 8)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie8"> <![endif]> <![if (IE 7)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie7"> <![endif]> <![if (IE 6)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie6"> <![endif]> <![endif]--> <div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" > <script type="text/javascript"> (function(){var h=document.getElementById('orb-header');if(/bbc\.co\.uk$/i.test(location.hostname)&&orb_masthead_test.getSegment()=='simple'&&(location.pathname===''||location.pathname==='/'||location.pathname==='/frameworks/test/mandolin/acceptance'&&h.setAttribute)){h.setAttribute('data-max-w','0');h.setAttribute('data-max-d','0');}}()); </script> <div class="orb-nav-pri-container b-r b-g-p"> <div class="orb-nav-section orb-nav-blocks"> <a href="/"> <img src="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/img/bbc-blocks-dark.png" width="84" height="24" alt="BBC" /> </a> </div> <section> <div class="orb-skip-links"> <h2>Accessibility links</h2> <ul> <li><a href="#page">Skip to content</a></li> <li><a id="orb-accessibility-help" href="/accessibility/">Accessibility Help</a></li> </ul> </div> </section> <div class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <a id="idcta-link" href="https://ssl.bbc.co.uk/id/status?ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941"><img id="idcta-image" src="http://static.bbci.co.uk/id/0.27.23/img/bbcid_orb_signin_dark.png" alt="" width="18" height="18" /><span id="idcta-username">BBC iD</span></a> </div> <nav role="navigation" class="orb-nav"> <div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"> <h2>BBC navigation</h2> <ul> <li class="orb-nav-news orb-d" > <a href="http://www.bbc.co.uk/news/">News</a> </li> <li class="orb-nav-newsdotcom orb-w" > <a href="http://www.bbc.com/news/">News</a> </li> <li class="orb-nav-sport" > <a href="/sport/">Sport</a> </li> <li class="orb-nav-weather" > <a href="/weather/">Weather</a> </li> <li class="orb-nav-shop orb-w" > <a href="http://shop.bbc.com/">Shop</a> </li> <li class="orb-nav-earthdotcom orb-w" > <a href="http://www.bbc.com/earth/">Earth</a> </li> <li class="orb-nav-travel-dotcom orb-w" > <a href="http://www.bbc.com/travel/">Travel</a> </li> <li class="orb-nav-capital orb-w" > <a href="http://www.bbc.com/capital/">Capital</a> </li> <li class="orb-nav-iplayer orb-d" > <a href="/iplayer/">iPlayer</a> </li> <li class="orb-nav-culture orb-w" > <a href="http://www.bbc.com/culture/">Culture</a> </li> <li class="orb-nav-autos orb-w" > <a href="http://www.bbc.com/autos/">Autos</a> </li> <li class="orb-nav-future orb-w" > <a href="http://www.bbc.com/future/">Future</a> </li> <li class="orb-nav-tv" > <a href="/tv/">TV</a> </li> <li class="orb-nav-radio" > <a href="/radio/">Radio</a> </li> <li class="orb-nav-cbbc" > <a href="/cbbc">CBBC</a> </li> <li class="orb-nav-cbeebies" > <a href="/cbeebies">CBeebies</a> </li> <li class="orb-nav-arts orb-d" > <a href="/arts/">Arts</a> </li> <li > <a href="/ww1/">WW1</a> </li> <li class="orb-nav-food" > <a href="/food/">Food</a> </li> <li > <a href="/iwonder">iWonder</a> </li> <li > <a href="/education">Bitesize</a> </li> <li class="orb-nav-music" > <a href="/music/">Music</a> </li> <li class="orb-nav-nature orb-w" > <a href="/nature/">Nature</a> </li> <li class="orb-nav-earth orb-d" > <a href="http://www.bbc.com/earth/">Earth</a> </li> <li class="orb-nav-local" > <a href="/local/">Local</a> </li> <li class="orb-nav-travel orb-d" > <a href="/travel/">Travel</a> </li> <li id="orb-nav-more"><a href="#orb-footer" data-alt="More">Menu<span class="orb-icon orb-icon-arrow"></span></a></li> </ul> </div> </nav> <div class="orb-nav-section orb-nav-search"> <a href="http://search.bbc.co.uk/search"> <img src="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/img/orb-search-dark.png" width="18" height="18" alt="Search the BBC" /> </a> <form class="b-f" id="orb-search-form" role="search" method="get" action="http://search.bbc.co.uk/search" accept-charset="utf-8"> <div> <input type="hidden" name="uri" value="/news/world-asia-china-31014941" /> <label for="orb-search-q">Search the BBC</label> <input id="orb-search-q" type="text" name="q" placeholder="Search" /> <input type="image" id="orb-search-button" src="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/img/orb-search-dark.png" width="17" height="17" alt="Search the BBC" /> <input type="hidden" name="suggid" id="orb-search-suggid" /> </div> </form> </div> </div> <div id="orb-panels" > <script type="text/template" id="orb-panel-template"><![CDATA[ <div id="orb-panel-<%= panelname %>" class="orb-panel" aria-labelledby="orb-nav-<%= panelname %>"> <div class="orb-panel-content b-g-p b-r"> <%= panelcontent %> </div> </div> ]]></script> </div> </div> </header> <!-- Styling hook for shared modules only --> <div id="orb-modules">
116
+ <div id="site-container">
117
+
118
+ <!--[if lt IE 9]>
119
+ <div class="browser-notify">
120
+ <div class="browser-notify__banner">
121
+ <div class="browser-notify__icon"></div>
122
+ <span>This site is optimised for modern web browsers, and does not fully support your version of Internet Explorer</span>
123
+ </div>
124
+ </div>
125
+ <![endif]-->
126
+ <div class="site-brand site-brand--height" role="banner" aria-label="News">
127
+ <div class="site-brand-inner site-brand-inner--height">
128
+ <div class="navigation navigation--primary">
129
+ <a href="/news" id="brand">
130
+ <img class="brand__logo" src="http://static.bbci.co.uk/news/1.69.0321/img/brand/news.png" alt="BBC News"/>
131
+ </a>
132
+ <h2 class="navigation__heading off-screen">News navigation</h2>
133
+ <a href="#core-navigation" class="navigation__section navigation__section--core" data-event="header">
134
+ Sections </a>
135
+ <div class="find-local-wide" id="find-local-wide">
136
+ <button class="find-local-wide__link">Find local news</button>
137
+ </div>
138
+ </div>
139
+ </div>
140
+
141
+
142
+ <div class="navigation navigation--wide">
143
+ <ul class="navigation-wide-list" role="navigation" aria-label="News" data-panel-id="js-navigation-panel-primary">
144
+ <li>
145
+ <a href="/news" class="navigation-wide-list__link">
146
+ <span>Home</span>
147
+ </a>
148
+ </li>
149
+ <li>
150
+ <a href="/news/uk" data-panel-id="js-navigation-panel-UK" class="navigation-wide-list__link">
151
+ <span>UK</span>
152
+ </a>
153
+ </li>
154
+ <li class="selected">
155
+ <a href="/news/world" data-panel-id="js-navigation-panel-World" class="navigation-wide-list__link navigation-arrow--open">
156
+ <span>World</span>
157
+ </a>
158
+ <span class="off-screen">selected</span> </li>
159
+ <li>
160
+ <a href="/news/business" data-panel-id="js-navigation-panel-Business" class="navigation-wide-list__link">
161
+ <span>Business</span>
162
+ </a>
163
+ </li>
164
+ <li>
165
+ <a href="/news/politics" data-panel-id="js-navigation-panel-Politics" class="navigation-wide-list__link">
166
+ <span>Politics</span>
167
+ </a>
168
+ </li>
169
+ <li>
170
+ <a href="/news/technology" class="navigation-wide-list__link">
171
+ <span>Tech</span>
172
+ </a>
173
+ </li>
174
+ <li>
175
+ <a href="/news/science_and_environment" class="navigation-wide-list__link">
176
+ <span>Science</span>
177
+ </a>
178
+ </li>
179
+ <li>
180
+ <a href="/news/health" class="navigation-wide-list__link">
181
+ <span>Health</span>
182
+ </a>
183
+ </li>
184
+ <li>
185
+ <a href="/news/education" data-panel-id="js-navigation-panel-Education" class="navigation-wide-list__link">
186
+ <span>Education</span>
187
+ </a>
188
+ </li>
189
+ <li>
190
+ <a href="/news/entertainment_and_arts" class="navigation-wide-list__link">
191
+ <span>Entertainment &amp; Arts</span>
192
+ </a>
193
+ </li>
194
+ <li>
195
+ <a href="/news/video_and_audio/video" class="navigation-wide-list__link">
196
+ <span>Video &amp; Audio</span>
197
+ </a>
198
+ </li>
199
+ <li>
200
+ <a href="/news/magazine" class="navigation-wide-list__link">
201
+ <span>Magazine</span>
202
+ </a>
203
+ </li>
204
+ <li>
205
+ <a href="/news/in_pictures" class="navigation-wide-list__link">
206
+ <span>In Pictures</span>
207
+ </a>
208
+ </li>
209
+ <li>
210
+ <a href="/news/also_in_the_news" class="navigation-wide-list__link">
211
+ <span>Also in the News</span>
212
+ </a>
213
+ </li>
214
+ <li>
215
+ <a href="/news/special_reports" class="navigation-wide-list__link">
216
+ <span>Special Reports</span>
217
+ </a>
218
+ </li>
219
+ <li>
220
+ <a href="/news/explainers" class="navigation-wide-list__link">
221
+ <span>Explainers</span>
222
+ </a>
223
+ </li>
224
+ <li>
225
+ <a href="/news/the_reporters" class="navigation-wide-list__link">
226
+ <span>The Reporters</span>
227
+ </a>
228
+ </li>
229
+ <li>
230
+ <a href="/news/have_your_say" class="navigation-wide-list__link navigation-wide-list__link--last">
231
+ <span>Have Your Say</span>
232
+ </a>
233
+ </li>
234
+ </ul>
235
+ </div>
236
+
237
+ <div class="secondary-navigation secondary-navigation--wide">
238
+ <nav class="navigation-wide-list navigation-wide-list--secondary" role="navigation" aria-label="Asia">
239
+ <a class="secondary-navigation__title navigation-wide-list__link " href="/news/world/asia"><span>Asia</span></a> <span class="off-screen">selected</span> <ul data-panel-id="js-navigation-panel-secondary">
240
+ <li class="selected">
241
+ <a href="/news/world/asia/china"
242
+ class="navigation-wide-list__link navigation-wide-list__link--first ">
243
+ <span>China</span>
244
+ </a>
245
+ <span class="off-screen">selected</span> </li>
246
+ <li>
247
+ <a href="/news/world/asia/india"
248
+ class="navigation-wide-list__link navigation-wide-list__link--last">
249
+ <span>India</span>
250
+ </a>
251
+ </li>
252
+ </ul>
253
+ </nav>
254
+ </div>
255
+ </div>
256
+
257
+
258
+
259
+ <div id="" class="bbccom_slot " aria-hidden="true">
260
+ <div class="bbccom_advert bbccom_display_none">
261
+ <script type="text/javascript">
262
+ /*<![CDATA[*/
263
+ if (window.bbcdotcom && bbcdotcom.slot) {
264
+ bbcdotcom.slot('leaderboard', [1,2,3,4]);
265
+ }
266
+ /*]]>*/
267
+ </script>
268
+ </div>
269
+ <script type="text/javascript">
270
+ /*<![CDATA[*/
271
+ if (window.bbcdotcom && bbcdotcom.show) {
272
+ bbcdotcom.show()
273
+ }
274
+ /*]]>*/
275
+ </script>
276
+ </div>
277
+ <div id="breaking-news-container" data-polling-url="http://polling.bbc.co.uk/news/latest_breaking_news?audience=Domestic" aria-live="polite"></div>
278
+
279
+ <div class="container-width-only">
280
+ <span class="index-title index-title--redundant " id="comp-index-title" data-index-title-meta="{&quot;id&quot;:&quot;comp-index-title&quot;,&quot;type&quot;:&quot;index-title&quot;,&quot;handler&quot;:&quot;indexTitle&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;alwaysVisible&quot;:false,&quot;onFrontPage&quot;:false},&quot;template&quot;:&quot;index-title&quot;}">
281
+ <span class="index-title__container">
282
+ <a href="/news/world/asia/china">China</a>
283
+ </span>
284
+ </span>
285
+
286
+ <div id="" class="bbccom_slot " aria-hidden="true">
287
+ <div class="bbccom_advert bbccom_display_none">
288
+ <script type="text/javascript">
289
+ /*<![CDATA[*/
290
+ if (window.bbcdotcom && bbcdotcom.slot) {
291
+ bbcdotcom.slot('sponsor_section', [1,2,3,4]);
292
+ }
293
+ /*]]>*/
294
+ </script>
295
+ </div>
296
+ <script type="text/javascript">
297
+ /*<![CDATA[*/
298
+ if (window.bbcdotcom && bbcdotcom.show) {
299
+ bbcdotcom.show()
300
+ }
301
+ /*]]>*/
302
+ </script>
303
+ </div> </div>
304
+
305
+
306
+ <div id="page" class="configurable story " data-story-id="world-asia-china-31014941"> <div role="main"> <div class="container-width-only"> <span class="index-title index-title--redundant " id="comp-index-title" data-index-title-meta="{&quot;id&quot;:&quot;comp-index-title&quot;,&quot;type&quot;:&quot;index-title&quot;,&quot;handler&quot;:&quot;indexTitle&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;alwaysVisible&quot;:false,&quot;onFrontPage&quot;:false},&quot;template&quot;:&quot;index-title&quot;}">
307
+ <span class="index-title__container">
308
+ <a href="/news/world/asia/china">China</a>
309
+ </span>
310
+ </span>
311
+
312
+ <div id="" class="bbccom_slot " aria-hidden="true">
313
+ <div class="bbccom_advert bbccom_display_none">
314
+ <script type="text/javascript">
315
+ /*<![CDATA[*/
316
+ if (window.bbcdotcom && bbcdotcom.slot) {
317
+ bbcdotcom.slot('sponsor_section', [1,2,3,4]);
318
+ }
319
+ /*]]>*/
320
+ </script>
321
+ </div>
322
+ <script type="text/javascript">
323
+ /*<![CDATA[*/
324
+ if (window.bbcdotcom && bbcdotcom.show) {
325
+ bbcdotcom.show()
326
+ }
327
+ /*]]>*/
328
+ </script>
329
+ </div> </div> <div class="container"> <div class="container--primary-and-secondary-columns column-clearfix"> <div class="column--primary">
330
+ <div class="story-body">
331
+ <h1 class="story-body__h1">China media: Military might</h1>
332
+
333
+
334
+ <div class="story-body__mini-info-list-and-share">
335
+ <ul class="mini-info-list">
336
+ <li class="mini-info-list__item"> <div class="date date--v2" data-seconds="1422427114" data-datetime="28 January 2015">28 January 2015</div>
337
+ </li>
338
+ <li class="mini-info-list__item"><span class="mini-info-list__section-desc off-screen">From the section </span><a href="/news/world/asia/china" class="mini-info-list__section">China</a></li>
339
+ </ul>
340
+ </div>
341
+
342
+ <div class="story-body__inner" property="articleBody">
343
+ <figure class="media-landscape full-width has-caption lead"><img class="js-image-replace" alt="Papers say China military might is aimed keeping the world peaceful" src="http://ichef.bbci.co.uk/news/200/media/images/78792000/jpg/_78792770_armychina-epa.jpg" width="624" height="351">
344
+ <figcaption class="media-caption">
345
+ <span class="media-caption__text">
346
+ Papers say China's military might is aimed at keeping the world peaceful
347
+ </span>
348
+ </figcaption></figure><p class="story-body__introduction">Papers play down doubts that a planned military parade in China is aimed at Japan.</p><p>Several media outlets are abuzz with discussion about the parade after an article in the <a href="http://mp.weixin.qq.com/s?__biz=MjM5MjAxNDM4MA==&amp;mid=207693935&amp;idx=1&amp;sn=64ca4575f32528e60304cf08a4f34007&amp;key=79cf83ea5128c3e5050ba5a21f123cbb53b450737ddcbcea517691655a3f4b4e225a47965990248dc03144790dd7efa3&amp;ascene=1&amp;uin=NTYyNDU4NTQw&amp;devicetype=Windows-QQBr" class="story-body__link-external">People's Daily</a> revealed that China will hold a ceremony to demonstrate its military might while marking the 70th anniversary of World War Two.</p><p>The article says that the parade will "show China's determination to maintain the post-war world order" and also prove to be a "deterrence force against Japan".</p><p>Describing the wide attention over the news as a "fuss" and "farce", a <a href="http://www.chinadaily.com.cn/opinion/2015-01/27/content_19418728.htm" class="story-body__link-external">China Daily article</a> stresses that China is a "peace-loving country" and says the parade is "not aimed at planting hatred". </p><p>"China has no intention to taunt Japan by showing off its military might, even when Japanese politicians' words and actions have intensified tensions in East Asia," says the daily.</p><div id="" class="bbccom_slot mpu-ad" aria-hidden="true">
349
+ <div class="bbccom_advert bbccom_display_none">
350
+ <script type="text/javascript">
351
+ /**/
352
+ if (window.bbcdotcom && bbcdotcom.slot) {
353
+ bbcdotcom.slot('mpu', [1,2,3]);
354
+ }
355
+ /**/
356
+ </script>
357
+ </div>
358
+ <script type="text/javascript">
359
+ /**/
360
+ if (window.bbcdotcom && bbcdotcom.show) {
361
+ bbcdotcom.show()
362
+ }
363
+ /**/
364
+ </script>
365
+ </div><p>However, the paper reminds readers that Japanese politicians have attempted to "whitewash Japan's war crimes in past years".</p><p>China and Japan are currently embroiled in a territorial dispute. Beijing also accuses Tokyo of glossing over its war actions.</p><p>China's papers have cast doubt over Japanese PM Shinzo Abe's sincerity after he pledged earlier this month that he would "express remorse" over wartime history.</p><p>Echoing similar sentiments, experts tell the <a href="http://www.globaltimes.cn/content/904397.shtml" class="story-body__link-external">Global Times</a> that the parade will "send a signal to Japan to not stray from the pacifist path".</p><p>A <a href="http://www.globaltimes.cn/content/904383.shtml" class="story-body__link-external">Global Times editorial</a> expects the scale of the parade to be smaller than the National Day military parade held once every 10 years. </p><p>A large-scale parade was last held in 2009, marking the 60th anniversary of the establishment of the People's Republic of China. </p><p>"While the National Day military parade should keep an authoritative display of China's defensive power… the anti-fascist parade must stress the interconnection between China's military power and the determination to keep world peace," it says.</p><p><a href="http://epaper.bjnews.com.cn/html/2015-01/28/content_559679.htm?div=-1" class="story-body__link-external">The Beijing News</a> observes that preparations for the ceremony are yet to start.</p><p>Gong Fangbin, a professor at National Defence University, tells the paper that holding the parade will show the world that "China's military might is beneficial for world peace". </p><h2 class="story-body__crosshead">Access blocked</h2><p>Elsewhere, a top official has warned foreign websites to "abide by Chinese laws", a day after authorities blocked several virtual private network (VPN) services.</p><p>"The development of the Internet has to be in accordance with Chinese laws," the <a href="http://www.chinadaily.com.cn/business/tech/2015-01/28/content_19424478.htm" class="story-body__link-external">China Daily</a> quotes Wen Ku, a top official at the Ministry of Industry and Information Technology, as saying. </p><p>The daily explains that many foreigners and some Chinese use the services to access blocked information and Google-based business tools.</p><p>Defending the authorities, Charlie Dai, an information analyst, says it is "perfectly legitimate" for the government to block the services as some overseas organisations "spread information that is illegal in China" through such platforms.</p><p>The Chinese edition of the <a href="http://opinion.huanqiu.com/editorial/2015-01/5526579.html" class="story-body__link-external">Global Times</a> argues that the "successful" Great Firewall, an extensive web filtering system, has provided opportunities for domestic internet giants to expand.</p><p>"This probably is an 'accidental fruit' of the Great Firewall. If there was no such system or similar internet management, China probably would be infiltrated by Google, Yahoo and Facebook," it says.          </p><h2 class="story-body__crosshead">'Conversion treatment'</h2><p>And finally, a gay rights activist has urged the government to ban hospitals from providing conversion treatment after she was advised by a doctor to receive the therapy. </p><p>The woman told the <a href="http://www.globaltimes.cn/content/904357.shtml" class="story-body__link-external">Global Times</a> that doctors assured her that she would be fine "once the disease of homosexuality was cured".</p><p>She had gone to the hospital in Beijing to seek help after breaking up with her girlfriend. </p><p>According to her, one doctor told her that "being a lesbian is a psychological disease" and presented many "successful" cases of conversion treatment.</p><p>China decriminalised gay sex in 1997 and stopped regarding homosexuality as a mental disorder in 2001.</p><p><a href="http://www.bbc.co.uk/monitoring" class="story-body__link">BBC Monitoring</a><i> reports and analyses news from TV, radio, web and print media around the world. You can follow BBC Monitoring on </i><a href="https://twitter.com/BBCMonitoring" class="story-body__link-external">Twitter</a><i> and </i><a href="https://www.facebook.com/BBCMonitoring" class="story-body__link-external">Facebook</a><i>.</i></p>
366
+ </div>
367
+ </div>
368
+ <div class="share share--lightweight show ghost-column">
369
+ <a name="share-tools"></a>
370
+ <h2 class="share__title share__title--lightweight">
371
+ Share this story <a href="http://www.bbc.co.uk/help/web/sharing.shtml">About&nbsp;sharing</a>
372
+ </h2>
373
+ <ul class="share__tools share__tools--lightweight">
374
+ <li class="share__tool share__tool--email">
375
+ <a href="mailto:?subject=Shared%20from%20BBC%20News&body=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941" >
376
+ <span>Email</span>
377
+ </a>
378
+ </li>
379
+ <li class="share__tool share__tool--facebook">
380
+ <a href="http://www.facebook.com/dialog/feed?app_id=58567469885&redirect_uri=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941&link=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941%3FSThisFB" >
381
+ <span>Facebook</span>
382
+ </a>
383
+ </li>
384
+ <li class="share__tool share__tool--twitter">
385
+ <a href="https://twitter.com/intent/tweet?text=BBC%20News%20-%20China%20media%3A%20Military%20might&url=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941" class=shortenUrl data-social-url=https://twitter.com/intent/tweet?text=BBC+News+-+China+media%3A+Military+might&amp;url= data-target-url=http://www.bbc.co.uk/news/world-asia-china-31014941>
386
+ <span>Twitter</span>
387
+ </a>
388
+ </li>
389
+ <li class="share__tool share__tool--whatsapp">
390
+ <a href="whatsapp://send?text=BBC%20News%20%7C%20China%20media%3A%20Military%20might%20-%20http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941%3Focid%3Dwsnews_chatapps_whatsapp_msg_trial_link1" >
391
+ <span>WhatsApp</span>
392
+ </a>
393
+ </li>
394
+ <li class="share__tool share__tool--linkedin">
395
+ <a href="https://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-asia-china-31014941&title=China%20media%3A%20Military%20might&summary=Papers%20play%20down%20doubts%20that%20China%27s%20planned%20military%20parade%20marking%20the%20end%20of%20Word%20War%20Two%20is%20aimed%20at%20%27taunting%27%20Japan.&source=BBC" >
396
+ <span>Linkedin</span>
397
+ </a>
398
+ </li>
399
+ </ul>
400
+ </div>
401
+
402
+ <div class="story-more">
403
+ <div class="group related-links more-on-this-story"> <div class="group__header"> <h2 class="group__title">Around the BBC</h2> </div> <div class="group__body"> <ul class="units-list related-links--internal "> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://www.bbc.co.uk/chinese"> <div class="unit__title"> <span class="cta">BBC Chinese</span> </div> </a> </div> </div> </li> </ul> </div> </div> </div>
404
+
405
+ <div class="story-more">
406
+ <div class="group related-links--external more-on-this-story"> <div class="group__header"> <h2 class="group__title">Related Internet links</h2> </div> <div class="group__body"> <ul class="units-list "> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://www.people.com.cn/"> <div class="unit__title"> <span class="cta">People's Daily</span> </div> </a> </div> </div> </li> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://www.chinadaily.com.cn/english/home/index.html"> <div class="unit__title"> <span class="cta">China Daily</span> </div> </a> </div> </div> </li> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://www.globaltimes.cn/"> <div class="unit__title"> <span class="cta">Global Times</span> </div> </a> </div> </div> </li> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://nd.oeeee.com/"> <div class="unit__title"> <span class="cta">Southern Metropolis Daily</span> </div> </a> </div> </div> </li> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://www.scmp.com/"> <div class="unit__title"> <span class="cta">South China Morning Post</span> </div> </a> </div> </div> </li> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://news.mingpao.com/"> <div class="unit__title"> <span class="cta">Ming Pao Daily News</span> </div> </a> </div> </div> </li> <li class="unit unit--headline"> <div class="unit__body"> <div class="unit__header"> <a class="unit__link-wrapper" href="http://www.chinaview.cn/"> <div class="unit__title"> <span class="cta">Xinhua news agency</span> </div> </a> </div> </div> </li> </ul> </div> </div>
407
+ <p class="unit__meta">The BBC is not responsible for the content of external Internet sites</p>
408
+ </div>
409
+ <div id="comp-small-promo-group" class="small-promo-group"data-comp-meta="{&quot;id&quot;:&quot;comp-more-from-this-index&quot;,&quot;type&quot;:&quot;more-from-this-index&quot;,&quot;handler&quot;:&quot;moreFromThisIndex&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;loading_strategy&quot;:&quot;post_load&quot;,&quot;bespoke_post_load_handler&quot;:&quot;module\/components\/moreFromThisIndexAdapter&quot;,&quot;asset_id&quot;:&quot;world\/asia\/china&quot;,&quot;exclude_item&quot;:&quot;world-asia-china-31014941&quot;,&quot;position_info&quot;:{&quot;instanceNo&quot;:1,&quot;positionInRegion&quot;:5,&quot;lastInRegion&quot;:false,&quot;lastOnPage&quot;:false,&quot;column&quot;:&quot;primary_column&quot;}}}">
410
+ <h2 class="group-title " data-entityid="strapline#">
411
+ <a href="/news/world/asia/china" class="group-title__link">More China stories</a>
412
+
413
+ </h2>
414
+ <div class="small-promo-group__body promo-unit-spacer">
415
+ </div>
416
+ </div>
417
+ <div id=comp-from-other-news-sites
418
+ class="hidden"
419
+ data-comp-meta="{&quot;id&quot;:&quot;comp-from-other-news-sites&quot;,&quot;type&quot;:&quot;from-other-news-sites&quot;,&quot;handler&quot;:&quot;default&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;conditions&quot;:[&quot;is_local_page&quot;],&quot;loading_strategy&quot;:&quot;post_load&quot;,&quot;asset_id&quot;:&quot;world-asia-china-31014941&quot;,&quot;position_info&quot;:{&quot;instanceNo&quot;:1,&quot;positionInRegion&quot;:6,&quot;lastInRegion&quot;:true,&quot;lastOnPage&quot;:false,&quot;column&quot;:&quot;primary_column&quot;}},&quot;template&quot;:&quot;\/component\/from-other-news-sites&quot;}">
420
+ </div>
421
+ <div id="" class="bbccom_slot outbrain-ad" aria-hidden="true">
422
+ <div class="bbccom_advert bbccom_display_none">
423
+ <script type="text/javascript">
424
+ /*<![CDATA[*/
425
+ if (window.bbcdotcom && bbcdotcom.slot) {
426
+ bbcdotcom.slot('outbrain_ar_5', [1,2,3,4]);
427
+ }
428
+ /*]]>*/
429
+ </script>
430
+ </div>
431
+ <script type="text/javascript">
432
+ /*<![CDATA[*/
433
+ if (window.bbcdotcom && bbcdotcom.show) {
434
+ bbcdotcom.show()
435
+ }
436
+ /*]]>*/
437
+ </script>
438
+ </div>
439
+ <div id="" class="bbccom_slot outbrain-ad" aria-hidden="true">
440
+ <div class="bbccom_advert bbccom_display_none">
441
+ <script type="text/javascript">
442
+ /*<![CDATA[*/
443
+ if (window.bbcdotcom && bbcdotcom.slot) {
444
+ bbcdotcom.slot('outbrain_ar_7', [1,2,3,4]);
445
+ }
446
+ /*]]>*/
447
+ </script>
448
+ </div>
449
+ <script type="text/javascript">
450
+ /*<![CDATA[*/
451
+ if (window.bbcdotcom && bbcdotcom.show) {
452
+ bbcdotcom.show()
453
+ }
454
+ /*]]>*/
455
+ </script>
456
+ </div>
457
+ <div id="" class="bbccom_slot outbrain-ad" aria-hidden="true">
458
+ <div class="bbccom_advert bbccom_display_none">
459
+ <script type="text/javascript">
460
+ /*<![CDATA[*/
461
+ if (window.bbcdotcom && bbcdotcom.slot) {
462
+ bbcdotcom.slot('outbrain_ar_8', [1,2,3,4]);
463
+ }
464
+ /*]]>*/
465
+ </script>
466
+ </div>
467
+ <script type="text/javascript">
468
+ /*<![CDATA[*/
469
+ if (window.bbcdotcom && bbcdotcom.show) {
470
+ bbcdotcom.show()
471
+ }
472
+ /*]]>*/
473
+ </script>
474
+ </div> </div>
475
+ <div class="column--secondary" role="complementary">
476
+ <div id="comp-top-stories-promo" class="top-stories-promo">
477
+ <h2 class="top-stories-promo__title">Top Stories</h2>
478
+ <a href="/news/uk-scotland-scotland-politics-32760196" class="top-stories-promo-story" data-asset-id="/news/uk-scotland-scotland-politics-32760196">
479
+ <strong class="top-stories-promo-story__title">Scots Labour leader Murphy to resign</strong>
480
+ <p class="top-stories-promo-story__summary ">Scottish Labour leader Jim Murphy announces he is to resign next month despite narrowly surviving a vote of no confidence.</p>
481
+ <div class="date date--v2" data-seconds="1431799009" data-datetime="16 May 2015">16 May 2015</div>
482
+ </a>
483
+ <a href="/news/world-middle-east-32764995" class="top-stories-promo-story" data-asset-id="/news/world-middle-east-32764995">
484
+ <strong class="top-stories-promo-story__title">US special forces in Syria raid</strong>
485
+ <div class="date date--v2" data-seconds="1431808701" data-datetime="16 May 2015">16 May 2015</div>
486
+ </a>
487
+ <a href="/news/world-middle-east-32763215" class="top-stories-promo-story" data-asset-id="/news/world-middle-east-32763215">
488
+ <strong class="top-stories-promo-story__title">Egypt's Morsi sentenced to death</strong>
489
+ <div class="date date--v2" data-seconds="1431789242" data-datetime="16 May 2015">16 May 2015</div>
490
+ </a>
491
+ </div>
492
+ <div id="" class="bbccom_slot mpu-ad" aria-hidden="true">
493
+ <div class="bbccom_advert bbccom_display_none">
494
+ <script type="text/javascript">
495
+ /*<![CDATA[*/
496
+ if (window.bbcdotcom && bbcdotcom.slot) {
497
+ bbcdotcom.slot('mpu', [4]);
498
+ }
499
+ /*]]>*/
500
+ </script>
501
+ </div>
502
+ <script type="text/javascript">
503
+ /*<![CDATA[*/
504
+ if (window.bbcdotcom && bbcdotcom.show) {
505
+ bbcdotcom.show()
506
+ }
507
+ /*]]>*/
508
+ </script>
509
+ </div> <div id=comp-story-recommendations
510
+ class="hidden"
511
+ data-post-load-url="/news/pattern-library-components?options%5Bcomponents%5D%5B0%5D%5Bname%5D=penguin&amp;options%5Bconditions%5D%5Bfeature_toggle%5D=story_recommendations&amp;options%5Bcontainer_class%5D=region-grey-background+container-recommendations-on-sty&amp;options%5Bdata%5D%5Bsource%5D=recommendations&amp;options%5Bid%5D=story-recommendations&amp;options%5Bloading_strategy%5D=post_load&amp;options%5Basset_id%5D=world-asia-china-31014941&amp;presenter=pattern-library-presenter">
512
+ </div>
513
+ <div class="features-and-analysis" id="comp-features-and-analysis" >
514
+ <h2 class="features-and-analysis__title">
515
+
516
+ Features
517
+ </h2>
518
+ <div class="features-and-analysis__stories promo-unit-spacer">
519
+
520
+ <div class="features-and-analysis__story">
521
+ <a href="/news/magazine-31602745" class="bold-image-promo">
522
+ <div class="bold-image-promo__image">
523
+ <div class="responsive-image responsive-image--16by9">
524
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/81200000/jpg/_81200761_hamburger-icon.jpg" data-width="624" data-height="351" data-alt="Hamburger icon and hamburger"></div>
525
+ <!--[if lt IE 9]>
526
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/81200000/jpg/_81200761_hamburger-icon.jpg" class="responsive-image__image js-image-replace" alt="Hamburger icon and hamburger" width="624" height="351" />
527
+ <![endif]-->
528
+ </div>
529
+ </div>
530
+ <h3 class="bold-image-promo__title">Hamburger icon</h3>
531
+ <p class="bold-image-promo__summary">How these three lines mystify most people</p>
532
+ </a>
533
+ </div>
534
+
535
+
536
+ <div class="features-and-analysis__story">
537
+ <a href="/news/technology-32710739" class="bold-image-promo">
538
+ <div class="bold-image-promo__image">
539
+ <div class="responsive-image responsive-image--16by9">
540
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/82940000/jpg/_82940314_img_20150427_150110.jpg" data-width="464" data-height="261" data-alt="Kaspar"></div>
541
+ <!--[if lt IE 9]>
542
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/82940000/jpg/_82940314_img_20150427_150110.jpg" class="responsive-image__image js-image-replace" alt="Kaspar" width="464" height="261" />
543
+ <![endif]-->
544
+ </div>
545
+ </div>
546
+ <h3 class="bold-image-promo__title">Being watched</h3>
547
+ <p class="bold-image-promo__summary">Robot house sleepover at the home that hums</p>
548
+ </a>
549
+ </div>
550
+
551
+
552
+ <div class="features-and-analysis__story">
553
+ <a href="/news/entertainment-arts-32547167" class="bold-image-promo">
554
+ <div class="bold-image-promo__image">
555
+ <div class="responsive-image responsive-image--16by9">
556
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/82711000/jpg/_82711006_82711005.jpg" data-width="624" data-height="351" data-alt="Cannes poster"></div>
557
+ <!--[if lt IE 9]>
558
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/82711000/jpg/_82711006_82711005.jpg" class="responsive-image__image js-image-replace" alt="Cannes poster" width="624" height="351" />
559
+ <![endif]-->
560
+ </div>
561
+ </div>
562
+ <h3 class="bold-image-promo__title">Cannes: Reporter's Diary</h3>
563
+ <p class="bold-image-promo__summary">Latest updates from the 68th Cannes Film Festival</p>
564
+ </a>
565
+ </div>
566
+
567
+
568
+ <div class="features-and-analysis__story">
569
+ <a href="/news/magazine-32749262" class="bold-image-promo">
570
+ <div class="bold-image-promo__image">
571
+ <div class="responsive-image responsive-image--16by9">
572
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/83024000/jpg/_83024575_inside_engine624afp.jpg" data-width="624" data-height="351" data-alt="A jet engine"></div>
573
+ <!--[if lt IE 9]>
574
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/83024000/jpg/_83024575_inside_engine624afp.jpg" class="responsive-image__image js-image-replace" alt="A jet engine" width="624" height="351" />
575
+ <![endif]-->
576
+ </div>
577
+ </div>
578
+ <h3 class="bold-image-promo__title">Flying alloy</h3>
579
+ <p class="bold-image-promo__summary">The metal that brought you cheap foreign holidays</p>
580
+ </a>
581
+ </div>
582
+
583
+
584
+ <div class="features-and-analysis__story">
585
+ <a href="/news/blogs-magazine-monitor-32749196" class="bold-image-promo">
586
+ <div class="bold-image-promo__image">
587
+ <div class="responsive-image responsive-image--16by9">
588
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/83032000/jpg/_83032310_467111080.jpg" data-width="624" data-height="351" data-alt="Two women with paint on their faces"></div>
589
+ <!--[if lt IE 9]>
590
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/83032000/jpg/_83032310_467111080.jpg" class="responsive-image__image js-image-replace" alt="Two women with paint on their faces" width="624" height="351" />
591
+ <![endif]-->
592
+ </div>
593
+ </div>
594
+ <h3 class="bold-image-promo__title">10 things </h3>
595
+ <p class="bold-image-promo__summary">What's the world's favourite colour?</p>
596
+ </a>
597
+ </div>
598
+
599
+
600
+ <div class="features-and-analysis__story">
601
+ <a href="/news/in-pictures-32735181" class="bold-image-promo">
602
+ <div class="bold-image-promo__image">
603
+ <div class="responsive-image responsive-image--16by9">
604
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/83019000/jpg/_83019664_51feafe5-4cb6-4858-84d6-24c97cf11705.jpg" data-width="699" data-height="393" data-alt="Texas Rangers' Josh Hamilton signs the back of a baby"></div>
605
+ <!--[if lt IE 9]>
606
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/83019000/jpg/_83019664_51feafe5-4cb6-4858-84d6-24c97cf11705.jpg" class="responsive-image__image js-image-replace" alt="Texas Rangers' Josh Hamilton signs the back of a baby" width="699" height="393" />
607
+ <![endif]-->
608
+ </div>
609
+ </div>
610
+ <h3 class="bold-image-promo__title">Week in pictures</h3>
611
+ <p class="bold-image-promo__summary">Some of the best news photographs from around the world</p>
612
+ </a>
613
+ </div>
614
+
615
+
616
+ <div class="features-and-analysis__story">
617
+ <a href="/news/blogs-trending-32742043" class="bold-image-promo">
618
+ <div class="bold-image-promo__image">
619
+ <div class="responsive-image responsive-image--16by9">
620
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/83001000/jpg/_83001248_yotambienmedormi_1c.jpg" data-width="640" data-height="360" data-alt="A picture posted on Twitter by @Christ_Gi"></div>
621
+ <!--[if lt IE 9]>
622
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/83001000/jpg/_83001248_yotambienmedormi_1c.jpg" class="responsive-image__image js-image-replace" alt="A picture posted on Twitter by @Christ_Gi" width="640" height="360" />
623
+ <![endif]-->
624
+ </div>
625
+ </div>
626
+ <h3 class="bold-image-promo__title">Dozing doctors</h3>
627
+ <p class="bold-image-promo__summary">Why some medical students aren’t ashamed of snoozing</p>
628
+ </a>
629
+ </div>
630
+
631
+
632
+ <div class="features-and-analysis__story">
633
+ <a href="/news/uk-politics-32739591" class="bold-image-promo">
634
+ <div class="bold-image-promo__image">
635
+ <div class="responsive-image responsive-image--16by9">
636
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/83037000/jpg/_83037693_lexi.jpg" data-width="624" data-height="351" data-alt="Lexi Rose"></div>
637
+ <!--[if lt IE 9]>
638
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/83037000/jpg/_83037693_lexi.jpg" class="responsive-image__image js-image-replace" alt="Lexi Rose" width="624" height="351" />
639
+ <![endif]-->
640
+ </div>
641
+ </div>
642
+ <h3 class="bold-image-promo__title">Political puzzle</h3>
643
+ <p class="bold-image-promo__summary">Why do people join losing parties?</p>
644
+ </a>
645
+ </div>
646
+
647
+
648
+ <div class="features-and-analysis__story">
649
+ <a href="/news/uk-england-cambridgeshire-31602871" class="bold-image-promo">
650
+ <div class="bold-image-promo__image">
651
+ <div class="responsive-image responsive-image--16by9">
652
+ <div class="responsive-image__image js-delayed-image-load" data-src="http://ichef.bbci.co.uk/news/304/media/images/83026000/jpg/_83026922_gettyimages_453859095.jpg" data-width="624" data-height="351" data-alt="spray tan"></div>
653
+ <!--[if lt IE 9]>
654
+ <img src="http://ichef.bbci.co.uk/news/304/media/images/83026000/jpg/_83026922_gettyimages_453859095.jpg" class="responsive-image__image js-image-replace" alt="spray tan" width="624" height="351" />
655
+ <![endif]-->
656
+ </div>
657
+ </div>
658
+ <h3 class="bold-image-promo__title">Spray tan science</h3>
659
+ <p class="bold-image-promo__summary">How the hole in the ozone layer changed our lives</p>
660
+ </a>
661
+ </div>
662
+
663
+ </div>
664
+ </div>
665
+
666
+ <div id="" class="bbccom_slot native-ad" >
667
+ <div class="bbccom_advert bbccom_display_none">
668
+ <script type="text/javascript">
669
+ /*<![CDATA[*/
670
+ if (window.bbcdotcom && bbcdotcom.slot) {
671
+ bbcdotcom.slot('native', [1,2,3,4]);
672
+ }
673
+ /*]]>*/
674
+ </script>
675
+ </div>
676
+ <script type="text/javascript">
677
+ /*<![CDATA[*/
678
+ if (window.bbcdotcom && bbcdotcom.show) {
679
+ bbcdotcom.show()
680
+ }
681
+ /*]]>*/
682
+ </script>
683
+ </div> <div id=comp-most-popular
684
+ class="hidden"
685
+ data-comp-meta="{&quot;id&quot;:&quot;comp-most-popular&quot;,&quot;type&quot;:&quot;most-popular&quot;,&quot;handler&quot;:&quot;mostPopular&quot;,&quot;deviceGroups&quot;:null,&quot;opts&quot;:{&quot;loading_strategy&quot;:&quot;post_load&quot;,&quot;position_info&quot;:{&quot;instanceNo&quot;:1,&quot;positionInRegion&quot;:4,&quot;lastInRegion&quot;:true,&quot;lastOnPage&quot;:true,&quot;column&quot;:&quot;secondary_column&quot;}},&quot;template&quot;:&quot;\/component\/most-popular&quot;}">
686
+ </div>
687
+ <div id="" class="bbccom_slot mpu-bottom-ad" aria-hidden="true">
688
+ <div class="bbccom_advert bbccom_display_none">
689
+ <script type="text/javascript">
690
+ /*<![CDATA[*/
691
+ if (window.bbcdotcom && bbcdotcom.slot) {
692
+ bbcdotcom.slot('mpu_bottom', [1,2,3,4]);
693
+ }
694
+ /*]]>*/
695
+ </script>
696
+ </div>
697
+ <script type="text/javascript">
698
+ /*<![CDATA[*/
699
+ if (window.bbcdotcom && bbcdotcom.show) {
700
+ bbcdotcom.show()
701
+ }
702
+ /*]]>*/
703
+ </script>
704
+ </div>
705
+ <div id="" class="bbccom_slot outbrain-ad" aria-hidden="true">
706
+ <div class="bbccom_advert bbccom_display_none">
707
+ <script type="text/javascript">
708
+ /*<![CDATA[*/
709
+ if (window.bbcdotcom && bbcdotcom.slot) {
710
+ bbcdotcom.slot('outbrain_ar_9', [1,2,3,4]);
711
+ }
712
+ /*]]>*/
713
+ </script>
714
+ </div>
715
+ <script type="text/javascript">
716
+ /*<![CDATA[*/
717
+ if (window.bbcdotcom && bbcdotcom.show) {
718
+ bbcdotcom.show()
719
+ }
720
+ /*]]>*/
721
+ </script>
722
+ </div>
723
+ <div id="" class="bbccom_slot adsense-ad" aria-hidden="true">
724
+ <div class="bbccom_advert bbccom_display_none">
725
+ <script type="text/javascript">
726
+ /*<![CDATA[*/
727
+ if (window.bbcdotcom && bbcdotcom.slot) {
728
+ bbcdotcom.slot('adsense', [1,2,3,4]);
729
+ }
730
+ /*]]>*/
731
+ </script>
732
+ </div>
733
+ <script type="text/javascript">
734
+ /*<![CDATA[*/
735
+ if (window.bbcdotcom && bbcdotcom.show) {
736
+ bbcdotcom.show()
737
+ }
738
+ /*]]>*/
739
+ </script>
740
+ </div> </div>
741
+ </div> </div> </div> </div>
742
+
743
+
744
+
745
+
746
+ <div id="core-navigation" class="navigation--footer">
747
+ <h2 class="navigation--footer__heading">News navigation</h2>
748
+
749
+ <nav id="secondary-navigation--bottom" class="secondary-navigation--bottom" role="navigation" aria-label="Asia">
750
+ <a class="secondary-navigation__title navigation-arrow " href="/news/world/asia"><span>Asia</span></a>
751
+ <span class="navigation-core-title"><span>Sections</span></span>
752
+ <ul class="secondary-navigation--bottom__toplevel">
753
+ <li class="navigation-core-index ">
754
+ <a href="/news/world/asia">
755
+ <span>Asia</span>
756
+ </a>
757
+ </li>
758
+ <li class="selected">
759
+ <a href="/news/world/asia/china"><span>China</span></a>
760
+ <span class="off-screen">selected</span> </li>
761
+ <li>
762
+ <a href="/news/world/asia/india"><span>India</span></a>
763
+ </li>
764
+ </ul>
765
+ </nav>
766
+
767
+ <nav id="navigation--bottom" class="navigation navigation--bottom core--with-secondary" role="navigation" aria-label="News">
768
+ <ul class="navigation--bottom__toplevel">
769
+ <li class="">
770
+ <a href="/news" class="">
771
+ <span>Home</span>
772
+ </a>
773
+ </li>
774
+ <li class="">
775
+ <a href="/news/uk" data-panel-id="js-navigation-panel-UK" class="navigation-arrow">
776
+ <span>UK</span>
777
+ </a>
778
+ <div class="navigation-panel navigation-panel--closed js-navigation-panel-UK">
779
+ <div class="navigation-panel__content">
780
+ <ul class="navigation-panel-secondary">
781
+ <li><a href="/news/uk"><span>UK Home</span></a></li>
782
+ <li>
783
+ <a href="/news/england"><span>England</span></a> </li>
784
+ <li>
785
+ <a href="/news/northern_ireland"><span>N. Ireland</span></a> </li>
786
+ <li>
787
+ <a href="/news/scotland"><span>Scotland</span></a> </li>
788
+ <li>
789
+ <a href="/naidheachdan"><span>Alba</span></a> </li>
790
+ <li>
791
+ <a href="/news/wales"><span>Wales</span></a> </li>
792
+ <li>
793
+ <a href="/cymrufyw"><span>Cymru</span></a> </li>
794
+ </ul>
795
+ </div>
796
+ </div>
797
+ </li>
798
+ <li class="selected navigation-list-item--open">
799
+ <a href="/news/world" data-panel-id="js-navigation-panel-World" class="navigation-arrow navigation-arrow--open">
800
+ <span>World</span>
801
+ </a>
802
+ <span class="off-screen">selected</span> <div class="navigation-panel js-navigation-panel-World">
803
+ <div class="navigation-panel__content">
804
+ <ul class="navigation-panel-secondary">
805
+ <li><a href="/news/world"><span>World Home</span></a></li>
806
+ <li>
807
+ <a href="/news/world/africa"><span>Africa</span></a> </li>
808
+ <li class="selected">
809
+ <a href="/news/world/asia"><span>Asia</span></a> <span class="off-screen">selected</span> </li>
810
+ <li>
811
+ <a href="/news/world/australia"><span>Australia</span></a> </li>
812
+ <li>
813
+ <a href="/news/world/europe"><span>Europe</span></a> </li>
814
+ <li>
815
+ <a href="/news/world/latin_america"><span>Latin America</span></a> </li>
816
+ <li>
817
+ <a href="/news/world/middle_east"><span>Middle East</span></a> </li>
818
+ <li>
819
+ <a href="/news/world/us_and_canada"><span>US &amp; Canada</span></a> </li>
820
+ </ul>
821
+ </div>
822
+ </div>
823
+ </li>
824
+ <li class="">
825
+ <a href="/news/business" data-panel-id="js-navigation-panel-Business" class="navigation-arrow">
826
+ <span>Business</span>
827
+ </a>
828
+ <div class="navigation-panel navigation-panel--closed js-navigation-panel-Business">
829
+ <div class="navigation-panel__content">
830
+ <ul class="navigation-panel-secondary">
831
+ <li><a href="/news/business"><span>Business Home</span></a></li>
832
+ <li>
833
+ <a href="/news/business/your_money"><span>Your Money</span></a> </li>
834
+ <li>
835
+ <a href="http://www.bbc.co.uk/news/business/market_data"><span>Market Data</span></a> </li>
836
+ <li>
837
+ <a href="/news/business/markets"><span>Markets</span></a> </li>
838
+ <li>
839
+ <a href="/news/business/companies"><span>Companies</span></a> </li>
840
+ <li>
841
+ <a href="/news/business/economy"><span>Economy</span></a> </li>
842
+ </ul>
843
+ </div>
844
+ </div>
845
+ </li>
846
+ <li class="">
847
+ <a href="/news/politics" data-panel-id="js-navigation-panel-Politics" class="navigation-arrow">
848
+ <span>Politics</span>
849
+ </a>
850
+ <div class="navigation-panel navigation-panel--closed js-navigation-panel-Politics">
851
+ <div class="navigation-panel__content">
852
+ <ul class="navigation-panel-secondary">
853
+ <li><a href="/news/politics"><span>Politics Home</span></a></li>
854
+ <li>
855
+ <a href="/news/election/2015"><span>Election 2015</span></a> </li>
856
+ <li>
857
+ <a href="/news/events/scotland-decides"><span>Scotland Decides</span></a> </li>
858
+ <li>
859
+ <a href="/news/events/vote2014"><span>Vote 2014</span></a> </li>
860
+ </ul>
861
+ </div>
862
+ </div>
863
+ </li>
864
+ <li class="">
865
+ <a href="/news/technology" class="">
866
+ <span>Tech</span>
867
+ </a>
868
+ </li>
869
+ <li class="">
870
+ <a href="/news/science_and_environment" class="">
871
+ <span>Science</span>
872
+ </a>
873
+ </li>
874
+ <li class="">
875
+ <a href="/news/health" class="">
876
+ <span>Health</span>
877
+ </a>
878
+ </li>
879
+ <li class="">
880
+ <a href="/news/education" data-panel-id="js-navigation-panel-Education" class="navigation-arrow">
881
+ <span>Education</span>
882
+ </a>
883
+ <div class="navigation-panel navigation-panel--closed js-navigation-panel-Education">
884
+ <div class="navigation-panel__content">
885
+ <ul class="navigation-panel-secondary">
886
+ <li><a href="/news/education"><span>Education Home</span></a></li>
887
+ <li>
888
+ <a href="/schoolreport"><span>School Report</span></a> </li>
889
+ </ul>
890
+ </div>
891
+ </div>
892
+ </li>
893
+ <li class="">
894
+ <a href="/news/entertainment_and_arts" class="">
895
+ <span>Entertainment &amp; Arts</span>
896
+ </a>
897
+ </li>
898
+ <li class="">
899
+ <a href="/news/video_and_audio/video" class="">
900
+ <span>Video &amp; Audio</span>
901
+ </a>
902
+ </li>
903
+ <li class="">
904
+ <a href="/news/magazine" class="">
905
+ <span>Magazine</span>
906
+ </a>
907
+ </li>
908
+ <li class="">
909
+ <a href="/news/in_pictures" class="">
910
+ <span>In Pictures</span>
911
+ </a>
912
+ </li>
913
+ <li class="">
914
+ <a href="/news/also_in_the_news" class="">
915
+ <span>Also in the News</span>
916
+ </a>
917
+ </li>
918
+ <li class="">
919
+ <a href="/news/special_reports" class="">
920
+ <span>Special Reports</span>
921
+ </a>
922
+ </li>
923
+ <li class="">
924
+ <a href="/news/explainers" class="">
925
+ <span>Explainers</span>
926
+ </a>
927
+ </li>
928
+ <li class="">
929
+ <a href="/news/the_reporters" class="">
930
+ <span>The Reporters</span>
931
+ </a>
932
+ </li>
933
+ <li class="">
934
+ <a href="/news/have_your_say" class="">
935
+ <span>Have Your Say</span>
936
+ </a>
937
+ </li>
938
+ </ul>
939
+ </nav>
940
+ </div>
941
+ <div id="services-bar" class="blue-tit" role="navigation" aria-label="BBC News Services">
942
+ <div class="blue-tit__inner">
943
+ <h2 class="blue-tit__title">BBC News Services</h2>
944
+ <ul class="blue-tit__list">
945
+ <li class="blue-tit__list-item">
946
+ <a href="http://www.bbc.co.uk/news/10628994" class="blue-tit__list-item-link mobile">On your mobile</a>
947
+ </li>
948
+ <li class="blue-tit__list-item">
949
+ <a href="http://www.bbc.co.uk/news/help-17655000" class="blue-tit__list-item-link connected-tv">On your connected TV</a>
950
+ </li>
951
+ <li class="blue-tit__list-item">
952
+ <a href="http://www.bbc.co.uk/news/10628323" class="blue-tit__list-item-link newsletter">Get news alerts</a>
953
+ </li>
954
+ <li class="blue-tit__list-item">
955
+ <a href="http://www.bbc.co.uk/news/20039682" class="blue-tit__list-item-link contact-us">Contact BBC News</a>
956
+ </li>
957
+ </ul>
958
+ </div>
959
+ </div>
960
+ </div><!-- closes #site-container --> </div> <div id="orb-footer" class="orb-footer orb-footer-grey" > <aside role="complementary"> <div id="orb-aside" class="orb-nav-sec b-r b-g-p"> <div class="orb-footer-inner" role="navigation"> <h2 class="orb-footer-lead">Explore the BBC</h2> <div id="orb-footer-promo" class="orb-d"></div> <div class="orb-footer-primary-links"> <ul> <li class="orb-nav-news orb-d" > <a href="http://www.bbc.co.uk/news/">News</a> </li> <li class="orb-nav-newsdotcom orb-w" > <a href="http://www.bbc.com/news/">News</a> </li> <li class="orb-nav-sport" > <a href="/sport/">Sport</a> </li> <li class="orb-nav-weather" > <a href="/weather/">Weather</a> </li> <li class="orb-nav-shop orb-w" > <a href="http://shop.bbc.com/">Shop</a> </li> <li class="orb-nav-earthdotcom orb-w" > <a href="http://www.bbc.com/earth/">Earth</a> </li> <li class="orb-nav-travel-dotcom orb-w" > <a href="http://www.bbc.com/travel/">Travel</a> </li> <li class="orb-nav-capital orb-w" > <a href="http://www.bbc.com/capital/">Capital</a> </li> <li class="orb-nav-iplayer orb-d" > <a href="/iplayer/">iPlayer</a> </li> <li class="orb-nav-culture orb-w" > <a href="http://www.bbc.com/culture/">Culture</a> </li> <li class="orb-nav-autos orb-w" > <a href="http://www.bbc.com/autos/">Autos</a> </li> <li class="orb-nav-future orb-w" > <a href="http://www.bbc.com/future/">Future</a> </li> <li class="orb-nav-tv" > <a href="/tv/">TV</a> </li> <li class="orb-nav-radio" > <a href="/radio/">Radio</a> </li> <li class="orb-nav-cbbc" > <a href="/cbbc">CBBC</a> </li> <li class="orb-nav-cbeebies" > <a href="/cbeebies">CBeebies</a> </li> <li class="orb-nav-arts orb-d" > <a href="/arts/">Arts</a> </li> <li > <a href="/ww1/">WW1</a> </li> <li class="orb-nav-food" > <a href="/food/">Food</a> </li> <li > <a href="/iwonder">iWonder</a> </li> <li > <a href="/education">Bitesize</a> </li> <li class="orb-nav-music" > <a href="/music/">Music</a> </li> <li class="orb-nav-nature orb-w" > <a href="/nature/">Nature</a> </li> <li class="orb-nav-earth orb-d" > <a href="http://www.bbc.com/earth/">Earth</a> </li> <li class="orb-nav-local" > <a href="/local/">Local</a> </li> <li class="orb-nav-travel orb-d" > <a href="/travel/">Travel</a> </li> </ul> </div> </div> </div> </aside> <footer role="contentinfo"> <div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"> <div class="orb-footer-inner"> <ul> <li > <a href="/terms/">Terms of Use</a> </li> <li > <a href="/aboutthebbc/">About the BBC</a> </li> <li > <a href="/privacy/">Privacy Policy</a> </li> <li > <a href="/privacy/cookies/about">Cookies</a> </li> <li > <a href="/accessibility/">Accessibility Help</a> </li> <li > <a href="/guidance/">Parental Guidance</a> </li> <li > <a href="/contact/">Contact the BBC</a> </li> </ul> <small> <span class="orb-hilight">Copyright &copy; 2015 BBC.</span> The BBC is not responsible for the content of external sites. <a href="/help/web/links/" class="orb-hilight">Read about our approach to external linking.</a> </small> </div> </div> </footer> </div> <!-- BBCDOTCOM bodyLast --><div class="bbccom_display_none"><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && window.bbcdotcom.analytics) { bbcdotcom.analytics.page(); } if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.currencyProviders.write(); } /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.currencyProviders.postWrite(); } /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ /** * ASNYC waits to make any gpt requests until the bottom of the page */ /*]]>*/ </script><script type="text/javascript"> /*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.stats && bbcdotcom.data.stats === 1 && bbcdotcom.utils && window.location.pathname === '/' && window.bbccookies && bbccookies.readPolicy('performance') ) { var wwhpEdition = bbcdotcom.utils.getMetaPropertyContent('wwhp-edition'); var _sf_async_config={}; /** CONFIGURATION START **/ _sf_async_config.uid = 50924; _sf_async_config.domain = "bbc.co.uk"; _sf_async_config.title = "Homepage"+(wwhpEdition !== '' ? ' - '+wwhpEdition : ''); _sf_async_config.sections = "Homepage"+(wwhpEdition !== '' ? ', Homepage - '+wwhpEdition : ''); _sf_async_config.region = wwhpEdition; _sf_async_config.path = "/"+(wwhpEdition !== '' ? '?'+wwhpEdition : ''); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); } /*]]>*/ </script></div> <!-- BBCDOTCOM all code in page --> <script type="text/javascript"> document.write('<' + 'script id="orb-js-script" data-assetpath="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/" src="http://static.bbci.co.uk/frameworks/barlesque/2.83.10/orb/4/script' + (( document.cookie.indexOf('ckns_debugorbjs') > -1 )? '-debug' : '') + '/orb.js"><' + '/script>'); </script> <script type="text/javascript"> (function() {
961
+ 'use strict';
962
+
963
+ var promoManager = {
964
+ url: '',
965
+ segments: ['a', 'b'],
966
+ promoLoaded: false,
967
+ makeUrl: function (variant, theme, win) {
968
+ var loc = win? win.location : window.location,
969
+ proto = loc.protocol,
970
+ host = loc.host,
971
+ url = proto + '//' + ((proto.match(/s:/i) && !host.match(/^www\.(int|test)\./i))? 'ssl.' : 'www.'),
972
+ themes = ['light', 'dark'];
973
+
974
+ if ( host.match(/^(?:www|ssl)\.(int|test|stage|live)\.bbc\./i) ) {
975
+ url += RegExp.$1 + '.';
976
+ }
977
+ else if ( host.match(/^pal\.sandbox\./i) ) {
978
+ url += 'test.';
979
+ }
980
+
981
+ theme = themes[ +(theme === themes[0]) ];
982
+
983
+ return url + 'bbc.co.uk/navpromo/' + variant + '/' + theme;
984
+ },
985
+ validSegment: function (segment) {
986
+ var validSegments = this.segments;
987
+
988
+ for (var i = 0, len = validSegments.length; i < len; i++) {
989
+ if (validSegments[i] === segment) {
990
+ return segment;
991
+ }
992
+ }
993
+
994
+ return validSegments[0];
995
+ },
996
+ init: function(node) {
997
+ var disabledByCookie = (document.cookie.indexOf('ckns_orb_nopromo=1') > -1),
998
+ orbFullWidth = (document.getElementById('orb-aside').offsetWidth >= 1008),
999
+ that = this;
1000
+
1001
+ if (window.promomanagerOverride) {
1002
+ for (var p in promomanagerOverride) {
1003
+ that[p] = promomanagerOverride[p];
1004
+ }
1005
+ }
1006
+
1007
+ if ( window.orb.fig('uk') && orbFullWidth && !disabledByCookie ) {
1008
+ require(['orb/async/_footerpromo', 'istats-1'], function(promo, istats) {
1009
+ var mandolinEndDate = new Date().getTime() + (7 * 60 * 60 * 24) * 1000,
1010
+ mandolin = new bbc.Mandolin('footer-promo', that.segments, {rate: 0.2, end: mandolinEndDate}),
1011
+ segmentToRequest = that.validSegment(mandolin.getSegment());
1012
+
1013
+ that.url = (window.promomanagerOverride || that).makeUrl(segmentToRequest, 'light');
1014
+
1015
+ if (that.url) {
1016
+ promo.load(that.url, node, {
1017
+ onSuccess: function(e) {
1018
+ istats.addLabels({ 'campaignID': e.campaignID });
1019
+ if (segmentToRequest === mandolin.getSegment()) {
1020
+ istats.addLabels({ 'promo_id_segment': e.campaignID + ':' + mandolin.getSegment() });
1021
+ }
1022
+ istats.track('internal', {region: node, linkLocation : 'orb-footer-promo'});
1023
+
1024
+ istats.log('display', 'orb-footer-promo-displayed', {campaignID : e.campaignID, testVariant: segmentToRequest});
1025
+ node.className = node.className + ' orb-footer-promo-loaded';
1026
+ promoManager.promoLoaded = true;
1027
+ promoManager.event('promo-loaded').fire(e);
1028
+ },
1029
+ onError: function() {
1030
+ istats.log('error', 'orb-footer-promo-failed');
1031
+ document.cookie = 'ckns_orb_nopromo=1; expires=' + new Date(new Date().getTime() + 1000 * 60 * 10).toGMTString() + ';';
1032
+ }
1033
+ });
1034
+ }
1035
+ });
1036
+ }
1037
+ }
1038
+ };
1039
+
1040
+
1041
+ define('orb/promomanager', ['orb/lib/_event'], function (event) {
1042
+ event.mixin(promoManager);
1043
+ return promoManager;
1044
+ });
1045
+
1046
+ require(['orb/promomanager'], function (promoManager) {
1047
+ promoManager.init(document.getElementById('orb-footer-promo'));
1048
+ })
1049
+ })();
1050
+ </script> <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementsByTagName('body')[0] }); istats.track('download', { region: document.getElementsByTagName('body')[0] }); }); } </script> <img alt="" id="livestats" src="http://stats.bbc.co.uk/o.gif?~RS~s~RS~News~RS~t~RS~HighWeb_Story~RS~i~RS~31014941~RS~p~RS~101361~RS~a~RS~Domestic~RS~u~RS~/news/world-asia-china-31014941~RS~r~RS~0~RS~q~RS~0~RS~z~RS~2482~RS~"> <script> window.old_onload = window.onload; window.onload = function() { if(window.old_onload) { window.old_onload(); } window.loaded = true; }; </script> <!-- Chartbeat Web Analytics code - start -->
1051
+ <script type="text/javascript">
1052
+ var _sf_async_config={};
1053
+ /** CONFIGURATION START **/
1054
+ _sf_async_config.uid = "50924";
1055
+ _sf_async_config.domain = "www.bbc.co.uk";
1056
+ _sf_async_config.sections = "News, News - china, News - STY, News - china - STY";
1057
+ <!-- if page is an index, add the edition to the path -->
1058
+ _sf_async_config.path = "/news/world-asia-china-31014941";
1059
+ (function() {
1060
+ var noCookies = true;
1061
+ var cookiePrefix = '_chartbeat';
1062
+ if ("object" === typeof bbccookies && typeof bbccookies.readPolicy == 'function') {
1063
+ noCookies = !bbccookies.readPolicy().performance;
1064
+ }
1065
+ if (noCookies && document.cookie.indexOf(cookiePrefix) !== -1) {
1066
+ //Find and remove cookies whose names begin with '_chartbeat'
1067
+ var cookieSplit = document.cookie.split(';');
1068
+ var cookieLength = cookieSplit.length;
1069
+ while (cookieLength--) {
1070
+ var cookie = cookieSplit[cookieLength].replace(/^\s+|\s+$/g, '');
1071
+ var cookieName = cookie.split('=')[0];
1072
+
1073
+ if (cookieName.indexOf(cookiePrefix) === 0) {
1074
+ document.cookie = cookieName + '=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;';
1075
+ }
1076
+ }
1077
+ }
1078
+ _sf_async_config.noCookies = noCookies;
1079
+ }());
1080
+
1081
+ /** CONFIGURATION END **/
1082
+ (function(){
1083
+ function loadChartbeat() {
1084
+ window._sf_endpt=(new Date()).getTime();
1085
+ var e = document.createElement("script");
1086
+ e.setAttribute("language", "javascript");
1087
+ e.setAttribute("type", "text/javascript");
1088
+ e.setAttribute('src', '//static.chartbeat.com/js/chartbeat.js');
1089
+ document.body.appendChild(e);
1090
+ }
1091
+ var oldonload = window.onload;
1092
+ window.onload = (typeof window.onload != "function") ?
1093
+ loadChartbeat : function() { oldonload(); loadChartbeat(); };
1094
+ }());
1095
+ </script>
1096
+ <!-- Chartbeat Web Analytics code - end -->
1097
+ <!-- comscore mmx - start -->
1098
+ <script>
1099
+ var _comscore = _comscore || [];
1100
+ _comscore.push({ c1: "2", c2: "17986528"});
1101
+
1102
+ (function() {
1103
+ var s = document.createElement("script")
1104
+ , el = document.getElementsByTagName("script")[0];
1105
+ s.async = true;
1106
+ s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
1107
+ el.parentNode.insertBefore(s, el);
1108
+ })();
1109
+ </script>
1110
+
1111
+ <noscript>
1112
+ <img src="http://b.scorecardresearch.com/p?c1=2&c2=17986528&cv=2.0&cj=1" class="image-hide" />
1113
+ </noscript>
1114
+ <!-- comscore mmx - end --> </body> </html>
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+