infoboxer 0.3.3 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +32 -0
  3. data/CHANGELOG.md +13 -0
  4. data/Gemfile.lock +97 -75
  5. data/README.md +1 -1
  6. data/lib/infoboxer.rb +7 -5
  7. data/lib/infoboxer/core_ext.rb +2 -0
  8. data/lib/infoboxer/definitions/en.wikipedia.org.rb +2 -0
  9. data/lib/infoboxer/media_wiki.rb +3 -1
  10. data/lib/infoboxer/media_wiki/page.rb +2 -0
  11. data/lib/infoboxer/media_wiki/traits.rb +4 -1
  12. data/lib/infoboxer/navigation.rb +2 -0
  13. data/lib/infoboxer/navigation/lookup.rb +5 -5
  14. data/lib/infoboxer/navigation/sections.rb +5 -1
  15. data/lib/infoboxer/navigation/selector.rb +3 -1
  16. data/lib/infoboxer/navigation/shortcuts.rb +2 -0
  17. data/lib/infoboxer/navigation/wikipath.rb +2 -0
  18. data/lib/infoboxer/parser.rb +3 -1
  19. data/lib/infoboxer/parser/context.rb +10 -6
  20. data/lib/infoboxer/parser/html.rb +2 -0
  21. data/lib/infoboxer/parser/image.rb +3 -1
  22. data/lib/infoboxer/parser/inline.rb +8 -4
  23. data/lib/infoboxer/parser/paragraphs.rb +3 -1
  24. data/lib/infoboxer/parser/table.rb +23 -15
  25. data/lib/infoboxer/parser/template.rb +3 -0
  26. data/lib/infoboxer/parser/util.rb +2 -0
  27. data/lib/infoboxer/templates.rb +2 -0
  28. data/lib/infoboxer/templates/base.rb +2 -0
  29. data/lib/infoboxer/templates/set.rb +2 -0
  30. data/lib/infoboxer/tree.rb +2 -0
  31. data/lib/infoboxer/tree/compound.rb +3 -1
  32. data/lib/infoboxer/tree/document.rb +2 -0
  33. data/lib/infoboxer/tree/gallery.rb +2 -0
  34. data/lib/infoboxer/tree/html.rb +4 -2
  35. data/lib/infoboxer/tree/image.rb +3 -1
  36. data/lib/infoboxer/tree/inline.rb +2 -0
  37. data/lib/infoboxer/tree/linkable.rb +2 -0
  38. data/lib/infoboxer/tree/list.rb +4 -2
  39. data/lib/infoboxer/tree/math.rb +2 -0
  40. data/lib/infoboxer/tree/node.rb +3 -1
  41. data/lib/infoboxer/tree/nodes.rb +16 -4
  42. data/lib/infoboxer/tree/paragraphs.rb +2 -0
  43. data/lib/infoboxer/tree/ref.rb +2 -0
  44. data/lib/infoboxer/tree/table.rb +5 -3
  45. data/lib/infoboxer/tree/template.rb +3 -1
  46. data/lib/infoboxer/tree/text.rb +11 -9
  47. data/lib/infoboxer/tree/wikilink.rb +3 -0
  48. data/lib/infoboxer/version.rb +4 -2
  49. data/lib/infoboxer/wiki_path.rb +2 -0
  50. data/regression/pages/2012_bdo_world_darts_championship.wiki +941 -0
  51. data/regression/pages/progress_wrestling.wiki +1308 -0
  52. metadata +6 -3
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Represents italic text.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Module included into everything, that can be treated as
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Represents item of ordered or unordered list.
@@ -14,7 +16,7 @@ module Infoboxer
14
16
  def merge!(other)
15
17
  ochildren = other.children.dup
16
18
  children.last.merge!(ochildren.shift) \
17
- if children.last && children.last.can_merge?(ochildren.first)
19
+ if children.last&.can_merge?(ochildren.first)
18
20
  push_children(*ochildren)
19
21
  end
20
22
 
@@ -78,7 +80,7 @@ module Infoboxer
78
80
  # Represents ordered list (list with numbers).
79
81
  class OrderedList < List
80
82
  def make_marker(item)
81
- list_text_indent + "#{(item.index + 1)}. "
83
+ list_text_indent + "#{item.index + 1}. "
82
84
  end
83
85
  end
84
86
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Represents node of math formulae marked with TeX
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'htmlentities'
2
4
 
3
5
  module Infoboxer
@@ -152,7 +154,7 @@ module Infoboxer
152
154
  end
153
155
 
154
156
  def show_params(prms = nil)
155
- (prms || params).reject { |_, v| v.nil? }.map { |k, v| "#{k}: #{v.inspect}" }.join(', ')
157
+ (prms || params).compact.map { |k, v| "#{k}: #{v.inspect}" }.join(', ')
156
158
  end
157
159
 
158
160
  def indent(level)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # List of nodes, which tries to be useful both as array, and as proxy
@@ -48,12 +50,20 @@ module Infoboxer
48
50
  # @!method +(other)
49
51
  # Just like Array#+, but returns Nodes
50
52
 
51
- %i[select reject sort_by flatten compact grep grep_v - +].each do |sym|
53
+ # NB: Since Ruby 3.0, we need to redefine all Enumerable methods (otherwise they return Array).
54
+ # TODO: Check those lacking overrides!
55
+
56
+ %i[
57
+ select reject sort_by flatten compact grep grep_v - +
58
+ take_while drop_while
59
+ ].each do |sym|
52
60
  define_method(sym) do |*args, &block|
53
61
  Nodes[*super(*args, &block)]
54
62
  end
55
63
  end
56
64
 
65
+ alias_method :filter, :select
66
+
57
67
  # Just like Array#first, but returns Nodes, if provided with `n` of elements.
58
68
  def first(n = nil)
59
69
  if n.nil?
@@ -94,7 +104,7 @@ module Infoboxer
94
104
 
95
105
  # Just like Array#group, but returns hash with `{<grouping variable> => Nodes}`
96
106
  def group_by
97
- super.map { |title, group| [title, Nodes[*group]] }.to_h
107
+ super.transform_values { |group| Nodes[*group] }
98
108
  end
99
109
 
100
110
  # @!method prev_siblings
@@ -169,6 +179,7 @@ module Infoboxer
169
179
  def follow
170
180
  links = grep(Linkable)
171
181
  return Nodes[] if links.empty?
182
+
172
183
  page = first.lookup_parents(MediaWiki::Page).first or
173
184
  fail('Not in a page from real source')
174
185
  page.client or fail('MediaWiki client not set')
@@ -179,13 +190,14 @@ module Infoboxer
179
190
 
180
191
  # @private
181
192
  # Internal, used by {Parser}
182
- def <<(node)
193
+ def <<(node) # rubocop:disable Metrics/PerceivedComplexity
183
194
  if node.is_a?(Array)
184
195
  node.each { |n| self << n }
185
- elsif last && last.can_merge?(node)
196
+ elsif last&.can_merge?(node)
186
197
  last.merge!(node)
187
198
  else
188
199
  return if !node || node.empty?
200
+
189
201
  node = Text.new(node) if node.is_a?(String)
190
202
  super
191
203
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Base class for all "paragraph-level" nodes: {Paragraph}, {ListItem},
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Represents footnote.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'terminal-table'
2
4
 
3
5
  module Infoboxer
@@ -24,13 +26,13 @@ module Infoboxer
24
26
  #
