web-page-parser 0.25 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +1 -0
  3. data.tar.gz.sig +0 -0
  4. data/README.rdoc +5 -0
  5. data/lib/web-page-parser.rb +31 -0
  6. data/lib/web-page-parser/base_parser.rb +92 -42
  7. data/lib/web-page-parser/http.rb +63 -0
  8. data/lib/web-page-parser/parser_factory.rb +0 -1
  9. data/lib/web-page-parser/parsers/bbc_news_page_parser.rb +72 -9
  10. data/lib/web-page-parser/parsers/guardian_page_parser.rb +51 -11
  11. data/lib/web-page-parser/parsers/independent_page_parser.rb +56 -0
  12. data/lib/web-page-parser/parsers/new_york_times_page_parser.rb +108 -0
  13. data/lib/web-page-parser/parsers/washingtonpost_page_parser.rb +59 -0
  14. data/spec/base_parser_spec.rb +24 -8
  15. data/spec/fixtures/bbc_news/19957138.stm.html +1974 -0
  16. data/spec/fixtures/bbc_news/20230333.stm.html +2529 -0
  17. data/spec/fixtures/bbc_news/21528631.html +2021 -0
  18. data/spec/fixtures/bbc_news/8040164.stm.html +3095 -0
  19. data/spec/fixtures/cassette_library/BbcNewsPageParserV4.yml +1743 -0
  20. data/spec/fixtures/guardian/anger-grows-rbs-chiefs-bonus-with-explainer.html +4713 -0
  21. data/spec/fixtures/guardian/barack-obama-nicki-minaj-mariah-carey.html +4371 -0
  22. data/spec/fixtures/guardian/nhs-patient-data-available-companies-buy.html +4150 -0
  23. data/spec/fixtures/independent/belgian-man-who-skipped-100-restaurant-bills-is-killed-9081407.html +4401 -0
  24. data/spec/fixtures/independent/david-cameron-set-for-uturn-over-uk-sanctuary-9077647.html +4454 -0
  25. data/spec/fixtures/independent/innocent-starving-close-to-death-one-victim-of-the-siege-that-shames-syria-9065538.html +4455 -0
  26. data/spec/fixtures/independent/saudi-authorities-stop-textmessage-tracking-of-women-for-now-9065486.html +4368 -0
  27. data/spec/fixtures/new_york_times/khaled-meshal-the-leader-of-hamas-vacates-damascus.html +919 -0
  28. data/spec/fixtures/new_york_times/show-banned-french-comedian-has-new-one.html +328 -0
  29. data/spec/fixtures/new_york_times/the-long-run-gingrich-stuck-to-caustic-path-in-ethics-battles.html +1164 -0
  30. data/spec/fixtures/washingtonpost/pentagon-confirms-al-shabab-leader-killed.html +1 -0
  31. data/spec/fixtures/washingtonpost/sgt-bowe-bergdahls-capture-remains-amystery.html +3664 -0
  32. data/spec/fixtures/washingtonpost/will-a-bust-follow-the-boom-in-britain.html +3729 -0
  33. data/spec/parser_factory_spec.rb +3 -3
  34. data/spec/parsers/bbc_news_page_spec.rb +223 -3
  35. data/spec/parsers/guardian_page_spec.rb +157 -4
  36. data/spec/parsers/independent_page_parser_spec.rb +152 -0
  37. data/spec/parsers/new_york_times_page_parser_spec.rb +190 -0
  38. data/spec/parsers/washingtonpost_page_parser_spec.rb +114 -0
  39. data/spec/spec_helper.rb +5 -0
  40. metadata +167 -59
  41. metadata.gz.sig +2 -0
@@ -1,32 +1,29 @@
1
1
  module WebPageParser
2
2
  class GuardianPageParserFactory < WebPageParser::ParserFactory
3
- URL_RE = ORegexp.new("(www\.)?guardian\.co\.uk/[a-z-]+(/[a-z-]+)?/[0-9]{4}/[a-z]{3}/[0-9]{1,2}/[a-z-]{5,200}$")
3
+ URL_RE = ORegexp.new("(www\.)?(the)?guardian\.(co\.uk|com)/[a-z-]+(/[a-z-]+)?/[0-9]{4}/[a-z]{3}/[0-9]{1,2}/[a-z-]{5,200}$")
4
4
  INVALID_URL_RE = ORegexp.new("/cartoon/|/commentisfree/poll/|/video/[0-9]+|/gallery/[0-9]+|/poll/[0-9]+")
5
5
  def self.can_parse?(options)
6
6
  url = options[:url].split('#').first
7
7
  return nil if INVALID_URL_RE.match(url)
8
8
  URL_RE.match(url)
9
9
  end
10
-
10
+
11
11
  def self.create(options = {})
12
- GuardianPageParserV1.new(options)
12
+ GuardianPageParserV2.new(options)
13
13
  end
14
14
  end
15
15
 
16
- # BbcNewsPageParserV1 parses BBC News web pages exactly like the
17
- # old News Sniffer BbcNewsPage class did. This should only ever
18
- # be used for backwards compatability with News Sniffer and is
19
- # never supplied for use by a factory.
20
- class GuardianPageParserV1 < WebPageParser::BaseParser
21
- ICONV = nil
16
+ # GuardianPageParserV1 parses Guardian web pages using regexps
17
+ class GuardianPageParserV1 < WebPageParser::BaseRegexpParser
22
18
  TITLE_RE = ORegexp.new('<meta property="og:title" content="(.*)"', 'i')
23
19
  DATE_RE = ORegexp.new('<meta property="article:published_time" content="(.*)"', 'i')
24
20
  CONTENT_RE = ORegexp.new('article-body-blocks">(.*?)<div id="related"', 'm')
25
21
  STRIP_TAGS_RE = ORegexp.new('</?(a|span|div|img|tr|td|!--|table)[^>]*>','i')
22
+ STRIP_SCRIPTS_RE = ORegexp.new('<script[^>]*>.*?</script>','i')
26
23
  PARA_RE = Regexp.new(/<(p|h2)[^>]*>(.*?)<\/\1>/i)
27
24
 
28
25
  private
29
-
26
+
30
27
  def date_processor
31
28
  begin
32
29
  # OPD is in GMT/UTC, which DateTime seems to use by default
@@ -38,8 +35,51 @@ module WebPageParser
38
35
 
39
36
  def content_processor
40
37
  @content = STRIP_TAGS_RE.gsub(@content, '')
38
+ @content = STRIP_SCRIPTS_RE.gsub(@content, '')
41
39
  @content = @content.scan(PARA_RE).collect { |a| a[1] }
42
40
  end
43
-
41
+
42
+ def filter_url(url)
43
+ url.to_s.gsub("www.guprod.gnl", "www.guardian.co.uk") # some wierd guardian problem with some older articles
44
+ end
45
+
46
+ end
47
+
48
+ # GuardianPageParserV2 parses Guardian web pages using html
49
+ # parsing. It can parse articles old and new but sometimes has
50
+ # slightly different results due to it stripping most html tags
51
+ # (like <strong>) which the V1 parser didn't do.
52
+ class GuardianPageParserV2 < WebPageParser::BaseParser
53
+ require 'nokogiri'
54
+
55
+ def html_doc
56
+ @html_document ||= Nokogiri::HTML(page)
57
+ end
58
+
59
+ def title
60
+ @title ||= html_doc.css('div#main-article-info h1:first').text.strip
61
+ end
62
+
63
+ def content
64
+ return @content if @content
65
+ story_body = html_doc.css('div#article-body-blocks *').select do |e|
66
+ e.name == 'p' or e.name == 'h2' or e.name == 'h3'
67
+ end
68
+ story_body.collect { |p| p.text.empty? ? nil : p.text.strip }.compact
69
+ end
70
+
71
+ def date
72
+ return @date if @date
73
+ if date_meta = html_doc.at_css('meta[property="article:published_time"]')
74
+ @date = DateTime.parse(date_meta['content']) rescue nil
75
+ end
76
+ @date
77
+ end
78
+
79
+ def filter_url(url)
80
+ # some wierd guardian problem with some older articles
81
+ url.to_s.gsub("www.guprod.gnl", "www.guardian.co.uk")
82
+ end
44
83
  end
84
+
45
85
  end
@@ -0,0 +1,56 @@
1
+ module WebPageParser
2
+ class IndependentPageParserFactory < WebPageParser::ParserFactory
3
+ URL_RE = ORegexp.new("www.independent.co.uk/news/.*[0-9]+.html")
4
+ INVALID_URL_RE = ORegexp.new("www.independent.co.uk/news/pictures")
5
+ def self.can_parse?(options)
6
+ return nil if INVALID_URL_RE.match(options[:url])
7
+ URL_RE.match(options[:url])
8
+ end
9
+
10
+ def self.create(options = {})
11
+ IndependentPageParserV1.new(options)
12
+ end
13
+ end
14
+
15
+ # IndependentPageParserV1 parses Independent news web pages,
16
+ class IndependentPageParserV1 < WebPageParser::BaseParser
17
+ require 'nokogiri'
18
+
19
+ # Independent articles have a guid in the url (as of Jan 2014, a
20
+ # seven digit integer at the end of the url before the html extension)
21
+ def guid_from_url
22
+ # get the last large number from the url, if there is one
23
+ url.to_s.scan(/[0-9]{6,12}/).last
24
+ end
25
+
26
+ def html_doc
27
+ @html_document ||= Nokogiri::HTML(page)
28
+ end
29
+
30
+ def title
31
+ @title ||= html_doc.css('div#main h1.title').text.strip
32
+ end
33
+
34
+ def content
35
+ return @content if @content
36
+ content = []
37
+ story_body = html_doc.css('div.articleContent p')
38
+ story_body.each do |p|
39
+ p.search('script,object').remove
40
+ p = p.text
41
+ content << p.strip.gsub(/\n+/,' ') if p
42
+ end
43
+ @content = content.select { |p| !p.empty? }
44
+ end
45
+
46
+ def date
47
+ return @date if @date
48
+ if date_meta = html_doc.at_css('meta[property="article:published_time"]')
49
+ @date = DateTime.parse(date_meta['content']) rescue nil
50
+ end
51
+ @date
52
+ end
53
+
54
+ end
55
+
56
+ end
@@ -0,0 +1,108 @@
1
+ module WebPageParser
2
+ class NewYorkTimesPageParserFactory < WebPageParser::ParserFactory
3
+ URL_RE = ORegexp.new("www\.nytimes\.com/[0-9]{4}/[0-9]{2}/[0-9]{2}/.+")
4
+ INVALID_URL_RE = ORegexp.new("/cartoon/")
5
+ def self.can_parse?(options)
6
+ return nil if INVALID_URL_RE.match(options[:url])
7
+ URL_RE.match(options[:url])
8
+ end
9
+
10
+ def self.create(options = {})
11
+ NewYorkTimesPageParserV2.new(options)
12
+ end
13
+ end
14
+
15
+ # NewYorkTimesPageParserV1 parses New York Times web pages up to January 2014
16
+ class NewYorkTimesPageParserV1 < WebPageParser::BaseRegexpParser
17
+ TITLE_RE = ORegexp.new('<nyt_headline [^>]*>(.*)</nyt_headline>', 'i')
18
+ DATE_RE = ORegexp.new('<meta name="dat" content="(.*)"', 'i')
19
+ CONTENT_RE = ORegexp.new('<nyt_text[^>]*>(.*)</nyt_text', 'mi')
20
+ STRIP_TAGS_RE = ORegexp.new('</?(a|strong|span|div|img|tr|td|!--|table|ul|li)[^>]*>','i')
21
+ PARA_RE = Regexp.new('<(p)[^>]*>(.*?)<\/\1>', 'i')
22
+ STRIP_INLINE_BLOCK = ORegexp.new('<div class="articleInline.*<div class="articleBody[^>]*>', 'm')
23
+
24
+ # We want to modify the url to request multi-page articles all in one request
25
+ def retrieve_page
26
+ return nil unless url
27
+ spurl = url
28
+ spurl << (spurl.include?("?") ? "&" : "?")
29
+ spurl << "pagewanted=all"
30
+ p = super(spurl)
31
+ # If it fails, reset the session and try one more time
32
+ unless retreive_successful?(p)
33
+ self.class.retrieve_session ||= WebPageParser::HTTP::Session.new
34
+ p = super(spurl)
35
+ end
36
+ if retreive_successful?(p)
37
+ p
38
+ else
39
+ raise RetrieveError, "Blocked by NYT paywall"
40
+ end
41
+ end
42
+
43
+
44
+ private
45
+
46
+ def retreive_successful?(page)
47
+ if page and page.curl
48
+ page.curl.header_str.scan(/^Location: .*/).grep(/myaccount.nytimes.com/).empty?
49
+ else
50
+ false
51
+ end
52
+ end
53
+
54
+ def date_processor
55
+ begin
56
+ # OPD is in GMT/UTC, which DateTime seems to use by default
57
+ @date = DateTime.parse(@date)
58
+ rescue ArgumentError
59
+ @date = Time.now.utc
60
+ end
61
+ end
62
+
63
+ def content_processor
64
+ @content = STRIP_INLINE_BLOCK.gsub(@content, '')
65
+ @content = STRIP_TAGS_RE.gsub(@content, '')
66
+ @content = @content.scan(PARA_RE).collect { |a| a[1] }
67
+ end
68
+
69
+ end
70
+
71
+ # NewYorkTimesPageParserV2 parses New York Times web pages,
72
+ # including the new format change in Janurary 2014
73
+ class NewYorkTimesPageParserV2 < WebPageParser::BaseParser
74
+ require 'nokogiri'
75
+
76
+ def html_doc
77
+ @html_document ||= Nokogiri::HTML(page)
78
+ end
79
+
80
+ def title
81
+ @title ||= html_doc.css('h1[itemprop=headline]').text.strip
82
+ end
83
+
84
+ def content
85
+ return @content if @content
86
+ @content = []
87
+ story_body = html_doc.css('p.story-content')
88
+ if story_body.empty?
89
+ # old style
90
+ story_body = html_doc.css('p[itemprop=articleBody]')
91
+ end
92
+ story_body.each do |p|
93
+ @content << p.text.strip
94
+ end
95
+ @content
96
+ end
97
+
98
+ def date
99
+ return @date if @date
100
+ if date_meta = html_doc.at_css('meta[name=dat]')
101
+ @date = DateTime.parse(date_meta['content']) rescue nil
102
+ end
103
+ @date
104
+ end
105
+
106
+ end
107
+
108
+ end
@@ -0,0 +1,59 @@
1
+ module WebPageParser
2
+ class WashingtonPostPageParserFactory < WebPageParser::ParserFactory
3
+ URL_RE = ORegexp.new('www\.washingtonpost\.com/.*_story\.html')
4
+ def self.can_parse?(options)
5
+ url = options[:url].split('#').first
6
+ URL_RE.match(url)
7
+ end
8
+
9
+ def self.create(options = {})
10
+ WashingtonPostPageParserV1.new(options)
11
+ end
12
+ end
13
+
14
+ # WashingtonPostPageParserV1 parses washpo web pages using html
15
+ # parsing.
16
+ class WashingtonPostPageParserV1 < WebPageParser::BaseParser
17
+ require 'nokogiri'
18
+
19
+ # WashPo articles have a guid in the url (as of Jan 2014, a
20
+ # uuid)
21
+ def guid_from_url
22
+ # get the last large number from the url, if there is one
23
+ url.to_s.scan(/[a-f0-9-]{30,40}/).last
24
+ end
25
+
26
+ def html_doc
27
+ @html_document ||= Nokogiri::HTML(page)
28
+ end
29
+
30
+ def title
31
+ @title ||= html_doc.css('h1[property="dc.title"],div#article-topper > h1').text.strip
32
+ end
33
+
34
+ def content
35
+ return @content if @content
36
+ story_body = html_doc.css('div.article_body *,div#main-content article *').select do |e|
37
+ next false if e.attributes['class'].to_s["pin-and-stack"]
38
+ e.name == 'p' or e.name == 'blockquote'
39
+ end
40
+ story_body.collect! do |p|
41
+ p.search('script,object').remove
42
+ p = p.text.strip
43
+ end
44
+ @content = story_body.select { |p| !p.empty? }
45
+ end
46
+
47
+ def date
48
+ return @date if @date
49
+ # date in url is best source of first published date
50
+ @date = DateTime.parse(url.scan(/[0-9]{4}\/[0-9]{2}\/[0-9]{2}/).first.to_s) rescue nil
51
+ return @date if @date
52
+ # failing that, get DC.date.issued which is actually last updated
53
+ if date_meta = html_doc.at_css('meta[name="DC.date.issued"]')
54
+ @date = DateTime.parse(date_meta['content']) rescue nil
55
+ end
56
+ @date
57
+ end
58
+ end
59
+ end
@@ -1,6 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
- $:.unshift File.join(File.dirname(__FILE__), '../lib')
3
- require 'web-page-parser'
2
+ require 'spec_helper'
4
3
 