25
27
  # FIXME: it can easily be several table heading rows
26
28
  def heading_row
27
- rows.first if rows.first && rows.first.children.all? { |c| c.is_a?(TableHeading) }
29
+ rows.first if rows.first&.children&.all? { |c| c.is_a?(TableHeading) }
28
30
  end
29
31
 
30
32
  # For now, returns all table rows except {#heading_row}
31
33
  def body_rows
32
- if rows.first && rows.first.children.all? { |c| c.is_a?(TableHeading) }
33
- rows[1..-1]
34
+ if rows.first&.children&.all? { |c| c.is_a?(TableHeading) }
35
+ rows[1..]
34
36
  else
35
37
  rows
36
38
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'linkable'
2
4
 
3
5
  module Infoboxer
@@ -112,7 +114,7 @@ module Infoboxer
112
114
  alias_method :variables, :children
113
115
 
114
116
  def initialize(name, variables = Nodes[])
115
- super(variables, extract_params(variables))
117
+ super(variables, **extract_params(variables))
116
118
  @name = name
117
119
  end
118
120
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  module Tree
3
5
  # Represents plain text node.
@@ -14,8 +16,8 @@ module Infoboxer
14
16
  attr_accessor :raw_text
15
17
 
16
18
  def initialize(text, **params)
17
- super(params)
18
- @raw_text = text
19
+ super(**params)
20
+ @raw_text = +text
19
21
  end
20
22
 
21
23
  # See {Node#text}
@@ -37,13 +39,13 @@ module Infoboxer
37
39
  # @private
38
40
  # Internal, used by {Parser}
39
41
  def merge!(other)
40
- if other.is_a?(String)
41
- @raw_text << other
42
- elsif other.is_a?(Text)
43
- @raw_text << other.raw_text
44
- else
45
- fail("Not mergeable into text: #{other.inspect}")
46
- end
42
+ @raw_text <<
43
+ case other
44
+ when String then other
45
+ when Text then other.raw_text
46
+ else
47
+ fail("Not mergeable into text: #{other.inspect}")
48
+ end
47
49
  end
48
50
 
49
51
  # @private
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'linkable'
2
4
 
3
5
  module Infoboxer
@@ -73,6 +75,7 @@ module Infoboxer
73
75
 
74
76
  return unless children.count == 1 &&
75
77
  children.first.is_a?(Text) && children.first.raw_text.empty?
78
+
76
79
  children.first.raw_text = @topic
77
80
  end
78
81
  end
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  MAJOR = 0
3
- MINOR = 3
4
- PATCH = 3
5
+ MINOR = 4
6
+ PATCH = 0
5
7
  PRE = nil
6
8
  VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
7
9
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Infoboxer
2
4
  # @private
3
5
  class WikiPath
@@ -0,0 +1,941 @@
1
+ {{Use dmy dates|date=December 2014}}
2
+ {{Use British English|date=December 2014}}
3
+ {{Infobox individual darts tournament
4
+ |tournament_name = Lakeside World Darts Championship
5
+ |image =
6
+ |dates = 7–15 January 2012
7
+ |venue = [[Lakeside Leisure Complex|Lakeside Country Club]]
8
+ |location = [[Frimley Green]], [[Surrey]]
9
+ |country = England, United Kingdom
10
+ |organisation = [[British Darts Organisation|BDO]]
11
+ |format = [[Set (darts)|Sets]]<br />Finals: <br /> best of 13 (men's)<br />best of 3 (women's)
12
+ |prize_fund = £329,000
13
+ |winners_share = £100,000 (men's)<br />£10,000 (women's)
14
+ |nine_dart =
15
+ |high_checkout = Men:<br />O'Shea (170) QF<br />Women:<br />Edwards (155) Rd 1
16
+ |winner = Men: {{flagicon|NED}} [[Christian Kist]]<br>Women: {{flagicon|RUS}} [[Anastasia Dobromyslova]]
17
+ |prev = [[2011 BDO World Darts Championship|2011]]
18
+ |next = [[2013 BDO World Darts Championship|2013]]
19
+ }}
20
+
21
+ The '''2012 Lakeside World Professional Darts Championship''' was the 35th [[BDO World Darts Championship]] organised by the British Darts Organisation, and the 27th staging at the [[Lakeside Leisure Complex|Lakeside Country Club]] at [[Frimley Green]]. It ran from 7–15 January. [[Martin Adams]] was the defending men's champion, having won the title for the third time in the [[2011 BDO World Darts Championship|previous year's final]] against [[Dean Winstanley]].<ref>{{cite web|title=Champion Martin Adams retains BDO darts crown|url=http://news.bbc.co.uk/sport2/hi/other_sports/darts/9352483.stm|publisher=BBC|accessdate=13 January 2012|date=9 January 2011}}</ref> The defending women's champion was [[Trina Gulliver]], who won her ninth title in the 2011 final against [[Rhian Edwards]].<ref>{{cite web|title=Trina Gulliver wins ninth BDO women's Lakeside crown|url=http://news.bbc.co.uk/sport2/hi/other_sports/darts/9350151.stm|publisher=BBC|accessdate=13 January 2012|date=7 January 2011}}</ref>
22
+
23
+ Neither champion was able to defend their title as Adams lost his quarter-final against [[Tony O'Shea]] and Gulliver her semi-final against [[Anastasia Dobromyslova]].<ref>{{cite web|title=BDO World Championships: Tony O'Shea beats Martin Adams|url=http://news.bbc.co.uk/sport2/hi/darts/16538659.stm|publisher=BBC|accessdate=13 January 2012|date=12 January 2012}}</ref> Dobromyslova then beat [[Deta Hedman]] in the final to win her second world championship title.<ref>{{cite web|title=BDO World Championships: Dobromyslova claims world title|url=http://news.bbc.co.uk/sport2/hi/darts/16554952.stm|publisher=BBC|accessdate=13 January 2012|date=13 January 2012}}</ref> O'Shea was defeated by unseeded qualifier [[Christian Kist]], who was making his début in the tournament, 7–5 in the final.
24
+ It was the first time that neither champion was from [[Great Britain]] ([[Christian Kist]] from the [[Netherlands]] and [[Anastasia Dobromyslova]] from [[Russia]]), despite both losing finalists coming from [[England]] ([[Tony O'Shea]] and [[Deta Hedman]]).
25
+
26
+ Players from five countries including a record number of eight Dutch players took part in the tournament.
27
+
28
+ ==Format and qualifiers==
29
+
30
+ ===Men's===
31
+ The televised stages featured 32 players. The top 16 players in the [[Darts world rankings|WDF/BDO rankings]] over the 2010/11 season were seeded for the tournament.<ref>{{cite web
32
+ |url = http://bdodarts.com/tables.aspx?tid=7
33
+ |title = BDO men's rankings
34
+ |publisher = [[British Darts Organisation]]
35
+ |accessdate = 17 October 2011
36
+ |archive-url = https://web.archive.org/web/20120729024050/http://www.bdodarts.com/tables.aspx?tid=7
37
+ |archive-date = 29 July 2012
38
+ |url-status = dead
39
+ |df = dmy-all
40
+ }}</ref>
41
+
42
+ The 32 players who qualified for invitation into the first round proper of the men's singles were:
43
+
44
+ {|
45
+ |- style="vertical-align: top;"
46
+ |
47
+ :'''Top 16'''
48
+ :# {{flagicon|ENG}} [[Martin Adams]]
49
+ :# {{flagicon|ENG}} [[Scott Waites]]
50
+ :# {{flagicon|ENG}} [[Dean Winstanley]]
51
+ :# {{flagicon|ENG}} [[Robbie Green]]
52
+ :# {{flagicon|ENG}} [[Gary Robson (darts player)|Gary Robson]]
53
+ :# {{flagicon|NED}} [[Jan Dekker]]
54
+ :# {{flagicon|ENG}} [[John Walton (darts player)|John Walton]]
55
+ :# {{flagicon|ENG}} [[Tony O'Shea]]
56
+ :# {{flagicon|SCO}} [[Ross Montgomery]]
57
+ :# {{flagicon|NED}} [[Willy van de Wiel]]
58
+ :# {{flagicon|ENG}} [[Tony West (dart player)|Tony West]]
59
+ :# {{flagicon|ENG}} [[Paul Jennings (darts player)|Paul Jennings]]
60
+ :# {{flagicon|NED}} [[Wesley Harms]]
61
+ :# {{flagicon|NED}} [[Benito van de Pas]]
62
+ :# {{flagicon|ENG}} [[Ted Hankey]]
63
+ :# {{flagicon|NED}} [[Ron Meulenkamp]]
64
+ |
65
+ :'''Other qualifiers'''
66
+ :# {{flagicon|WAL}} [[Martin Phillips (darts player)|Martin Phillips]]
67
+ :# {{flagicon|NED}} [[Joey ten Berge]]
68
+ :# {{flagicon|ENG}} [[Steve Douglas (darts player)|Steve Douglas]]
69
+ :# {{flagicon|ENG}} [[Darryl Fitton]]
70
+ :# {{flagicon|ENG}} [[Scott Mitchell (darts player)|Scott Mitchell]]
71
+ :# {{flagicon|ENG}} [[Garry Thompson (darts player)|Garry Thompson]]
72
+ :# {{flagicon|NED}} [[Fabian Roosenbrand]]
73
+ :# {{flagicon|ENG}} [[Steve West (darts player)|Steve West]]
74
+ :# {{flagicon|ENG}} [[Alan Norris (darts player)|Alan Norris]]
75
+ :# {{flagicon|ENG}} [[Martin Atkins (darts player)|Martin Atkins]]
76
+ :# {{flagicon|ENG}} [[Andy Boulton]]
77
+ :# {{flagicon|ENG}} [[Dave Prins]]
78
+ :# {{flagicon|SCO}} [[Gary Stone]]
79
+ :# {{flagicon|NED}} [[Christian Kist]]
80
+ :# {{flagicon|BEL}} [[Geert De Vos]]
81
+ :# {{flagicon|ENG}} [[Clive Barden]]
82
+ |}
83
+
84
+ ===Women's===
85
+ The televised stages featured 8 players. The top 4 players in the [[Darts world rankings|WDF/BDO rankings]] over the 2010/11 season were seeded for the tournament.<ref>{{cite web
86
+ |url = http://bdodarts.com/tables.aspx?tid=8
87
+ |title = BDO women's rankings
88
+ |publisher = [[British Darts Organisation]]
89
+ |accessdate = 17 October 2011
90
+ |archive-url = https://web.archive.org/web/20121017123045/http://www.bdodarts.com/tables.aspx?tid=8
91
+ |archive-date = 17 October 2012
92
+ |url-status = dead
93
+ |df = dmy-all
94
+ }}</ref>
95
+
96
+ The eight women qualified for invitation were:
97
+
98
+ {|
99
+ |- style="vertical-align: top;"
100
+ |
101
+ :'''Top 4'''
102
+ :# {{flagicon|ENG}} [[Deta Hedman]]
103
+ :# {{flagicon|WAL}} [[Julie Gore]]
104
+ :# {{flagicon|ENG}} [[Trina Gulliver]]
105
+ :# {{flagicon|ENG}} [[Lorraine Farlam]]
106
+ |
107
+ :'''Other qualifiers'''
108
+ :# {{flagicon|ENG}} [[Karen Lawman]]
109
+ :# {{flagicon|RUS}} [[Anastasia Dobromyslova]]
110
+ :# {{flagicon|ENG}} [[Lisa Ashton]]
111
+ :# {{flagicon|WAL}} [[Rhian Edwards]]
112
+ |}
113
+
114
+ == Prize money==
115
+ The prize money was £258,000 for the men's event and £16,000 for the women's event.<ref>{{cite web|title=Information for the media – prize money|url=http://www.lakesideworlddarts.co.uk/media.php#background|publisher=lakesideworlddarts.co.uk|accessdate=8 January 2012}}</ref>
116
+ :Men's Champion: £100,000
117
+ :Runner-Up: £30,000
118
+ :Semi-Finalists (2): £11,000
119
+ :Quarter-Finalists (4): £6,000
120
+ :Last 16 (8): £4,250
121
+ :Last 32 (16): £3,000
122
+
123
+ :'''Women's Champion''': £10,000<ref>{{cite web|title=Anastasia crowned world champ after comeback against Deta|url=http://www.lakesideworlddarts.co.uk/newsarticle.php?Anastasia-crowned-world-champ-after-comeback-against-Deta-167|publisher=lakesideworlddarts.co.uk|accessdate=14 January 2012|date=13 January 2012|quote=...and the £10,000 first prize.}}</ref>
124
+ :Runner-Up: £2,000
125
+ :Semi-Finalists (2): £1,000
126
+ :Quarter-Finalists (4): £500
127
+
128
+ There was also a shared [[Nine-dart finish|9 Dart Checkout]] prize of £52,000, along with a High Checkout prize of £3,000 per event.
129
+
130
+ ==Results bracket==
131
+ The draw for the tournament was made on 7 November 2011 live on ESPN.<ref>{{cite web|title=2012 Lakeside Pro Draw|url=http://www.dartswdf.com/2011/11/08/2012-lakeside-world-pro-draw/|publisher=dartswdf.com|accessdate=11 January 2012|date=8 November 2011|archive-url=https://web.archive.org/web/20111111063235/http://www.dartswdf.com/2011/11/08/2012-lakeside-world-pro-draw/|archive-date=11 November 2011|url-status=dead|df=dmy-all}}</ref><ref>{{cite web|title=Martin Adams faces Scott Mitchell in BDO World Championship opener|url=http://news.bbc.co.uk/sport2/hi/darts/15642568.stm|publisher=BBC|accessdate=11 January 2012|date=8 November 2011}}</ref>
132
+
133
+ ===Men's===
134
+ * Match distances in sets are quoted in brackets at the top of each round. All sets are best of five legs, unless there is a final set tie-break. (The final set must be won by two clear legs; if it reaches 5–5, the 11th leg is decisive.)
135
+ The results are:<ref>{{cite web|title=2012 World Championship results|url=http://www.dartsdatabase.co.uk/FixtureList.aspx?EventKey=3814&showAverages=Y|publisher=dartsdatabase.co.uk|accessdate=8 January 2012}}</ref>
136
+
137
+ {{32TeamBracket
138
+ | RD1={{Nowrap|'''First Round''' (''best of 5 sets'')<br>7–9 January}}
139
+ | RD2={{Nowrap|'''Second round''' (''best of 7'')<br>10–11 January}}
140
+ | RD3={{Nowrap|'''Quarter-Finals''' (''best of 9'')<br>12–13 January}}
141
+ | RD4={{Nowrap|'''Semi-Finals''' (''best of 11'')<br>14 January}}
142
+ | RD5={{Nowrap|'''Final''' (''best of 13'')<br>15 January}}
143
+ | team-width=200
144
+ | RD1-seed01=1
145
+ | RD1-team01={{flagicon|ENG}} '''[[Martin Adams]]''' <small><span style="color:dimgray;">90.12</span></small>
146
+ | RD1-score01='''3'''
147
+ | RD1-seed02=
148
+ | RD1-team02={{flagicon|ENG}} [[Scott Mitchell (darts player)|Scott Mitchell]] <small><span style="color:dimgray;">79.47</span></small>
149
+ | RD1-score02=0
150
+ | RD1-seed03=16
151
+ | RD1-team03={{flagicon|NED}} [[Ron Meulenkamp]] <small><span style="color:dimgray;">82.98</span></small>
152
+ | RD1-score03=0
153
+ | RD1-seed04=
154
+ | RD1-team04={{flagicon|SCO}} '''[[Gary Stone]]''' <small><span style="color:dimgray;">88.68</span></small>
155
+ | RD1-score04='''3'''
156
+ | RD1-seed05=8
157
+ | RD1-team05={{flagicon|ENG}} '''[[Tony O'Shea]]''' <small><span style="color:dimgray;">88.80</span></small>
158
+ | RD1-score05='''3'''
159
+ | RD1-seed06=
160
+ | RD1-team06={{flagicon|ENG}} [[Steve West (darts player)|Steve West]] <small><span style="color:dimgray;">75.63</span></small>
161
+ | RD1-score06=0
162
+ | RD1-seed07=9
163
+ | RD1-team07={{flagicon|SCO}} '''[[Ross Montgomery]]''' <small><span style="color:dimgray;">87.99</span></small>
164
+ | RD1-score07='''3'''
165
+ | RD1-seed08=
166
+ | RD1-team08={{flagicon|NED}} [[Fabian Roosenbrand]] <small><span style="color:dimgray;">80.10</span></small>
167
+ | RD1-score08=1
168
+ | RD1-seed09=4
169
+ | RD1-team09={{flagicon|ENG}} '''[[Robbie Green]]''' <small><span style="color:dimgray;">87.42</span></small>
170
+ | RD1-score09='''3'''
171
+ | RD1-seed10=
172
+ | RD1-team10={{flagicon|ENG}} [[Darryl Fitton]] <small><span style="color:dimgray;">81.60</span></small>
173
+ | RD1-score10=1
174
+ | RD1-seed11=13
175
+ | RD1-team11={{flagicon|NED}} '''[[Wesley Harms]]''' <small><span style="color:dimgray;">82.32</span></small>
176
+ | RD1-score11='''3'''
177
+ | RD1-seed12=
178
+ | RD1-team12={{flagicon|WAL}} [[Martin Phillips (darts player)|Martin Phillips]] <small><span style="color:dimgray;">79.38</span></small>
179
+ | RD1-score12=1
180
+ | RD1-seed13=5
181
+ | RD1-team13={{flagicon|ENG}} [[Gary Robson (darts player)|Gary Robson]] <small><span style="color:dimgray;">75.33</span></small>
182
+ | RD1-score13=0
183
+ | RD1-seed14=
184
+ | RD1-team14={{flagicon|ENG}} '''[[Steve Douglas (darts player)|Steve Douglas]]''' <small><span style="color:dimgray;">83.76</span></small>
185
+ | RD1-score14='''3'''
186
+ | RD1-seed15=12
187
+ | RD1-team15={{flagicon|ENG}} '''[[Paul Jennings (darts player)|Paul Jennings]]''' <small><span style="color:dimgray;">83.94</span></small>
188
+ | RD1-score15='''3'''
189
+ | RD1-seed16=
190
+ | RD1-team16={{flagicon|ENG}} [[Garry Thompson (darts player)|Garry Thompson]] <small><span style="color:dimgray;">84.30</span></small>
191
+ | RD1-score16=1
192
+ | RD1-seed17=2
193
+ | RD1-team17={{flagicon|ENG}} '''[[Scott Waites]]''' <small><span style="color:dimgray;">89.52</span></small>
194
+ | RD1-score17='''3'''
195
+ | RD1-seed18=
196
+ | RD1-team18={{flagicon|ENG}} [[Andy Boulton]] <small><span style="color:dimgray;">88.74</span></small>
197
+ | RD1-score18=1
198
+ | RD1-seed19=15
199
+ | RD1-team19={{flagicon|ENG}} '''[[Ted Hankey]]''' <small><span style="color:dimgray;">88.08</span></small>
200
+ | RD1-score19='''3'''
201
+ | RD1-seed20=
202
+ | RD1-team20={{flagicon|ENG}} [[Clive Barden]] <small><span style="color:dimgray;">79.85</span></small>
203
+ | RD1-score20=2
204
+ | RD1-seed21=7
205
+ | RD1-team21={{flagicon|ENG}} [[John Walton (darts player)|John Walton]] <small><span style="color:dimgray;">86.94</span></small>
206
+ | RD1-score21=1
207
+ | RD1-seed22=
208
+ | RD1-team22={{flagicon|ENG}} '''[[Martin Atkins (darts player)|Martin Atkins]]''' <small><span style="color:dimgray;">87.42</span></small>
209
+ | RD1-score22='''3'''
210
+ | RD1-seed23=10
211
+ | RD1-team23={{flagicon|NED}} '''[[Willy van de Wiel]]''' <small><span style="color:dimgray;">83.01</span></small>
212
+ | RD1-score23='''3'''
213
+ | RD1-seed24=
214
+ | RD1-team24={{flagicon|ENG}} [[Dave Prins]] <small><span style="color:dimgray;">78.24</span></small>
215
+ | RD1-score24=0
216
+ | RD1-seed25=3
217
+ | RD1-team25={{flagicon|ENG}} '''[[Dean Winstanley]]''' <small><span style="color:dimgray;">88.74</span></small>
218
+ | RD1-score25='''3'''
219
+ | RD1-seed26=
220
+ | RD1-team26={{flagicon|NED}} [[Joey ten Berge]] <small><span style="color:dimgray;">86.70</span></small>
221
+ | RD1-score26=1
222
+ | RD1-seed27=14
223
+ | RD1-team27={{flagicon|NED}} [[Benito van de Pas]] <small><span style="color:dimgray;">90.18</span></small>
224
+ | RD1-score27=2
225
+ | RD1-seed28=
226
+ | RD1-team28={{flagicon|ENG}} '''[[Alan Norris (darts player)|Alan Norris]]''' <small><span style="color:dimgray;">91.95</span></small>
227
+ | RD1-score28='''3'''
228
+ | RD1-seed29=6
229
+ | RD1-team29={{flagicon|NED}} [[Jan Dekker]] <small><span style="color:dimgray;">96.33</span></small>
230
+ | RD1-score29=2
231
+ | RD1-seed30=
232
+ | RD1-team30={{flagicon|NED}} '''[[Christian Kist]]''' <small><span style="color:dimgray;">97.77</span></small>
233
+ | RD1-score30='''3'''
234
+ | RD1-seed31=11
235
+ | RD1-team31={{flagicon|ENG}} [[Tony West (dart player)|Tony West]] <small><span style="color:dimgray;">83.94</span></small>
236
+ | RD1-score31=1
237
+ | RD1-seed32=
238
+ | RD1-team32={{flagicon|BEL}} '''[[Geert De Vos]]''' <small><span style="color:dimgray;">84.09</span></small>
239
+ | RD1-score32='''3'''
240
+ | RD2-seed01=1
241
+ | RD2-team01={{flagicon|ENG}} '''[[Martin Adams]]''' <small><span style="color:dimgray;">90.78</span></small>
242
+ | RD2-score01='''4'''
243
+ | RD2-seed02=
244
+ | RD2-team02={{flagicon|SCO}} [[Gary Stone]] <small><span style="color:dimgray;">86.97</span></small>
245
+ | RD2-score02=0
246
+ | RD2-seed03=8
247
+ | RD2-team03={{flagicon|ENG}} '''[[Tony O'Shea]]''' <small><span style="color:dimgray;">90.48</span></small>
248
+ | RD2-score03='''4'''
249
+ | RD2-seed04=9
250
+ | RD2-team04={{flagicon|SCO}} [[Ross Montgomery]] <small><span style="color:dimgray;">87.63</span></small>
251
+ | RD2-score04=1
252
+ | RD2-seed05=4
253
+ | RD2-team05={{flagicon|ENG}} [[Robbie Green]] <small><span style="color:dimgray;">84.99</span></small>
254
+ | RD2-score05=1
255
+ | RD2-seed06=13
256
+ | RD2-team06={{flagicon|NED}} '''[[Wesley Harms]]''' <small><span style="color:dimgray;">90.72</span></small>
257
+ | RD2-score06='''4'''
258
+ | RD2-seed07=
259
+ | RD2-team07={{flagicon|ENG}} [[Steve Douglas (darts player)|Steve Douglas]] <small><span style="color:dimgray;">82.23</span></small>
260
+ | RD2-score07=2
261
+ | RD2-seed08=12
262
+ | RD2-team08={{flagicon|ENG}} '''[[Paul Jennings (darts player)|Paul Jennings]]''' <small><span style="color:dimgray;">82.86</span></small>
263
+ | RD2-score08='''4'''
264
+ | RD2-seed09=2
265
+ | RD2-team09={{flagicon|ENG}} [[Scott Waites]] <small><span style="color:dimgray;">86.73</span></small>
266
+ | RD2-score09=3
267
+ | RD2-seed10=15
268
+ | RD2-team10={{flagicon|ENG}} '''[[Ted Hankey]]''' <small><span style="color:dimgray;">85.14</span></small>
269
+ | RD2-score10='''4'''
270
+ | RD2-seed11=
271
+ | RD2-team11={{flagicon|ENG}} '''[[Martin Atkins (darts player)|Martin Atkins]]''' <small><span style="color:dimgray;">89.73</span></small>
272
+ | RD2-score11='''4'''
273
+ | RD2-seed12=10
274
+ | RD2-team12={{flagicon|NED}} [[Willy van de Wiel]] <small><span style="color:dimgray;">87.02</span></small>
275
+ | RD2-score12=2
276
+ | RD2-seed13=3
277
+ | RD2-team13={{flagicon|ENG}} [[Dean Winstanley]] <small><span style="color:dimgray;">91.92</span></small>
278
+ | RD2-score13=3
279
+ | RD2-seed14=
280
+ | RD2-team14={{flagicon|ENG}} '''[[Alan Norris (darts player)|Alan Norris]]''' <small><span style="color:dimgray;">89.28</span></small>
281
+ | RD2-score14='''4'''
282
+ | RD2-seed15=&nbsp;
283
+ | RD2-team15={{flagicon|NED}} '''[[Christian Kist]]''' <small><span style="color:dimgray;">96.51</span></small>
284
+ | RD2-score15='''4'''
285
+ | RD2-seed16=
286
+ | RD2-team16={{flagicon|BEL}} [[Geert De Vos]] <small><span style="color:dimgray;">87.21</span></small>
287
+ | RD2-score16=2
288
+ | RD3-seed01=1
289
+ | RD3-team01={{flagicon|ENG}} [[Martin Adams]] <small><span style="color:dimgray;">92.49</span></small>
290
+ | RD3-score01=2
291
+ | RD3-seed02=8
292
+ | RD3-team02={{flagicon|ENG}} '''[[Tony O'Shea]]''' <small><span style="color:dimgray;">94.02</span></small>
293
+ | RD3-score02='''5'''
294
+ | RD3-seed03=13
295
+ | RD3-team03={{flagicon|NED}} '''[[Wesley Harms]]''' <small><span style="color:dimgray;">87.39</span></small>
296
+ | RD3-score03='''5'''
297
+ | RD3-seed04=12
298
+ | RD3-team04={{flagicon|ENG}} [[Paul Jennings (darts player)|Paul Jennings]] <small><span style="color:dimgray;">85.86</span></small>
299
+ | RD3-score04=3
300
+ | RD3-seed05=15
301
+ | RD3-team05={{flagicon|ENG}} '''[[Ted Hankey]]''' <small><span style="color:dimgray;">85.08</span></small>
302
+ | RD3-score05= '''5'''
303
+ | RD3-seed06=
304
+ | RD3-team06={{flagicon|ENG}} [[Martin Atkins (darts player)|Martin Atkins]] <small><span style="color:dimgray;">87.00</span></small>
305
+ | RD3-score06= 1
306
+ | RD3-seed07=&nbsp;
307
+ | RD3-team07={{flagicon|ENG}} [[Alan Norris (darts player)|Alan Norris]] <small><span style="color:dimgray;">90.19</span></small>
308
+ | RD3-score07= 1
309
+ | RD3-seed08=
310
+ | RD3-team08={{flagicon|NED}} '''[[Christian Kist]]''' <small><span style="color:dimgray;">93.67</span></small>
311
+ | RD3-score08='''5'''
312
+ | RD4-seed01=8
313
+ | RD4-team01={{flagicon|ENG}} '''[[Tony O'Shea]]''' <small><span style="color:dimgray;">85.35</span></small>
314
+ | RD4-score01='''6'''
315
+ | RD4-seed02=13
316
+ | RD4-team02={{flagicon|NED}} [[Wesley Harms]] <small><span style="color:dimgray;">88.38</span></small>
317
+ | RD4-score02=5
318
+ | RD4-seed03= 15
319
+ | RD4-team03={{flagicon|ENG}} [[Ted Hankey]] <small><span style="color:dimgray;">87.54</span></small>
320
+ | RD4-score03=5
321
+ | RD4-seed04=
322
+ | RD4-team04={{flagicon|NED}} '''[[Christian Kist]]''' <small><span style="color:dimgray;">89.73</span></small>
323
+ | RD4-score04='''6'''
324
+ | RD5-seed01=8
325
+ | RD5-team01={{flagicon|ENG}} [[Tony O'Shea]] <small><span style="color:dimgray;">87.78</span></small>
326
+ | RD5-score01=5
327
+ | RD5-seed02=
328
+ | RD5-team02={{flagicon|NED}} '''[[Christian Kist]]''' <small><span style="color:dimgray;">90.00</span></small>
329
+ | RD5-score02='''7'''
330
+
331
+ <!---->
332
+ <!-- FINAL -->
333
+ <!---->
334
+ |(''Best of 13 sets'') Sunday 15 January
335
+ |{{flagicon|}}
336
+ |-
337
+ |{{flagicon|}}
338
+ |Highest Checkout:
339
+ |
340
+ |Highest Checkout:
341
+ |{{flagicon|NED}} [[Christian Kist]] wins the 2012 Lakeside [[BDO World Darts Championship|World Darts Championship]]
342
+ <!---->
343
+ <!-- Frame header info -->
344
+ <!---->
345
+ |''Best of 5 sets''
346
+ |''Best of 7 sets''
347
+ |''Best of 9 sets''
348
+ |''Best of 11 sets''
349
+ }}
350
+
351
+ ===Women's===
352
+ * All matches best of three sets, best of five legs.
353
+ The results are:<ref>{{cite web|title=2012 Women's World Championship results|url=http://www.dartsdatabase.co.uk/FixtureList.aspx?EventKey=3822&showAverages=Y|publisher=dartsdatabase.co.uk|accessdate=8 January 2012}}</ref>
354
+ {{8TeamBracket
355
+ | RD1= Quarter-finals<br>7–9 January
356
+ | RD2= Semi-finals<br>12 January
357
+ | RD3= Final<br>13 January
358
+ | team-width=165
359
+ | RD1-seed1=1
360
+ | RD1-team1={{flagicon|ENG}} '''[[Deta Hedman]]''' <small><span style="color:dimgray;">73.20</span></small>
361
+ | RD1-score1='''2'''
362
+ | RD1-seed2=
363
+ | RD1-team2={{flagicon|WAL}} [[Rhian Edwards]] <small><span style="color:dimgray;">73.71</span></small>
364
+ | RD1-score2=1
365
+ | RD1-seed3=4
366
+ | RD1-team3={{flagicon|ENG}} '''[[Lorraine Farlam]]''' <small><span style="color:dimgray;">67.35</span></small>
367
+ | RD1-score3='''2'''
368
+ | RD1-seed4=
369
+ | RD1-team4={{flagicon|ENG}} [[Karen Lawman]] <small><span style="color:dimgray;">67.35</span></small>
370
+ | RD1-score4=1
371
+ | RD1-seed5=2
372
+ | RD1-team5={{flagicon|WAL}} [[Julie Gore]] <small><span style="color:dimgray;">63.39</span></small>
373
+ | RD1-score5=0
374
+ | RD1-seed6=
375
+ | RD1-team6={{nowrap begin}}{{flagicon|RUS}} '''[[Anastasia Dobromyslova]]''' <small><span style="color:dimgray;">73.92</span></small>{{nowrap end}}
376
+ | RD1-score6='''2'''
377
+ | RD1-seed7=3
378
+ | RD1-team7={{flagicon|ENG}} '''[[Trina Gulliver]]''' <small><span style="color:dimgray;">73.80</span></small>
379
+ | RD1-score7='''2'''
380
+ | RD1-seed8=
381
+ | RD1-team8={{flagicon|ENG}} [[Lisa Ashton]] <small><span style="color:dimgray;">71.97</span></small>
382
+ | RD1-score8=0
383
+ | RD2-seed1=1
384
+ | RD2-team1={{flagicon|ENG}} '''[[Deta Hedman]]''' <small><span style="color:dimgray;">79.11</span></small>
385
+ | RD2-score1='''2'''
386
+ | RD2-seed2=4
387
+ | RD2-team2={{flagicon|ENG}} [[Lorraine Farlam]] <small><span style="color:dimgray;">74.61</span></small>
388
+ | RD2-score2=1
389
+ | RD2-seed3=
390
+ | RD2-team3={{nowrap begin}}{{flagicon|RUS}} '''[[Anastasia Dobromyslova]]''' <small><span style=color:dimgray;>69.75</span></small>{{nowrap end}}
391
+ | RD2-score3='''2'''
392
+ | RD2-seed4=3
393
+ | RD2-team4={{flagicon|ENG}} [[Trina Gulliver]] <small><span style="color:dimgray;">72.88</span></small>
394
+ | RD2-score4=0
395
+ | RD3-seed1=1
396
+ | RD3-team1={{flagicon|ENG}} [[Deta Hedman]] <small><span style="color:dimgray;">74.13</span></small>
397
+ | RD3-score1=1
398
+ | RD3-seed2=
399
+ | RD3-team2={{nowrap begin}}{{flagicon|RUS}} '''[[Anastasia Dobromyslova]]''' <small><span style="color:dimgray;">73.95</span></small>{{nowrap end}}
400
+ | RD3-score2='''2'''
401
+ }}
402
+
403
+ ==Statistics==
404
+ {{unreferenced section|date=January 2012}}<!--The main draws doesn't have match reports.-->
405
+
406
+ ===Men===
407
+ {{update|section|date=January 2012}}
408
+ {|class="wikitable sortable" style="font-size: 95%; text-align: right"
409
+ |-
410
+ ! Player
411
+ ! Played
412
+ ! Sets Won
413
+ ! Sets Lost
414
+ ! Legs Won
415
+ ! Legs Lost
416
+ ! 100+
417
+ ! 140+
418
+ ! 180s
419
+ ! High Checkout
420
+ ! Average
421
+ |-
422
+ |align="left"| {{flagicon|NED}} [[Christian Kist]]
423
+ | 5
424
+ | 25
425
+ | 15
426
+ | 93
427
+ | 67
428
+ | 179
429
+ | 133
430
+ | 33
431
+ | 129
432
+ | 92.45
433
+ |-
434
+ |align="left"| {{flagicon|ENG}} [[Tony O'Shea]]
435
+ | 5
436
+ | 23
437
+ | 15
438
+ | 86
439
+ | 65
440
+ | 217
441
+ | 111
442
+ | 23
443
+ | 170
444
+ | 88.52
445
+ |-
446
+ |align="left"| {{flagicon|NED}} [[Wesley Harms]]
447
+ | 4
448
+ | 17
449
+ | 11
450
+ | 63
451
+ | 50
452
+ | 178
453
+ | 79
454
+ | 11
455
+ | 120
456
+ | 87.46
457
+ |-
458
+ |align="left"| {{flagicon|ENG}} [[Ted Hankey]]
459
+ | 4
460
+ | 17
461
+ | 12
462
+ | 62
463
+ | 54
464
+ | 137
465
+ | 89
466
+ | 23
467
+ | 145
468
+ | 86.47
469
+ |-
470
+ |align="left"| {{flagicon|ENG}} [[Martin Atkins (darts player)|Martin Atkins]]
471
+ | 3
472
+ | 8
473
+ | 8
474
+ | 33
475
+ | 33
476
+ | 76
477
+ | 42
478
+ | 11
479
+ | 136
480
+ | 88.05
481
+ |-
482
+ |align="left"| {{flagicon|ENG}} [[Alan Norris (darts player)|Alan Norris]]
483
+ | 3
484
+ | 8
485
+ | 10
486
+ | 27
487
+ | 40
488
+ | 91
489
+ | 42
490
+ | 22
491
+ | 130
492
+ | 90.33
493
+ |-
494
+ |align="left"| {{flagicon|ENG}} [[Martin Adams]]
495
+ | 3
496
+ | 9
497
+ | 5
498
+ | 31
499
+ | 26
500
+ | 95
501
+ | 40
502
+ | 11
503
+ | 161
504
+ | 91.36
505
+ |-
506
+ |align="left"| {{flagicon|ENG}} [[Paul Jennings (darts player)|Paul Jennings]]
507
+ | 3
508
+ | 10
509
+ | 8
510
+ | 38
511
+ | 37
512
+ | 94
513
+ | 53
514
+ | 9
515
+ | 120
516
+ | 84.38
517
+ |-
518
+ |align="left"| {{flagicon|ENG}} [[Scott Waites]]
519
+ | 2
520
+ | 6
521
+ | 5
522
+ | 25
523
+ | 22
524
+ | 68
525
+ | 26
526
+ | 5
527
+ | 156
528
+ | 87.73
529
+ |-
530
+ |align="left"| {{flagicon|ENG}} [[Dean Winstanley]]
531
+ | 2
532
+ | 6
533
+ | 5
534
+ | 25
535
+ | 22
536
+ | 59
537
+ | 32
538
+ | 12
539
+ | 160
540
+ | 90.68
541
+ |-
542
+ |align="left"| {{flagicon|ENG}} [[Robbie Green]]
543
+ | 2
544
+ | 4
545
+ | 5
546
+ | 16
547
+ | 19
548
+ | 41
549
+ | 18
550
+ | 9
551
+ | 76
552
+ | 86.20
553
+ |-
554
+ |align="left"| {{flagicon|SCO}} [[Ross Montgomery]]
555
+ | 2
556
+ | 4
557
+ | 5
558
+ | 16
559
+ | 21
560
+ | 63
561
+ | 20
562
+ | 7
563
+ | 120
564
+ | 87.79
565
+ |-
566
+ |align="left"| {{flagicon|NED}} [[Willy van de Wiel]]
567
+ | 2
568
+ | 5
569
+ | 4
570
+ | 17
571
+ | 17
572
+ | 45
573
+ | 25
574
+ | 5
575
+ | 101
576
+ | 85.58
577
+ |-
578
+ |align="left"| {{flagicon|BEL}} [[Geert De Vos]]
579
+ | 2
580
+ | 5
581
+ | 5
582
+ | 21
583
+ | 22
584
+ | 44
585
+ | 24
586
+ | 10
587
+ | 121
588
+ | 85.89
589
+ |-
590
+ |align="left"| {{flagicon|ENG}} [[Steve Douglas (darts player)|Steve Douglas]]
591
+ | 2
592
+ | 5
593
+ | 4
594
+ | 20
595
+ | 18
596
+ | 45
597
+ | 23
598
+ | 6
599
+ | 121
600
+ | 82.71
601
+ |-
602
+ |align="left"| {{flagicon|SCO}} [[Gary Stone]]
603
+ | 2
604
+ | 3
605
+ | 4
606
+ | 15
607
+ | 16
608
+ | 36
609
+ | 23
610
+ | 7
611
+ | 120
612
+ | 88.23
613
+ |-
614
+ |align="left"| {{flagicon|ENG}} [[Gary Robson (darts player)|Gary Robson]]
615
+ | 1
616
+ | 0
617
+ | 3
618
+ | 3
619
+ | 9
620
+ | 17
621
+ | 4
622
+ | 1
623
+ | 68
624
+ | 75.33
625
+ |-
626
+ |align="left"| {{flagicon|NED}} [[Jan Dekker]]
627
+ | 1
628
+ | 2
629
+ | 3
630
+ | 10
631
+ | 12
632
+ | 22
633
+ | 15
634
+ | 5
635
+ | 81
636
+ | 96.33
637
+ |-
638
+ |align="left"| {{flagicon|ENG}} [[John Walton (darts player)|John Walton]]
639
+ | 1
640
+ | 1
641
+ | 3
642
+ | 9
643
+ | 9
644
+ | 19
645
+ | 13
646
+ | 3
647
+ | 97
648
+ | 86.94
649
+ |-
650
+ |align="left"| {{flagicon|ENG}} [[Tony West (dart player)|Tony West]]
651
+ | 1
652
+ | 1
653
+ | 3
654
+ | 6
655
+ | 11
656
+ | 22
657
+ | 6
658
+ | 2
659
+ | 80
660
+ | 83.94
661
+ |-
662
+ |align="left"| {{flagicon|NED}} [[Benito van de Pas]]
663
+ | 1
664
+ | 2
665
+ | 3
666
+ | 9
667
+ | 12
668
+ | 26
669
+ | 11
670
+ | 3
671
+ | 119
672
+ | 90.18
673
+ |-
674
+ |align="left"| {{flagicon|NED}} [[Ron Meulenkamp]]
675
+ | 1
676
+ | 0
677
+ | 3
678
+ | 4
679
+ | 9
680
+ | 19
681
+ | 5
682
+ | 1
683
+ | 71
684
+ | 82.98
685
+ |-
686
+ |align="left"| {{flagicon|ENG}} [[Clive Barden]]
687
+ | 1
688
+ | 2
689
+ | 3
690
+ | 8
691
+ | 12
692
+ | 20
693
+ | 11
694
+ | 2
695
+ | 160
696
+ | 79.86
697
+ |-
698
+ |align="left"| {{flagicon|ENG}} [[Andy Boulton]]
699
+ | 1
700
+ | 1
701
+ | 3
702
+ | 6
703
+ | 11
704
+ | 22
705
+ | 11
706
+ | 1
707
+ | 65
708
+ | 88.74
709
+ |-
710
+ |align="left"| {{flagicon|ENG}} [[Darryl Fitton]]
711
+ | 1
712
+ | 1
713
+ | 3
714
+ | 7
715
+ | 10
716
+ | 16
717
+ | 10
718
+ | 7
719
+ | 72
720
+ | 81.60
721
+ |-
722
+ |align="left"| {{flagicon|ENG}} [[Scott Mitchell (darts player)|Scott Mitchell]]
723
+ | 1
724
+ | 0
725
+ | 3
726
+ | 4
727
+ | 9
728
+ | 18
729
+ | 10
730
+ | 0
731
+ | 16
732
+ | 79.48
733
+ |-
734
+ |align="left"| {{flagicon|WAL}} [[Martin Phillips (darts player)|Martin Phillips]]
735
+ | 1
736
+ | 1
737
+ | 3
738
+ | 6
739
+ | 11
740
+ | 27
741
+ | 6
742
+ | 2
743
+ | 65
744
+ | 79.38
745
+ |-
746
+ |align="left"| {{flagicon|ENG}} [[Dave Prins]]
747
+ | 1
748
+ | 0
749
+ | 3
750
+ | 2
751
+ | 9
752
+ | 14
753
+ | 2
754
+ | 1
755
+ | 74
756
+ | 78.24
757
+ |-
758
+ |align="left"| {{flagicon|NED}} [[Fabian Roosenbrand]]
759
+ | 1
760
+ | 1
761
+ | 3
762
+ | 7
763
+ | 9
764
+ | 15
765
+ | 7
766
+ | 2
767
+ | 83
768
+ | 80.10
769
+ |-
770
+ |align="left"| {{flagicon|NED}} [[Joey ten Berge]]
771
+ | 1
772
+ | 1
773
+ | 3
774
+ | 7
775
+ | 11
776
+ | 21
777
+ | 8
778
+ | 4
779
+ | 92
780
+ | 86.70
781
+ |-
782
+ |align="left"| {{flagicon|ENG}} [[Garry Thompson (darts player)|Garry Thompson]]
783
+ | 1
784
+ | 1
785
+ | 3
786
+ | 7
787
+ | 9
788
+ | 18
789
+ | 10
790
+ | 4
791
+ | 118
792
+ | 84.30
793
+ |-
794
+ |align="left"| {{flagicon|ENG}} [[Steve West (darts player)|Steve West]]
795
+ | 1
796
+ | 0
797
+ | 3
798
+ | 2
799
+ | 9
800
+ | 15
801
+ | 4
802
+ | 1
803
+ | 40
804
+ | 75.63
805
+ |-
806
+ {{Fb cs footer|u=13 January 2011|s=Match reports from the [[#Last 64|main draw]]|date=January 2012}}<ref>{{Cite web |url=http://www.bdodarts.com/viewtournament.aspx?tid=238 |title=Men: Match results and reports (www.bdodarts.com) |access-date=8 January 2012 |archive-url=https://web.archive.org/web/20120109020232/http://www.bdodarts.com/viewtournament.aspx?tid=238 |archive-date=9 January 2012 |url-status=dead |df=dmy-all }}</ref>
807
+ {{Reflist|group="n"}}
808
+
809
+ ===Women===
810
+ {|class="wikitable sortable" style="font-size: 95%; text-align: right"
811
+ |-
812
+ ! Player
813
+ ! Played
814
+ ! Sets Won
815
+ ! Sets Lost
816
+ ! Legs Won
817
+ ! Legs Lost
818
+ ! 100+
819
+ ! 140+
820
+ ! 180s
821
+ ! High Checkout
822
+ ! Average
823
+ |-
824
+ |align="left"| {{flagicon|RUS}} [[Anastasia Dobromyslova]]
825
+ | 3
826
+ | 6
827
+ | 1
828
+ | 20
829
+ | 8
830
+ | 45
831
+ | 13
832
+ | 0
833
+ | 90
834
+ | 72.71
835
+ |-
836
+ |align="left"| {{flagicon|ENG}} [[Deta Hedman]]
837
+ | 3
838
+ | 5
839
+ | 4
840
+ | 19
841
+ | 20
842
+ | 47
843
+ | 12
844
+ | 3
845
+ | 119
846
+ | 75.71
847
+ |-
848
+ |align="left"| {{flagicon|ENG}} [[Lorraine Farlam]]
849
+ | 2
850
+ | 3
851
+ | 3
852
+ | 14
853
+ | 14
854
+ | 37
855
+ | 11
856
+ | 1
857
+ | 125
858
+ | 70.92
859
+ |-
860
+ |align="left"| {{flagicon|ENG}} [[Trina Gulliver]]
861
+ | 2
862
+ | 2
863
+ | 2
864
+ | 8
865
+ | 7
866
+ | 24
867
+ | 2
868
+ | 2
869
+ | 95
870
+ | 72.76
871
+ |-
872
+ |align="left"| {{flagicon|ENG}} [[Karen Lawman]]
873
+ | 1
874
+ | 1
875
+ | 2
876
+ | 6
877
+ | 7
878
+ | 21
879
+ | 7
880
+ | 1
881
+ | 88
882
+ | 67.34
883
+ |-
884
+ |align="left"| {{flagicon|WAL}} [[Rhian Edwards]]
885
+ | 1
886
+ | 1
887
+ | 2
888
+ | 5
889
+ | 6
890
+ | 9
891
+ | 9
892
+ | 0
893
+ | 155
894
+ | 73.70
895
+ |-
896
+ |align="left"| {{flagicon|ENG}} [[Lisa Ashton]]
897
+ | 1
898
+ | 0
899
+ | 2
900
+ | 1
901
+ | 6
902
+ | 4
903
+ | 5
904
+ | 0
905
+ | 16
906
+ | 71.96
907
+ |-
908
+ |align="left"| {{flagicon|WAL}} [[Julie Gore]]
909
+ | 1
910
+ | 0
911
+ | 2
912
+ | 1
913
+ | 6
914
+ | 8
915
+ | 0
916
+ | 0
917
+ | 50
918
+ | 63.39
919
+ |-
920
+ {{Fb cs footer|u=13 January 2011|s=Match reports from the [[#Last 64|main draw]]|date=January 2012}}<ref>{{Cite web |url=http://www.bdodarts.com/viewtournament.aspx?tid=238 |title=Women: Match results and reports (www.bdodarts.com) |access-date=8 January 2012 |archive-url=https://web.archive.org/web/20120109020232/http://www.bdodarts.com/viewtournament.aspx?tid=238 |archive-date=9 January 2012 |url-status=dead |df=dmy-all }}</ref>
921
+ {{Reflist|group="n"}}
922
+
923
+ ==Broadcasting==
924
+ The tournament was broadcast jointly in the UK by the [[BBC]] and [[ESPN (UK)|ESPN]]. The BBC broadcast the afternoon session of the opening weekend, afternoon highlights from 9 to 13 January, the first semi final and the final. ESPN broadcast the evening session of the opening weekend, round two matches, the quarter finals, the second semi final and highlights of the final. The BBC's coverage was presented by [[Colin Murray]] with [[Bobby George]] being the pundit. ESPN's coverage was presented by [[Ray Stubbs]] and [[Nat Coombs]]. Commentary on both channels came from [[David Croft (broadcaster)|David Croft]], [[Tony Green]] and [[Vassos Alexander]].<ref>{{cite web|title=ESPN and BBC collaborate to provide full coverage of Lakeside 2012|url=http://bdodarts.com/1525/03-11-2011/ESPN_and_BBC_collaborate_to_provide__full_coverage_of_Lakeside_2012|work=BDO|date=3 November 2011|access-date=3 November 2011|archive-url=https://web.archive.org/web/20111105233340/http://www.bdodarts.com/1525/03-11-2011/ESPN_and_BBC_collaborate_to_provide__full_coverage_of_Lakeside_2012|archive-date=5 November 2011|url-status=dead|df=dmy-all}}</ref> The tournament was also screened on [[Eurosport]] and [[Eurosport Asia]] in 99 other countries.<ref>{{cite web|title=Global TV Audiences For Lakeside 2012|url=http://bdodarts.com/1581/02-01-2012/Global_TV_Audiences_For_Lakeside_2012|work=BDO|date=2 January 2012|access-date=5 January 2012|archive-url=https://web.archive.org/web/20120110050500/http://www.bdodarts.com/1581/02-01-2012/Global_TV_Audiences_For_Lakeside_2012|archive-date=10 January 2012|url-status=dead|df=dmy-all}}</ref>
925
+
926
+ ==References==
927
+ {{reflist|2}}
928
+
929
+ ==External links==
930
+ * [http://www.lakesideworlddarts.co.uk/ Official site]
931
+ * [https://web.archive.org/web/20120109020232/http://www.bdodarts.com/viewtournament.aspx?tid=238 Results]
932
+
933
+ {{World Darts Championship}}
934
+
935
+ [[Category:BDO World Darts Championships]]
936
+ [[Category:2012 in darts|BDO World Darts Championship]]
937
+ [[Category:2012 in English sport|BDO World Darts Championship]]
938
+ [[Category:2012 in British sport|BDO World Darts Championships]]
939
+ [[Category:January 2012 sports events in the United Kingdom|BDO World Darts Championships]]
940
+ [[Category:Sport in Surrey]]
941
+ [[Category:Frimley Green]]