5
4
  share_as :AllPageParsers do
6
5
  it "is initialized with a hash containing :url and :page keys" do
@@ -8,7 +7,7 @@ share_as :AllPageParsers do
8
7
  wpp.url.should == @valid_options[:url]
9
8
  wpp.page.should == @valid_options[:page]
10
9
  end
11
-
10
+
12
11
  it "should return an empty array when there is no content available" do
13
12
  content = WebPageParser::BaseParser.new.content
14
13
  content.should be_a_kind_of Array
@@ -32,7 +31,7 @@ share_as :AllPageParsers do
32
31
  end
33
32
 
34
33
  it "calculates a hash using the content" do
35
- @wpp.instance_eval("@content='different'")
34
+ @wpp.instance_eval("@content=['different']")
36
35
  @wpp.hash.should_not == @hash
37
36
  end
38
37
  end
@@ -42,16 +41,29 @@ describe WebPageParser::BaseParser do
42
41
  it_should_behave_like AllPageParsers
43
42
 
44
43
  before :each do
45
- @valid_options = {
46
- :url => 'http://news.bbc.co.uk',
44
+ @valid_options = {
45
+ :url => 'http://news.bbc.co.uk',
47
46
  :page => '<html></html>',
48
47
  :valid_hash => 'cfcd208495d565ef66e7dff9f98764da'
49
48
  }
50
49
  end
51
50
 
51
+ end
52
+
53
+ describe WebPageParser::BaseRegexpParser do
54
+ it_should_behave_like AllPageParsers
55
+
56
+ before :each do
57
+ @valid_options = {
58
+ :url => 'http://news.bbc.co.uk',
59
+ :page => "<html>£</html>"
60
+ }
61
+ end
62
+
63
+
52
64
  it "should decode basic html entities" do
53
- bp = WebPageParser::BaseParser.new
54
- entities = {
65
+ bp = WebPageParser::BaseRegexpParser.new
66
+ entities = {
55
67
  '&quot;' => '"',
56
68
  '&apos;' => "'",
57
69
  '&amp;' => "&",
@@ -63,5 +75,9 @@ describe WebPageParser::BaseParser do
63
75
  end
64
76
  end
65
77
 
78
+ it "should accept utf8" do
79
+ wpp = WebPageParser::BaseRegexpParser.new(@valid_options)
80
+ wpp.page.should == "<html>£</html>"
81
+ end
66
82
 
67
83
  end
@@ -0,0 +1,1974 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
2
+
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xml:lang="en-GB">
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+ <!-- THIS FILE CONFIGURES SHARED HIGHWEB STATIC ASSETS -->
30
+
31
+
32
+
33
+
34
+
35
+ <!-- mapping_news.inc -->
36
+ <!-- THIS FILE CONFIGURES NEWS STATIC ASSETS -->
37
+
38
+
39
+
40
+
41
+ <!-- THIS FILE CONFIGURES VOTE 2012 STATIC ASSETS -->
42
+
43
+
44
+
45
+
46
+
47
+ <!-- hi/shared/head_initial.inc -->
48
+
49
+
50
+
51
+
52
+
53
+
54
+ <head profile="http://dublincore.org/documents/dcq-html/">
55
+ <meta http-equiv="X-UA-Compatible" content="IE=8" />
56
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
57
+ <title>BBC News - Gary McKinnon extradition to US blocked by Theresa May</title>
58
+ <meta name="Description" content="British computer hacker Gary McKinnon will not be extradited to the US, Home Secretary Theresa May announces, saying his human rights would have been at risk."/>
59
+ <meta name="OriginalPublicationDate" content="2012/10/16 14:32:09"/>
60
+ <meta name="UKFS_URL" content="/news/uk-19957138"/>
61
+ <meta name="THUMBNAIL_URL" content="http://news.bbcimg.co.uk/media/images/63508000/jpg/_63508418_57147666.jpg"/>
62
+ <meta name="Headline" content="UK blocks McKinnon extradition"/>
63
+ <meta name="IFS_URL" content="/news/uk-19957138"/>
64
+ <meta name="Section" content="UK"/>
65
+ <meta name="contentFlavor" content="STORY"/>
66
+ <meta name="CPS_ID" content="19957138" />
67
+ <meta name="CPS_SITE_NAME" content="BBC News" />
68
+ <meta name="CPS_SECTION_PATH" content="UK" />
69
+ <meta name="CPS_ASSET_TYPE" content="STY" />
70
+ <meta name="CPS_PLATFORM" content="HighWeb" />
71
+ <meta name="CPS_AUDIENCE" content="Domestic" />
72
+
73
+ <meta property="og:title" content="UK blocks McKinnon extradition"/>
74
+ <meta property="og:type" content="article"/>
75
+ <meta property="og:url" content="http://www.bbc.co.uk/news/uk-19957138"/>
76
+ <meta property="og:site_name" content="BBC News"/>
77
+ <meta property="og:image" content="http://news.bbcimg.co.uk/media/images/63508000/jpg/_63508419_57147666.jpg"/>
78
+
79
+ <meta name="bbcsearch_noindex" content="atom"/>
80
+
81
+ <link rel="canonical" href="http://www.bbc.co.uk/news/uk-19957138" />
82
+
83
+
84
+ <!-- hi/news/head_first.inc -->
85
+ <meta name="application-name" content="BBC News" />
86
+ <meta name="msapplication-TileImage" content="/img/1_0_2/cream/hi/news/bbc-news-pin.png" />
87
+ <meta name="msapplication-TileColor" content="#CC0101" />
88
+
89
+
90
+ <!-- PULSE_ENABLED:yes -->
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+ <meta http-equiv="X-UA-Compatible" content="IE=8" />
163
+ <link rel="schema.dcterms" href="http://purl.org/dc/terms/" /> <link rel="index" href="http://www.bbc.co.uk/a-z/" title="A to Z" /> <link rel="help" href="http://www.bbc.co.uk/help/" title="BBC Help" /> <link rel="copyright" href="http://www.bbc.co.uk/terms/" title="Terms of Use" /> <link rel="icon" href="http://www.bbc.co.uk/favicon.ico" type="image/x-icon" /> <meta name="viewport" content="width = 996" />
164
+
165
+ <link rel="stylesheet" type="text/css" href="http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5/style/main.css" /> <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(o){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(){return(!this._isConfirmed()&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable)}};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.5.5/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})(); /*]]>*/</script> <script type="text/javascript"> if (! window.gloader) { window.gloader = [ "glow", {map: "http://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script> <script type="text/javascript" src="http://node1.bbcimg.co.uk/glow/gloader.0.1.6.js"></script> <script type="text/javascript" src="http://static.bbci.co.uk/frameworks/requirejs/0.11.1/sharedmodules/require.js"></script> <script type="text/javascript"> bbcRequireMap = {"jquery-1":"http://static.bbci.co.uk/frameworks/jquery/0.1.8/sharedmodules/jquery-1.6.2", "jquery-1.4":"http://static.bbci.co.uk/frameworks/jquery/0.1.8/sharedmodules/jquery-1.4", "swfobject-2":"http://static.bbci.co.uk/frameworks/swfobject/0.1.3/sharedmodules/swfobject-2", "demi-1":"http://static.bbci.co.uk/frameworks/demi/0.9.8/sharedmodules/demi-1", "gelui-1":"http://static.bbci.co.uk/frameworks/gelui/0.9.9/sharedmodules/gelui-1", "cssp!gelui-1/overlay":"http://static.bbci.co.uk/frameworks/gelui/0.9.9/sharedmodules/gelui-1/overlay.css", "istats-1":"http://static.bbci.co.uk/frameworks/istats/0.14.4/modules/istats-1", "relay-1":"http://static.bbci.co.uk/frameworks/relay/0.2.4/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"}; require({ baseUrl: 'http://static.bbci.co.uk/', paths: bbcRequireMap, waitSeconds: 30 }); </script> <script type="text/javascript" src="http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5/script/barlesque.js"></script>
166
+ <script type="text/javascript"> require({ paths: { 'lately-1': 'http://static.bbci.co.uk/frameworks/panelpromos/0.1.4/scripts/lately-1', 'mustache-1': 'http://static.bbci.co.uk/frameworks/panelpromos/0.1.4/scripts/mustache-1' } }); window.lately = (location.protocol === 'http:'); </script> <script type="text/mustache" id="lately-promo-template"><![CDATA[ <div class="blq-panel-container panel-paneltype-olympics"> {{#header}} <div class="panel-header"> <h2> <a href="{{url}}"> {{#image}}<img src="{{image}}" alt="{{text}}" width="91" height="28">{{/image}}{{^image}}{{text}}{{/image}}</a> </h2> <a href="{{url}}" class="panel-header-link">{{subtext}}</a> </div> {{/header}} <div class="panel-component panel-links"> <ul> {{#links}} <li class="panel-first"> <a href="{{url}}" class="panel-theme-{{theme}}"> {{text}} </a> </li> {{/links}} </ul> </div> {{#promos}} <div class="panel-component panel-promo-1 panel-clickable {{format}} panel-theme-{{theme}}"> <h3> <a href="{{url}}"> {{text}} <img src="{{image.url}}" alt="{{image.alt}}" width="112" height="63"> </a> </h3> <p> <a href="{{url}}"> {{subtext}} </a> </p> </div> {{/promos}} </div> ]]></script> <script type="text/mustache" id="lately-error-template"><![CDATA[ <div class="panel-error"> <h2>Sorry</h2> <p>This content is temporarily unavailable due to a technical problem.</p> <p><a href="/2012/" class="panel-header-link">2012 Home</a></p> </div> ]]></script> <script type="text/mustache" id="lately-loading-template"><![CDATA[ <div class="panel-loading"><span>Loading</span></div> ]]></script>
167
+ <!--[if IE 6]>
168
+ <script type="text/javascript">
169
+ try {
170
+ document.execCommand("BackgroundImageCache",false,true);
171
+ } catch(e) {}
172
+ </script>
173
+ <style type="text/css">
174
+ /* Use filters for IE6 */
175
+ #blq-blocks a {
176
+ background-image: none;
177
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5//img/blq-blocks_white_alpha.png', sizingMethod='image');
178
+ }
179
+ .blq-masthead-focus #blq-blocks a,
180
+ .blq-mast-text-dark #blq-blocks a {
181
+ background-image: none;
182
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5//img/blq-blocks_grey_alpha.png', sizingMethod='image');
183
+ }
184
+ #blq-nav-search button span {
185
+ background-image: none;
186
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5//img/blq-search_grey_alpha.png', sizingMethod='image');
187
+ }
188
+ #blq-nav-search button img {
189
+ position: absolute;
190
+ left: -999em;
191
+ }
192
+ </style>
193
+ <![endif]-->
194
+
195
+ <!--[if (IE 7])|(IE 8)>
196
+ <style type="text/css">
197
+ .blq-clearfix {
198
+ display: inline-block;
199
+ }
200
+ </style>
201
+ <![endif]-->
202
+
203
+ <script type="text/javascript">
204
+ blq.setEnvironment('live'); if (blq.setLabel) blq.setLabel('searchSuggestion', "Search"); </script>
205
+
206
+
207
+
208
+
209
+
210
+ <!-- shared/head -->
211
+ <meta http-equiv="imagetoolbar" content="no" />
212
+ <!--[if !(lt IE 6)]>
213
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/type.css" />
214
+
215
+
216
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/global.css" />
217
+
218
+
219
+ <link rel="stylesheet" type="text/css" media="print" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/print.css" />
220
+
221
+ <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 976px)" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/mobile.css" />
222
+
223
+
224
+
225
+
226
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/components/components.css" />
227
+
228
+ <![endif]-->
229
+ <!--[if !IE]>-->
230
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/type.css" />
231
+
232
+
233
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/global.css" />
234
+
235
+
236
+ <link rel="stylesheet" type="text/css" media="print" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/print.css" />
237
+
238
+ <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 976px)" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/mobile.css" />
239
+
240
+
241
+
242
+
243
+ <link rel="stylesheet" type="text/css" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/components/components.css" />
244
+
245
+ <!--<![endif]-->
246
+ <script type="text/javascript">
247
+ /*<![CDATA[*/
248
+ gloader.load(["glow","1","glow.dom"],{onLoad:function(glow){glow.dom.get("html").addClass("blq-js")}});
249
+ gloader.load(["glow","1","glow.dom"],{onLoad:function(glow){glow.ready(function(){if (glow.env.gecko){var gv = glow.env.version.split(".");for (var i=gv.length;i<4;i++){gv[i]=0;}if((gv[0]==1 && gv[1]==9 && gv[2]==0)||(gv[0]==1 && gv[1]<9)||(gv[0]<1)){glow.dom.get("body").addClass("firefox-older-than-3-5");}}});}});
250
+
251
+ window.disableFacebookSDK=true;
252
+ if (window.location.pathname.indexOf('+')>=0){window.disableFacebookSDK=true;}
253
+
254
+ /*]]>*/
255
+ </script>
256
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/locationservices/locator/v4_0/locator.js"></script>
257
+
258
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/core/3_3_1/bbc_fmtj.js"></script>
259
+
260
+ <script type="text/javascript">
261
+ <!--
262
+ bbc.fmtj.page = {
263
+ serverTime: 1352654612000,
264
+ editionToServe: 'domestic',
265
+ queryString: null,
266
+ referrer: null,
267
+ section: 'uk',
268
+ sectionPath: '/UK',
269
+ siteName: 'BBC News',
270
+ siteToServe: 'news',
271
+ siteVersion: 'cream',
272
+ storyId: '19957138',
273
+ assetType: 'story',
274
+ uri: '/news/uk-19957138',
275
+ country: 'gb',
276
+ masthead: false,
277
+ adKeyword: null,
278
+ templateVersion: 'v1_0'
279
+ }
280
+ -->
281
+ </script>
282
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/common/3_2_1/bbc_fmtj_common.js"></script>
283
+
284
+
285
+ <script type="text/javascript">$useMap({map:"http://news.bbcimg.co.uk/js/map/map_0_0_32.js"});</script>
286
+ <script type="text/javascript">$loadView("0.0",["bbc.fmtj.view"]);</script>
287
+ <script type="text/javascript">$render("livestats-heatmap");</script>
288
+
289
+
290
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/config/apps/4_7_1/bbc_fmtj_config.js"></script>
291
+
292
+
293
+
294
+
295
+ <script type="text/javascript">
296
+ //<![CDATA[
297
+ require(['jquery-1'], function($){
298
+
299
+ // set up EMP once it's loaded
300
+ var setUp = function(){
301
+ // use our own pop out page
302
+ embeddedMedia.setPopoutUrl('/player/emp/2_0_55/popout/pop.stm');
303
+
304
+ // store EMP's notifyParent function
305
+ var oldNotifyParent = embeddedMedia.console.notifyParent;
306
+ // use our own to add livestats to popout
307
+ embeddedMedia.console.notifyParent = function(childWin){
308
+ oldNotifyParent(childWin);
309
+ // create new live stats url
310
+ var liveStatsUrl = bbc.fmtj.av.emp.liveStatsForPopout($('#livestats').attr('src'));
311
+ var webBug = $('<img />', {
312
+ id: 'livestats',
313
+ src: liveStatsUrl
314
+ });
315
+ // append it to popout
316
+ $(childWin.document).find('body').append(webBug);
317
+ }
318
+ }
319
+
320
+ // check if console is available to manipulate
321
+ if(window.embeddedMedia && window.embeddedMedia.console){
322
+ setUp();
323
+ }
324
+ // otherwise emp is still loading, so add event listener
325
+ else{
326
+ $(document).bind('empReady', function(){
327
+ setUp();
328
+ });
329
+ }
330
+ });
331
+ //]]>
332
+ </script>
333
+
334
+
335
+
336
+ <!-- get BUMP from cdn -->
337
+ <script type="text/javascript" src="http://emp.bbci.co.uk/emp/bump?emp=worldwide&amp;enableClear=1"></script>
338
+
339
+ <!-- load glow and required modules -->
340
+ <script type="text/javascript">
341
+ //<![CDATA[
342
+ gloader.load(['glow', '1', 'glow.dom']);
343
+ //]]>
344
+ </script>
345
+
346
+
347
+
348
+ <!-- pull in our emp code -->
349
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/app/av/emp/2_0_55/emp.js"></script>
350
+ <!-- pull in compatibility.js -->
351
+ <script type="text/javascript" src="http://news.bbcimg.co.uk/js/app/av/emp/2_0_55/compatibility.js"></script>
352
+
353
+
354
+ <script type="text/javascript">
355
+ //<![CDATA[
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+ // set site specific config
367
+
368
+ bbc.fmtj.av.emp.configs.push('news');
369
+
370
+
371
+ // when page loaded, write all created emps
372
+ glow.ready(function(){
373
+ if(typeof bbcdotcom !== 'undefined' && bbcdotcom.av && bbcdotcom.av.emp){
374
+ bbcdotcom.av.emp.configureAll();
375
+ }
376
+ embeddedMedia.each(function(emp){
377
+ emp.set('enable3G', true);
378
+ emp.setMediator('href', '{protocol}://{host}/mediaselector/5/select/version/2.0/mediaset/{mediaset}/vpid/{id}');
379
+ });
380
+ embeddedMedia.writeAll();
381
+ // mark the emps as loaded
382
+ bbc.fmtj.av.emp.loaded = true;
383
+
384
+
385
+ });
386
+ //]]>
387
+ </script>
388
+ <!-- Check for advertising testing -->
389
+
390
+ <meta name="viewport" content="width = 996" />
391
+
392
+
393
+
394
+ <!-- shared/head_story -->
395
+ <!-- THESE STYLESHEETS VARY ACCORDING TO PAGE CONTENT -->
396
+
397
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/layout/story.css" />
398
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/3_0_6/cream/hi/shared/story.css" />
399
+
400
+
401
+ <!-- js story view -->
402
+ <script type="text/javascript">$loadView("0.0",["bbc.fmtj.view.news.story"]);</script>
403
+
404
+ <!-- EMP -->
405
+ <script type="text/javascript" src="http://news.bbc.co.uk/js/app/av/emp/compatibility.js"></script>
406
+ <!-- /EMP -->
407
+ <!-- #CREAM hi news domestic head.inc -->
408
+
409
+ <script type="text/javascript">
410
+ if(undefined !== bbc && undefined !== bbc.fmtj){
411
+ bbc.fmtj.makeNewsSurveyConfig = function(surveyId,probabilityRate){
412
+ if(surveyId !== undefined){
413
+ pulse.localSurvey = {
414
+ 'active' : true,
415
+ 'URLFormat' : 'http://ecustomeropinions.com/survey/survey.php?sid='+ surveyId,
416
+ 'probability' : probabilityRate,
417
+ 'translations' : {
418
+ 'intro' : 'We are always looking to improve the site and your opinions count.',
419
+ 'question' : 'Do you have a few minutes to tell us what you think about this site?'
420
+ }
421
+ }
422
+
423
+
424
+ }
425
+ };
426
+ }
427
+ </script>
428
+
429
+
430
+
431
+
432
+ <!-- is suitable for ads adding isadvertise ... -->
433
+
434
+
435
+
436
+
437
+
438
+
439
+ <script type="text/javascript">/*<![CDATA[*/if(typeof(bbcdotcom)=="undefined"){var bbcdotcom={}}bbcdotcom.objects=function(b){var a=b.split("."),c=(2===arguments.length)?arguments[1]:"valid",d=(3===arguments.length)?arguments[2]:window;for(i=0,len=a.length;i<len;i++){if(d[a[i]]===undefined){if("create"===c){d[a[i]]={}}else{return false}}d=d[a[i]]}return d};bbcdotcom.objects("bbcdotcom.stats","create");if(typeof(BBC)==="undefined"){var BBC={}}BBC.adverts={setZone:function(){},configure:function(){},write:function(){},show:function(){},isActive:function(){return false},setScriptRoot:function(){},setImgRoot:function(){},getAdvertTag:function(){}};/*]]>*/</script>
440
+
441
+
442
+
443
+
444
+
445
+
446
+ <!-- hi/news/head_last.inc -->
447
+
448
+ <link rel="stylesheet" type="text/css" media="screen" href="http://news.bbcimg.co.uk/view/1_4_35/cream/hi/news/skin.css" />
449
+
450
+
451
+
452
+
453
+ <link rel="apple-touch-icon" href="http://news.bbcimg.co.uk/img/1_0_2/cream/hi/news/iphone.png"/>
454
+ <script type="text/javascript">
455
+ require(["jquery-1", "istats-1"], function ($, istats) {
456
+ $(function() {
457
+ istats.track('external', {region: $('.story-body'), linkLocation : 'story-body'});
458
+ istats.track('external', {region: $('.story-related .related-links'), linkLocation : 'related-links'});
459
+ istats.track('external', {region: $('.story-related .newstracker-list'), linkLocation : 'newstracker'});
460
+ });
461
+ });
462
+ </script>
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+ <!-- CPS COMMENT STATUS: true -->
476
+
477
+ <!--Rendered by 5716004 -->
478
+ </head>
479
+
480
+ <!--[if lte IE 6]><body class="news ie"><![endif]-->
481
+ <!--[if IE 7]><body class="news ie7"><![endif]-->
482
+ <!--[if IE 8]><body class="news ie8"><![endif]-->
483
+ <!--[if !IE]>--><body class="news"><!--<![endif]-->
484
+ <div class="livestats-web-bug"><img alt="" id="livestats" src="http://stats.bbc.co.uk/o.gif?~RS~s~RS~News~RS~t~RS~HighWeb_Story~RS~i~RS~19957138~RS~p~RS~99116~RS~a~RS~Domestic~RS~u~RS~/news/uk-19957138~RS~r~RS~(none)~RS~q~RS~~RS~z~RS~32~RS~"/></div>
485
+
486
+
487
+
488
+
489
+ <!-- ISTATS -->
490
+
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+
499
+
500
+ <script type="text/javascript">/*<![CDATA[*/ bbcFlagpoles_istats = 'ON'; istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=news.uk.story.19957138.page&cps_asset_id=19957138&page_type=story&section=uk&app_version=6.2.108-RC2&first_pub=2012-10-16T03:17:34+00:00&last_editorial_update=2012-10-16T14:32:09+00:00&title=UK+blocks+McKinnon+extradition&comments_box=true&cps_media_type=&cps_media_state=&app_type=web&ml_name=SSI&ml_version=0.14.4&language=en-GB'; if (window.istats_countername) { istatsTrackingUrl = istatsTrackingUrl.replace(/([?&]name=)[^&]+/ig, '$1' + istats_countername); } (function() { if ( /\bIDENTITY=/.test(document.cookie) ) { istatsTrackingUrl += '&bbc_identity=1'; } var c = (document.cookie.match(/\bckns_policy=(\d\d\d)/)||[]).pop() || ''; istatsTrackingUrl += '&bbc_mc=' + (c? 'ad'+c.charAt(0)+'ps'+c.charAt(1)+'pf'+c.charAt(2) : 'not_set'); if ( /\bckns_policy=\d\d0/.test(document.cookie) ) { istatsTrackingUrl += '&ns_nc=1'; } var screenWidthAndHeight = 'unavailable'; if (window.screen && screen.width && screen.height) { screenWidthAndHeight = screen.width + 'x' + screen.height; } istatsTrackingUrl += ('&screen_resolution=' + screenWidthAndHeight); istatsTrackingUrl += '&blq_s=3.5&blq_r=3.5&blq_v=journalism-domestic'; })(); /*]]>*/</script> <!-- Begin iStats 20100118 (UX-CMC 1.1009.3) --> <script type="text/javascript">/*<![CDATA[*/ (function() { window.istats || (istats = {}); var cookieDisabled = (document.cookie.indexOf('NO-SA=') != -1), hasCookieLabels = (document.cookie.indexOf('sa_labels=') != -1), hasClickThrough = /^#sa-(.*?)(?:-sa(.*))?$/.test(document.location.hash), runSitestat = !cookieDisabled && !hasCookieLabels && !hasClickThrough && !istats._linkTracked; if (runSitestat && 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="&"+unescape(k[g].substring(m+6))}}document.cookie=e+"=; expires="+new Date(new Date().getTime()-60).toGMTString()+"; path="+a+"; domain="+h}ns_pixelUrl=n;n=ns_pixelUrl+"&ns__t="+(new Date().getTime())+"&ns_c="+((j.characterSet)?j.characterSet:j.defaultCharset)+"&ns_ti="+escape(j.title)+b+"&ns_jspageurl="+escape(f&&f.href?f.href:j.URL)+"&ns_referrer="+escape(j.referrer);if(n.length>2000&&n.lastIndexOf("&")){n=n.substring(0,n.lastIndexOf("&")+1)+"ns_cut="+n.substring(n.lastIndexOf("&")+1,n.lastIndexOf("=")).substring(0,40)}(j.images)?new Image().src=n:j.write('<p><i'+'mg src="'+n+'" height="1" width="1" alt="" /></p>')}; })(); /*]]>*/</script> <noscript><p class="blq-hide"><img src="//sa.bbc.co.uk/bbc/bbc/s?name=news.uk.story.19957138.page&amp;cps_asset_id=19957138&amp;page_type=story&amp;section=uk&amp;app_version=6.2.108-RC2&amp;first_pub=2012-10-16T03:17:34+00:00&amp;last_editorial_update=2012-10-16T14:32:09+00:00&amp;title=UK+blocks+McKinnon+extradition&amp;comments_box=true&amp;cps_media_type=&amp;cps_media_state=&amp;app_type=web&amp;ml_name=SSI&amp;ml_version=0.14.4&amp;language=en-GB&amp;blq_s=3.5&amp;blq_r=3.5&amp;blq_v=journalism-domestic" height="1" width="1" alt="" /></p></noscript> <!-- End iStats (UX-CMC) --> <div id="blq-global"> <div id="blq-pre-mast" xml:lang="en-GB"> <!-- Pre mast --> </div> </div> <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <div id="bbccookies-prompt"> <h2> Cookies on the BBC website </h2> <p> We use cookies to ensure that we give you the best experience on our website. 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 <a href="/privacy/cookies/managing/cookie-settings.html">change your cookie settings</a> at any time. </p> <ul> <li id="bbccookies-continue"> <button type="button" id="bbccookies-continue-button">Continue</button> </li> <li id="bbccookies-more"><a href="/privacy/cookies/bbc">Find out more</a></li></ul> </div> ]]></script> <script type="text/javascript">/*<![CDATA[*/ (function(){if(bbccookies._showPrompt()){var i=document,b=i.getElementById("blq-pre-mast"),f=i.getElementById("blq-global"),h=i.getElementById("blq-container"),c=i.getElementById("blq-bbccookies-tmpl"),a,g,e;if(b&&i.createElement){a=i.createElement("div");a.id="bbccookies";e=c.innerHTML;e=e.replace("<"+"![CDATA[","").replace("]]"+">","");a.innerHTML=e;if(f){f.insertBefore(a,b)}else{h.insertBefore(a,b)}g=i.getElementById("bbccookies-continue-button");g.onclick=function(){a.parentNode.removeChild(a);return false};bbccookies._setPolicy()}}})(); /*]]>*/</script> <div id="blq-masthead" class="blq-clearfix blq-mast-bg-transparent-light blq-lang-en-GB blq-ltr"> <span id="blq-mast-background"><span></span></span> <div id="blq-mast" class="blq-rst"> <div id="blq-mast-bar" class="blq-masthead-container blq-journalism-domestic"> <div id="blq-blocks"> <a href="http://www.bbc.co.uk/" hreflang="en-GB"> <abbr title="British Broadcasting Corporation" class="blq-home"> <img src="http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5/img/blq-blocks_grey_alpha.png" alt="BBC" width="84" height="24" /> </abbr> </a> </div> <div id="blq-acc-links"> <h2 id="page-top">Accessibility links</h2> <ul> <li><a href="#main-content">Skip to content</a></li> <li><a href="#blq-local-nav">Skip to local navigation</a></li> <li><a href="http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul> </div> <div id="blq-sign-in" class="blq-gel"> </div> <div id="blq-nav"> <h2>bbc.co.uk navigation</h2> <ul id="blq-nav-main"> <li id="blq-nav-news"> <a href="http://www.bbc.co.uk/news/">News</a> </li> <li id="blq-nav-sport"> <a href="http://www.bbc.co.uk/sport/">Sport</a> </li> <li id="blq-nav-weather"> <a href="http://www.bbc.co.uk/weather/">Weather</a> </li> <li id="blq-nav-iplayer"> <a href="http://www.bbc.co.uk/iplayer/">iPlayer</a> </li> <li id="blq-nav-tv"> <a href="http://www.bbc.co.uk/tv/">TV</a> </li> <li id="blq-nav-radio"> <a href="http://www.bbc.co.uk/radio/">Radio</a> </li> <li id="blq-nav-more"> <a href="http://www.bbc.co.uk/a-z/">More&hellip;</a> </li> </ul> <div id="blq-nav-search"> <form method="get" action="http://search.bbc.co.uk/search" accept-charset="utf-8" id="blq-search-form"> <div> <input type="hidden" name="go" value="toolbar" /> <input type="hidden" value="http://www.bbc.co.uk/news/uk-19957138" name="uri" /> <input type="hidden" name="scope" value="news" /> <label for="blq-search-q" class="blq-hide">Search term:</label> <input id="blq-search-q" type="text" name="q" value="" maxlength="128" /> <button id="blq-search-btn" type="submit"><span><img src="http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5/img/blq-search_grey_alpha.png" width="13" height="13" alt="Search"/></span></button> </div> </form> </div> </div> </div> </div> </div> <div id="blq-container-outer" class="blq-journalism-domestic blq-ltr" > <div id="blq-container" class="blq-lang-en-GB"> <div id="blq-container-inner" xml:lang="en-GB"> <div id="blq-main" class="blq-clearfix">
501
+
502
+
503
+
504
+ <div class="uk has-no-ticker ">
505
+ <div id="header-wrapper">
506
+
507
+
508
+ <h2 id="header">
509
+ <a rel="index" href="http://www.bbc.co.uk/news/"><img alt="BBC News" src="http://news.bbcimg.co.uk/img/1_0_2/cream/hi/news/news-blocks.gif" /></a>
510
+ <span class="section-title">UK</span>
511
+ </h2>
512
+
513
+
514
+
515
+
516
+ <div id="blq-local-nav">
517
+ <ul id="nav" class="nav">
518
+
519
+
520
+ <li class="first-child "><a href="/news/">Home</a></li>
521
+
522
+
523
+ <li><a href="/news/world/">World</a></li>
524
+
525
+
526
+ <li class="selected"><a href="/news/uk/">UK</a></li>
527
+
528
+
529
+ <li><a href="/news/england/">England</a></li>
530
+
531
+
532
+ <li><a href="/news/northern_ireland/">N. Ireland</a></li>
533
+
534
+
535
+ <li><a href="/news/scotland/">Scotland</a></li>
536
+
537
+
538
+ <li><a href="/news/wales/">Wales</a></li>
539
+
540
+
541
+ <li><a href="/news/business/">Business</a></li>
542
+
543
+
544
+ <li><a href="/news/politics/">Politics</a></li>
545
+
546
+
547
+ <li><a href="/news/health/">Health</a></li>
548
+
549
+
550
+ <li><a href="/news/education/">Education</a></li>
551
+
552
+
553
+ <li><a href="/news/science_and_environment/">Sci/Environment</a></li>
554
+
555
+
556
+ <li><a href="/news/technology/">Technology</a></li>
557
+
558
+
559
+ <li><a href="/news/entertainment_and_arts/">Entertainment &amp; Arts</a></li>
560
+ </ul>
561
+
562
+ </div>
563
+
564
+
565
+ </div>
566
+ <!-- START CPS_SITE CLASS: domestic -->
567
+ <div id="content-wrapper" class="domestic">
568
+
569
+ <div class="advert">
570
+
571
+ </div>
572
+
573
+ <!-- START CPS_SITE CLASS: story -->
574
+ <div id="main-content" class="story blq-clearfix">
575
+ <!-- No EWA -->
576
+
577
+
578
+
579
+
580
+
581
+
582
+ <div class="layout-block-a">
583
+ <div class="story-body">
584
+ <span class="story-date">
585
+ <span class="date">16 October 2012</span>
586
+ <span class="time-text">Last updated at </span><span class="time">15:32</span>
587
+ </span>
588
+
589
+ <div id="page-bookmark-links-head" class="share-help">
590
+ <h3>Share this page</h3>
591
+ <ul>
592
+ <li class="delicious">
593
+ <a title="Post this story to Delicious" href="http://del.icio.us/post?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">Delicious</a>
594
+ </li>
595
+ <li class="digg">
596
+ <a title="Post this story to Digg" href="http://digg.com/submit?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">Digg</a>
597
+ </li>
598
+ <li class="facebook">
599
+ <a title="Post this story to Facebook" href="http://www.facebook.com/sharer.php?u=http://www.bbc.co.uk/news/uk-19957138&amp;t=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">Facebook</a>
600
+ </li>
601
+ <li class="reddit">
602
+ <a title="Post this story to reddit" href="http://reddit.com/submit?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">reddit</a>
603
+ </li>
604
+ <li class="stumbleupon">
605
+ <a title="Post this story to StumbleUpon" href="http://www.stumbleupon.com/submit?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">StumbleUpon</a>
606
+ </li>
607
+ <li class="twitter">
608
+ <a title="Post this story to Twitter" href="http://twitter.com/home?status=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May+http://www.bbc.co.uk/news/uk-19957138">Twitter</a>
609
+ </li>
610
+ <li class="email">
611
+ <a title="Email this story" href="http://newsvote.bbc.co.uk/mpapps/pagetools/email/www.bbc.co.uk/news/uk-19957138">Email</a>
612
+ </li>
613
+ <li class="print">
614
+ <a title="Print this story" href="?print=true">Print</a>
615
+ </li>
616
+ </ul>
617
+ <!-- Social media icons by Paul Annet | http://nicepaul.com/icons -->
618
+ </div>
619
+ <script type="text/javascript">
620
+ <!--
621
+ $render("page-bookmark-links","page-bookmark-links-head",{
622
+ useForgeShareTools:"true",
623
+ position:"top",
624
+ site:'News',
625
+ headline:'BBC News - Gary McKinnon extradition to US blocked by Theresa May',
626
+ storyId:'19957138',
627
+ sectionId:'99116',
628
+ url:'http://www.bbc.co.uk/news/uk-19957138',
629
+ edition:'Domestic'
630
+ });
631
+ -->
632
+ </script>
633
+
634
+
635
+
636
+
637
+
638
+ <h1 class="story-header">Gary McKinnon extradition to US blocked by Theresa May</h1>
639
+
640
+
641
+
642
+
643
+
644
+
645
+ <div class="has-icon-comment dna-comment-count-simple">&nbsp;</div>
646
+
647
+
648
+
649
+ <!-- Embedding the video player -->
650
+ <!-- This is the embedded player component -->
651
+
652
+
653
+
654
+
655
+
656
+ <!-- wwrights check -->
657
+ <!-- Empty country is used on test environment -->
658
+
659
+
660
+
661
+ <div class="videoInStoryC">
662
+ <div id="emp-19961789-151545" class="emp">
663
+
664
+
665
+ <noscript>
666
+ <div class="warning">
667
+ <img class="holding" src="http://news.bbcimg.co.uk/media/images/63519000/jpg/_63519636_jex_1535040_de27-1.jpg" alt="Theresa May" />
668
+ <p><strong>Please turn on JavaScript.</strong> Media requires JavaScript to play.</p>
669
+ </div>
670
+ </noscript>
671
+ <object width="0" height="0">
672
+ <param name="id" value="embeddedPlayer_19961789" />
673
+ <param name="width" value="320" />
674
+ <param name="height" value="180" />
675
+ <param name="size" value="Small" />
676
+ <param name="holdingImage" value="http://news.bbcimg.co.uk/media/images/63519000/jpg/_63519636_jex_1535040_de27-1.jpg" />
677
+ <param name="externalIdentifier" value="p00ztrfx" />
678
+ <param name="playlist" value="http://playlists.bbc.co.uk/news/uk-19961789A/playlist.sxml" />
679
+ <param name="config_settings_autoPlay" value="false" />
680
+ <param name="config_settings_showPopoutButton" value="false" />
681
+ <param name="config_plugin_fmtjLiveStats_pageType" value="eav2" />
682
+ <param name="config_plugin_fmtjLiveStats_edition" value="Domestic" />
683
+
684
+ <param name="fmtjDocURI" value="/news/uk-19957138"/>
685
+
686
+ <param name="config_settings_showShareButton" value="true" />
687
+ <param name="config_settings_showUpdatedInFooter" value="true" />
688
+ </object>
689
+ <!-- embedding script -->
690
+
691
+ <script type="text/javascript">
692
+ //<![CDATA[
693
+ (function(){
694
+ // create a new player, but don't write it yet
695
+ var emp = new bbc.fmtj.av.emp.Player('emp-19961789-151545');
696
+ // if the emps have already been loaded, we need to call the write method manually
697
+ if(bbc.fmtj.av.emp.loaded){
698
+ emp.setMediator('href', '{protocol}://{host}/mediaselector/5/select/version/2.0/mediaset/{mediaset}/vpid/{id}');
699
+ emp.write();
700
+ }
701
+ })();
702
+ //]]>
703
+ </script>
704
+ </div>
705
+ <!-- companion banner -->
706
+
707
+ <!-- END - companion banner -->
708
+
709
+ <!-- caption -->
710
+ <p class="caption">Theresa May: &quot;A decision to extradite would be incompatible with [Mr McKinnon&#039;s] human rights&quot;</p>
711
+ <!-- END - caption -->
712
+
713
+
714
+
715
+ </div>
716
+ <!-- end of the embedded player component -->
717
+
718
+ <!-- Player embedded --> <div class="story-feature related narrow">
719
+ <a class="hidden" href="#story_continues_1">Continue reading the main story</a> <h2>Related Stories</h2>
720
+ <ul class="related-links-list">
721
+
722
+
723
+
724
+
725
+
726
+
727
+
728
+
729
+
730
+
731
+
732
+
733
+
734
+ <li class="has-icon-boxedlive ">
735
+ <a class="story is-live" rel="published-1350383944860" href="/news/uk-19962844">McKinnon decision reaction<span class="gvl3-icon gvl3-icon-boxedlive"> Live</span></a>
736
+
737
+ </li>
738
+
739
+
740
+
741
+
742
+
743
+
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+ <li>
754
+ <a class="story" rel="published-1350386540503" href="/news/19959726">Gary McKinnon: Timeline</a>
755
+
756
+ </li>
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+ <li>
773
+ <a class="story" rel="published-1350316746336" href="/news/uk-19946902">Profile: Gary McKinnon</a>
774
+
775
+ </li>
776
+
777
+
778
+ </ul>
779
+ </div>
780
+ <p class="introduction" id="story_continues_1">British computer hacker Gary McKinnon will not be extradited to the US, Home Secretary Theresa May has announced.</p>
781
+ <p>Mr McKinnon, 46, who admits accessing US government computers but claims he was looking for evidence of UFOs, has been fighting extradition since 2002.</p>
782
+ <p>The home secretary told MPs there was no doubt Mr McKinnon was &quot;seriously ill&quot; and the extradition warrant against him should be withdrawn.</p>
783
+ <p>Mrs May said the sole issue she had to consider was his human rights.</p>
784
+ <p>She said it was now for the Director of Public Prosecutions, Keir Starmer QC, to decide whether he should face trial in the UK.</p>
785
+ <p>Mrs May said: &quot;Since I came into office, the sole issue on which I have been required to make a decision is whether Mr McKinnon&#039;s extradition to the United States would breach his human rights.</p>
786
+ <p>&quot;Mr McKinnon is accused of serious crimes. But there is also no doubt that he is seriously ill.</p>
787
+ <p>&quot;He has Asperger&#039;s syndrome, and suffers from depressive illness. The legal question before me is now whether the extent of that illness is sufficient to preclude extradition.</p>
788
+ <p>&quot;After careful consideration of all of the relevant material, I have concluded that Mr McKinnon&#039;s extradition would give rise to such a high risk of him ending his life that a decision to extradite would be incompatible with Mr McKinnon&#039;s human rights.&quot;</p>
789
+ <div class="story-feature wide ">
790
+ <a class="hidden" href="#story_continues_2">Continue reading the main story</a> <!-- pullout-items-->
791
+ <div class="correspondent-byline">
792
+ <a href="/news/correspondents/dominiccasciani/"><span class="byline-picture"><img src="http://news.bbcimg.co.uk/media/images/55243000/jpg/_55243840_casciani-112x81-white.jpg" alt="image of Dominic Casciani" /></span></a>
793
+ <span class="byline-heading">Analysis</span>
794
+ <a href="/news/correspondents/dominiccasciani/"><span class="byline-name">Dominic Casciani</span></a> <span class="byline-title">Home affairs correspondent</span>
795
+ <hr />
796
+ </div>
797
+ <!-- pullout-body-->
798
+ <p>The home secretary&#039;s decision to block this extradition is extremely significant. She had an obligation under the Human Rights Act to take into account new evidence about Gary McKinnon&#039;s health. </p>
799
+ <p>The real twist is that this may be the one and only time she blocks an extradition on human rights grounds because she has now pledged to hand that decision to judges, in line with a recommendation in the review she commissioned. </p>
800
+ <p>The 2003 extradition deal with the US aimed to speed up extradition and remove political prevarication or interference. </p>
801
+ <p>And although the home secretary says the deal is broadly sound, she has accepted one of the main criticisms - that there must be a power to block extradition if someone could be tried in the UK. That will be a major change in extradition law. Critics, including many MPs, will say this reform should have come sooner.</p>
802
+
803
+ <!-- pullout-links-->
804
+ <ul class="links-list">
805
+ <li><a href="/news/correspondents/dominiccasciani/" >Read more from Dominic</a></li>
806
+ </ul>
807
+ </div> <p id="story_continues_2">Mrs May also said measures would be taken to enable a UK court to decide whether a person should stand trial in the UK or abroad - a so-called forum bar.</p>
808
+ <p>It would be designed to ensure extradition cases did not fall foul of &quot;delays and satellite litigation&quot;, she said.</p>
809
+ <p>&quot;I believe extradition decisions must not only be fair, they must be seen to be fair. And they must be made in open court where decisions can be challenged and explained,&quot; she said.</p>
810
+ <p>&quot;That is why I have decided to introduce a forum bar. This will mean that where prosecution is possible in both the UK and in another state, the British courts will be able to bar prosecution overseas if they believe it is in the interests of justice to do so.&quot;</p>
811
+ <p>Mr McKinnon, from Wood Green, north London, <a href="http://www.bbc.co.uk/health/physical_health/conditions/autism2.shtml" >who has been diagnosed with Asperger&#039;s syndrome</a>, a form of autism, faced 60 years in jail if convicted in the US.</p>
812
+ <p>Mr McKinnon&#039;s mother Janis Sharp was delighted with the decision, saying: &quot;Thank you Theresa May from the bottom of my heart - I always knew you had the strength and courage to do the right thing.&quot;</p>
813
+ <p>His MP, David Burrowes, who had threatened to resign as a parliamentary aide if Mr McKinnon was extradited, welcomed the decision.</p>
814
+ <p>Mr Burrowes, Conservative MP for Enfield Southgate in north London, tweeted: &quot;Compassion and pre-election promises delivered today.&quot;</p>
815
+ <p>BBC legal correspondent Clive Coleman said it was a dramatic decision - the first time a home secretary had stepped in to block an extradition under the current treaty with the US.</p>
816
+ <div class="caption body-narrow-width">
817
+ <img src="http://news.bbcimg.co.uk/media/images/58450000/jpg/_58450207_57147666.jpg" width="304" height="171" alt="Gary McKinnon" />
818
+
819
+ <span style="width:304px;">British computer hacker Gary McKinnon has been fighting extradition to the US for years</span>
820
+ </div>
821
+ <p>Shami Chakrabarti, director of civil rights group Liberty, said: &quot;This is a great day for rights, freedoms and justice in the United Kingdom.</p>
822
+ <p>&quot;The home secretary has spared this vulnerable man the cruelty of being sent to the US and accepted Liberty&#039;s long-standing argument for change to our rotten extradition laws.&quot;</p>
823
+ <p>Mark Lever, chief executive of the National Autistic Society, said he was &quot;delighted that the years of waiting are finally over for Gary and his family&quot;.</p>
824
+ <p>But Labour former home secretary Alan Johnson criticised the decision and claimed Mrs May had made a decision which was &quot;in her own party&#039;s best interests but it&#039;s not in the best interests of this country&quot;.</p>
825
+ <p>He said: &quot;Gary McKinnon is accused of very serious offences. The US was perfectly within its rights and it was extremely reasonable of them to seek his extradition.&quot;</p>
826
+ <div class="caption body-narrow-width">
827
+ <img src="http://news.bbcimg.co.uk/media/images/63524000/jpg/_63524214_janissharpap.jpg" width="304" height="171" alt="Janis Sharp" />
828
+
829
+ <span style="width:304px;">Mr McKinnon&#039;s mother Janis Sharp says her son has been &quot;zombified&quot; while waiting for a decision</span>
830
+ </div>
831
+ <p>Shadow home secretary Yvette Cooper asked Mrs May about the implications of her decision: &quot;Clearly other people subject to extradition proceedings or immigration proceedings do cite medical conditions as a reason not to extradite so it would be useful for Parliament and the courts to understand the tests you have applied and whether that will set precedent in other cases.&quot;</p>
832
+ <p>American lawyer, David Rivkin, a former White House adviser, said the decision was &quot;laughable&quot;, adding, &quot;Under that logic, anybody who claims some kind of physical or mental problem can commit crimes with impunity and get away with it.&quot;</p>
833
+ <p>US extradition expert Douglas McNabb said the US Attorney&#039;s Office would be furious and he suspected it would ask Interpol to issue a red notice - making other nations aware there was an outstanding arrest warrant for Mr McKinnon in the US - which would mean he could be arrested if he left the UK.</p>
834
+ <p>The family of terror suspect Babar Ahmad said while they welcomed the decision not to extradite Mr McKinnon, questions had to be asked.</p>
835
+ <div class="story-feature wide ">
836
+ <a class="hidden" href="#story_continues_3">Continue reading the main story</a> <!-- pullout-items-->
837
+ <div class="correspondent-byline">
838
+ <a href="/news/correspondents/dominiccasciani/"><span class="byline-picture"><img src="http://news.bbcimg.co.uk/media/images/55243000/jpg/_55243840_casciani-112x81-white.jpg" alt="image of Dominic Casciani" /></span></a>
839
+ <span class="byline-heading">Latest</span>
840
+ <a href="/news/correspondents/dominiccasciani/"><span class="byline-name">Dominic Casciani</span></a> <span class="byline-title">Home affairs correspondent</span>
841
+ <hr />
842
+ </div>
843
+
844
+
845
+
846
+
847
+ <link rel="stylesheet" rev="stylesheet" href="http://static.bbci.co.uk/modules/twitter/0.1.64/css/gel_preset.css"/> <link rel="stylesheet" rev="stylesheet" href="http://static.bbci.co.uk/modules/twitter/0.1.64/css/gel_single_account.css"/> <div class="sps-twitter_module"> <div class="tweets_container"> <ul class="twitter_module_tweets" id="twitter_module_tweets"> <a name="twitter_module_tweets_top" id="twitter_module_tweets_top"></a> <li class="sps-tweet notables" id="tweet_114303175"> <div class="twitter_module_avatar"> <a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account"><img src="http://a0.twimg.com/profile_images/1501656304/profilepicture_normal.jpg" class="twittermodule_avatar_normal" alt="Dominic Casciani" /></a> </div> <!--<h4 class="tweets_tweet_number secondary_body"><span class="dna-hide">Tweet number</span> 594.</h4>--> <div class="tweet-text"> <cite class="tweets_user_info"> <span class="tweet_username tweet_username_" title=""><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">Dominic Casciani</a></span> <span class="tweet_screenname tweet_screenname_" title="Contributors Screen Name"><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">@BBCDomC</a></span> </cite> <p>Analysis: High Noon for Abu Qatada? <a href="http://t.co/3lt15m7T">http://t.co/3lt15m7T</a>. Why tomorrow's judgement is jolly difficult whichever way it goes...</p> <div class="tweet_meta"> <span class="tweet_time" title="Date this Tweet was posted"><a href="http://twitter.com/BBCDomC/status/267582263389212672" title="View this Tweet on Twitter">6 Hours ago</a></span> <span class="web_intents"> <a href="https://twitter.com/intent/favorite?tweet_id=267582263389212672" title="Favourite on Twitter" class="wi_favourite"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Favourite on Twitter" /></a> <a href="https://twitter.com/intent/retweet?tweet_id=267582263389212672" title="Retweet on Twitter" class="wi_retweet"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Retweet on Twitter" /></a> <a href="https://twitter.com/intent/tweet?in_reply_to=267582263389212672" title="Reply on Twitter" class="wi_reply"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Reply on Twitter" /></a> </span> </div> </div> <!--<div class="dna-tweets-tweet-footer"> <p class="flag tweet_complain_"> <a href="http://www.bbc.co.uk/dna/newscorrespondentstweets/comments/UserComplaintPage?PostID=114303175&amp;s_start=1" class="popup dna-tweetbox-complain-link" title=""><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/warning_icon.gif" alt="" /> Report this Tweet<span class="dna-hide"> (Tweet number 594)</span></a></p> <div style="clear: both;"></div> </div>--> </li> <li class="sps-tweet notables" id="tweet_114290582"> <div class="twitter_module_avatar"> <a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account"><img src="http://a0.twimg.com/profile_images/1501656304/profilepicture_normal.jpg" class="twittermodule_avatar_normal" alt="Dominic Casciani" /></a> </div> <!--<h4 class="tweets_tweet_number secondary_body"><span class="dna-hide">Tweet number</span> 593.</h4>--> <div class="tweet-text"> <cite class="tweets_user_info"> <span class="tweet_username tweet_username_" title=""><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">Dominic Casciani</a></span> <span class="tweet_screenname tweet_screenname_" title="Contributors Screen Name"><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">@BBCDomC</a></span> </cite> <p>Meesham: "This not the person I identified by photograph [shown to me by police] who told me the man... was Lord McAlpine"</p> <div class="tweet_meta"> <span class="tweet_time" title="Date this Tweet was posted"><a href="http://twitter.com/BBCDomC/status/266961835708776449" title="View this Tweet on Twitter">Nov 9, 2012 5:53:56 PM</a></span> <span class="web_intents"> <a href="https://twitter.com/intent/favorite?tweet_id=266961835708776449" title="Favourite on Twitter" class="wi_favourite"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Favourite on Twitter" /></a> <a href="https://twitter.com/intent/retweet?tweet_id=266961835708776449" title="Retweet on Twitter" class="wi_retweet"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Retweet on Twitter" /></a> <a href="https://twitter.com/intent/tweet?in_reply_to=266961835708776449" title="Reply on Twitter" class="wi_reply"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Reply on Twitter" /></a> </span> </div> </div> <!--<div class="dna-tweets-tweet-footer"> <p class="flag tweet_complain_"> <a href="http://www.bbc.co.uk/dna/newscorrespondentstweets/comments/UserComplaintPage?PostID=114290582&amp;s_start=1" class="popup dna-tweetbox-complain-link" title=""><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/warning_icon.gif" alt="" /> Report this Tweet<span class="dna-hide"> (Tweet number 593)</span></a></p> <div style="clear: both;"></div> </div>--> </li> <li class="sps-tweet notables" id="tweet_114290561"> <div class="twitter_module_avatar"> <a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account"><img src="http://a0.twimg.com/profile_images/1501656304/profilepicture_normal.jpg" class="twittermodule_avatar_normal" alt="Dominic Casciani" /></a> </div> <!--<h4 class="tweets_tweet_number secondary_body"><span class="dna-hide">Tweet number</span> 592.</h4>--> <div class="tweet-text"> <cite class="tweets_user_info"> <span class="tweet_username tweet_username_" title=""><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">Dominic Casciani</a></span> <span class="tweet_screenname tweet_screenname_" title="Contributors Screen Name"><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">@BBCDomC</a></span> </cite> <p>BREAKING: Steve Messham apologises to Lord McAlpine. "I want to offer my sincere and humble apologies to him and his family" (1/2)</p> <div class="tweet_meta"> <span class="tweet_time" title="Date this Tweet was posted"><a href="http://twitter.com/BBCDomC/status/266961454039695360" title="View this Tweet on Twitter">Nov 9, 2012 5:52:25 PM</a></span> <span class="web_intents"> <a href="https://twitter.com/intent/favorite?tweet_id=266961454039695360" title="Favourite on Twitter" class="wi_favourite"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Favourite on Twitter" /></a> <a href="https://twitter.com/intent/retweet?tweet_id=266961454039695360" title="Retweet on Twitter" class="wi_retweet"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Retweet on Twitter" /></a> <a href="https://twitter.com/intent/tweet?in_reply_to=266961454039695360" title="Reply on Twitter" class="wi_reply"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Reply on Twitter" /></a> </span> </div> </div> <!--<div class="dna-tweets-tweet-footer"> <p class="flag tweet_complain_"> <a href="http://www.bbc.co.uk/dna/newscorrespondentstweets/comments/UserComplaintPage?PostID=114290561&amp;s_start=1" class="popup dna-tweetbox-complain-link" title=""><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/warning_icon.gif" alt="" /> Report this Tweet<span class="dna-hide"> (Tweet number 592)</span></a></p> <div style="clear: both;"></div> </div>--> </li> <li class="sps-tweet notables" id="tweet_114284486"> <div class="twitter_module_avatar"> <a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account"><img src="http://a0.twimg.com/profile_images/1501656304/profilepicture_normal.jpg" class="twittermodule_avatar_normal" alt="Dominic Casciani" /></a> </div> <!--<h4 class="tweets_tweet_number secondary_body"><span class="dna-hide">Tweet number</span> 591.</h4>--> <div class="tweet-text"> <cite class="tweets_user_info"> <span class="tweet_username tweet_username_" title=""><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">Dominic Casciani</a></span> <span class="tweet_screenname tweet_screenname_" title="Contributors Screen Name"><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">@BBCDomC</a></span> </cite> <p>The consequences of having a ‘foreign’ name <a href="http://t.co/olOienYz">http://t.co/olOienYz</a> Written by a colleague - but I share the experience...</p> <div class="tweet_meta"> <span class="tweet_time" title="Date this Tweet was posted"><a href="http://twitter.com/BBCDomC/status/266863087158714369" title="View this Tweet on Twitter">Nov 9, 2012 11:21:33 AM</a></span> <span class="web_intents"> <a href="https://twitter.com/intent/favorite?tweet_id=266863087158714369" title="Favourite on Twitter" class="wi_favourite"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Favourite on Twitter" /></a> <a href="https://twitter.com/intent/retweet?tweet_id=266863087158714369" title="Retweet on Twitter" class="wi_retweet"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Retweet on Twitter" /></a> <a href="https://twitter.com/intent/tweet?in_reply_to=266863087158714369" title="Reply on Twitter" class="wi_reply"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Reply on Twitter" /></a> </span> </div> </div> <!--<div class="dna-tweets-tweet-footer"> <p class="flag tweet_complain_"> <a href="http://www.bbc.co.uk/dna/newscorrespondentstweets/comments/UserComplaintPage?PostID=114284486&amp;s_start=1" class="popup dna-tweetbox-complain-link" title=""><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/warning_icon.gif" alt="" /> Report this Tweet<span class="dna-hide"> (Tweet number 591)</span></a></p> <div style="clear: both;"></div> </div>--> </li> <li class="sps-tweet notables" id="tweet_114283930"> <div class="twitter_module_avatar"> <a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account"><img src="http://a0.twimg.com/profile_images/1501656304/profilepicture_normal.jpg" class="twittermodule_avatar_normal" alt="Dominic Casciani" /></a> </div> <!--<h4 class="tweets_tweet_number secondary_body"><span class="dna-hide">Tweet number</span> 590.</h4>--> <div class="tweet-text"> <cite class="tweets_user_info"> <span class="tweet_username tweet_username_" title=""><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">Dominic Casciani</a></span> <span class="tweet_screenname tweet_screenname_" title="Contributors Screen Name"><a href="http://twitter.com/BBCDomC" title="View this persons Twitter Account">@BBCDomC</a></span> </cite> <p>BBC News - Lord McAlpine says abuse claims false and defamatory <a href="http://t.co/9DxhIBQA">http://t.co/9DxhIBQA</a></p> <div class="tweet_meta"> <span class="tweet_time" title="Date this Tweet was posted"><a href="http://twitter.com/BBCDomC/status/266854592975867904" title="View this Tweet on Twitter">Nov 9, 2012 10:47:48 AM</a></span> <span class="web_intents"> <a href="https://twitter.com/intent/favorite?tweet_id=266854592975867904" title="Favourite on Twitter" class="wi_favourite"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Favourite on Twitter" /></a> <a href="https://twitter.com/intent/retweet?tweet_id=266854592975867904" title="Retweet on Twitter" class="wi_retweet"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Retweet on Twitter" /></a> <a href="https://twitter.com/intent/tweet?in_reply_to=266854592975867904" title="Reply on Twitter" class="wi_reply"><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/trans.gif" width="16" height="16" alt="Reply on Twitter" /></a> </span> </div> </div> <!--<div class="dna-tweets-tweet-footer"> <p class="flag tweet_complain_"> <a href="http://www.bbc.co.uk/dna/newscorrespondentstweets/comments/UserComplaintPage?PostID=114283930&amp;s_start=1" class="popup dna-tweetbox-complain-link" title=""><img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/warning_icon.gif" alt="" /> Report this Tweet<span class="dna-hide"> (Tweet number 590)</span></a></p> <div style="clear: both;"></div> </div>--> </li> <li class="infinite_loading"> <div class="loading_holder"><span class="dna-hide">loading</span></div> <!-- <img src="http://static.bbci.co.uk/modules/twitter/0.1.64/img/loader.gif" alt="loading" />--> </li> </ul> </div> <p class="twitter_disclaimer"> Content from Twitter. <a href=http://www.bbc.co.uk/blogs/about.shtml#tw id=tweet_pane_end>Learn more</a><span class='dna-hide'> about content from Twitter</span>.</p> </div> <script> require({paths: { "twittermodule/Twittermodule" : "http://static.bbci.co.uk/modules/twitter/0.1.64/modules/twittermodule/Twittermodule", "twittermodule/CustomSelect" : "http://static.bbci.co.uk/modules/twitter/0.1.64/modules/twittermodule/CustomSelect", "twittermodule/TwitterWebIntents" : "http://static.bbci.co.uk/modules/twitter/0.1.64/modules/twittermodule/TwitterWebIntents", "twittermodule/Jspoll" : "http://static.bbci.co.uk/modules/twitter/0.1.64/modules/twittermodule/Jspoll", "twittermodule/ScrollPane" : "http://static.bbci.co.uk/modules/twitter/0.1.64/modules/twittermodule/jquery.jscrollpane.min", "twittermodule/MouseWheel" : "http://static.bbci.co.uk/modules/twitter/0.1.64/modules/twittermodule/jquery.mousewheel" }}); var twittermodule; require(["jquery-1", "twittermodule/Twittermodule"], function($, Twittermodule) { $(function(){ var configObj = { "root_node" : ".sps-twitter_module" ,"preset" : "gel-single-account" ,"site_id" : "newscorrespondentstweets" ,"forum_id" : "dominiccasciani" ,"use_scrollbar_gutters" : false ,"page_size" : 5 ,"polling_available" : true ,"tweet_count" : 594 ,"load_new_tweets_base_url" : "http://feeds.bbci.co.uk/modules/twitter/index/gettweets/gel-single-account/" ,"poll_no_response_count_limit" : 120 }; twittermodule = new Twittermodule(configObj); }); }); </script>
848
+ <!-- pullout-body-->
849
+
850
+ <!-- pullout-links-->
851
+ <ul class="links-list">
852
+ <li><a href="/news/correspondents/dominiccasciani/" >Read more from Dominic</a></li>
853
+ </ul>
854
+ </div> <p id="story_continues_3">Mr Ahmad was one of five terror suspects, including radical cleric Abu Hamza al-Masri, extradited to the US earlier this month. His co-accused, Talha Ahsan, who was also extradited, was diagnosed with Asperger&#039;s in June 2009, according to a European Court of Human Rights judgement.</p>
855
+ <p>Both are accused by US authorities of running a pro-jihad website.</p>
856
+ <p>Mr Ahmad&#039;s family said: &quot;Why within the space of two weeks, a British citizen with Asperger&#039;s accused of computer-related activity is not extradited, while two other British citizens, one with Asperger&#039;s, engaged in computer-related activity are extradited. A clear demonstration of double standards.&quot;</p>
857
+ <p>US authorities have described Glasgow-born Mr McKinnon&#039;s actions as the &quot;biggest military computer hack of all time&quot; and have demanded he face justice in America.</p>
858
+ <p>They insisted his hacking was &quot;intentional and calculated to influence and affect the US government by intimidation and coercion&quot;.</p>
859
+ <p>The Americans said his actions caused $800,000 (£487,000) worth of damage to military computer systems.</p>
860
+ <p>Mr McKinnon has previously lost appeals in the High Court and the House of Lords against his extradition, but two years ago a High Court judge ruled Mr McKinnon would be at risk of suicide if sent away.</p>
861
+ <p>Earlier this year Mrs May put the decision on hold to allow Home Office appointed psychiatrists to conduct an assessment.</p>
862
+ <p>They also concluded Mr McKinnon would be likely to take his own life if he was sent to face trial in the US.</p>
863
+ <p>Mr McKinnon was arrested in 2002 and again in 2005 before an order for his extradition was made in July 2006 under the 2003 Extradition Act.</p>
864
+
865
+
866
+ </div><!-- / story-body -->
867
+
868
+ <div class="has-icon-comment dna-comment-count-personal">&nbsp;</div>
869
+
870
+
871
+ <div>
872
+ <!--Related hypers and stories -->
873
+ <div class="story-related">
874
+ <h2>More on This Story</h2>
875
+
876
+
877
+ <style>
878
+ .related-links-list li {
879
+ position: relative;
880
+ }
881
+ .related-links-list .gvl3-icon {
882
+ position: absolute;
883
+ top: 0;
884
+ left: 0;
885
+ }
886
+ </style>
887
+
888
+ <div class="see-also">
889
+ <h3>Related Stories</h3>
890
+ <ul class="related-links-list">
891
+
892
+ <li class=" first">
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <div class="has-icon-boxedlive ">
907
+ <a class="story is-live" rel="published-1350383944860" href="/news/uk-19962844">McKinnon decision reaction<span class="gvl3-icon gvl3-icon-boxedlive"> Live</span></a>
908
+
909
+ </div>
910
+
911
+
912
+ <span class="timestamp">16 OCTOBER 2012</span>,
913
+ <span class="section">UK</span>
914
+ </li>
915
+ <li class="">
916
+
917
+
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+ <div>
930
+ <a class="story" rel="published-1350386540503" href="/news/19959726">Gary McKinnon: Timeline</a>
931
+
932
+ </div>
933
+
934
+
935
+ <span class="timestamp">16 OCTOBER 2012</span>,
936
+ <span class="section">HOME</span>
937
+ </li>
938
+ <li class="">
939
+
940
+
941
+
942
+
943
+
944
+
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+ <div>
953
+ <a class="story" rel="published-1350316746336" href="/news/uk-19946902">Profile: Gary McKinnon</a>
954
+
955
+ </div>
956
+
957
+
958
+ <span class="timestamp">16 OCTOBER 2012</span>,
959
+ <span class="section">UK</span>
960
+ </li>
961
+ <li class="">
962
+
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+
971
+
972
+
973
+
974
+
975
+ <div>
976
+ <a class="story" rel="published-1346927103115" href="/news/uk-19506090">No early ruling in McKinnon case</a>
977
+
978
+ </div>
979
+
980
+
981
+ <span class="timestamp">06 SEPTEMBER 2012</span>,
982
+ <span class="section">UK</span>
983
+ </li>
984
+ <li class="">
985
+
986
+
987
+
988
+
989
+
990
+
991
+
992
+
993
+
994
+
995
+
996
+
997
+
998
+ <div>
999
+ <a class="story" rel="published-1343122313591" href="/news/uk-18968417">McKinnon decision due in October</a>
1000
+
1001
+ </div>
1002
+
1003
+
1004
+ <span class="timestamp">24 JULY 2012</span>,
1005
+ <span class="section">UK</span>
1006
+ </li>
1007
+ <li class="">
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+ <div>
1022
+ <a class="story" rel="published-1342697571369" href="/news/uk-18904769">McKinnon refuses new medical test</a>
1023
+
1024
+ </div>
1025
+
1026
+
1027
+ <span class="timestamp">19 JULY 2012</span>,
1028
+ <span class="section">UK</span>
1029
+ </li>
1030
+ <li class="">
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+
1043
+
1044
+ <div>
1045
+ <a class="story" rel="published-1323109594485" href="/news/uk-politics-16041824">US-UK extradition: Key facts</a>
1046
+
1047
+ </div>
1048
+
1049
+
1050
+ <span class="timestamp">10 APRIL 2012</span>,
1051
+ <span class="section">POLITICS</span>
1052
+ </li>
1053
+ <li class="">
1054
+
1055
+
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+
1067
+ <div>
1068
+ <a class="story" rel="published-1333075568921" href="/news/uk-politics-17553860">UK-US extradition overhaul urged</a>
1069
+
1070
+ </div>
1071
+
1072
+
1073
+ <span class="timestamp">30 MARCH 2012</span>,
1074
+ <span class="section">POLITICS</span>
1075
+ </li>
1076
+ <li class="">
1077
+
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+
1089
+
1090
+ <div>
1091
+ <a class="story" rel="published-1331778294034" href="/news/uk-politics-17377426">Extradition: Will a new review do?</a>
1092
+
1093
+ </div>
1094
+
1095
+
1096
+ <span class="timestamp">15 MARCH 2012</span>,
1097
+ <span class="section">POLITICS</span>
1098
+ </li>
1099
+ <li class="">
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+ <div>
1114
+ <a class="story" rel="published-1331747070836" href="/news/uk-politics-17370772">PM seeks US-UK extradition review</a>
1115
+
1116
+ </div>
1117
+
1118
+
1119
+ <span class="timestamp">15 MARCH 2012</span>,
1120
+ <span class="section">POLITICS</span>
1121
+ </li>
1122
+ <li class="">
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+ <div>
1137
+ <a class="story" rel="published-1323054696740" href="/news/uk-politics-16024278">MPs call for extradition reform</a>
1138
+
1139
+ </div>
1140
+
1141
+
1142
+ <span class="timestamp">06 DECEMBER 2011</span>,
1143
+ <span class="section">POLITICS</span>
1144
+ </li>
1145
+ <li class="">
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+ <div>
1160
+ <a class="story" rel="published-1318934456613" href="/news/uk-15351357">UK-US extradition law &#039;is fair&#039; </a>
1161
+
1162
+ </div>
1163
+
1164
+
1165
+ <span class="timestamp">18 OCTOBER 2011</span>,
1166
+ <span class="section">UK</span>
1167
+ </li>
1168
+ </ul>
1169
+ </div>
1170
+ <script type="text/javascript">$render("page-see-also","ID");</script>
1171
+
1172
+ <!-- Newstracker -->
1173
+ <div class="puffbox">
1174
+
1175
+
1176
+
1177
+
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+ <!-- newstracker puffbox news 19957138 -->
1184
+
1185
+
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+ </div>
1194
+ <!-- Newstracker - End -->
1195
+ <script type="text/javascript">$render("page-newstracker","ID");</script>
1196
+
1197
+
1198
+ <div class="related-internet-links">
1199
+ <h3>Related Internet links</h3>
1200
+ <ul class="related-links">
1201
+
1202
+ <li class="column-1 first-child">
1203
+ <a href="http://www.homeoffice.gov.uk/">Home Office</a>
1204
+ </li>
1205
+
1206
+ <li class="column-2 ">
1207
+ <a href="http://www.liberty-human-rights.org.uk/index.php">Liberty</a>
1208
+ </li>
1209
+ </ul>
1210
+ </div>
1211
+
1212
+
1213
+ <div class="related-bbc-links">
1214
+ <h3>Around the BBC</h3>
1215
+ <ul class="related-links">
1216
+
1217
+ <li class="column-1 first-child">
1218
+ <a href="http://www.bbc.co.uk/health/physical_health/conditions/autism2.shtml">BBC - Health- Asperger syndrome</a>
1219
+ </li>
1220
+ </ul>
1221
+ </div>
1222
+
1223
+ <p class="disclaimer">The BBC is not responsible for the content of external Internet sites</p>
1224
+ </div>
1225
+ <script type="text/javascript">$render("page-related-items","ID");</script>
1226
+
1227
+ </div>
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+ <!-- Comments Module Start --> <link rel="stylesheet" rev="stylesheet" href="http://static.bbci.co.uk/modules/comments/2.0.9/css/comments-gvl3.css"/> <link rel="stylesheet" rev="stylesheet" href="http://static.bbci.co.uk/id/0.10.2/style/id-cta.css"/> <!--[if lte IE 7]> <link rel="stylesheet" rev="stylesheet" href="http://static.bbci.co.uk/modules/comments/2.0.9/css/comments-ie6-7.css"/> <![endif]--> <script type="text/javascript"> (function(){ gloader.load( ["glow", "1", "glow.net"], { async: true, onLoad: function(glow) { glow.ready(function() { commentsParams = { version : '2.0.9', bbc_id_env : 'id.bbc.co.uk', base_non_secure_url : 'http://www.bbc.co.uk/modules/comments/', base_secure_url : 'https://ssl.bbc.co.uk/modules/comments/', ajax_load_url : 'http://www.bbc.co.uk/modules/comments/index/getcomments/', ajax_preview_url : 'https://ssl.bbc.co.uk/modules/comments/index/preview/', user_auth_url : 'http://www.bbc.co.uk/modules/comments/getauth/', translations_url : 'http://www.bbc.co.uk/modules/comments/getjstranslations/', items_per_page : 20, sort_order : 'Descending', sort_by : 'Created', filter : 'EditorPicks', current_page : 1, page_count : 1, comment_count : 1013, site_name : 'newscommentsmodule', forum_id : '__CPS__19957138', title : 'Gary McKinnon extradition to US blocked by Theresa May', preset : 'opinion', parent_uri : 'http://www.bbc.co.uk/news/uk-19957138', postFreq : 0, character_limit : 400, loc : 'en-GB', timezone : 'Europe/London', policy_uri : 'comment', allow_not_signed_in_commenting : '', rtl : false, textarea_height : '16px' ,logged_in : false }; glow.net.loadScript("http://static.bbci.co.uk/modules/comments/2.0.9/javascript/comments.js", { useCache : true }); }); } } ); })(); </script> <a name="dna-comments"></a> <div class="dna-comments_module preset_opinion"> <h3>Comments </h3> <p class="dna-commentbox-nocomments"> <span class="forumclosed">This entry is now closed for comments</span> </p> <a href="#comment_pagination_page_status" class="dna-hide">Jump to comments pagination</a> <div class="ieclear">&nbsp;</div> <ul class="tabs" style="clear: both; display: block; position: relative; "> <li class="sel" id="tab_editorpicks"><a href="http://www.bbc.co.uk/news/uk-19957138?filter=EditorPicks#dna-comments">Editors' Picks<span></span></a></li> <li id="tab_none"><a href="http://www.bbc.co.uk/news/uk-19957138?filter=none#dna-comments">All Comments <span class="dna-comment-count-number">1013</span><span></span></a></li> <li class="hidden dna-tab-loading loading"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/loader.gif" alt="loading" /></li> </ul> <div class="dna-comment-list"> <ul class="collections forumthreadposts"> <li class="dna-comment" id="comment_114032696"> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="https://ssl.bbc.co.uk/modules/comments/rate/" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-in" id="dna-rate-comment-114032696"style="display: none;"> <input type="hidden" name="csrftoken" class="dna-comments-csrf" value="" /> <input type="hidden" name="forumId" value="__CPS__19957138" /> <input type="hidden" name="siteId" value="newscommentsmodule" /> <input type="hidden" name="direction" class="direction" value="" /> <input type="hidden" name="parentUri" value="http://www.bbc.co.uk/news/uk-19957138" /> <input type="hidden" name="title" value="Gary McKinnon extradition to US blocked by Theresa May"/> <input type="hidden" name="loc" value="en-GB"/> <input type="hidden" name="integrityHash" value="520e98a901ea913486e6adec15b2551f" /> <input type="hidden" name="commentId" value="114032696" /> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls" > <input type="submit" name="direction_set" value="positive" class="rate_positive" title="Rate this comment positively" /><input type="submit" name="direction_set" value="negative" class="rate_negative" title="Rate this comment negatively" /> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">+26</span> </form> <!--[if lt IE 8]></span><![endif]--> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-out" id="dna-rate-comment-114032696"> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls dna-logged-out-rate-controls"> <a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114032696%23comment_114032696&p=comment" class="identity-login rate_positive"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_up.png" name="direction_set" class="rate_positive" alt="Rate this comment positively" /></a><a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114032696%23comment_114032696&p=comment" class="identity-login rate_negative"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_down.png" name="direction_set" class="rate_negative" alt="Rate this comment negatively" /></a> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">+26</span> </form> <!--[if lt IE 8]></span><![endif]--> <h4 class="comments_comment_number secondary_body"><span class="dna-hide">Comment number</span> 710.</h4> <cite class="comments_user_info secondary_body"> <span class="vcard"><span class="comment_username comment_username_2048919" title="Contributor's Username">Liz</span></span> <br /> <span class="time" title="Date this contribution was posted">16th October 2012 - 16:41</span> </cite> <div class="comment-text"><div> <p>The US took McKinnon so seriously because he hugely embarrassed them. He hacked into top secret files and highlighted flaws that simply shouldnt have existed in a sophisticated computer network. He should stand trial here undoubtedly, he broke the law. But, as he had nothing to gain and no political motives for this, how can they claim he was attempting to influence the US government?</p> </div></div> <div class="dna-comments-comment-footer"> <p class="flag comment_complain_2048919"> <a href="http://www.bbc.co.uk/dna/newscommentsmodule/comments/UserComplaintPage?PostID=114032696&amp;s_start=1" class="popup dna-commentbox-complain-link" title="Complain about this comment"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/images/warning_icon.gif" alt="" />Report this comment<span class="dna-hide"> (Comment number 710)</span></a></p> <p class="comments_link_to_comment"><a href="http://www.bbc.co.uk/news/uk-19957138?postId=114032696#comment_114032696" title="Copy this link to generate a permanent link to this comment">Link to this<span class="dna-hide"> (Comment number 710)</span></a></p> <div style="clear: both;"></div> </div> </li> <li class="dna-comment" id="comment_114032694"> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="https://ssl.bbc.co.uk/modules/comments/rate/" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-in" id="dna-rate-comment-114032694"style="display: none;"> <input type="hidden" name="csrftoken" class="dna-comments-csrf" value="" /> <input type="hidden" name="forumId" value="__CPS__19957138" /> <input type="hidden" name="siteId" value="newscommentsmodule" /> <input type="hidden" name="direction" class="direction" value="" /> <input type="hidden" name="parentUri" value="http://www.bbc.co.uk/news/uk-19957138" /> <input type="hidden" name="title" value="Gary McKinnon extradition to US blocked by Theresa May"/> <input type="hidden" name="loc" value="en-GB"/> <input type="hidden" name="integrityHash" value="520e98a901ea913486e6adec15b2551f" /> <input type="hidden" name="commentId" value="114032694" /> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls" > <input type="submit" name="direction_set" value="positive" class="rate_positive" title="Rate this comment positively" /><input type="submit" name="direction_set" value="negative" class="rate_negative" title="Rate this comment negatively" /> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">+26</span> </form> <!--[if lt IE 8]></span><![endif]--> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-out" id="dna-rate-comment-114032694"> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls dna-logged-out-rate-controls"> <a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114032694%23comment_114032694&p=comment" class="identity-login rate_positive"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_up.png" name="direction_set" class="rate_positive" alt="Rate this comment positively" /></a><a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114032694%23comment_114032694&p=comment" class="identity-login rate_negative"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_down.png" name="direction_set" class="rate_negative" alt="Rate this comment negatively" /></a> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">+26</span> </form> <!--[if lt IE 8]></span><![endif]--> <h4 class="comments_comment_number secondary_body"><span class="dna-hide">Comment number</span> 709.</h4> <cite class="comments_user_info secondary_body"> <span class="vcard"><span class="comment_username comment_username_1840280" title="Contributor's Username">foxjones</span></span> <br /> <span class="time" title="Date this contribution was posted">16th October 2012 - 16:41</span> </cite> <div class="comment-text"><div> <p>People with Aspergers view the world quite differently from the 'norm' and it is nigh certain that McKinnon would not have considered his activities as criminal. No one has claimed that he had hostile intentions towards the US. He is not accused of having links to terrorists.The US case is really about US embarrassment. Given McKinnon's abilities they would do better to offer him a job.</p> </div></div> <div class="dna-comments-comment-footer"> <p class="flag comment_complain_1840280"> <a href="http://www.bbc.co.uk/dna/newscommentsmodule/comments/UserComplaintPage?PostID=114032694&amp;s_start=1" class="popup dna-commentbox-complain-link" title="Complain about this comment"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/images/warning_icon.gif" alt="" />Report this comment<span class="dna-hide"> (Comment number 709)</span></a></p> <p class="comments_link_to_comment"><a href="http://www.bbc.co.uk/news/uk-19957138?postId=114032694#comment_114032694" title="Copy this link to generate a permanent link to this comment">Link to this<span class="dna-hide"> (Comment number 709)</span></a></p> <div style="clear: both;"></div> </div> </li> <li class="dna-comment" id="comment_114031324"> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="https://ssl.bbc.co.uk/modules/comments/rate/" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-in" id="dna-rate-comment-114031324"style="display: none;"> <input type="hidden" name="csrftoken" class="dna-comments-csrf" value="" /> <input type="hidden" name="forumId" value="__CPS__19957138" /> <input type="hidden" name="siteId" value="newscommentsmodule" /> <input type="hidden" name="direction" class="direction" value="" /> <input type="hidden" name="parentUri" value="http://www.bbc.co.uk/news/uk-19957138" /> <input type="hidden" name="title" value="Gary McKinnon extradition to US blocked by Theresa May"/> <input type="hidden" name="loc" value="en-GB"/> <input type="hidden" name="integrityHash" value="520e98a901ea913486e6adec15b2551f" /> <input type="hidden" name="commentId" value="114031324" /> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls" > <input type="submit" name="direction_set" value="positive" class="rate_positive" title="Rate this comment positively" /><input type="submit" name="direction_set" value="negative" class="rate_negative" title="Rate this comment negatively" /> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">-92</span> </form> <!--[if lt IE 8]></span><![endif]--> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-out" id="dna-rate-comment-114031324"> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls dna-logged-out-rate-controls"> <a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114031324%23comment_114031324&p=comment" class="identity-login rate_positive"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_up.png" name="direction_set" class="rate_positive" alt="Rate this comment positively" /></a><a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114031324%23comment_114031324&p=comment" class="identity-login rate_negative"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_down.png" name="direction_set" class="rate_negative" alt="Rate this comment negatively" /></a> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">-92</span> </form> <!--[if lt IE 8]></span><![endif]--> <h4 class="comments_comment_number secondary_body"><span class="dna-hide">Comment number</span> 355.</h4> <cite class="comments_user_info secondary_body"> <span class="vcard"><span class="comment_username comment_username_2604911" title="Contributor's Username">Adrian M Lee</span></span> <br /> <span class="time" title="Date this contribution was posted">16th October 2012 - 15:07</span> </cite> <div class="comment-text"><div> <p>As a Tory I find myself in the odd position of supporting Alan Johnson and the US lawyer on this. <BR /><BR />The guy hacked US military computers - a very serious crime. Extradition was applied for and ought to have been granted. The crime was committed within the US. And mental illness cannot and nor should ever be a carte blanche for criminals. <BR /><BR />I sincerely hope he faces justice here. And soon.</p> </div></div> <div class="dna-comments-comment-footer"> <p class="flag comment_complain_2604911"> <a href="http://www.bbc.co.uk/dna/newscommentsmodule/comments/UserComplaintPage?PostID=114031324&amp;s_start=1" class="popup dna-commentbox-complain-link" title="Complain about this comment"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/images/warning_icon.gif" alt="" />Report this comment<span class="dna-hide"> (Comment number 355)</span></a></p> <p class="comments_link_to_comment"><a href="http://www.bbc.co.uk/news/uk-19957138?postId=114031324#comment_114031324" title="Copy this link to generate a permanent link to this comment">Link to this<span class="dna-hide"> (Comment number 355)</span></a></p> <div style="clear: both;"></div> </div> </li> <li class="dna-comment" id="comment_114031274"> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="https://ssl.bbc.co.uk/modules/comments/rate/" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-in" id="dna-rate-comment-114031274"style="display: none;"> <input type="hidden" name="csrftoken" class="dna-comments-csrf" value="" /> <input type="hidden" name="forumId" value="__CPS__19957138" /> <input type="hidden" name="siteId" value="newscommentsmodule" /> <input type="hidden" name="direction" class="direction" value="" /> <input type="hidden" name="parentUri" value="http://www.bbc.co.uk/news/uk-19957138" /> <input type="hidden" name="title" value="Gary McKinnon extradition to US blocked by Theresa May"/> <input type="hidden" name="loc" value="en-GB"/> <input type="hidden" name="integrityHash" value="520e98a901ea913486e6adec15b2551f" /> <input type="hidden" name="commentId" value="114031274" /> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls" > <input type="submit" name="direction_set" value="positive" class="rate_positive" title="Rate this comment positively" /><input type="submit" name="direction_set" value="negative" class="rate_negative" title="Rate this comment negatively" /> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">-84</span> </form> <!--[if lt IE 8]></span><![endif]--> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-out" id="dna-rate-comment-114031274"> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls dna-logged-out-rate-controls"> <a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114031274%23comment_114031274&p=comment" class="identity-login rate_positive"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_up.png" name="direction_set" class="rate_positive" alt="Rate this comment positively" /></a><a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114031274%23comment_114031274&p=comment" class="identity-login rate_negative"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_down.png" name="direction_set" class="rate_negative" alt="Rate this comment negatively" /></a> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">-84</span> </form> <!--[if lt IE 8]></span><![endif]--> <h4 class="comments_comment_number secondary_body"><span class="dna-hide">Comment number</span> 340.</h4> <cite class="comments_user_info secondary_body"> <span class="vcard"><span class="comment_username comment_username_179299192580700420" title="Contributor's Username">Upbeat2</span></span> <br /> <span class="time" title="Date this contribution was posted">16th October 2012 - 15:04</span> </cite> <div class="comment-text"><div> <p>McKinnon knew enough to hack into the US military systems and should have been extradited years ago for the crime. What signal does this send to other hackers, who, we've heard this week, could bring the planet to a standstill. Let the punishment fit the crime.</p> </div></div> <div class="dna-comments-comment-footer"> <p class="flag comment_complain_179299192580700420"> <a href="http://www.bbc.co.uk/dna/newscommentsmodule/comments/UserComplaintPage?PostID=114031274&amp;s_start=1" class="popup dna-commentbox-complain-link" title="Complain about this comment"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/images/warning_icon.gif" alt="" />Report this comment<span class="dna-hide"> (Comment number 340)</span></a></p> <p class="comments_link_to_comment"><a href="http://www.bbc.co.uk/news/uk-19957138?postId=114031274#comment_114031274" title="Copy this link to generate a permanent link to this comment">Link to this<span class="dna-hide"> (Comment number 340)</span></a></p> <div style="clear: both;"></div> </div> </li> <li class="dna-comment" id="comment_114030656"> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="https://ssl.bbc.co.uk/modules/comments/rate/" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-in" id="dna-rate-comment-114030656"style="display: none;"> <input type="hidden" name="csrftoken" class="dna-comments-csrf" value="" /> <input type="hidden" name="forumId" value="__CPS__19957138" /> <input type="hidden" name="siteId" value="newscommentsmodule" /> <input type="hidden" name="direction" class="direction" value="" /> <input type="hidden" name="parentUri" value="http://www.bbc.co.uk/news/uk-19957138" /> <input type="hidden" name="title" value="Gary McKinnon extradition to US blocked by Theresa May"/> <input type="hidden" name="loc" value="en-GB"/> <input type="hidden" name="integrityHash" value="520e98a901ea913486e6adec15b2551f" /> <input type="hidden" name="commentId" value="114030656" /> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls" > <input type="submit" name="direction_set" value="positive" class="rate_positive" title="Rate this comment positively" /><input type="submit" name="direction_set" value="negative" class="rate_negative" title="Rate this comment negatively" /> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">-16</span> </form> <!--[if lt IE 8]></span><![endif]--> <!--[if lt IE 8]><span class="ie6-7"><![endif]--> <form action="" method="post" class="dna-rate-comment secondary_body dna-commentbox-logged-out" id="dna-rate-comment-114030656"> <div class="dna-commentbox-logged-in"> <span class="dna-rate-label">rate this</span> <span class="dna-rate-controls dna-logged-out-rate-controls"> <a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114030656%23comment_114030656&p=comment" class="identity-login rate_positive"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_up.png" name="direction_set" class="rate_positive" alt="Rate this comment positively" /></a><a href=" https://id.bbc.co.uk/id/signin?loc=en-GB&ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138%3FpostId%3D114030656%23comment_114030656&p=comment" class="identity-login rate_negative"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/rate_down.png" name="direction_set" class="rate_negative" alt="Rate this comment negatively" /></a> </span> </div> <span class="dna-comment-rating" title="Rating for this comment. ">-16</span> </form> <!--[if lt IE 8]></span><![endif]--> <h4 class="comments_comment_number secondary_body"><span class="dna-hide">Comment number</span> 132.</h4> <cite class="comments_user_info secondary_body"> <span class="vcard"><span class="comment_username comment_username_205935021915880965" title="Contributor's Username">Brigusser</span></span> <br /> <span class="time" title="Date this contribution was posted">16th October 2012 - 14:25</span> </cite> <div class="comment-text"><div> <p>Does one sense a bit of a trade off here - we'll deliver Abu Hamza but not McKinnon?<BR /><BR />Probably both the correct decision but there seems to be an element of somewhat differing views on what constitutes a mental health issue worthy of preventing extradition????</p> </div></div> <div class="dna-comments-comment-footer"> <p class="flag comment_complain_205935021915880965"> <a href="http://www.bbc.co.uk/dna/newscommentsmodule/comments/UserComplaintPage?PostID=114030656&amp;s_start=1" class="popup dna-commentbox-complain-link" title="Complain about this comment"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/images/warning_icon.gif" alt="" />Report this comment<span class="dna-hide"> (Comment number 132)</span></a></p> <p class="comments_link_to_comment"><a href="http://www.bbc.co.uk/news/uk-19957138?postId=114030656#comment_114030656" title="Copy this link to generate a permanent link to this comment">Link to this<span class="dna-hide"> (Comment number 132)</span></a></p> <div style="clear: both;"></div> </div> </li> </ul> <div class="ieclear">&nbsp;</div> <div class="comments_pagination"> <div id="comment_pagination_page_status"> <p>Comments 5 of 11</p> </div> <ul class="comments_pagination_ul"> <li class="hidden dna-tab-loading show_more_loading"><img src="http://static.bbci.co.uk/modules/comments/2.0.9/img/loader.gif" alt="loading" /></li> <li class="view-all-dna-comments"><a href="http://www.bbc.co.uk/news/uk-19957138?filter=EditorPicks#dna-comments" class="dna-initial-view-more-comments" title=" Editors' Picks">Show more</a></li> </ul> </div> <div class="ieclear">&nbsp;</div> </div> <div class="dna-commentbox-logged-in" style="display: none;"> <p class="primary_body dna-commentbox-add-comment-cta"><a href="#dna-comments">Add your comment</a></p> </div> <div class="dna-user-signin-panel secondary_body dna-anon-commenting-hide"> <div class="dna-commentbox-logged-out"> <p class="id4-cta" id="id4-cta-1"><span class="id4-cta-size-small id4-cta-color-gray id4-cta-small-gray"><a href="https://ssl.bbc.co.uk/id/signin?ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138&p=comment" class="id4-cta-signin id4-cta-button">Sign in</a><span class="id4-cta-with"> with your BBC iD,</span> or <a href="https://ssl.bbc.co.uk/id/register?ptrt=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-19957138&p=comment" class="id4-cta-register">Register</a> to comment and rate comments</span></p> </div> <div class="dna-commentbox-logged-out user_signin_box"> <p class="dna-moderation-type secondary_body"> All posts are <a href="http://www.bbc.co.uk/blogs/moderation.shtml#how" class="no-popup" target="_blank">reactively-moderated</a> and must obey the <a href="http://www.bbc.co.uk/blogs/moderation.shtml#house" class="no-popup" target="_blank">house rules</a>. </p> </div> <div class="dna-commentbox-logged-in dna-logged-in-fragment" style="display: none;"> </div> </div> </div>
1251
+
1252
+
1253
+ <div class="share-body-bottom">
1254
+ <div id="page-bookmark-links-foot" class="share-help">
1255
+ <h3>Share this page</h3>
1256
+ <ul>
1257
+ <li class="delicious">
1258
+ <a title="Post this story to Delicious" href="http://del.icio.us/post?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">Delicious</a>
1259
+ </li>
1260
+ <li class="digg">
1261
+ <a title="Post this story to Digg" href="http://digg.com/submit?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">Digg</a>
1262
+ </li>
1263
+ <li class="facebook">
1264
+ <a title="Post this story to Facebook" href="http://www.facebook.com/sharer.php?u=http://www.bbc.co.uk/news/uk-19957138&amp;t=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">Facebook</a>
1265
+ </li>
1266
+ <li class="reddit">
1267
+ <a title="Post this story to reddit" href="http://reddit.com/submit?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">reddit</a>
1268
+ </li>
1269
+ <li class="stumbleupon">
1270
+ <a title="Post this story to StumbleUpon" href="http://www.stumbleupon.com/submit?url=http://www.bbc.co.uk/news/uk-19957138&amp;title=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May">StumbleUpon</a>
1271
+ </li>
1272
+ <li class="twitter">
1273
+ <a title="Post this story to Twitter" href="http://twitter.com/home?status=BBC+News+-+Gary+McKinnon+extradition+to+US+blocked+by+Theresa+May+http://www.bbc.co.uk/news/uk-19957138">Twitter</a>
1274
+ </li>
1275
+ <li class="email">
1276
+ <a title="Email this story" href="http://newsvote.bbc.co.uk/mpapps/pagetools/email/www.bbc.co.uk/news/uk-19957138">Email</a>
1277
+ </li>
1278
+ <li class="print">
1279
+ <a title="Print this story" href="?print=true">Print</a>
1280
+ </li>
1281
+ </ul>
1282
+ <!-- Social media icons by Paul Annet | http://nicepaul.com/icons -->
1283
+
1284
+ </div>
1285
+ <script type="text/javascript">
1286
+ <!--
1287
+ $render("page-bookmark-links","page-bookmark-links-foot",{
1288
+ useForgeShareTools:"true",
1289
+ position:"bottom",
1290
+ site:'News',
1291
+ headline:'BBC News - Gary McKinnon extradition to US blocked by Theresa May',
1292
+ storyId:'19957138',
1293
+ sectionId:'99116',
1294
+ url:'http://www.bbc.co.uk/news/uk-19957138',
1295
+ edition:'Domestic'
1296
+ });
1297
+ -->
1298
+ </script>
1299
+
1300
+ </div>
1301
+
1302
+
1303
+
1304
+
1305
+ <!-- other stories from this section include -->
1306
+
1307
+
1308
+ <div class="top-index-stories">
1309
+ <h2 class="top-index-stories-header"><a href="/news/uk/">More UK stories</a></h2>
1310
+ <a href="http://feeds.bbci.co.uk/news/uk/rss.xml" class="rss">RSS</a>
1311
+
1312
+
1313
+
1314
+
1315
+ <!-- Non specific version -->
1316
+
1317
+ <ul>
1318
+
1319
+
1320
+
1321
+ <li class="first-child medium-image">
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+ <h3>
1336
+ <a class="story" rel="published-1352628301380" href="/news/uk-20286198"><img src="http://news.bbcimg.co.uk/media/images/64064000/jpg/_64064747_pattenmarr.jpg" alt="BBC Trust chairman Lord Patten" />&#039;Radical overhaul needed&#039; at BBC</a>
1337
+
1338
+ </h3>
1339
+
1340
+
1341
+ <p>A &quot;radical, structural overhaul&quot; of the BBC is needed in the wake of the resignation of the director general over a child abuse report, BBC Trust chairman Lord Patten says.</p>
1342
+ </li>
1343
+
1344
+
1345
+
1346
+
1347
+ <li class="column-1">
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+ <h3>
1362
+ <a class="story" rel="published-1352605191346" href="/news/uk-20285860">UK remembers its wartime fallen</a>
1363
+
1364
+ </h3>
1365
+
1366
+
1367
+ </li>
1368
+
1369
+
1370
+
1371
+
1372
+ <li class="column-2">
1373
+
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+ <h3>
1387
+ <a class="story" rel="published-1352636568867" href="/news/uk-politics-20287061">EU migrant curbs will end in 2013</a>
1388
+
1389
+ </h3>
1390
+
1391
+
1392
+ </li>
1393
+
1394
+ </ul>
1395
+
1396
+
1397
+
1398
+ </div>
1399
+
1400
+
1401
+ </div><!-- / layout-block-a -->
1402
+
1403
+ <div class="layout-block-b">
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+ <div class="hyperpuff">
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+ <div id="range-top-stories" class="top-stories-range-module">
1416
+
1417
+ <h2 class="top-stories-range-module-header">Top Stories</h2>
1418
+
1419
+
1420
+
1421
+ <!-- Non specific version -->
1422
+
1423
+ <ul>
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+ <li class=" first-child medium-image">
1439
+ <a class="story" rel="published-1352628301380" href="/news/uk-20286198"><img src="http://news.bbcimg.co.uk/media/images/64064000/jpg/_64064747_pattenmarr.jpg" alt="BBC Trust chairman Lord Patten" />&#039;Radical overhaul needed&#039; at BBC</a>
1440
+
1441
+ </li>
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+ <li>
1457
+ <a class="story" rel="published-1352646676589" href="/news/uk-politics-20286202">&#039;Focus on child abuse&#039; warns MP</a>
1458
+
1459
+ </li>
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+ <li>
1475
+ <a class="story" rel="published-1352622791472" href="/news/uk-20286305">In pictures: Entwistle&#039;s short BBC reign</a>
1476
+
1477
+ </li>
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+ <li>
1493
+ <a class="story" rel="published-1352587509120" href="/news/entertainment-arts-20285096">Profile: Tim Davie</a>
1494
+
1495
+ </li>
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+
1506
+
1507
+
1508
+
1509
+
1510
+ <li>
1511
+ <a class="story" rel="published-1341394922574" href="/news/entertainment-arts-18702195">Profile: George Entwistle</a>
1512
+
1513
+ </li>
1514
+
1515
+ </ul>
1516
+
1517
+
1518
+
1519
+ </div>
1520
+ <script type="text/javascript">$render("range-top-stories","range-top-stories");</script>
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+ <div id="features" class="feature-generic">
1527
+
1528
+ <h2 class="features-header">Features &amp; Analysis</h2>
1529
+
1530
+ <ul class="feature-main">
1531
+
1532
+
1533
+
1534
+
1535
+ <!-- Non specific version -->
1536
+
1537
+
1538
+
1539
+ <li class="medium-image">
1540
+
1541
+
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+ <h3 class=" feature-header">
1555
+ <a class="story" rel="published-1352485582252" href="/news/magazine-20235692"><img src="http://news.bbcimg.co.uk/media/images/64048000/jpg/_64048599_full_empty_piggybank_thinks.jpg" alt="Full and empty piggybanks" />Haves v have-nots</a>
1556
+
1557
+ </h3>
1558
+
1559
+
1560
+ <p>Historian Mary Beard on why the rich look down on the poor
1561
+ <span id="dna-comment-count___CPS__20235692" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1562
+
1563
+ <hr />
1564
+ </li>
1565
+
1566
+
1567
+ <li class="medium-image">
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+ <h3 class=" feature-header">
1583
+ <a class="story" rel="published-1352600095772" href="/news/uk-20274354"><img src="http://news.bbcimg.co.uk/media/images/64057000/jpg/_64057786_016200848.jpg" alt="Abu Qatada" />Difficult decision</a>
1584
+
1585
+ </h3>
1586
+
1587
+
1588
+ <p>A look at the issues surrounding Abu Qatada&#039;s deportation
1589
+ <span id="dna-comment-count___CPS__20274354" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1590
+
1591
+ <hr />
1592
+ </li>
1593
+
1594
+
1595
+ <li class="medium-image">
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+ <h3 class=" feature-header">
1611
+ <a class="story" rel="published-1352595472809" href="/news/world-asia-china-20134699"><img src="http://news.bbcimg.co.uk/media/images/64063000/jpg/_64063665_64063643.jpg" alt="Women in Shanghai, China. Photo: October 2012" />The forgotten sex</a>
1612
+
1613
+ </h3>
1614
+
1615
+
1616
+ <p>Do the women of China really hold up half the sky?
1617
+ <span id="dna-comment-count___CPS__20134699" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1618
+
1619
+ <hr />
1620
+ </li>
1621
+
1622
+
1623
+ <li class="medium-image">
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+
1638
+ <h3 class=" feature-header">
1639
+ <a class="story" rel="published-1352593541700" href="/news/magazine-20255904"><img src="http://news.bbcimg.co.uk/media/images/64046000/jpg/_64046948_soh_getty.jpg" alt="Faces projected onto Sydney Opera House" />Line in the sand </a>
1640
+
1641
+ </h3>
1642
+
1643
+
1644
+ <p>Is one in eight Australians really poor?
1645
+ <span id="dna-comment-count___CPS__20255904" class="gvl3-icon gvl3-icon-comment comment-count"></span></p>
1646
+
1647
+ <hr />
1648
+ </li>
1649
+
1650
+
1651
+
1652
+
1653
+ </ul>
1654
+ </div>
1655
+ <script type="text/javascript">$render("feature-generic","features");</script>
1656
+
1657
+
1658
+
1659
+ <div id="most-popular" class="livestats livestats-tabbed tabbed range-most-popular">
1660
+
1661
+ <h2 class="livestats-header">Most Popular</h2>
1662
+
1663
+
1664
+ <h3 class="tab "><a href="#">Shared</a></h3>
1665
+
1666
+ <div class="panel ">
1667
+ <ol>
1668
+ <li
1669
+ class="first-child ol1">
1670
+ <a
1671
+ href="http://www.bbc.co.uk/news/magazine-20235692"
1672
+ class="story">
1673
+ <span
1674
+ class="livestats-icon livestats-1">1: </span>Why the rich look down on the poor</a>
1675
+ </li>
1676
+ <li
1677
+ class="ol2">
1678
+ <a
1679
+ href="http://www.bbc.co.uk/news/uk-20285860"
1680
+ class="story">
1681
+ <span
1682
+ class="livestats-icon livestats-2">2: </span>UK to remember its wartime fallen</a>
1683
+ </li>
1684
+ <li
1685
+ class="ol3">
1686
+ <a
1687
+ href="http://www.bbc.co.uk/news/world-asia-20285901"
1688
+ class="story">
1689
+ <span
1690
+ class="livestats-icon livestats-3">3: </span>Burma hit by strong earthquake</a>
1691
+ </li>
1692
+ <li
1693
+ class="ol4">
1694
+ <a
1695
+ href="http://www.bbc.co.uk/news/magazine-20255904"
1696
+ class="story">
1697
+ <span
1698
+ class="livestats-icon livestats-4">4: </span>Are one in eight Australians really poor? </a>
1699
+ </li>
1700
+ <li
1701
+ class="ol5">
1702
+ <a
1703
+ href="http://www.bbc.co.uk/news/world-asia-china-20134699"
1704
+ class="story">
1705
+ <span
1706
+ class="livestats-icon livestats-5">5: </span>Viewpoint: What Chinese women really need</a>
1707
+ </li>
1708
+ </ol>
1709
+ </div>
1710
+
1711
+ <h3 class="tab open"><a href="#">Read</a></h3>
1712
+
1713
+ <div class="panel open">
1714
+ <ol>
1715
+ <li
1716
+ class="first-child ol1">
1717
+ <a
1718
+ href="http://www.bbc.co.uk/news/uk-england-london-20287078"
1719
+ class="story">
1720
+ <span
1721
+ class="livestats-icon livestats-1">1: </span>Fire at 'Billionaires Row' house</a>
1722
+ </li>
1723
+ <li
1724
+ class="ol2">
1725
+ <a
1726
+ href="http://www.bbc.co.uk/news/entertainment-arts-20288810"
1727
+ class="story">
1728
+ <span
1729
+ class="livestats-icon livestats-2">2: </span>Toy Story writer lands Star Wars</a>
1730
+ </li>
1731
+ <li
1732
+ class="ol3">
1733
+ <a
1734
+ href="http://www.bbc.co.uk/news/world-20286308"
1735
+ class="story">
1736
+ <span
1737
+ class="livestats-icon livestats-3">3: </span>Man held over Savile abuse claims</a>
1738
+ </li>
1739
+ <li
1740
+ class="ol4">
1741
+ <a
1742
+ href="http://www.bbc.co.uk/news/magazine-20235692"
1743
+ class="story">
1744
+ <span
1745
+ class="livestats-icon livestats-4">4: </span>Why the rich look down on the poor</a>
1746
+ </li>
1747
+ <li
1748
+ class="ol5">
1749
+ <a
1750
+ href="http://www.bbc.co.uk/news/uk-england-london-20287072"
1751
+ class="story">
1752
+ <span
1753
+ class="livestats-icon livestats-5">5: </span>Man found injured in street dies</a>
1754
+ </li>
1755
+ <li
1756
+ class="ol6">
1757
+ <a
1758
+ href="http://www.bbc.co.uk/news/uk-scotland-scotland-business-20279771"
1759
+ class="story">
1760
+ <span
1761
+ class="livestats-icon livestats-6">6: </span>Supermarkets end cigarette sales</a>
1762
+ </li>
1763
+ <li
1764
+ class="ol7">
1765
+ <a
1766
+ href="http://www.bbc.co.uk/news/magazine-20255904"
1767
+ class="story">
1768
+ <span
1769
+ class="livestats-icon livestats-7">7: </span>Are one in eight Australians really poor? </a>
1770
+ </li>
1771
+ <li
1772
+ class="ol8">
1773
+ <a
1774
+ href="http://www.bbc.co.uk/news/uk-20286198"
1775
+ class="story">
1776
+ <span
1777
+ class="livestats-icon livestats-8">8: </span>'Radical overhaul' needed at BBC</a>
1778
+ </li>
1779
+ <li
1780
+ class="ol9">
1781
+ <a
1782
+ href="http://www.bbc.co.uk/news/uk-20255141"
1783
+ class="story">
1784
+ <span
1785
+ class="livestats-icon livestats-9">9: </span>Fire services count obesity cost</a>
1786
+ </li>
1787
+ <li
1788
+ class="ol10">
1789
+ <a
1790
+ href="http://www.bbc.co.uk/news/world-asia-china-20134699"
1791
+ class="story">
1792
+ <span
1793
+ class="livestats-icon livestats-10">10: </span>Viewpoint: What Chinese women really need</a>
1794
+ </li>
1795
+ </ol>
1796
+ </div>
1797
+
1798
+ <h3 class="tab "><a href="#">Video/Audio</a></h3>
1799
+
1800
+ <div class="panel ">
1801
+ <ol>
1802
+ <li
1803
+ class="first-child has-icon-watch ol1">
1804
+ <a
1805
+ href="http://www.bbc.co.uk/news/world-europe-20285981"
1806
+ class="story">
1807
+ <span
1808
+ class="livestats-icon livestats-1">1: </span>Golden treasure unearthed in Bulgaria<span
1809
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1810
+ </li>
1811
+ <li
1812
+ class="has-icon-watch ol2">
1813
+ <a
1814
+ href="http://www.bbc.co.uk/news/video_and_audio/"
1815
+ class="story">
1816
+ <span
1817
+ class="livestats-icon livestats-2">2: </span>BBC News Channel<span
1818
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1819
+ </li>
1820
+ <li
1821
+ class="has-icon-watch ol3">
1822
+ <a
1823
+ href="http://www.bbc.co.uk/news/uk-11782053"
1824
+ class="story">
1825
+ <span
1826
+ class="livestats-icon livestats-3">3: </span>16th Century gold treasure found<span
1827
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1828
+ </li>
1829
+ <li
1830
+ class="has-icon-watch ol4">
1831
+ <a
1832
+ href="http://www.bbc.co.uk/news/business-18785701"
1833
+ class="story">
1834
+ <span
1835
+ class="livestats-icon livestats-4">4: </span>'I fly the A380 at Farnborough'<span
1836
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1837
+ </li>
1838
+ <li
1839
+ class="has-icon-watch ol5">
1840
+ <a
1841
+ href="http://www.bbc.co.uk/news/uk-20286288"
1842
+ class="story">
1843
+ <span
1844
+ class="livestats-icon livestats-5">5: </span>Entwistle 'was not forced out' of BBC<span
1845
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1846
+ </li>
1847
+ <li
1848
+ class="has-icon-watch ol6">
1849
+ <a
1850
+ href="http://www.bbc.co.uk/news/uk-20288154"
1851
+ class="story">
1852
+ <span
1853
+ class="livestats-icon livestats-6">6: </span>Silence for wartime fallen at Cenotaph<span
1854
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1855
+ </li>
1856
+ <li
1857
+ class="has-icon-watch ol7">
1858
+ <a
1859
+ href="http://www.bbc.co.uk/news/uk-20285289"
1860
+ class="story">
1861
+ <span
1862
+ class="livestats-icon livestats-7">7: </span>Obama triumphs in Florida<span
1863
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1864
+ </li>
1865
+ <li
1866
+ class="has-icon-watch ol8">
1867
+ <a
1868
+ href="http://www.bbc.co.uk/news/uk-20288158"
1869
+ class="story">
1870
+ <span
1871
+ class="livestats-icon livestats-8">8: </span>Who is BBC's acting boss Tim Davie?<span
1872
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1873
+ </li>
1874
+ <li
1875
+ class="has-icon-watch ol9">
1876
+ <a
1877
+ href="http://www.bbc.co.uk/today/hi/today/newsid_9768000/9768406.stm"
1878
+ class="story">
1879
+ <span
1880
+ class="livestats-icon livestats-9">9: </span>Entwistle: I am doing everything I can<span
1881
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1882
+ </li>
1883
+ <li
1884
+ class="has-icon-watch ol10">
1885
+ <a
1886
+ href="http://www.bbc.co.uk/news/uk-20286294"
1887
+ class="story">
1888
+ <span
1889
+ class="livestats-icon livestats-10">10: </span>BBC boss George Entwistle resigns <span
1890
+ class="gvl3-icon gvl3-icon-watch"> Watch</span></a>
1891
+ </li>
1892
+ </ol>
1893
+ </div>
1894
+
1895
+ </div>
1896
+
1897
+ <script type="text/javascript">$render("most-popular","most-popular");</script>
1898
+
1899
+ </div>
1900
+
1901
+
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+ <!-- Empty hyperpuff -->
1909
+
1910
+
1911
+
1912
+
1913
+
1914
+
1915
+
1916
+
1917
+
1918
+ <!-- Empty hyperpuff -->
1919
+
1920
+
1921
+
1922
+
1923
+ </div>
1924
+
1925
+ <!-- END #MAIN-CONTENT & CPS_ASSET_TYPE CLASS: story -->
1926
+ </div>
1927
+ <!-- END CPS_AUDIENCE CLASS: domestic -->
1928
+
1929
+ </div>
1930
+ <div id="related-services" class="footer">
1931
+ <div id="news-services">
1932
+ <h2>Services</h2>
1933
+ <ul>
1934
+ <li id="service-mobile" class="first-child"><a href="http://www.bbc.co.uk/news/10628994"><span class="gvl3-mobile-icon-large services-icon">&nbsp;</span>Mobile</a></li>
1935
+ <li id="service-feeds"><a href="/news/help-17655000"><span class="gvl3-connected-tv-icon-large services-icon">&nbsp;</span>Connected TV</a></li>
1936
+ <li id="service-podcast"><a href="http://www.bbc.co.uk/news/10628494"><span class="gvl3-feeds-icon-large services-icon">&nbsp;</span>News feeds</a></li>
1937
+ <li id="service-alerts"><a href="http://www.bbc.co.uk/news/10628323"><span class="gvl3-alerts-icon-large services-icon">&nbsp;</span>Alerts</a></li>
1938
+ <li id="service-email-news"><a href="http://www.bbc.co.uk/news/help/16617948"><span class="gvl3-email-icon-large services-icon">&nbsp;</span>E-mail news</a></li>
1939
+ </ul>
1940
+ </div>
1941
+ <div id="news-related-sites">
1942
+ <h2>About BBC News</h2>
1943
+ <ul>
1944
+ <li class="column-1"><a href="http://www.bbc.co.uk/blogs/theeditors/">Editors' blog</a></li>
1945
+ <li class="column-1"><a href="http://www.bbc.co.uk/journalism/">BBC College of Journalism</a></li>
1946
+ <li class="column-1"><a href="http://www.bbc.co.uk/news/10621655">News sources</a></li>
1947
+ </ul>
1948
+ </div>
1949
+ </div>
1950
+ </div><!-- close uk -->
1951
+
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+ </div> <!--[if IE 6]> <div id="blq-ie6-upgrade"> <p> <span>You're using the Internet Explorer 6 browser to view the BBC website. Our site will work much better if you change to a more modern browser. It's free, quick and easy.</span> <a href="http://www.browserchoice.eu/">Find out more <span>about upgrading your browser</span> here&hellip;</a> </p> </div> <![endif]--> <div id="blq-foot" xml:lang="en-GB" class="blq-rst blq-clearfix blq-foot-transparent blq-foot-text-dark"> <div id="blq-footlinks"> <h2 class="blq-hide">BBC links</h2> <ul> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="/news/mobile/" id="blq-footer-mobile">Mobile site</a></li><li><a href="http://www.bbc.co.uk/terms/">Terms of Use</a></li><li><a href="http://www.bbc.co.uk/aboutthebbc/">About the BBC</a></li> </ul> </li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="http://www.bbc.co.uk/privacy/">Privacy</a></li><li><a href="http://www.bbc.co.uk/help/">BBC Help</a></li> </ul> </li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="http://www.bbc.co.uk/privacy/bbc-cookies-policy.shtml">Cookies</a></li><li><a href="http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul> </li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="http://www.bbc.co.uk/guidance/">Parental Guidance</a></li><li><a href="http://news.bbc.co.uk/newswatch/ukfs/hi/feedback/default.stm">Contact Us</a></li> </ul> </li> </ul> <script type="text/javascript">/*<![CDATA[*/ (function() { var mLink = document.getElementById('blq-footer-mobile'), stick = function() { var d = new Date (); d.setYear(d.getFullYear() + 1); d = d.toUTCString(); window.bbccookies.set('ckps_d=m;domain=.bbc.co.uk;path=/;expires=' + d ); window.bbccookies.set('ckps_d=m;domain=.bbc.com;path=/;expires=' + d ); }; if (mLink) { if (mLink.addEventListener) { mLink.addEventListener('click', stick, false); } else if (mLink.attachEvent) { mLink.attachEvent('onclick', stick); } } })(); /*]]>*/</script> </div> <div id="blq-foot-blocks" class="blq-footer-image-dark"><img src="http://static.bbci.co.uk/frameworks/barlesque/2.14.4/desktop/3.5/img/blocks/dark.png" width="84" height="24" alt="BBC" /></div> <p id="blq-disclaim"><span id="blq-copy">BBC &copy; 2012</span> <a href="http://www.bbc.co.uk/help/web/links/">The BBC is not responsible for the content of external sites. Read more.</a></p> <div id="blq-obit"><p><strong>This page is best viewed in an up-to-date web browser with style sheets (CSS) enabled. While you will be able to view the content of this page in your current browser, you will not be able to get the full visual experience. Please consider upgrading your browser software or enabling style sheets (CSS) if you are able to do so.</strong></p></div> </div> </div> </div> </div> <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementById('blq-main') }); istats.track('download', { region: document.getElementById('blq-main') }); }); } </script> <script type="text/html" id="blq-panel-template-promo"><![CDATA[ <div id="blq-panel-promo" class="blq-masthead-container"></div> ]]></script> <script type="text/html" id="blq-panel-template-more"><![CDATA[ <div id="blq-panel-more" class="blq-masthead-container blq-clearfix" xml:lang="en-GB" dir="ltr"> <div class="blq-panel-container panel-paneltype-more"> <div class="panel-header"> <h2> <a href="http://www.bbc.co.uk/a-z/"> More&hellip; </a> </h2> <a href="http://www.bbc.co.uk/a-z/" class="panel-header-links panel-header-link">Full A-Z<span class="blq-hide"> of BBC sites</span></a> </div> <div class="panel-component panel-links"> <ul> <li> <a href="http://www.bbc.co.uk/cbbc/" >CBBC</a> </li> <li> <a href="http://www.bbc.co.uk/cbeebies/" >CBeebies</a> </li> <li> <a href="http://www.bbc.co.uk/comedy/" >Comedy</a> </li> </ul> <ul> <li> <a href="http://www.bbc.co.uk/food/" >Food</a> </li> <li> <a href="http://www.bbc.co.uk/health/" >Health</a> </li> <li> <a href="http://www.bbc.co.uk/history/" >History</a> </li> </ul> <ul> <li> <a href="http://www.bbc.co.uk/learning/" >Learning</a> </li> <li> <a href="http://www.bbc.co.uk/music/" >Music</a> </li> <li> <a href="http://www.bbc.co.uk/science/" >Science</a> </li> </ul> <ul> <li> <a href="http://www.bbc.co.uk/nature/" >Nature</a> </li> <li> <a href="http://www.bbc.co.uk/local/" >Local</a> </li> <li> <a href="http://www.bbc.co.uk/travelnews/" >Travel News</a> </li> </ul> </div> </div> ]]></script>
1958
+
1959
+
1960
+ <!-- shared/foot -->
1961
+ <script type="text/javascript">
1962
+ bbc.fmtj.common.removeNoScript({});
1963
+ bbc.fmtj.common.tabs.createTabs({});
1964
+ </script>
1965
+ <!-- hi/news/foot.inc -->
1966
+ <!-- shared/foot_story -->
1967
+ <!-- #CREAM hi news domestic foot.inc -->
1968
+
1969
+
1970
+
1971
+ </body>
1972
+ </html>
1973
+
1974
+