onebox 1.2.9 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 08517acd13666e45ae3bb18e3f253ad67078e0e6
4
- data.tar.gz: 3c8e281f915669cd668ce27e19818d3852f57b17
3
+ metadata.gz: 49ef78f13c0ef0d87599f4f69a248165e5b308e2
4
+ data.tar.gz: 49911be28d9d203063ffdcc902b4829cc2d5eb3e
5
5
  SHA512:
6
- metadata.gz: 163a4db5056c61763653d7993175e6cafe36a5b032abc98cf19ce43feedfd5f448841861cd16dcd05cc3fce0bb1f4334acc6bccdb3a585890bcc3ca30467c7cf
7
- data.tar.gz: 021b17d816562c9a07022c9235b532c51f5d399301fd4230cb8a4b79380211af55c047a00c8f0551a5df767a6e7d886c948ac58bac8e5f16071840295f431c3c
6
+ metadata.gz: e32f0f7f5fa0c3ee7a76a75d271a53bd384be729639263a4991a4ecfeed59da8c2728204f77ada350e674dbde58eaa3d65a5c48f8924df2e4d9c4a9d985fde63
7
+ data.tar.gz: 21efd6021bacc67e17b69c77f8dd96236feab37b7bdec240883c6b764a0c8bc9352d0f11c2024447db0a2a386ece191372dbff3032de82e8d213e811d31b49a5
data/lib/onebox/engine.rb CHANGED
@@ -118,3 +118,5 @@ require_relative "engine/wikipedia_onebox"
118
118
  require_relative "engine/youtube_onebox"
119
119
  require_relative "engine/whitelisted_generic_onebox"
120
120
  require_relative "engine/pubmed_onebox"
121
+ require_relative "engine/video_onebox"
122
+ require_relative "engine/audio_onebox"
@@ -5,12 +5,8 @@ module Onebox
5
5
  include LayoutSupport
6
6
  include HTML
7
7
 
8
- matches do
9
- http
10
- maybe("www.")
11
- domain("amazon")
12
- has(".").either("com", "ca").maybe("/")
13
- end
8
+
9
+ matches_regexp(/^http:\/\/(?:www)\.amazon\.(com|ca)/)
14
10
 
15
11
  def url
16
12
  return "http://www.amazon.com/gp/aw/d/" + URI::encode(match[:id]) if match && match[:id]
@@ -0,0 +1,15 @@
1
+ module Onebox
2
+ module Engine
3
+ class VideoOnebox
4
+ include Engine
5
+
6
+ matches_regexp /^https?:\/\/.*\.mp3$/
7
+
8
+ def to_html
9
+ "<audio controls><source src='#{@url}'><a href='#{@url}'>#{@url}</a></audio>"
10
+ end
11
+ end
12
+ end
13
+ end
14
+
15
+
@@ -4,14 +4,10 @@ module Onebox
4
4
  include Engine
5
5
  include LayoutSupport
6
6
 
7
- matches do
8
- http
9
- maybe("www")
10
- domain("github")
11
- tld("com")
12
- anything
13
- with("/blob/")
14
- end
7
+ MAX_LINES = 20
8
+ MAX_CHARS = 5000
9
+
10
+ matches_regexp(/^https?:\/\/(www\.)?github\.com.*\/blob\//)
15
11
 
16
12
  private
17
13
 
@@ -32,8 +28,14 @@ module Onebox
32
28
  contents = contents.split("\n")[from..to].join("\n")
33
29
  end
34
30
  end
35
- if contents.length > 5000
36
- contents = contents[0..5000]
31
+ if contents.length > MAX_CHARS
32
+ contents = contents[0..MAX_CHARS]
33
+ @truncated = true
34
+ end
35
+
36
+ split = contents.split("\n")
37
+ if split.length > MAX_LINES
38
+ contents = split[0..MAX_LINES].join("\n")
37
39
  @truncated = true
38
40
  end
39
41
  @raw = contents
@@ -41,7 +43,10 @@ module Onebox
41
43
  end
42
44
 
43
45
  def data
44
- @data ||= {title: link, link: link, content: raw, truncated: @truncated}
46
+ @data ||= {title: link.sub(/^https?\:\/\//, ''),
47
+ link: link,
48
+ content: raw,
49
+ truncated: @truncated}
45
50
  end
46
51
  end
47
52
  end
@@ -0,0 +1,14 @@
1
+ module Onebox
2
+ module Engine
3
+ class VideoOnebox
4
+ include Engine
5
+
6
+ matches_regexp /^https?:\/\/.*\.(mov|mp4)$/
7
+
8
+ def to_html
9
+ "<video width='100%' height='100%' controls><source src='#{@url}'><a href='#{@url}'>#{@url}</a></video>"
10
+ end
11
+ end
12
+ end
13
+ end
14
+
@@ -31,6 +31,7 @@ module Onebox
31
31
  cnn.com
32
32
  collegehumor.com
33
33
  coursera.org
34
+ codepen.io
34
35
  cracked.com
35
36
  dailymail.co.uk
36
37
  dailymotion.com
@@ -64,6 +65,7 @@ module Onebox
64
65
  khanacademy.org
65
66
  kickstarter.com
66
67
  kinomap.com
68
+ liveleak.com
67
69
  mashable.com
68
70
  mlb.com
69
71
  myspace.com
@@ -218,7 +220,14 @@ module Onebox
218
220
  end
219
221
 
220
222
  def html_for_video(video)
221
- video_url = video[:_value]
223
+ if video.is_a?(String)
224
+ video_url = video
225
+ elsif video.is_a?(Hash)
226
+ video_url = video[:_value]
227
+ else
228
+ return
229
+ end
230
+
222
231
 
223
232
  if video_url
224
233
  html = "<iframe src=\"#{video_url}\" frameborder=\"0\" title=\"#{data[:title]}\""
@@ -232,7 +241,7 @@ module Onebox
232
241
  end
233
242
 
234
243
  def append_attribute(attribute, html, video)
235
- if video[attribute] && video[attribute].first
244
+ if video.is_a?(Hash) && video[attribute] && video[attribute].first
236
245
  val = video[attribute].first[:_value]
237
246
  html << " #{attribute.to_s}=\"#{val}\""
238
247
  end
@@ -5,12 +5,7 @@ module Onebox
5
5
  include LayoutSupport
6
6
  include HTML
7
7
 
8
- matches do
9
- http
10
- anything
11
- domain("wikipedia")
12
- either(".com", ".org")
13
- end
8
+ matches_regexp(/^https?:\/\/.*wikipedia\.(com|org)/)
14
9
 
15
10
  private
16
11
 
@@ -38,8 +33,14 @@ module Onebox
38
33
  description: text
39
34
  }
40
35
  img = raw.css(".image img")
41
- if img && img.first
42
- result[:image] = img.first["src"]
36
+ if img && img.size > 0
37
+ img.each do |i|
38
+ src = i["src"]
39
+ if src !~ /Question_book/
40
+ result[:image] = src
41
+ break
42
+ end
43
+ end
43
44
  end
44
45
 
45
46
  result
@@ -4,13 +4,14 @@ module Onebox
4
4
  include Engine
5
5
  include StandardEmbed
6
6
 
7
- matches_regexp /^https?:\/\/(?:www\.)?(?:youtube\.com|youtu\.be)\/.+$/
7
+ matches_regexp(/^https?:\/\/(?:www\.)?(?:youtube\.com|youtu\.be)\/.+$/)
8
8
 
9
9
  # Try to get the video ID. Works for URLs of the form:
10
10
  # * https://www.youtube.com/watch?v=Z0UISCEe52Y
11
11
  # * http://youtu.be/afyK1HSFfgw
12
+ # * https://www.youtube.com/embed/vsF0K3Ou1v0
12
13
  def video_id
13
- match = @url.match(/^https?:\/\/(www\.)?(youtube\.com\/watch\?v=|youtu\.be\/)([a-zA-Z0-9_\-]{11})$/)
14
+ match = @url.match(/^https?:\/\/(www\.)?(youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/)([a-zA-Z0-9_\-]{11})$/)
14
15
  match && match[3]
15
16
  end
16
17
 
@@ -13,6 +13,10 @@ module Onebox
13
13
  def oneboxed
14
14
  uri = URI(@url)
15
15
 
16
+ # A onebox needs a path or query string to be considered
17
+ return if (uri.query.nil? || uri.query.size == 0) &&
18
+ (uri.path.size == 0 || uri.path == "/")
19
+
16
20
  ordered_engines.select do |engine|
17
21
  engine === uri
18
22
  end.first
@@ -1,3 +1,3 @@
1
1
  module Onebox
2
- VERSION = "1.2.9"
2
+ VERSION = "1.3.0"
3
3
  end
@@ -1,993 +1,386 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en" dir="ltr" class="client-nojs">
3
3
  <head>
4
- <meta charset="UTF-8" /><title>Kevin Bacon - Wikipedia, the free encyclopedia</title>
5
- <meta name="generator" content="MediaWiki 1.22wmf11" />
4
+ <meta charset="UTF-8" />
5
+ <title>Billy Jack - Wikipedia, the free encyclopedia</title>
6
+ <meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
7
+ <meta name="generator" content="MediaWiki 1.23wmf20" />
8
+ <link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/Billy_Jack" />
9
+ <link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Billy_Jack&amp;action=edit" />
10
+ <link rel="edit" title="Edit this page" href="/w/index.php?title=Billy_Jack&amp;action=edit" />
11
+ <link rel="apple-touch-icon" href="//bits.wikimedia.org/apple-touch/wikipedia.png" />
6
12
  <link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
7
13
  <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
8
14
  <link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
9
15
  <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
10
16
  <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
11
- <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmw.PopUpMediaTransform%7Cskins.vector&amp;only=styles&amp;skin=vector&amp;*" />
17
+ <link rel="canonical" href="http://en.wikipedia.org/wiki/Billy_Jack" />
18
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.ui.button%7Cskins.common.interface%7Cskins.vector.styles&amp;only=styles&amp;skin=vector&amp;*" />
12
19
  <meta name="ResourceLoaderDynamicStyles" content="" />
13
20
  <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector&amp;*" />
14
- <style>a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
15
- /* cache key: enwiki:resourceloader:filter:minify-css:7:d11e4771671c2d6cdedf7c90d8131cd5 */</style>
21
+ <style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
22
+ /* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style>
23
+
16
24
  <script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector&amp;*"></script>
17
25
  <script>if(window.mw){
18
- mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Kevin_Bacon","wgTitle":"Kevin Bacon","wgCurRevisionId":566422525,"wgArticleId":16827,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with dead external links","Articles with dead external links from October 2010","Wikipedia indefinitely semi-protected biographies of living people","Use mdy dates from June 2011","Articles with hCards","All articles with unsourced statements","Articles with unsourced statements from July 2011","Articles with unsourced statements from October 2009","Articles with unsourced statements from January 2008","Articles with unsourced statements from January 2010","Commons category template with no category set","Commons category with page title same as on Wikidata","Wikipedia articles with VIAF identifiers","1958 births","Actors from Philadelphia, Pennsylvania","American film actors","American soap opera actors","American television actors","American voice actors","Best Miniseries or Television Movie Actor Golden Globe winners","Circle in the Square Theatre School alumni","Living people","Obie Award recipients","Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners","Sedgwick family","20th-century American actors","21st-century American actors","American male actors","American atheists"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Kevin_Bacon","wgIsProbablyEditable":false,"wgRestrictionEdit":["autoconfirmed"],"wgRestrictionMove":["autoconfirmed"],"wgVectorEnabledModules":{"collapsiblenav":true,"expandablesearch":false,"footercleanup":true,"sectioneditlinks":false,"experiments":true},"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"templateEditor":false,"templates":false,"preview":false,"previewDialog":false,"publish":false,"toc":false},"wgArticleFeedbackv5Permissions":{"aft-reader":true,"aft-member":false,"aft-editor":false,"aft-monitor":false,"aft-administrator":false,"aft-oversighter":false,"aft-noone":false},"wgVisualEditor":{"isPageWatched":false,"pageLanguageCode":"en","pageLanguageDir":"ltr","magnifyClipIconURL":"//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png"},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgULSAcceptLanguageList":[],"wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","Geo":{"city":"","country":""},"wgNoticeProject":"wikipedia","aftv5Article":{"id":16827,"title":"Kevin Bacon","namespace":0,"categories":["1958 births","20th-century American actors","21st-century American actors","Actors from Philadelphia, Pennsylvania","All articles with dead external links","All articles with unsourced statements","American atheists","American film actors","American male actors","American soap opera actors","American television actors","American voice actors","Articles with dead external links from October 2010","Articles with hCards","Articles with unsourced statements from January 2008","Articles with unsourced statements from January 2010","Articles with unsourced statements from July 2011","Articles with unsourced statements from October 2009","Best Miniseries or Television Movie Actor Golden Globe winners","Circle in the Square Theatre School alumni","Commons category template with no category set","Commons category with page title same as on Wikidata","Living people","Obie Award recipients","Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners","Sedgwick family","Use mdy dates from June 2011","Wikipedia articles with VIAF identifiers","Wikipedia indefinitely semi-protected biographies of living people"],"permissionLevel":false},"wgWikibaseItemId":"q3454165"});
26
+ mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Billy_Jack","wgTitle":"Billy Jack","wgCurRevisionId":603090957,"wgRevisionId":603090957,"wgArticleId":966552,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Articles needing additional references from November 2010","All articles needing additional references","English-language films","Film articles using image size parameter","All articles with unsourced statements","Articles with unsourced statements from December 2012","Articles with hAudio microformats","Album infoboxes lacking a cover","1971 films","Counterculture of the 1960s","Fictional Navajo people","Films about Native Americans","Films shot in Arizona","Films shot in California","Films shot in New Mexico","Hapkido films","Hippie films","Prescott, Arizona","Vigilante films"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Billy_Jack","wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"templateEditor":false,"templates":false,"preview":false,"previewDialog":false,"publish":false,"toc":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":false,"wgVisualEditor":{"isPageWatched":false,"magnifyClipIconURL":"//bits.wikimedia.org/static-1.23wmf20/skins/common/images/magnify-clip.png","pageLanguageCode":"en","pageLanguageDir":"ltr","svgMaxSize":2048},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgFlowTermsOfUseEdit":"By saving changes, you agree to our \u003Ca class=\"external text\" href=\"//wikimediafoundation.org/wiki/Terms_of_use\"\u003ETerms of Use\u003C/a\u003E and agree to irrevocably release your text under the \u003Ca rel=\"nofollow\" class=\"external text\" href=\"//creativecommons.org/licenses/by-sa/3.0\"\u003ECC BY-SA 3.0 License\u003C/a\u003E and \u003Ca class=\"external text\" href=\"//en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License\"\u003EGFDL\u003C/a\u003E","wgULSAcceptLanguageList":[],"wgULSCurrentAutonym":"English","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q2027905"});
19
27
  }</script><script>if(window.mw){
20
- mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":1,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":false,"showjumplinks":1,"shownumberswatching":1,"showtoc":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,
21
- "watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"useeditwarning":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"vector-simplesearch":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"aftv5-last-filter":null,"visualeditor-enable":1,"visualeditor-betatempdisable":0,"wikilove-enabled":1,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-email-format":"html","echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-other":false,"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":
22
- false,"echo-subscriptions-web-reverted":true,"echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,
23
- "gadget-mySandbox":1});},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
24
- /* cache key: enwiki:resourceloader:filter:minify-js:7:f3b3aab0a5ce3a6f53c872b2a5937b9d */
28
+ mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"editfont":"default","editondblclick":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nickname":"","norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"showhiddencats":false,"shownumberswatching":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,
29
+ "wllimit":250,"useeditwarning":1,"prefershttps":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"multimediaviewer-enable":true,"visualeditor-enable":0,"visualeditor-enable-experimental":0,"visualeditor-betatempdisable":0,"wikilove-enabled":1,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-subscriptions-web-education-program":true,"echo-subscriptions-email-education-program":false,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-email-format":"html","echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-other":false,"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":
30
+ false,"echo-subscriptions-web-reverted":true,"echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"echo-subscriptions-web-flow-discussion":true,"echo-subscriptions-email-flow-discussion":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","language":"en","variant-gan":"gan","variant-iu":"iu","variant-kk":"kk","variant-ku":"ku","variant-shi":"shi","variant-sr":"sr","variant-tg":"tg","variant-uz":"uz","variant-zh":"zh","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,
31
+ "searchNs109":false,"searchNs118":false,"searchNs119":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-mySandbox":1,"variant":"en"});},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
32
+ /* cache key: enwiki:resourceloader:filter:minify-js:7:f91b7921db835befbf3c85fee027f8c0 */
25
33
  }</script>
26
34
  <script>if(window.mw){
27
- mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","ext.vector.footerCleanup","ext.visualEditor.viewPageTarget.init","ext.wikimediaShopLink.core","ext.uls.init","ext.uls.interface","wikibase.client.init","ext.centralNotice.bannerController","skins.vector.js"]);
35
+ mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","skins.vector.compactPersonalBar.defaultTracking","ext.visualEditor.viewPageTarget.init","ext.uls.init","ext.uls.interface","wikibase.client.init","ext.centralNotice.bannerController","skins.vector.js"]);
28
36
  }</script>
29
- <script src="//bits.wikimedia.org/geoiplookup"></script><link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.22wmf11/skins/vector/csshover.min.htc")}</style><![endif]--></head>
30
- <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Kevin_Bacon skin-vector action-view vector-animateLayout">
37
+ <link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.23wmf20/skins/vector/csshover.min.htc")}</style><![endif]--></head>
38
+ <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Billy_Jack skin-vector action-view vector-animateLayout">
31
39
  <div id="mw-page-base" class="noprint"></div>
32
40
  <div id="mw-head-base" class="noprint"></div>
33
41
  <div id="content" class="mw-body" role="main">
34
42
  <a id="top"></a>
35
43
  <div id="mw-js-message" style="display:none;"></div>
36
44
  <div id="siteNotice"><!-- CentralNotice --></div>
37
- <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">Kevin Bacon</span></h1>
38
- <div id="bodyContent">
45
+ <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto"><i>Billy Jack</i></span></h1>
46
+ <div id="bodyContent">
39
47
  <div id="siteSub">From Wikipedia, the free encyclopedia</div>
40
48
  <div id="contentSub"></div>
41
- <div id="jump-to-nav" class="mw-jump">
49
+ <div id="jump-to-nav" class="mw-jump">
42
50
  Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
43
51
  </div>
44
- <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="dablink">For other uses, see <a href="/wiki/Kevin_Bacon_(disambiguation)" title="Kevin Bacon (disambiguation)">Kevin Bacon (disambiguation)</a>.</div>
45
- <div class="metadata topicon nopopups" id="protected-icon" style="display:none; right:55px;"><a href="/wiki/Wikipedia:Protection_policy#semi" title="This article is semi-protected to promote compliance with the policy on biographies of living people."><img alt="Page semi-protected" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Padlock-silver.svg/20px-Padlock-silver.svg.png" width="20" height="20" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Padlock-silver.svg/30px-Padlock-silver.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Padlock-silver.svg/40px-Padlock-silver.svg.png 2x" /></a></div>
46
- <table class="infobox biography vcard" cellspacing="3" style="border-spacing:3px;width:22em;">
52
+ <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><dl>
53
+ <dd><i>This article is about the 1971 film. For the <a href="/wiki/Professional_wrestling" title="Professional wrestling">wrestler</a> of a similar name, see <a href="/wiki/Billy_Jack_Haynes" title="Billy Jack Haynes">Billy Jack Haynes</a>.</i></dd>
54
+ </dl>
55
+ <table class="metadata plainlinks ambox ambox-content ambox-Refimprove" role="presentation">
47
56
  <tr>
48
- <th colspan="2" style="text-align:center;font-size:125%;font-weight:bold;"><span class="fn">Kevin Bacon</span></th>
49
- </tr>
50
- <tr>
51
- <td colspan="2" style="text-align:center;"><a href="/wiki/File:Kevin_Bacon_Comic-Con_2012.jpg" class="image"><img alt="Kevin Bacon Comic-Con 2012.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Kevin_Bacon_Comic-Con_2012.jpg/225px-Kevin_Bacon_Comic-Con_2012.jpg" width="225" height="296" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Kevin_Bacon_Comic-Con_2012.jpg/338px-Kevin_Bacon_Comic-Con_2012.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/78/Kevin_Bacon_Comic-Con_2012.jpg/450px-Kevin_Bacon_Comic-Con_2012.jpg 2x" /></a><br />
52
- <div>Bacon at the 2012 <a href="/wiki/San_Diego_Comic-Con_International" title="San Diego Comic-Con International">Comic-Con</a> in San Diego.</div>
57
+ <td class="mbox-image">
58
+ <div style="width:52px;"><a href="/wiki/File:Question_book-new.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png" width="50" height="39" srcset="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/75px-Question_book-new.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/100px-Question_book-new.svg.png 2x" /></a></div>
53
59
  </td>
54
- </tr>
55
- <tr>
56
- <th scope="row" style="text-align:left;">Born</th>
57
- <td><span class="nickname">Kevin Norwood Bacon</span><br />
58
- <span style="display:none">(<span class="bday">1958-07-08</span>)</span> July 8, 1958 <span class="noprint ForceAgeToShow">(age&#160;55)</span><br />
59
- <span class="birthplace"><a href="/wiki/Philadelphia" title="Philadelphia">Philadelphia</a>, <a href="/wiki/Pennsylvania" title="Pennsylvania">Pennsylvania</a>, U.S.</span></td>
60
- </tr>
61
- <tr>
62
- <th scope="row" style="text-align:left;">Nationality</th>
63
- <td class="category">American</td>
64
- </tr>
65
- <tr>
66
- <th scope="row" style="text-align:left;"><i><a href="/wiki/Alma_mater" title="Alma mater">Alma mater</a></i></th>
67
- <td><a href="/wiki/Pennsylvania_Governor%27s_School_for_the_Arts" title="Pennsylvania Governor's School for the Arts">Pennsylvania Governor's School for the Arts</a></td>
68
- </tr>
69
- <tr>
70
- <th scope="row" style="text-align:left;">Occupation</th>
71
- <td class="role">Actor, voice actor, musician</td>
72
- </tr>
73
- <tr>
74
- <th scope="row" style="text-align:left;">Years active</th>
75
- <td>1978–present</td>
76
- </tr>
77
- <tr>
78
- <th scope="row" style="text-align:left;">Spouse(s)</th>
79
- <td><a href="/wiki/Kyra_Sedgwick" title="Kyra Sedgwick">Kyra Sedgwick</a> (1988–present; 2 children)</td>
80
- </tr>
81
- <tr>
82
- <th colspan="2" style="text-align:center;">Website</th>
83
- </tr>
84
- <tr>
85
- <td colspan="2" style="text-align:center;"><span class="url"><a rel="nofollow" class="external text" href="http://www.baconbros.com/">www.baconbros.com</a></span></td>
60
+ <td class="mbox-text"><span class="mbox-text-span">This article <b>needs additional citations for <a href="/wiki/Wikipedia:Verifiability" title="Wikipedia:Verifiability">verification</a></b>. <span class="hide-when-compact">Please help <a class="external text" href="//en.wikipedia.org/w/index.php?title=Billy_Jack&amp;action=edit">improve this article</a> by <a href="/wiki/Help:Introduction_to_referencing/1" title="Help:Introduction to referencing/1">adding citations to reliable sources</a>. Unsourced material may be challenged and removed.</span> <small><i>(November 2010)</i></small></span></td>
86
61
  </tr>
87
62
  </table>
88
- <p><b>Kevin Norwood Bacon</b><sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span>[</span>1<span>]</span></a></sup> (born July 8, 1958) is an American actor and musician whose notable roles include <i><a href="/wiki/National_Lampoon%27s_Animal_House" title="National Lampoon's Animal House">National Lampoon's Animal House</a></i>, <i><a href="/wiki/Diner_(film)" title="Diner (film)">Diner</a></i>, <i><a href="/wiki/Footloose_(1984_film)" title="Footloose (1984 film)">Footloose</a></i>, <i><a href="/wiki/Flatliners" title="Flatliners">Flatliners</a></i>, <i><a href="/wiki/Wild_Things" title="Wild Things">Wild Things</a></i>, <i><a href="/wiki/A_Few_Good_Men" title="A Few Good Men">A Few Good Men</a></i>, <i><a href="/wiki/JFK_(film)" title="JFK (film)">JFK</a></i>, <i><a href="/wiki/The_River_Wild" title="The River Wild">The River Wild</a></i>, <i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i>, <i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i>, <i><a href="/wiki/Hollow_Man" title="Hollow Man">Hollow Man</a></i>, <i><a href="/wiki/Stir_of_Echoes" title="Stir of Echoes">Stir of Echoes</a></i>, <i><a href="/wiki/Trapped_(2002_film)" title="Trapped (2002 film)">Trapped</a></i>, <i><a href="/wiki/Mystic_River_(film)" title="Mystic River (film)">Mystic River</a></i>, <i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i>, <i><a href="/wiki/Friday_the_13th_(1980_film)" title="Friday the 13th (1980 film)">Friday the 13th</a></i>, <i><a href="/wiki/Death_Sentence" title="Death Sentence">Death Sentence</a></i>, <i><a href="/wiki/Frost/Nixon_(film)" title="Frost/Nixon (film)">Frost/Nixon</a></i>, <i><a href="/wiki/X-Men:_First_Class" title="X-Men: First Class">X-Men: First Class</a></i>, and <i><a href="/wiki/Tremors_(film)" title="Tremors (film)">Tremors</a></i>. He currently stars on the <a href="/wiki/Fox_Broadcasting_Company" title="Fox Broadcasting Company">Fox</a> television series <i><a href="/wiki/The_Following" title="The Following">The Following</a></i>.</p>
89
- <p>Bacon has won <a href="/wiki/Golden_Globe_Award" title="Golden Globe Award">Golden Globe</a> and <a href="/wiki/Screen_Actors_Guild_Awards" title="Screen Actors Guild Awards" class="mw-redirect">Screen Actors Guild Awards</a>, was nominated for an <a href="/wiki/Emmy_Award" title="Emmy Award">Emmy Award</a>,<sup id="cite_ref-awards_2-0" class="reference"><a href="#cite_note-awards-2"><span>[</span>2<span>]</span></a></sup> and was named by <i><a href="/wiki/The_Guardian" title="The Guardian">The Guardian</a></i> as one of the best actors never to have received an <a href="/wiki/Academy_Award" title="Academy Award">Academy Award</a> nomination.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span>[</span>3<span>]</span></a></sup> In 2003, Bacon received a star on the <a href="/wiki/Hollywood_Walk_of_Fame" title="Hollywood Walk of Fame">Hollywood Walk of Fame</a>.<sup id="cite_ref-awards_2-1" class="reference"><a href="#cite_note-awards-2"><span>[</span>2<span>]</span></a></sup></p>
90
- <div id="toc" class="toc">
91
- <div id="toctitle">
92
- <h2>Contents</h2>
93
- </div>
94
- <ul>
95
- <li class="toclevel-1 tocsection-1"><a href="#Early_life"><span class="tocnumber">1</span> <span class="toctext">Early life</span></a></li>
96
- <li class="toclevel-1 tocsection-2"><a href="#Acting_career"><span class="tocnumber">2</span> <span class="toctext">Acting career</span></a></li>
97
- <li class="toclevel-1 tocsection-3"><a href="#Personal_life"><span class="tocnumber">3</span> <span class="toctext">Personal life</span></a></li>
98
- <li class="toclevel-1 tocsection-4"><a href="#Six_Degrees_of_Kevin_Bacon"><span class="tocnumber">4</span> <span class="toctext">Six Degrees of Kevin Bacon</span></a></li>
99
- <li class="toclevel-1 tocsection-5"><a href="#Music"><span class="tocnumber">5</span> <span class="toctext">Music</span></a></li>
100
- <li class="toclevel-1 tocsection-6"><a href="#Filmography"><span class="tocnumber">6</span> <span class="toctext">Filmography</span></a>
101
- <ul>
102
- <li class="toclevel-2 tocsection-7"><a href="#Films"><span class="tocnumber">6.1</span> <span class="toctext">Films</span></a></li>
103
- <li class="toclevel-2 tocsection-8"><a href="#Television"><span class="tocnumber">6.2</span> <span class="toctext">Television</span></a></li>
104
- </ul>
105
- </li>
106
- <li class="toclevel-1 tocsection-9"><a href="#References"><span class="tocnumber">7</span> <span class="toctext">References</span></a></li>
107
- <li class="toclevel-1 tocsection-10"><a href="#External_links"><span class="tocnumber">8</span> <span class="toctext">External links</span></a></li>
108
- </ul>
109
- </div>
110
- <h2><span class="mw-headline" id="Early_life">Early life</span></h2>
111
- <p>Bacon, one of six children, was born and raised in a close-knit family in <a href="/wiki/Philadelphia" title="Philadelphia">Philadelphia</a>, Pennsylvania.<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>4<span>]</span></a></sup> His mother, Ruth Hilda (née Holmes; 1916–1991), taught at an elementary school and was a liberal activist, while his father, <a href="/wiki/Edmund_Bacon_(architect)" title="Edmund Bacon (architect)">Edmund Norwood Bacon</a> (May 2, 1910 – October 14, 2005), was a well-respected architect and a prominent Philadelphian who had been Executive Director of the Philadelphia City Planning Commission for many years. At 16, in 1975, Bacon won a full scholarship to and attended the <a href="/wiki/Pennsylvania_Governor%27s_School_for_the_Arts" title="Pennsylvania Governor's School for the Arts">Pennsylvania Governor's School for the Arts</a> at Bucknell University,<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>5<span>]</span></a></sup> a state-funded five-week arts program at which he studied theatre under Dr. Glory Van Scott. The experience solidified Bacon's passion for the arts.</p>
112
- <h2><span class="mw-headline" id="Acting_career">Acting career</span></h2>
113
- <p>Bacon left home at age 17 to pursue a theater career in New York, where he appeared in a production at the <a href="/wiki/Circle_in_the_Square" title="Circle in the Square" class="mw-redirect">Circle in the Square Theater School</a>. "I wanted life, man, the real thing", he later recalled to <a href="/wiki/Nancy_Mills" title="Nancy Mills" class="mw-redirect">Nancy Mills</a> of <i><a href="/wiki/Cosmopolitan_(magazine)" title="Cosmopolitan (magazine)">Cosmopolitan</a></i>. "The message I got was 'The arts are it. Business is the devil's work. Art and creative expression are next to godliness.' Combine that with an immense ego and you wind up with an actor."<sup id="cite_ref-cosmo91_6-0" class="reference"><a href="#cite_note-cosmo91-6"><span>[</span>6<span>]</span></a></sup> Bacon's debut in the <a href="/wiki/Fraternities_and_sororities" title="Fraternities and sororities" class="mw-redirect">fraternity</a> comedy <i><a href="/wiki/National_Lampoon%27s_Animal_House" title="National Lampoon's Animal House">National Lampoon's Animal House</a></i> in 1978 did not lead to the fame for which he had hoped,<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (July 2011)">citation needed</span></a></i>]</sup> and Bacon returned to waiting tables and auditioning for small roles in theater. He briefly worked on the television soap operas <i><a href="/wiki/Search_for_Tomorrow" title="Search for Tomorrow">Search for Tomorrow</a></i> (1979) and <i><a href="/wiki/Guiding_Light" title="Guiding Light">Guiding Light</a></i> (1980–81) in New York. In 1980, he had a prominent role in the now iconic slasher film <a href="/wiki/Friday_the_13th_(1980_film)" title="Friday the 13th (1980 film)"><i>Friday the 13th</i></a>. He refused an offer of a television series based on <i>Animal House</i> to be filmed in California in order to remain close to the New York stage<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (October 2009)">citation needed</span></a></i>]</sup> . Some of his early stage work included <i>Getting Out</i> performed at New York's <a href="/wiki/Phoenix_Theater" title="Phoenix Theater">Phoenix Theater</a>, and <i><a href="/wiki/Flux" title="Flux">Flux</a></i> which he did at <a href="/wiki/Second_Stage_Theatre" title="Second Stage Theatre">Second Stage Theatre</a> during their 1981–1982 season.</p>
114
- <p>In 1982, he won an <a href="/wiki/Obie_Award" title="Obie Award">Obie Award</a> for his role in <i><a href="/wiki/Forty_Deuce" title="Forty Deuce">Forty Deuce</a></i>, and soon after made his Broadway debut in <i><a href="/wiki/Slab_Boys" title="Slab Boys" class="mw-redirect">Slab Boys</a></i>, with then-unknowns <a href="/wiki/Sean_Penn" title="Sean Penn">Sean Penn</a> and <a href="/wiki/Val_Kilmer" title="Val Kilmer">Val Kilmer</a>. However, it was not until he portrayed Timothy Fenwick that same year in <a href="/wiki/Barry_Levinson" title="Barry Levinson">Barry Levinson</a>'s <i><a href="/wiki/Diner_(film)" title="Diner (film)">Diner</a></i>&#160;– costarring <a href="/wiki/Steve_Guttenberg" title="Steve Guttenberg">Steve Guttenberg</a>, <a href="/wiki/Daniel_Stern_(actor)" title="Daniel Stern (actor)">Daniel Stern</a>, <a href="/wiki/Mickey_Rourke" title="Mickey Rourke">Mickey Rourke</a>, <a href="/wiki/Tim_Daly" title="Tim Daly">Tim Daly</a> and <a href="/wiki/Ellen_Barkin" title="Ellen Barkin">Ellen Barkin</a>&#160;– that he made an indelible impression on film critics and moviegoers alike.<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2008)">citation needed</span></a></i>]</sup></p>
115
- <div class="thumb tleft">
116
- <div class="thumbinner" style="width:152px;"><a href="/wiki/File:Kevin_Bacon.jpg" class="image"><img alt="Kevin Bacon.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kevin_Bacon.jpg/150px-Kevin_Bacon.jpg" width="150" height="187" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kevin_Bacon.jpg/225px-Kevin_Bacon.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kevin_Bacon.jpg/300px-Kevin_Bacon.jpg 2x" /></a>
117
- <div class="thumbcaption">
118
- <div class="magnify"><a href="/wiki/File:Kevin_Bacon.jpg" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
119
- </div>
120
- </div>
121
- </div>
122
- <p>Bolstered by the attention garnered by his performance in <i>Diner</i>, Bacon starred in the 1984 box-office smash <i><a href="/wiki/Footloose_(1984_film)" title="Footloose (1984 film)">Footloose</a></i>. Richard Corliss of <i>TIME</i> likened <i>Footloose</i> to the <a href="/wiki/James_Dean" title="James Dean">James Dean</a> classic <i><a href="/wiki/Rebel_Without_a_Cause" title="Rebel Without a Cause">Rebel Without a Cause</a></i> and the old <a href="/wiki/Mickey_Rooney" title="Mickey Rooney">Mickey Rooney</a>/<a href="/wiki/Judy_Garland" title="Judy Garland">Judy Garland</a> musicals, commenting that the film includes "motifs on book burning, mid-life crisis, AWOL parents, fatal car crashes, drug enforcement, and Bible Belt vigilantism."<sup id="cite_ref-time84_7-0" class="reference"><a href="#cite_note-time84-7"><span>[</span>7<span>]</span></a></sup> To prepare for the role, Bacon enrolled at a high school as a transfer student named "Ren McCormick" and studied teenagers before leaving in the middle of the day.<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2010)">citation needed</span></a></i>]</sup> Bacon did earn strong reviews for <i>Footloose</i>,<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span>[</span>8<span>]</span></a></sup> and he appeared on the cover of <i><a href="/wiki/People_(magazine)" title="People (magazine)">People</a></i> magazine soon after its release. Bacon's critical and box-office success lead to a period of <a href="/wiki/Typecasting_(acting)" title="Typecasting (acting)">typecasting</a> in roles similar to the two he portrayed in <i>Diner</i> and <i>Footloose</i>. Bacon would have difficulty shaking this on-screen image. For the next several years he chose films that cast him against either type and experienced, by his own estimation, a career slump. In 1988, he starred in <a href="/wiki/John_Hughes_(filmmaker)" title="John Hughes (filmmaker)">John Hughes</a>' comedy <i><a href="/wiki/She%27s_Having_a_Baby" title="She's Having a Baby">She's Having a Baby</a></i> and the following year he was in another comedy called <i><a href="/wiki/The_Big_Picture_(1989_film)" title="The Big Picture (1989 film)">The Big Picture</a></i>. In 1990, Bacon had two successful roles. He played a character who saved his town from under-the-earth "graboid" monsters in the comedy/horror film <i><a href="/wiki/Tremors_(film)" title="Tremors (film)">Tremors</a></i>&#160;– a role that <i>People</i> found him "far too accomplished"<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2010)">citation needed</span></a></i>]</sup> to play&#160;– and portrayed an earnest medical student experimenting with death in <a href="/wiki/Joel_Schumacher" title="Joel Schumacher">Joel Schumacher</a>'s <i><a href="/wiki/Flatliners" title="Flatliners">Flatliners</a></i>. Bacon's next project was to star opposite <a href="/wiki/Elizabeth_Perkins" title="Elizabeth Perkins">Elizabeth Perkins</a> in <i><a href="/wiki/He_Said,_She_Said" title="He Said, She Said">He Said, She Said</a></i>. Despite lukewarm reviews and low audience turnout, <i>He Said, She Said</i> was illuminating for Bacon. Required to play a character with sexist attitudes, he admitted that the role was not that large a stretch for him. By 1991, Bacon began to give up the idea of playing leading men in big-budget films and to remake himself as a character actor. "The only way I was going to be able to work on 'A' projects with really 'A' directors was if I wasn't the guy who was starring", he confided to <i><a href="/wiki/The_New_York_Times" title="The New York Times">The New York Times</a></i> writer Trip Gabriel. "You can't afford to set up a $40&#160;million movie if you don't have your star."<sup id="cite_ref-nyt94_9-0" class="reference"><a href="#cite_note-nyt94-9"><span>[</span>9<span>]</span></a></sup></p>
123
- <p>He performed that year as gay prostitute Willie O'Keefe in <a href="/wiki/Oliver_Stone" title="Oliver Stone">Oliver Stone</a>'s <i><a href="/wiki/JFK_(film)" title="JFK (film)">JFK</a></i>. He went on to play a prosecuting attorney in the military courtroom drama <i><a href="/wiki/A_Few_Good_Men_(film)" title="A Few Good Men (film)" class="mw-redirect">A Few Good Men</a></i>. Later that year he returned to the theater to play in <i>Spike Heels</i>, directed by <a href="/wiki/Michael_Greif" title="Michael Greif">Michael Greif</a>.</p>
124
- <div class="thumb tleft">
125
- <div class="thumbinner" style="width:152px;"><a href="/wiki/File:KevinBaconApr10.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/KevinBaconApr10.jpg/150px-KevinBaconApr10.jpg" width="150" height="222" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/KevinBaconApr10.jpg/225px-KevinBaconApr10.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6e/KevinBaconApr10.jpg/300px-KevinBaconApr10.jpg 2x" /></a>
126
- <div class="thumbcaption">
127
- <div class="magnify"><a href="/wiki/File:KevinBaconApr10.jpg" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
128
- Bacon receiving a Merit Award in April 2010</div>
129
- </div>
130
- </div>
131
- <p>In 1994, Bacon earned a <a href="/wiki/Golden_Globe_Award" title="Golden Globe Award">Golden Globe</a> nomination for his role in <i><a href="/wiki/The_River_Wild" title="The River Wild">The River Wild</a></i> opposite <a href="/wiki/Meryl_Streep" title="Meryl Streep">Meryl Streep</a>. He described the film to Chase in <i>Cosmopolitan</i> as a "grueling shoot," in which "every one of us fell out of the boat at one point or another and had to be saved." His next film, <i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i>, earned him the Broadcast Film Critic's Association Award in 1995, the same year that he starred in the <a href="/wiki/Blockbuster_(entertainment)" title="Blockbuster (entertainment)">blockbuster</a> hit <i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i>. Bacon reverted to his trademark dark role once again in <i><a href="/wiki/Sleepers_(film)" title="Sleepers (film)">Sleepers</a></i> in 1996. This role was in stark contrast to his appearance in the lighthearted romantic comedy, <i><a href="/wiki/Picture_Perfect_(1997_film)" title="Picture Perfect (1997 film)">Picture Perfect</a></i> the following year. Bacon also made his debut as a director in 1996 with the television film <i><a href="/wiki/Losing_Chase" title="Losing Chase">Losing Chase</a></i>, which was nominated for three Golden Globe Awards, winning one.<sup id="cite_ref-austin_10-0" class="reference"><a href="#cite_note-austin-10"><span>[</span>10<span>]</span></a></sup> Bacon again resurrected his oddball mystique that year as a mentally-challenged houseguest in <i><a href="/wiki/Digging_to_China" title="Digging to China">Digging to China</a></i>, and as a disc jockey corrupted by <a href="/wiki/Payola" title="Payola">payola</a> in <i><a href="/wiki/Telling_Lies_in_America_(film)" title="Telling Lies in America (film)" class="mw-redirect">Telling Lies in America</a></i>. As the executive producer of 1998's <i><a href="/wiki/Wild_Things" title="Wild Things">Wild Things</a></i>, Bacon reserved a supporting role for himself, and went on to star in <i><a href="/wiki/Stir_of_Echoes" title="Stir of Echoes">Stir of Echoes</a></i> (directed by <a href="/wiki/David_Koepp" title="David Koepp">David Koepp</a>) in 1999, and in <a href="/wiki/Paul_Verhoeven" title="Paul Verhoeven">Paul Verhoeven</a>'s <i><a href="/wiki/Hollow_Man" title="Hollow Man">Hollow Man</a></i> in 2000.</p>
132
- <div class="thumb tright">
133
- <div class="thumbinner" style="width:262px;"><a href="/wiki/File:KevinBaconTakingChanceFeb09.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/KevinBaconTakingChanceFeb09.jpg/260px-KevinBaconTakingChanceFeb09.jpg" width="260" height="245" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/KevinBaconTakingChanceFeb09.jpg/390px-KevinBaconTakingChanceFeb09.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/KevinBaconTakingChanceFeb09.jpg/520px-KevinBaconTakingChanceFeb09.jpg 2x" /></a>
134
- <div class="thumbcaption">
135
- <div class="magnify"><a href="/wiki/File:KevinBaconTakingChanceFeb09.jpg" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
136
- Bacon speaking before a premiere of <i><a href="/wiki/Taking_Chance" title="Taking Chance">Taking Chance</a></i> in February 2009</div>
137
- </div>
138
- </div>
139
- <p>Bacon, <a href="/wiki/Colin_Firth" title="Colin Firth">Colin Firth</a> and <a href="/wiki/Rachel_Blanchard" title="Rachel Blanchard">Rachel Blanchard</a> depict a <a href="/wiki/M%C3%A9nage_%C3%A0_trois" title="Ménage à trois">ménage à trois</a> in their film, <i><a href="/wiki/Where_the_Truth_Lies" title="Where the Truth Lies">Where the Truth Lies</a></i>. Bacon and director <a href="/wiki/Atom_Egoyan" title="Atom Egoyan">Atom Egoyan</a> have condemned the <a href="/wiki/MPAA" title="MPAA" class="mw-redirect">MPAA</a> ratings board decision to give the film their "<a href="/wiki/MPAA_film_rating_system" title="MPAA film rating system" class="mw-redirect">NC-17</a>" rating over the preferable "R". Bacon decried the decision, commenting: "I don't get it, when I see films (that) are extremely violent, extremely objectionable sometimes in terms of the roles that women play, slide by with an R, no problem, because the people happen to have more of their clothes on."<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span>[</span>11<span>]</span></a></sup> Bacon was again acclaimed for a dark starring role playing an offending <a href="/wiki/Pedophile" title="Pedophile" class="mw-redirect">pedophile</a> on parole in the <a href="/wiki/2004_in_film" title="2004 in film">2004 film</a> <i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i>; he was nominated best actor receiving the Independent Spirit Award. He appeared in the <a href="/wiki/HBO_Films" title="HBO Films">HBO Films</a> production of <i><a href="/wiki/Taking_Chance" title="Taking Chance">Taking Chance</a></i>, a film based on a story of the same name written by Lieutenant Colonel <a href="/wiki/Michael_Strobl" title="Michael Strobl">Michael Strobl</a>, an American '<a href="/wiki/Desert_Storm" title="Desert Storm" class="mw-redirect">Desert Storm</a>' war veteran. The film premiered on HBO on February 21, 2009. Bacon won a Golden Globe Award and a <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Miniseries_or_Television_Movie" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie</a> for his role. On July 15, 2010, it was confirmed that Bacon would appear in <a href="/wiki/Matthew_Vaughn" title="Matthew Vaughn">Matthew Vaughn</a>'s <i><a href="/wiki/X-Men:_First_Class" title="X-Men: First Class">X-Men: First Class</a></i>.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span>[</span>12<span>]</span></a></sup> His character was mutant villain <a href="/wiki/Sebastian_Shaw_(comics)" title="Sebastian Shaw (comics)">Sebastian Shaw</a>.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span>[</span>13<span>]</span></a></sup></p>
140
- <p>In March 2012, Bacon was featured in a performance of <a href="/wiki/Dustin_Lance_Black" title="Dustin Lance Black">Dustin Lance Black</a>'s play, <i><a href="/wiki/8_(play)" title="8 (play)">'8'</a></i> — a staged reenactment of the <a href="/wiki/Perry_v._Brown" title="Perry v. Brown" class="mw-redirect">federal trial</a> that overturned California's <a href="/wiki/Proposition_8" title="Proposition 8" class="mw-redirect">Prop 8 ban</a> on same-sex marriage — as Attorney <a href="/wiki/Charles_J._Cooper" title="Charles J. Cooper">Charles J. Cooper</a>.<sup id="cite_ref-8_the_play_14-0" class="reference"><a href="#cite_note-8_the_play-14"><span>[</span>14<span>]</span></a></sup> The production was held at the <a href="/wiki/Wilshire_Ebell_Theatre" title="Wilshire Ebell Theatre" class="mw-redirect">Wilshire Ebell Theatre</a> and broadcast on YouTube to raise money for the <a href="/wiki/American_Foundation_for_Equal_Rights" title="American Foundation for Equal Rights">American Foundation for Equal Rights</a>.<sup id="cite_ref-8_play_video_15-0" class="reference"><a href="#cite_note-8_play_video-15"><span>[</span>15<span>]</span></a></sup><sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span>[</span>16<span>]</span></a></sup></p>
141
- <h2><span class="mw-headline" id="Personal_life">Personal life</span></h2>
142
- <p>Bacon has been married to actress <a href="/wiki/Kyra_Sedgwick" title="Kyra Sedgwick">Kyra Sedgwick</a> since September 4, 1988; they met on the set of the <a href="/wiki/PBS" title="PBS">PBS</a> version of <a href="/wiki/Lanford_Wilson" title="Lanford Wilson">Lanford Wilson</a>'s play <i><a href="/wiki/Lemon_Sky" title="Lemon Sky">Lemon Sky</a></i>. He has said "The time I was hitting what I considered to be bottom was also the time I met my wife, our kids were born, good things were happening. And I was able to keep supporting myself; that always gave me strength."<sup id="cite_ref-cosmo91_6-1" class="reference"><a href="#cite_note-cosmo91-6"><span>[</span>6<span>]</span></a></sup> Bacon and Sedgwick have starred together in <i><a href="/wiki/Pyrates" title="Pyrates">Pyrates</a>,</i> <i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i>, <i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i>, and <i><a href="/wiki/Loverboy_(2005_film)" title="Loverboy (2005 film)">Loverboy</a></i>. They have two children, Travis Sedgwick Bacon (born June 23, 1989 in Los Angeles, California) and <a href="/wiki/Sosie_Ruth_Bacon" title="Sosie Ruth Bacon" class="mw-redirect">Sosie Ruth Bacon</a> (born March 15, 1992). The family resides on the <a href="/wiki/Upper_West_Side" title="Upper West Side">Upper West Side</a> of <a href="/wiki/Manhattan" title="Manhattan">Manhattan</a>.</p>
143
- <p>Bacon has spoken out for the separation of church and state,<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span>[</span>17<span>]</span></a></sup><sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span>[</span>18<span>]</span></a></sup> and told <i><a href="/wiki/The_Times" title="The Times">The Times</a></i> in 2005 that he did not "believe in God."<sup id="cite_ref-19" class="reference"><a href="#cite_note-19"><span>[</span>19<span>]</span></a></sup> However, he has also said that he is not anti-religion.<sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span>[</span>20<span>]</span></a></sup></p>
144
- <p>Bacon and Sedgwick appeared in <a href="/wiki/Will.i.am" title="Will.i.am">will.i.am</a>'s video <a href="/wiki/It%27s_a_New_Day_(song)" title="It's a New Day (song)">"It's a New Day"</a>, which was released following <a href="/wiki/Barack_Obama" title="Barack Obama">Barack Obama</a>'s 2008 presidential win.</p>
145
- <p>Bacon and Sedgwick lost most of their savings in the <a href="/wiki/Ponzi_scheme" title="Ponzi scheme">Ponzi scheme</a> of infamous fraudulent investor <a href="/wiki/Bernard_Madoff" title="Bernard Madoff">Bernard Madoff</a>.<sup id="cite_ref-financialpost_21-0" class="reference"><a href="#cite_note-financialpost-21"><span>[</span>21<span>]</span></a></sup><sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span>[</span>22<span>]</span></a></sup></p>
146
- <p>Bacon and Sedgwick learned in 2011 via their appearance on the PBS TV show <i>Finding Your Roots</i> with <a href="/wiki/Henry_Louis_Gates" title="Henry Louis Gates">Henry Louis Gates</a> that he and Sedgwick are 9th cousins, once removed.<sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span>[</span>23<span>]</span></a></sup> Bacon and Sedgwick appeared in a video<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span>[</span>24<span>]</span></a></sup> promoting the "Bill of Reproductive Rights," supporting among other things a woman's right to choose and access to birth control. As of November 2012, Bacon starred in adverts for the British mobile and Internet service <a href="/wiki/EE_(telecommunications_company)" title="EE (telecommunications company)">EE</a>.</p>
147
- <h2><span class="mw-headline" id="Six_Degrees_of_Kevin_Bacon">Six Degrees of Kevin Bacon</span></h2>
148
- <div class="rellink relarticle mainarticle">Main article: <a href="/wiki/Six_Degrees_of_Kevin_Bacon" title="Six Degrees of Kevin Bacon">Six Degrees of Kevin Bacon</a></div>
149
- <p>Bacon is the subject of the <a href="/wiki/Trivia" title="Trivia">trivia</a> game titled <i>Six Degrees of Kevin Bacon</i>, based on the idea that, due to his prolific <a href="/wiki/Big_screen" title="Big screen" class="mw-redirect">screen</a> career covering a diverse range of genres, any Hollywood actor can be linked to another in a handful of steps based on their associations with Bacon. The name of the game derives from the idea of <a href="/wiki/Six_degrees_of_separation" title="Six degrees of separation">six degrees of separation</a>. Though he was initially dismayed by the game, the <a href="/wiki/Meme" title="Meme">meme</a> stuck, and Bacon eventually embraced it, forming the charitable initiative <a href="/wiki/SixDegrees.org" title="SixDegrees.org">SixDegrees.org</a>, a social networking site intended to link people and charities to each other.<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span>[</span>25<span>]</span></a></sup></p>
150
- <p>The measure of proximity to Bacon has been mathematically formalized as the <a href="/wiki/Six_Degrees_of_Kevin_Bacon#Bacon_numbers" title="Six Degrees of Kevin Bacon">Bacon Index</a> and can be referenced at websites including Oracle Of Bacon, which is in turn based upon <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a> data. Google even added a feature to their search engine, whereby searching for an actor's name followed by the words 'Bacon Number' will show the ways in which that actor is connected to Kevin Bacon.<sup id="cite_ref-26" class="reference"><a href="#cite_note-26"><span>[</span>26<span>]</span></a></sup> A similar measurement exists in the mathematics community where one measures how far one is removed from co-writing a mathematical paper with the famous mathematician <a href="/wiki/Paul_Erd%C5%91s" title="Paul Erdős">Paul Erdős</a>. This is done by means of the <a href="/wiki/Erd%C5%91s_number" title="Erdős number">Erdős number</a> which is 0 for <a href="/wiki/Paul_Erd%C5%91s" title="Paul Erdős">Paul Erdős</a> himself, 1 for someone who co-wrote an article with him, 2 for someone who co-wrote with someone who co-wrote with him, etc. People have combined the <a href="/wiki/Six_Degrees_of_Kevin_Bacon#Bacon_numbers" title="Six Degrees of Kevin Bacon">Bacon Index</a> and the <a href="/wiki/Erd%C5%91s_number" title="Erdős number">Erdős number</a> to form the <a href="/wiki/Erd%C5%91s%E2%80%93Bacon_number" title="Erdős–Bacon number">Erdős–Bacon number</a>, which is essentially the sum of the two.</p>
151
- <h2><span class="mw-headline" id="Music">Music</span></h2>
152
- <p>Kevin formed a band called <a href="/wiki/The_Bacon_Brothers" title="The Bacon Brothers">The Bacon Brothers</a> with his brother, <a href="/wiki/Michael_Bacon_(musician)" title="Michael Bacon (musician)">Michael</a>. The duo has released six <a href="/wiki/Music_album" title="Music album" class="mw-redirect">albums</a>.</p>
153
- <h2><span class="mw-headline" id="Filmography">Filmography</span></h2>
154
- <h3><span class="mw-headline" id="Films">Films</span></h3>
155
- <table class="wikitable">
156
- <tr>
157
- <th>Year</th>
158
- <th>Film</th>
159
- <th>Role</th>
160
- <th>Notes</th>
161
- </tr>
162
- <tr>
163
- <td>1978</td>
164
- <td><i><a href="/wiki/National_Lampoon%27s_Animal_House" title="National Lampoon's Animal House">National Lampoon's Animal House</a></i></td>
165
- <td>Chip Diller</td>
166
- <td></td>
167
- </tr>
63
+ <table class="infobox vevent" cellspacing="3" style="border-spacing:3px;width:22em;font-size: 90%;;">
168
64
  <tr>
169
- <td rowspan="2">1979</td>
170
- <td><i><a href="/wiki/Starting_Over_(1979_film)" title="Starting Over (1979 film)">Starting Over</a></i></td>
171
- <td>Husband</td>
172
- <td></td>
65
+ <th colspan="2" class="summary" style="text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;">Billy Jack</th>
173
66
  </tr>
174
67
  <tr>
175
- <td><i><a href="/wiki/The_Gift_(1979_film)" title="The Gift (1979 film)">The Gift</a></i></td>
176
- <td>Teddy</td>
177
- <td></td>
178
- </tr>
179
- <tr>
180
- <td>1980</td>
181
- <td><i><a href="/wiki/Hero_at_Large" title="Hero at Large">Hero at Large</a></i></td>
182
- <td>2nd Teenager</td>
183
- <td></td>
184
- </tr>
185
- <tr>
186
- <td>1980</td>
187
- <td><i><a href="/wiki/Friday_the_13th_(1980_film)" title="Friday the 13th (1980 film)">Friday the 13th</a></i></td>
188
- <td>Jack Burrell</td>
189
- <td></td>
190
- </tr>
191
- <tr>
192
- <td>1981</td>
193
- <td><i><a href="/wiki/Only_When_I_Laugh_(film)" title="Only When I Laugh (film)">Only When I Laugh</a></i></td>
194
- <td>Don</td>
195
- <td></td>
196
- </tr>
197
- <tr>
198
- <td rowspan="2">1982</td>
199
- <td><i><a href="/wiki/Diner_(film)" title="Diner (film)">Diner</a></i></td>
200
- <td>Timothy Fenwick Jr.</td>
201
- <td></td>
202
- </tr>
203
- <tr>
204
- <td><i><a href="/wiki/Forty_Deuce" title="Forty Deuce">Forty Deuce</a></i></td>
205
- <td>Ricky</td>
206
- <td></td>
207
- </tr>
208
- <tr>
209
- <td>1983</td>
210
- <td><i>Enormous Changes at the Last Minute</i></td>
211
- <td>Dennis</td>
212
- <td></td>
213
- </tr>
214
- <tr>
215
- <td>1984</td>
216
- <td><i><a href="/wiki/Footloose_(1984_film)" title="Footloose (1984 film)">Footloose</a></i></td>
217
- <td>Ren McCormack</td>
218
- <td></td>
219
- </tr>
220
- <tr>
221
- <td>1986</td>
222
- <td><i><a href="/wiki/Quicksilver_(film)" title="Quicksilver (film)">Quicksilver</a></i></td>
223
- <td>Jack Casey</td>
224
- <td></td>
225
- </tr>
226
- <tr>
227
- <td rowspan="3">1987</td>
228
- <td><i><a href="/wiki/White_Water_Summer" title="White Water Summer">White Water Summer</a></i></td>
229
- <td>Vic</td>
230
- <td></td>
231
- </tr>
232
- <tr>
233
- <td><i><a href="/wiki/End_of_the_Line_(1987_film)" title="End of the Line (1987 film)">End of the Line</a></i></td>
234
- <td>Everett</td>
235
- <td></td>
236
- </tr>
237
- <tr>
238
- <td><i><a href="/wiki/Planes,_Trains_and_Automobiles" title="Planes, Trains and Automobiles">Planes, Trains and Automobiles</a></i></td>
239
- <td>Taxi Racer</td>
240
- <td></td>
241
- </tr>
242
- <tr>
243
- <td>1988</td>
244
- <td><i><a href="/wiki/She%27s_Having_a_Baby" title="She's Having a Baby">She's Having a Baby</a></i></td>
245
- <td>Jefferson "Jake" Edward Briggs</td>
246
- <td></td>
247
- </tr>
248
- <tr>
249
- <td rowspan="2">1989</td>
250
- <td><i><a href="/wiki/Criminal_Law_(film)" title="Criminal Law (film)">Criminal Law</a></i></td>
251
- <td>Martin Thiel</td>
252
- <td></td>
253
- </tr>
254
- <tr>
255
- <td><i><a href="/wiki/The_Big_Picture_(1989_film)" title="The Big Picture (1989 film)">The Big Picture</a></i></td>
256
- <td>Nick Chapman</td>
257
- <td></td>
258
- </tr>
259
- <tr>
260
- <td rowspan="2">1990</td>
261
- <td><i><a href="/wiki/Tremors_(film)" title="Tremors (film)">Tremors</a></i></td>
262
- <td>Valentine "Val" McKee</td>
263
- <td></td>
264
- </tr>
265
- <tr>
266
- <td><i><a href="/wiki/Flatliners" title="Flatliners">Flatliners</a></i></td>
267
- <td>David Labraccio</td>
268
- <td></td>
269
- </tr>
270
- <tr>
271
- <td rowspan="5">1991</td>
272
- <td><i><a href="/wiki/Pyrates" title="Pyrates">Pyrates</a></i></td>
273
- <td>Ari</td>
274
- <td></td>
275
- </tr>
276
- <tr>
277
- <td><i><a href="/wiki/Queens_Logic" title="Queens Logic">Queens Logic</a></i></td>
278
- <td>Dennis</td>
279
- <td></td>
280
- </tr>
281
- <tr>
282
- <td><i><a href="/wiki/He_Said,_She_Said" title="He Said, She Said">He Said, She Said</a></i></td>
283
- <td>Dan Hanson</td>
284
- <td></td>
285
- </tr>
286
- <tr>
287
- <td><i><a href="/wiki/JFK_(film)" title="JFK (film)">JFK</a></i></td>
288
- <td>Willie O'Keefe</td>
289
- <td></td>
290
- </tr>
291
- <tr>
292
- <td><i><a href="/wiki/A_Little_Vicious" title="A Little Vicious">A Little Vicious</a></i></td>
293
- <td>Narrator</td>
294
- <td>Short subject</td>
295
- </tr>
296
- <tr>
297
- <td>1992</td>
298
- <td><i><a href="/wiki/A_Few_Good_Men" title="A Few Good Men">A Few Good Men</a></i></td>
299
- <td>Capt. Jack Ross</td>
300
- <td></td>
301
- </tr>
302
- <tr>
303
- <td rowspan="3">1994</td>
304
- <td><i><a href="/wiki/The_Air_Up_There" title="The Air Up There">The Air Up There</a></i></td>
305
- <td>Jimmy Dolan</td>
306
- <td></td>
307
- </tr>
308
- <tr>
309
- <td><i><a href="/wiki/The_River_Wild" title="The River Wild">The River Wild</a></i></td>
310
- <td>Wade</td>
311
- <td>Nominated - <a href="/wiki/Golden_Globe_Award_for_Best_Supporting_Actor_-_Motion_Picture" title="Golden Globe Award for Best Supporting Actor - Motion Picture" class="mw-redirect">Golden Globe Award for Best Supporting Actor – Motion Picture</a></td>
312
- </tr>
313
- <tr>
314
- <td><i>New York Skyride</i></td>
315
- <td>Narrator</td>
316
- <td>Short subject</td>
317
- </tr>
318
- <tr>
319
- <td rowspan="3">1995</td>
320
- <td><i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i></td>
321
- <td>Henri Young</td>
322
- <td><a href="/wiki/Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Broadcast Film Critics Association Award for Best Actor">Broadcast Film Critics Association Award for Best Actor</a><br />
323
- Nominated - <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Supporting_Role" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Supporting Role">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Supporting Role</a></td>
324
- </tr>
325
- <tr>
326
- <td><i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i></td>
327
- <td><a href="/wiki/Jack_Swigert" title="Jack Swigert">Jack Swigert</a></td>
328
- <td><a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a></td>
329
- </tr>
330
- <tr>
331
- <td><i><a href="/wiki/Balto_(film)" title="Balto (film)">Balto</a></i></td>
332
- <td><a href="/wiki/List_of_Balto_characters#Balto" title="List of Balto characters">Balto</a></td>
333
- <td>Voice only</td>
334
- </tr>
335
- <tr>
336
- <td>1996</td>
337
- <td><i><a href="/wiki/Sleepers_(film)" title="Sleepers (film)">Sleepers</a></i></td>
338
- <td>Sean Nokes</td>
339
- <td></td>
340
- </tr>
341
- <tr>
342
- <td rowspan="3">1997</td>
343
- <td><i><a href="/wiki/Picture_Perfect_(1997_film)" title="Picture Perfect (1997 film)">Picture Perfect</a></i></td>
344
- <td>Sam Mayfair</td>
345
- <td></td>
346
- </tr>
347
- <tr>
348
- <td><i><a href="/wiki/Destination_Anywhere" title="Destination Anywhere">Destination Anywhere</a></i></td>
349
- <td>Mike</td>
350
- <td></td>
351
- </tr>
352
- <tr>
353
- <td><i><a href="/wiki/Telling_Lies_in_America" title="Telling Lies in America">Telling Lies in America</a></i></td>
354
- <td>Billy Magic</td>
355
- <td></td>
356
- </tr>
357
- <tr>
358
- <td rowspan="2">1998</td>
359
- <td><i><a href="/wiki/Digging_to_China" title="Digging to China">Digging to China</a></i></td>
360
- <td>Ricky Schroth</td>
361
- <td></td>
362
- </tr>
363
- <tr>
364
- <td><i><a href="/wiki/Wild_Things" title="Wild Things">Wild Things</a></i></td>
365
- <td>Sgt. Ray Duquette</td>
366
- <td></td>
367
- </tr>
368
- <tr>
369
- <td>1999</td>
370
- <td><i><a href="/wiki/Stir_of_Echoes" title="Stir of Echoes">Stir of Echoes</a></i></td>
371
- <td>Tom Witzky</td>
372
- <td></td>
373
- </tr>
374
- <tr>
375
- <td rowspan="3">2000</td>
376
- <td><i><a href="/wiki/My_Dog_Skip_(film)" title="My Dog Skip (film)">My Dog Skip</a></i></td>
377
- <td>Jack Morris</td>
378
- <td></td>
379
- </tr>
380
- <tr>
381
- <td><i><a href="/wiki/We_Married_Margo" title="We Married Margo">We Married Margo</a></i></td>
382
- <td>Himself</td>
383
- <td></td>
384
- </tr>
385
- <tr>
386
- <td><i><a href="/wiki/Hollow_Man" title="Hollow Man">Hollow Man</a></i></td>
387
- <td>Sebastian Caine</td>
388
- <td></td>
389
- </tr>
390
- <tr>
391
- <td>2001</td>
392
- <td><i><a href="/wiki/Novocaine_(film)" title="Novocaine (film)">Novocaine</a></i></td>
393
- <td>Lance Phelps</td>
394
- <td></td>
395
- </tr>
396
- <tr>
397
- <td>2002</td>
398
- <td><i><a href="/wiki/Trapped_(2002_film)" title="Trapped (2002 film)">Trapped</a></i></td>
399
- <td>Joe Hickey</td>
400
- <td></td>
401
- </tr>
402
- <tr>
403
- <td rowspan="3">2003</td>
404
- <td><i><a href="/wiki/Mystic_River_(film)" title="Mystic River (film)">Mystic River</a></i></td>
405
- <td>Sean Devine</td>
406
- <td><a href="/wiki/Boston_Society_of_Film_Critics_Award_for_Best_Cast" title="Boston Society of Film Critics Award for Best Cast">Boston Society of Film Critics Award for Best Cast</a><br />
407
- Nominated - <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a></td>
408
- </tr>
409
- <tr>
410
- <td><i><a href="/wiki/In_the_Cut" title="In the Cut">In the Cut</a></i></td>
411
- <td>John Graham</td>
412
- <td></td>
413
- </tr>
414
- <tr>
415
- <td><i>Imagine New York</i></td>
416
- <td>Himself</td>
417
- <td>Short subject</td>
418
- </tr>
419
- <tr>
420
- <td rowspan="3">2004</td>
421
- <td><i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i></td>
422
- <td>Walter</td>
423
- <td>Nominated - <a href="/wiki/Chlotrudis_Award_for_Best_Actor" title="Chlotrudis Award for Best Actor">Chlotrudis Award for Best Actor</a><br />
424
- Nominated - <a href="/wiki/Independent_Spirit_Award_for_Best_Lead_Male" title="Independent Spirit Award for Best Lead Male" class="mw-redirect">Independent Spirit Award for Best Lead Male</a><br />
425
- Nominated - <a href="/wiki/Satellite_Award_for_Best_Actor_-_Motion_Picture_Drama" title="Satellite Award for Best Actor - Motion Picture Drama" class="mw-redirect">Satellite Award for Best Actor – Motion Picture Drama</a></td>
426
- </tr>
427
- <tr>
428
- <td><i><a href="/wiki/Cavedweller_(film)" title="Cavedweller (film)">Cavedweller</a></i></td>
429
- <td>Randall Pritchard</td>
430
- <td></td>
431
- </tr>
432
- <tr>
433
- <td>"Natural Disasters: Forces of Nature"</td>
434
- <td>Narrator</td>
435
- <td>Short subject</td>
436
- </tr>
437
- <tr>
438
- <td rowspan="3">2005</td>
439
- <td><i><a href="/wiki/Loverboy_(2005_film)" title="Loverboy (2005 film)">Loverboy</a></i></td>
440
- <td>Marty</td>
441
- <td>Also directed</td>
68
+ <td colspan="2" style="text-align:center;"><a href="/wiki/File:Billy_Jack_poster.jpg" class="image"><img alt="Billy Jack poster.jpg" src="//upload.wikimedia.org/wikipedia/en/thumb/4/48/Billy_Jack_poster.jpg/220px-Billy_Jack_poster.jpg" width="220" height="329" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/en/4/48/Billy_Jack_poster.jpg 1.5x, //upload.wikimedia.org/wikipedia/en/4/48/Billy_Jack_poster.jpg 2x" /></a><br />
69
+ <div style="font-size: 95%; line-height: 1.5em;">Theatrical release poster.</div>
70
+ </td>
442
71
  </tr>
443
72
  <tr>
444
- <td><i><a href="/wiki/Beauty_Shop" title="Beauty Shop">Beauty Shop</a></i></td>
445
- <td>Jorge</td>
446
- <td></td>
73
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Directed by</th>
74
+ <td><a href="/wiki/Tom_Laughlin" title="Tom Laughlin">Tom Laughlin</a><br />
75
+ <small>as T.C. Frank</small></td>
447
76
  </tr>
448
77
  <tr>
449
- <td><i><a href="/wiki/Where_the_Truth_Lies" title="Where the Truth Lies">Where the Truth Lies</a></i></td>
450
- <td>Lanny Morris</td>
451
- <td></td>
78
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Produced by</th>
79
+ <td><a href="/wiki/Tom_Laughlin" title="Tom Laughlin">Tom Laughlin</a><br />
80
+ <small>as Mary Rose Solti</small></td>
452
81
  </tr>
453
82
  <tr>
454
- <td rowspan="2">2007</td>
455
- <td><i><a href="/wiki/Death_Sentence_(2007_film)" title="Death Sentence (2007 film)">Death Sentence</a></i></td>
456
- <td>Nick Hume</td>
457
- <td></td>
83
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Written by</th>
84
+ <td><a href="/wiki/Tom_Laughlin" title="Tom Laughlin">Tom Laughlin</a><br />
85
+ <small>(as Frank Christina)</small><br />
86
+ <a href="/wiki/Delores_Taylor" title="Delores Taylor">Delores Taylor</a><br />
87
+ <small>(as Theresa Christina)</small></td>
458
88
  </tr>
459
89
  <tr>
460
- <td><i><a href="/wiki/Rails_%26_Ties" title="Rails &amp; Ties">Rails &amp; Ties</a></i></td>
461
- <td>Tom Stark</td>
462
- <td></td>
90
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Starring</th>
91
+ <td><a href="/wiki/Tom_Laughlin" title="Tom Laughlin">Tom Laughlin</a><br />
92
+ <a href="/wiki/Delores_Taylor" title="Delores Taylor">Delores Taylor</a></td>
463
93
  </tr>
464
94
  <tr>
465
- <td rowspan="3">2008</td>
466
- <td><i><a href="/wiki/The_Air_I_Breathe" title="The Air I Breathe">The Air I Breathe</a></i></td>
467
- <td>Love</td>
468
- <td></td>
95
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Music by</th>
96
+ <td><a href="/wiki/Mundell_Lowe" title="Mundell Lowe">Mundell Lowe</a>, <a href="/wiki/Dennis_Lambert" title="Dennis Lambert">Dennis Lambert</a>, <a href="/wiki/Brian_Potter" title="Brian Potter">Brian Potter</a></td>
469
97
  </tr>
470
98
  <tr>
471
- <td><i><a href="/wiki/Frost/Nixon_(film)" title="Frost/Nixon (film)">Frost/Nixon</a></i></td>
472
- <td><a href="/wiki/Jack_Brennan" title="Jack Brennan">Jack Brennan</a></td>
473
- <td>Nominated - <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a></td>
99
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Cinematography</th>
100
+ <td><a href="/wiki/Fred_J._Koenekamp" title="Fred J. Koenekamp" class="mw-redirect">Fred Koenekamp</a><br />
101
+ John M. Stephens</td>
474
102
  </tr>
475
103
  <tr>
476
- <td><i><a href="/wiki/Saving_Angelo" title="Saving Angelo">Saving Angelo</a></i></td>
477
- <td>Brent</td>
478
- <td>Short subject</td>
104
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Editing by</th>
105
+ <td>Larry Heath<br />
106
+ Marion Rothman</td>
479
107
  </tr>
480
108
  <tr>
481
- <td rowspan="2">2009</td>
482
- <td><i><a href="/wiki/The_Magic_7" title="The Magic 7">The Magic 7</a></i></td>
483
- <td>Himself</td>
484
- <td></td>
109
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Studio</th>
110
+ <td>National Student Film Corporation</td>
485
111
  </tr>
486
112
  <tr>
487
- <td><i><a href="/wiki/My_One_and_Only_(film)" title="My One and Only (film)">My One and Only</a></i></td>
488
- <td>Dan</td>
489
- <td></td>
113
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Distributed by</th>
114
+ <td><a href="/wiki/Warner_Bros." title="Warner Bros.">Warner Bros.</a></td>
490
115
  </tr>
491
116
  <tr>
492
- <td rowspan="4">2011</td>
493
- <td><i><a href="/wiki/Elephant_White_(film)" title="Elephant White (film)" class="mw-redirect">Elephant White</a></i></td>
494
- <td>Jimmy the Brit</td>
495
- <td></td>
117
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Release dates</th>
118
+ <td>May 1, 1971</td>
496
119
  </tr>
497
120
  <tr>
498
- <td><i><a href="/wiki/Super_(2011_film)" title="Super (2011 film)" class="mw-redirect">Super</a></i></td>
499
- <td>Jock</td>
500
- <td></td>
121
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Running time</th>
122
+ <td>114 min.</td>
501
123
  </tr>
502
124
  <tr>
503
- <td><i><a href="/wiki/X-Men:_First_Class" title="X-Men: First Class">X-Men: First Class</a></i></td>
504
- <td><a href="/wiki/Sebastian_Shaw_(comics)" title="Sebastian Shaw (comics)">Sebastian Shaw</a></td>
505
- <td>Nominated - <a href="/wiki/Teen_Choice_Award" title="Teen Choice Award" class="mw-redirect">Teen Choice Award</a> for Choice Movie Villain</td>
125
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Country</th>
126
+ <td>United States</td>
506
127
  </tr>
507
128
  <tr>
508
- <td><i><a href="/wiki/Crazy,_Stupid,_Love." title="Crazy, Stupid, Love.">Crazy, Stupid, Love.</a></i></td>
509
- <td>David Lindhagen</td>
510
- <td></td>
129
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Language</th>
130
+ <td>English</td>
511
131
  </tr>
512
132
  <tr>
513
- <td>2012</td>
514
- <td><i><a href="/wiki/Jayne_Mansfield%27s_Car" title="Jayne Mansfield's Car">Jayne Mansfield's Car</a></i></td>
515
- <td>Carroll Caldwell</td>
516
- <td></td>
133
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Budget</th>
134
+ <td>$800,000</td>
517
135
  </tr>
518
136
  <tr>
519
- <td>2013</td>
520
- <td><i><a href="/wiki/R.I.P.D." title="R.I.P.D.">R.I.P.D.</a></i></td>
521
- <td>Bobby Hayes</td>
522
- <td></td>
137
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Box office</th>
138
+ <td>$32,500,000<sup id="cite_ref-NYT_1-0" class="reference"><a href="#cite_note-NYT-1"><span>[</span>1<span>]</span></a></sup></td>
523
139
  </tr>
524
140
  </table>
525
- <h3><span class="mw-headline" id="Television">Television</span></h3>
526
- <table class="wikitable sortable">
527
- <tr>
528
- <th>Year</th>
529
- <th>Title</th>
530
- <th>Role</th>
531
- <th>Notes</th>
532
- </tr>
533
- <tr>
534
- <td>1979</td>
535
- <td><i><a href="/wiki/Search_for_Tomorrow" title="Search for Tomorrow">Search for Tomorrow</a></i></td>
536
- <td>Todd Adamson</td>
537
- <td></td>
538
- </tr>
539
- <tr>
540
- <td>1980–1981</td>
541
- <td><i><a href="/wiki/Guiding_Light" title="Guiding Light">Guiding Light</a></i></td>
542
- <td>T. J. 'Tim' Werner No.2</td>
543
- <td>Six episodes</td>
544
- </tr>
545
- <tr>
546
- <td>1983</td>
547
- <td><i>The Demon Murder Case</i></td>
548
- <td>Kenny Miller</td>
549
- <td></td>
550
- </tr>
551
- <tr>
552
- <td>1984</td>
553
- <td><i><a href="/wiki/Mister_Roberts_(1984_film)" title="Mister Roberts (1984 film)">Mister Roberts</a></i></td>
554
- <td>Ens. Frank Pulver</td>
555
- <td></td>
556
- </tr>
141
+ <p><i><b>Billy Jack</b></i> is a 1971 action/drama <a href="/wiki/Independent_film" title="Independent film">independent</a> film; the second of four films centering on a character of the same name which began with the movie <i><a href="/wiki/The_Born_Losers" title="The Born Losers">The Born Losers</a></i> (1967), played by <a href="/wiki/Tom_Laughlin" title="Tom Laughlin">Tom Laughlin</a>, who directed and co-wrote the script. Filming began in <a href="/wiki/Prescott,_Arizona" title="Prescott, Arizona">Prescott, Arizona</a>, in the fall of 1969, but the movie was not completed until 1971. <a href="/wiki/American_International_Pictures" title="American International Pictures">American International Pictures</a> pulled out, halting filming. <a href="/wiki/20th_Century_Fox" title="20th Century Fox">20th Century-Fox</a> came forward and filming eventually resumed but when that studio refused to distribute the film, <a href="/wiki/Warner_Bros." title="Warner Bros.">Warner Bros.</a> stepped forward.</p>
142
+ <p>Still, the film lacked distribution, so Laughlin booked it in to theaters himself in 1971.<sup id="cite_ref-NYT_1-1" class="reference"><a href="#cite_note-NYT-1"><span>[</span>1<span>]</span></a></sup> The film died at the box office in its initial run, but eventually took in more than $40 million in its 1973 re-release, with distribution supervised by Laughlin.</p>
143
+ <p></p>
144
+ <div id="toc" class="toc">
145
+ <div id="toctitle">
146
+ <h2>Contents</h2>
147
+ </div>
148
+ <ul>
149
+ <li class="toclevel-1 tocsection-1"><a href="#Plot"><span class="tocnumber">1</span> <span class="toctext">Plot</span></a></li>
150
+ <li class="toclevel-1 tocsection-2"><a href="#Box-office_and_critical_reception"><span class="tocnumber">2</span> <span class="toctext">Box-office and critical reception</span></a></li>
151
+ <li class="toclevel-1 tocsection-3"><a href="#Soundtrack"><span class="tocnumber">3</span> <span class="toctext">Soundtrack</span></a>
152
+ <ul>
153
+ <li class="toclevel-2 tocsection-4"><a href="#Reception"><span class="tocnumber">3.1</span> <span class="toctext">Reception</span></a></li>
154
+ <li class="toclevel-2 tocsection-5"><a href="#Track_listing"><span class="tocnumber">3.2</span> <span class="toctext">Track listing</span></a></li>
155
+ <li class="toclevel-2 tocsection-6"><a href="#Personnel"><span class="tocnumber">3.3</span> <span class="toctext">Personnel</span></a></li>
156
+ </ul>
157
+ </li>
158
+ <li class="toclevel-1 tocsection-7"><a href="#Influence"><span class="tocnumber">4</span> <span class="toctext">Influence</span></a></li>
159
+ <li class="toclevel-1 tocsection-8"><a href="#Billy_Jack_in_popular_culture"><span class="tocnumber">5</span> <span class="toctext"><i>Billy Jack</i> in popular culture</span></a></li>
160
+ <li class="toclevel-1 tocsection-9"><a href="#References"><span class="tocnumber">6</span> <span class="toctext">References</span></a></li>
161
+ <li class="toclevel-1 tocsection-10"><a href="#External_links"><span class="tocnumber">7</span> <span class="toctext">External links</span></a></li>
162
+ </ul>
163
+ </div>
164
+ <p></p>
165
+ <h2><span class="mw-headline" id="Plot">Plot</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=1" title="Edit section: Plot">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
166
+ <p>Billy Jack is a "<a href="/wiki/Half-breed" title="Half-breed">half-breed</a>" <a href="/wiki/Navajo_people" title="Navajo people">American Navajo Indian</a><sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (December 2012)">citation needed</span></a></i>]</sup>, a <a href="/wiki/Special_Forces_(United_States_Army)" title="Special Forces (United States Army)">Green Beret</a> <a href="/wiki/Vietnam_War" title="Vietnam War">Vietnam War</a> <a href="/wiki/Veteran" title="Veteran">veteran</a>, and a <a href="/wiki/Hapkido" title="Hapkido">hapkido</a> master. The character made his début in <i><a href="/wiki/The_Born_Losers" title="The Born Losers">The Born Losers</a></i> (1967), a "<a href="/wiki/Outlaw_motorcycle_club" title="Outlaw motorcycle club">biker</a> film" about a motorcycle gang terrorizing a California town. Billy Jack rises to the occasion to defeat the gang when defending a college student with evidence against them for gang rape.</p>
167
+ <p>In the second film, <i>Billy Jack</i>, the <a href="/wiki/Hero" title="Hero">hero</a> defends the <a href="/wiki/Hippie" title="Hippie">hippie</a>-themed Freedom School and students from townspeople who do not understand or like the <a href="/wiki/Counterculture_of_the_1960s" title="Counterculture of the 1960s">counterculture</a> students. The school is organized by Jean Roberts (<a href="/wiki/Delores_Taylor" title="Delores Taylor">Delores Taylor</a>).</p>
168
+ <p>In one scene, a group of Indian children from the school go to town for ice cream and are refused service and then abused and humiliated by Bernard Posner and his gang. This prompts a violent outburst by Billy. Later, Billy's girlfriend Jean is raped and an Indian student is murdered by Bernard (David Roya), the son of the county's corrupt <a href="/wiki/Political_boss" title="Political boss">political boss</a> (<a href="/wiki/Bert_Freed" title="Bert Freed">Bert Freed</a>). Billy confronts Bernard and sustains a gunshot wound before killing him with a hand strike to the throat, after Bernard was having sex with a 13-year-old girl. After a climactic shootout with the police, and pleading from Jean, Billy Jack surrenders to the authorities and is arrested. As he is driven away, a large crowd of supporters raise their fists as a show of defiance and support. The plot continues in the sequel, <i><a href="/wiki/The_Trial_of_Billy_Jack" title="The Trial of Billy Jack">The Trial of Billy Jack</a></i>.</p>
169
+ <h2><span class="mw-headline" id="Box-office_and_critical_reception">Box-office and critical reception</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=2" title="Edit section: Box-office and critical reception">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
170
+ <p>The film was re-released in 1973 and earned an estimated $8,275,000 in North American rentals.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>2<span>]</span></a></sup></p>
171
+ <p><i>Billy Jack</i> holds a "Fresh" rating of 62% at <a href="/wiki/Rotten_Tomatoes" title="Rotten Tomatoes">Rotten Tomatoes</a>.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span>[</span>3<span>]</span></a></sup> As of February 2014 it has a score of 6.1 on <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">IMDB</a>.</p>
172
+ <p>In his <i>Movie and Video Guide,</i> film critic Leonard Maltin writes: "Seen today, its politics are highly questionable, and its 'message' of peace looks ridiculous, considering the amount of violence in the film."</p>
173
+ <p><a href="/wiki/Roger_Ebert" title="Roger Ebert">Roger Ebert</a> also saw the message of the film as self-contradictory, writing: "I'm also somewhat disturbed by the central theme of the movie. 'Billy Jack' seems to be saying the same thing as '<a href="/wiki/The_Born_Losers" title="The Born Losers">Born Losers</a>,' that a gun is better than a constitution in the enforcement of justice."<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>4<span>]</span></a></sup></p>
174
+ <p>Delores Taylor received a <a href="/wiki/Golden_Globe" title="Golden Globe" class="mw-redirect">Golden Globe</a> nomination as Most Promising Newcoming Actress. Tom Laughlin won the grand prize for the film at the 1971 <a href="/wiki/Taormina_International_Film_Festival" title="Taormina International Film Festival" class="mw-redirect">Taormina International Film Festival</a> in Italy.</p>
175
+ <h2><span class="mw-headline" id="Soundtrack">Soundtrack</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=3" title="Edit section: Soundtrack">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
176
+ <table class="infobox vevent haudio" cellspacing="3" style="border-spacing:3px;width:22em;">
557
177
  <tr>
558
- <td>1985</td>
559
- <td><i>The Little Sister</i></td>
560
- <td>Probation Officer</td>
561
- <td>Uncredited</td>
178
+ <th colspan="2" class="summary album" style="text-align:center;font-size:125%;font-weight:bold;font-style: italic; background-color: gainsboro;">Billy Jack</th>
562
179
  </tr>
563
180
  <tr>
564
- <td>1988</td>
565
- <td><i><a href="/wiki/Lemon_Sky" title="Lemon Sky">Lemon Sky</a></i></td>
566
- <td>Alan</td>
567
- <td></td>
181
+ <th colspan="2" style="text-align:center;background-color: gainsboro;"><a href="/wiki/Soundtrack_album" title="Soundtrack album">Soundtrack album</a> by <span class="contributor"><a href="/wiki/Mundell_Lowe" title="Mundell Lowe">Mundell Lowe</a></span></th>
568
182
  </tr>
569
183
  <tr>
570
- <td>1994</td>
571
- <td><i><a href="/wiki/Frasier" title="Frasier">Frasier</a></i></td>
572
- <td>Vic</td>
573
- <td>Voice only<br />
574
- Episode: "Adventures in Paradise: Part 2"</td>
184
+ <th scope="row" style="text-align:left;">Released</th>
185
+ <td class="published">1972</td>
575
186
  </tr>
576
187
  <tr>
577
- <td>2000</td>
578
- <td><i><a href="/wiki/God,_the_Devil_and_Bob" title="God, the Devil and Bob">God, the Devil and Bob</a></i></td>
579
- <td rowspan="3">Himself</td>
580
- <td>Voice only<br />
581
- Episode: "Bob Gets Involved"</td>
188
+ <th scope="row" style="text-align:left;">Recorded</th>
189
+ <td>1971</td>
582
190
  </tr>
583
191
  <tr>
584
- <td>2002-2006</td>
585
- <td><i><a href="/wiki/Will_%26_Grace" title="Will &amp; Grace">Will &amp; Grace</a></i></td>
586
- <td>Episode: "Bacon and Eggs"<br />
587
- "The Finale"</td>
192
+ <th scope="row" style="text-align:left;"><a href="/wiki/Music_genre" title="Music genre">Genre</a></th>
193
+ <td class="category"><a href="/wiki/Film_score" title="Film score">Film score</a></td>
588
194
  </tr>
589
195
  <tr>
590
- <td>2008</td>
591
- <td><i><a href="/wiki/The_Colbert_Report" title="The Colbert Report">The Colbert Report</a></i></td>
592
- <td>Episode: "The Writers Return!"</td>
196
+ <th scope="row" style="text-align:left;"><a href="/wiki/Record_label" title="Record label">Label</a></th>
197
+ <td><a href="/wiki/Warner_Bros._Records" title="Warner Bros. Records">Warner Bros.</a><br />
198
+ <small>WS 1926</small></td>
593
199
  </tr>
594
200
  <tr>
595
- <td>2009</td>
596
- <td><i><a href="/wiki/Taking_Chance" title="Taking Chance">Taking Chance</a></i></td>
597
- <td>Lt. Col. <a href="/wiki/Michael_Strobl" title="Michael Strobl">Michael Strobl</a></td>
598
- <td><a href="/wiki/Golden_Globe_Award_for_Best_Actor_%E2%80%93_Miniseries_or_Television_Film" title="Golden Globe Award for Best Actor – Miniseries or Television Film">Golden Globe Award for Best Actor&#160;– Miniseries or Television Film</a><br />
599
- <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Miniseries_or_Television_Movie" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie</a><br />
600
- Nominated - <a href="/wiki/Primetime_Emmy_Award_for_Outstanding_Lead_Actor_%E2%80%93_Miniseries_or_a_Movie" title="Primetime Emmy Award for Outstanding Lead Actor – Miniseries or a Movie" class="mw-redirect">Emmy Award for Outstanding Lead Actor&#160;– Miniseries or a Movie</a><br />
601
- Nominated - <a href="/wiki/Satellite_Award_for_Best_Actor_%E2%80%93_Miniseries_or_Television_Film" title="Satellite Award for Best Actor – Miniseries or Television Film">Satellite Award for Best Actor&#160;– Miniseries or Television Film</a></td>
201
+ <th scope="row" style="text-align:left;"><a href="/wiki/Record_producer" title="Record producer">Producer</a></th>
202
+ <td>Mundell Lowe</td>
602
203
  </tr>
603
204
  <tr>
604
- <td>2010</td>
605
- <td><i><a href="/wiki/Bored_to_Death" title="Bored to Death">Bored to Death</a></i></td>
606
- <td>Himself</td>
607
- <td>Episode: "Forty-Two Down!"</td>
205
+ <th colspan="2" style="text-align:center;background-color: gainsboro;"><a href="/wiki/Mundell_Lowe" title="Mundell Lowe">Mundell Lowe</a> chronology</th>
608
206
  </tr>
609
207
  <tr>
610
- <td>2011</td>
611
- <td><i><a href="/wiki/Robot_Chicken" title="Robot Chicken">Robot Chicken</a></i></td>
612
- <td>Pringle<br />
613
- Ren McCormack</td>
614
- <td>Voice only<br />
615
- Episode: "Beastmaster and Commander"</td>
616
- </tr>
208
+ <td colspan="2" style="text-align:center;">
209
+ <table style="width:100%; background: transparent; text-align: center; line-height: 1.4em; vertical-align: top">
617
210
  <tr>
618
- <td>2013–present</td>
619
- <td><i><a href="/wiki/The_Following" title="The Following">The Following</a></i></td>
620
- <td>Ryan Hardy</td>
621
- <td>Lead role<br />
622
- <a href="/wiki/Saturn_Award_for_Best_Actor_on_Television" title="Saturn Award for Best Actor on Television">Saturn Award for Best Actor on Television</a> <small>(2013)</small></td>
211
+ <td style="width: 33%; padding: 0.2em 0.1em 0.2em 0"><i><a href="/wiki/Satan_in_High_Heels#Soundtrack" title="Satan in High Heels">Satan in High Heels</a></i><br />
212
+ (1961)</td>
213
+ <td style="width: 33%; padding: 0.2em 0.1em 0.2em 0.1em"><i><b>Billy Jack</b></i><br />
214
+ (1971)</td>
215
+ <td style="width: 33%; padding: 0.2em 0 0.2em 0.1em"><i><a href="/w/index.php?title=California_Guitar&amp;action=edit&amp;redlink=1" class="new" title="California Guitar (page does not exist)">California Guitar</a></i><br />
216
+ (1974)</td>
623
217
  </tr>
624
218
  </table>
625
- <p><b>Directing:</b></p>
626
- <ul>
627
- <li><i><a href="/wiki/Losing_Chase" title="Losing Chase">Losing Chase</a></i> (1996)</li>
628
- <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2006) (Episode: Serving the King: Part 2)</li>
629
- <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2007) (Episode: Blindsided)</li>
630
- <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2008) (Episode: Sudden Death)</li>
631
- <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2009) (Episode: Waivers of Extradition)</li>
632
- </ul>
633
- <h2><span class="mw-headline" id="References">References</span></h2>
634
- <div class="reflist references-column-count references-column-count-2" style="-moz-column-count: 2; -webkit-column-count: 2; column-count: 2; list-style-type: decimal;">
635
- <ol class="references">
636
- <li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><span class="citation web">Gary Boyd Roberts. <a rel="nofollow" class="external text" href="http://www.newenglandancestors.org/research/services/articles_gbr78.asp">"Ten Further Hollywood Figures (or Groups Thereof)"</a>. New England Historic Genealogical Society<span class="reference-accessdate">. Retrieved January 2, 2008</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.au=Gary+Boyd+Roberts&amp;rft.aulast=Gary+Boyd+Roberts&amp;rft.btitle=Ten+Further+Hollywood+Figures+%28or+Groups+Thereof%29&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.newenglandancestors.org%2Fresearch%2Fservices%2Farticles_gbr78.asp&amp;rft.pub=New+England+Historic+Genealogical+Society&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
637
- <li id="cite_note-awards-2"><span class="mw-cite-backlink">^ <a href="#cite_ref-awards_2-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-awards_2-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.imdb.com/name/nm0000102/awards">Awards</a> at <a href="/wiki/IMDB" title="IMDB" class="mw-redirect">IMDB</a></span></li>
638
- <li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><span class="citation web">Singer, Leigh (February 19, 2009). <a rel="nofollow" class="external text" href="http://www.guardian.co.uk/film/filmblog/2009/feb/19/best-actors-never-nominated-for-oscars">"Oscars: the best actors never to have been nominated"</a>. <i>The Guardian</i>. UK<span class="reference-accessdate">. Retrieved May 2, 2010</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Oscars%3A+the+best+actors+never+to+have+been+nominated&amp;rft.aufirst=Leigh&amp;rft.aulast=Singer&amp;rft.au=Singer%2C+Leigh&amp;rft.date=February+19%2C+2009&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.guardian.co.uk%2Ffilm%2Ffilmblog%2F2009%2Ffeb%2F19%2Fbest-actors-never-nominated-for-oscars&amp;rft.jtitle=The+Guardian&amp;rft.place=UK&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
639
- <li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.biography.com/people/kevin-bacon-9542173">"Kevin Bacon"</a>. <i>Biography.com</i><span class="reference-accessdate">. Retrieved July 21, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Kevin+Bacon&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.biography.com%2Fpeople%2Fkevin-bacon-9542173&amp;rft.jtitle=Biography.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
640
- <li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://movies.yahoo.com/person/kevin-bacon/biography.html">"ABOUT KEVIN BACON"</a>. <i>yahoo movies</i><span class="reference-accessdate">. Retrieved July 21, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=ABOUT+KEVIN+BACON&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fmovies.yahoo.com%2Fperson%2Fkevin-bacon%2Fbiography.html&amp;rft.jtitle=yahoo+movies&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
641
- <li id="cite_note-cosmo91-6"><span class="mw-cite-backlink">^ <a href="#cite_ref-cosmo91_6-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-cosmo91_6-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><i>Cosmopolitan</i>. March 1991, p. 92.</span></li>
642
- <li id="cite_note-time84-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-time84_7-0">^</a></b></span> <span class="reference-text"><span class="citation news">Richard Corliss (February 20, 1984). <a rel="nofollow" class="external text" href="http://www.time.com/time/magazine/article/0,9171,950019,00.html">"Revel Without a Cause"</a>. <i>TIME</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Revel+Without+a+Cause&amp;rft.aulast=Richard+Corliss&amp;rft.au=Richard+Corliss&amp;rft.date=February+20%2C+1984&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.time.com%2Ftime%2Fmagazine%2Farticle%2F0%2C9171%2C950019%2C00.html&amp;rft.jtitle=TIME&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
643
- <li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.thebiographychannel.co.uk/biography_story/522:492/1/Kevin_Bacon.htm">"Kevin Bacon"</a>. Biography Channel.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=Kevin+Bacon&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.thebiographychannel.co.uk%2Fbiography_story%2F522%3A492%2F1%2FKevin_Bacon.htm&amp;rft.pub=Biography+Channel&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
644
- <li id="cite_note-nyt94-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-nyt94_9-0">^</a></b></span> <span class="reference-text"><span class="citation news">Trip Gabriel (September 25, 1994). <a rel="nofollow" class="external text" href="http://query.nytimes.com/gst/fullpage.html?res=9C07E6D91F3BF936A1575AC0A962958260&amp;sec=&amp;spon=&amp;pagewanted=all">"A Second Wind Is Blowing For Kevin Bacon"</a>. <i>The New York Times</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=A+Second+Wind+Is+Blowing+For+Kevin+Bacon&amp;rft.aulast=Trip+Gabriel&amp;rft.au=Trip+Gabriel&amp;rft.date=September+25%2C+1994&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fquery.nytimes.com%2Fgst%2Ffullpage.html%3Fres%3D9C07E6D91F3BF936A1575AC0A962958260%26sec%3D%26spon%3D%26pagewanted%3Dall&amp;rft.jtitle=The+New+York+Times&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
645
- <li id="cite_note-austin-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-austin_10-0">^</a></b></span> <span class="reference-text"><span class="citation web">Macor, Alison (February 7, 1997). <a rel="nofollow" class="external text" href="http://www.austinchronicle.com/calendar/film/1997-02-07/283342/">"Losing Chase"</a>. <i><a href="/wiki/The_Austin_Chronicle" title="The Austin Chronicle">The Austin Chronicle</a></i><span class="reference-accessdate">. Retrieved April 17, 2013</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Losing+Chase&amp;rft.aufirst=Alison&amp;rft.aulast=Macor&amp;rft.au=Macor%2C+Alison&amp;rft.date=February+7%2C+1997&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.austinchronicle.com%2Fcalendar%2Ffilm%2F1997-02-07%2F283342%2F&amp;rft.jtitle=The+Austin+Chronicle&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
646
- <li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><span class="citation news">Bruce Kirkland (September 14, 2005). <a rel="nofollow" class="external text" href="http://jam.canoe.ca/Movies/2005/09/14/1216527.html">"Kevin Bacon irked over movie rating"</a>. <i>Toronto Sun</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Kevin+Bacon+irked+over+movie+rating&amp;rft.au=Bruce+Kirkland&amp;rft.aulast=Bruce+Kirkland&amp;rft.date=September+14%2C+2005&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fjam.canoe.ca%2FMovies%2F2005%2F09%2F14%2F1216527.html&amp;rft.jtitle=Toronto+Sun&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
647
- <li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><span class="citation news">Kit, Borys (July 15, 2010). <a rel="nofollow" class="external text" href="http://heatvision.hollywoodreporter.com/2010/07/winters-bone-star-cast-as-mystique-in-xmen-first-class.html">"'Winter's Bone' star cast in 'X-Men: First Class' (exclusive)"</a>. <i>Heat Vision</i><span class="reference-accessdate">. Retrieved July 16, 2010</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=%27Winter%27s+Bone%27+star+cast+in+%27X-Men%3A+First+Class%27+%28exclusive%29&amp;rft.aufirst=Borys&amp;rft.au=Kit%2C+Borys&amp;rft.aulast=Kit&amp;rft.date=July+15%2C+2010&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fheatvision.hollywoodreporter.com%2F2010%2F07%2Fwinters-bone-star-cast-as-mystique-in-xmen-first-class.html&amp;rft.jtitle=Heat+Vision&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span><sup class="noprint Inline-Template"><span title="&#160;since October 2010" style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot">dead link</a></i>]</span></sup></span></li>
648
- <li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.forcesofgeek.com/2010/07/kevin-bacon-playing-sebastian-shaw-in-x.html">"KEVIN BACON Playing SEBASTIAN SHAW in X-MEN: FIRST CLASS"</a>. forcesofgeek.com. July 16, 2010<span class="reference-accessdate">. Retrieved July 20, 2010</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=KEVIN+BACON+Playing+SEBASTIAN+SHAW+in+X-MEN%3A+FIRST+CLASS&amp;rft.date=July+16%2C+2010&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.forcesofgeek.com%2F2010%2F07%2Fkevin-bacon-playing-sebastian-shaw-in-x.html&amp;rft.pub=forcesofgeek.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
649
- <li id="cite_note-8_the_play-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-8_the_play_14-0">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.accesshollywood.com/jesse-tyler-ferguson/glee-stars-touched-by-brad-pitt-and-george-clooneys-support-of-8_article_61543">"'Glee' Stars 'Touched' By Pitt &amp; Clooney's Support Of '8'"</a>. <a href="/wiki/Access_Hollywood" title="Access Hollywood">Access Hollywood</a>. accesshollywood.com<span class="reference-accessdate">. Retrieved March 18, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=%27Glee%27+Stars+%27Touched%27+By+Pitt+%26+Clooney%27s+Support+Of+%278%27&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.accesshollywood.com%2Fjesse-tyler-ferguson%2Fglee-stars-touched-by-brad-pitt-and-george-clooneys-support-of-8_article_61543&amp;rft.pub=Access+Hollywood.+accesshollywood.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
650
- <li id="cite_note-8_play_video-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-8_play_video_15-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="https://www.youtube.com/watch?v=qlUG8F9uVgM">""8": A Play about the Fight for Marriage Equality"</a>. <a href="/wiki/YouTube" title="YouTube">YouTube</a><span class="reference-accessdate">. Retrieved March 18, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=%228%22%3A+A+Play+about+the+Fight+for+Marriage+Equality&amp;rft.genre=book&amp;rft_id=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DqlUG8F9uVgM&amp;rft.pub=YouTube&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
651
- <li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.pinknews.co.uk/2012/03/01/youtube-to-broadcast-proposition-8-play-live/">"YouTube to broadcast Proposition 8 play live"</a>. pinknews.co.uk<span class="reference-accessdate">. Retrieved March 18, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=YouTube+to+broadcast+Proposition+8+play+live&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.pinknews.co.uk%2F2012%2F03%2F01%2Fyoutube-to-broadcast-proposition-8-play-live%2F&amp;rft.pub=pinknews.co.uk&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
652
- <li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://www.au.org/media/church-and-state/archives/2008/05/two-thumbs-up.html">http://www.au.org/media/church-and-state/archives/2008/05/two-thumbs-up.html</a></span></li>
653
- <li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text">Amy Argetsinger and Roxanne Roberts, The Reliable Source, <i>Washington Post</i>, March 26, 2008. <a rel="nofollow" class="external free" href="http://www.washingtonpost.com/wp-dyn/content/article/2008/03/25/AR2008032503852.html">http://www.washingtonpost.com/wp-dyn/content/article/2008/03/25/AR2008032503852.html</a> accessed September 24, 2011.</span></li>
654
- <li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text">"I think there is a puritanical wind that is blowing. I have never seen such a lack of separation between church and state in America. I don't believe in God, but if I did I would say that sex is a God-given right." Wendy Ide, "The Outsider Wants In", <i>The Times</i> (London), 1 December 2005.</span></li>
655
- <li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.foxnews.com/story/0,2933,343589,00.html">"The Bacon Brothers Go 'On the Record'"</a>. Fox News<span class="reference-accessdate">. Retrieved 2011-10-11</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=The+Bacon+Brothers+Go+%27On+the+Record%27&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.foxnews.com%2Fstory%2F0%2C2933%2C343589%2C00.html&amp;rft.pub=Fox+News&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
656
- <li id="cite_note-financialpost-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-financialpost_21-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://economiccrisis.us/2009/06/may-god-spare-mercy-victim-tells-madoff/">"'May God spare you no mercy', victim tells Madoff"</a>. <i>Economic Crisis</i>. June 30, 2009<span class="reference-accessdate">. Retrieved May 18, 2013</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=%27May+God+spare+you+no+mercy%27%2C+victim+tells+Madoff&amp;rft.date=June+30%2C+2009&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Feconomiccrisis.us%2F2009%2F06%2Fmay-god-spare-mercy-victim-tells-madoff%2F&amp;rft.jtitle=Economic+Crisis&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
657
- <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text">Bacon confirmed this on Late Show with Craig Ferguson, June 8, 2009</span></li>
658
- <li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><span class="citation web">Smolenyak, Megan (2011-07-18). <a rel="nofollow" class="external text" href="http://www.huffingtonpost.com/megan-smolenyak-smolenyak/6-degrees-of-separation-k_b_900707.html">"6 Degrees of Separation: Kyra Sedgwick and Kevin Bacon Are Cousins"</a>. <i>Huffington Post</i><span class="reference-accessdate">. Retrieved July 29, 2011</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=6+Degrees+of+Separation%3A+Kyra+Sedgwick+and+Kevin+Bacon+Are+Cousins&amp;rft.aufirst=Megan&amp;rft.aulast=Smolenyak&amp;rft.au=Smolenyak%2C+Megan&amp;rft.date=2011-07-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.huffingtonpost.com%2Fmegan-smolenyak-smolenyak%2F6-degrees-of-separation-k_b_900707.html&amp;rft.jtitle=Huffington+Post&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
659
- <li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.drawtheline.org/watch-stuff">"Watch Stuff - Bill of Reproductive Rights"</a><span class="reference-accessdate">. Retrieved February 19, 2013</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=Watch+Stuff+-+Bill+of+Reproductive+Rights&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.drawtheline.org%2Fwatch-stuff&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
660
- <li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.sixdegrees.org/">"Six Degrees"</a><span class="reference-accessdate">. Retrieved January 2, 2008</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=Six+Degrees&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.sixdegrees.org%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
661
- <li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text"><span class="citation web">Gilbertson, Scott (2012-09-13). <a rel="nofollow" class="external text" href="http://www.webmonkey.com/2012/09/easter-egg-google-connects-the-dots-for-bacon-number-search/">"Easter Egg: Google Connects the Dots for ‘Bacon Number’ Search"</a>. <i>webmonkey</i><span class="reference-accessdate">. Retrieved September 13, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Easter+Egg%3A+Google+Connects+the+Dots+for+%E2%80%98Bacon+Number%E2%80%99+Search&amp;rft.aufirst=Scott&amp;rft.au=Gilbertson%2C+Scott&amp;rft.aulast=Gilbertson&amp;rft.date=2012-09-13&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.webmonkey.com%2F2012%2F09%2Feaster-egg-google-connects-the-dots-for-bacon-number-search%2F&amp;rft.jtitle=webmonkey&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
662
- </ol>
663
- </div>
664
- <h2><span class="mw-headline" id="External_links">External links</span></h2>
665
- <table class="metadata mbox-small plainlinks" style="border:1px solid #aaa; background-color:#f9f9f9;">
666
- <tr>
667
- <td class="mbox-image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" /></td>
668
- <td class="mbox-text plainlist" style="">Wikimedia Commons has media related to: <i><b><a href="//commons.wikimedia.org/wiki/Category:Kevin_Bacon" class="extiw" title="commons:Category:Kevin Bacon">Kevin Bacon</a></b></i></td>
219
+ </td>
669
220
  </tr>
670
221
  </table>
671
- <ul>
672
- <li><a rel="nofollow" class="external text" href="http://www.imdb.com/name/nm102/">Kevin Bacon</a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a></li>
673
- <li><a rel="nofollow" class="external text" href="http://www.ibdb.com/person.asp?ID=90569">Kevin Bacon</a> at the <a href="/wiki/Internet_Broadway_Database" title="Internet Broadway Database">Internet Broadway Database</a></li>
674
- <li><a rel="nofollow" class="external text" href="http://www.lortel.org/LLA_archive/index.cfm?search_by=people&amp;first=Kevin&amp;last=Bacon&amp;middle=">Kevin Bacon</a> at the <a href="/wiki/Lortel_Archives" title="Lortel Archives">Internet Off-Broadway Database</a></li>
675
- <li><a rel="nofollow" class="external text" href="http://www.allrovi.com/name/p3164">Kevin Bacon</a> at <a href="/wiki/AllRovi" title="AllRovi">AllRovi</a></li>
676
- <li><a rel="nofollow" class="external text" href="http://worldcat.org/identities/lccn-n88-34930">Works by or about Kevin Bacon</a> in libraries (<a href="/wiki/WorldCat" title="WorldCat">WorldCat</a> catalog)</li>
677
- <li><a rel="nofollow" class="external text" href="http://oracleofbacon.org">Oracle of Bacon</a></li>
678
- </ul>
679
- <table cellspacing="0" class="navbox" style="border-spacing:0;">
680
- <tr>
681
- <td style="padding:2px;">
682
- <table cellspacing="0" class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
683
- <tr>
684
- <th scope="col" class="navbox-title" colspan="2">
685
- <div class="noprint plainlinks hlist navbar mini">
686
- <ul>
687
- <li class="nv-view"><a href="/wiki/Template:Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Template:Broadcast Film Critics Association Award for Best Actor"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
688
- <li class="nv-talk"><a href="/wiki/Template_talk:Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Template talk:Broadcast Film Critics Association Award for Best Actor"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
689
- <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Broadcast_Film_Critics_Association_Award_for_Best_Actor&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
690
- </ul>
222
+ <p>The <a href="/wiki/Film_score" title="Film score">film score</a> was composed, arranged and conducted by <a href="/wiki/Mundell_Lowe" title="Mundell Lowe">Mundell Lowe</a> and the soundtrack album was originally released on the <a href="/wiki/Warner_Bros._Records" title="Warner Bros. Records">Warner Bros.</a> label.<sup id="cite_ref-Mundell_Lowe_discography_5-0" class="reference"><a href="#cite_note-Mundell_Lowe_discography-5"><span>[</span>5<span>]</span></a></sup></p>
223
+ <h3><span class="mw-headline" id="Reception">Reception</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=4" title="Edit section: Reception">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
224
+ <p>The <a href="/wiki/Allmusic" title="Allmusic" class="mw-redirect">Allmusic</a> review states "a strange and striking combination of styles that somehow is effective... a listenable disc whose flaws only add to the warmth".<sup id="cite_ref-Allmusic_6-0" class="reference"><a href="#cite_note-Allmusic-6"><span>[</span>6<span>]</span></a></sup> The film's theme song, "<a href="/wiki/One_Tin_Soldier" title="One Tin Soldier">One Tin Soldier (The Legend of Billy Jack)</a>" by the band <a href="/wiki/Coven_(band)" title="Coven (band)">Coven</a>, became a <a href="/wiki/Top_40" title="Top 40">Top 40</a> hit in 1971, and featured the chorus:</p>
225
+ <div style="margin-left: 2em; font-style: italic;" class="poem">
226
+ <p>Go ahead and hate your neighbor; go ahead and cheat a friend.<br />
227
+ Do it in the name of heaven; you can justify it in the end.<br />
228
+ There won't be any trumpets blowin' come the judgment day<br />
229
+ On the bloody morning after, one tin soldier rides away</p>
691
230
  </div>
692
- <div style="font-size:110%;"><a href="/wiki/Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Broadcast Film Critics Association Award for Best Actor">Broadcast Film Critics Association Award for Best Actor</a></div>
693
- </th>
694
- </tr>
695
- <tr style="height:2px;">
696
- <td></td>
697
- </tr>
231
+ <table class="wikitable infobox" style="float: right; width: 24.2em; font-size: 80%; text-align: center; margin:0.5em 0 0.5em 1em; padding:0;" cellpadding="0" cellspacing="0">
698
232
  <tr>
699
- <td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0px;">
700
- <div style="padding:0em 0.25em;">
701
- <ul>
702
- <li><strong class="selflink">Kevin Bacon</strong> (1995)</li>
703
- <li><a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a> (1996)</li>
704
- <li><a href="/wiki/Jack_Nicholson" title="Jack Nicholson">Jack Nicholson</a> (1997)</li>
705
- <li><a href="/wiki/Ian_McKellen" title="Ian McKellen">Ian McKellen</a> (1998)</li>
706
- <li><a href="/wiki/Russell_Crowe" title="Russell Crowe">Russell Crowe</a> (1999)</li>
707
- </ul>
708
- </div>
709
- </td>
710
- </tr>
711
- <tr style="height:2px;">
712
- <td></td>
233
+ <th scope="col" colspan="2" style="font-size:120%;">Professional ratings</th>
713
234
  </tr>
714
235
  <tr>
715
- <td colspan="2" class="navbox-list navbox-even hlist" style="width:100%;padding:0px;">
716
- <div style="padding:0em 0.25em;">
717
- <ul>
718
- <li><a href="/wiki/Russell_Crowe" title="Russell Crowe">Russell Crowe</a> (2000)</li>
719
- <li><a href="/wiki/Russell_Crowe" title="Russell Crowe">Russell Crowe</a> (2001)</li>
720
- <li><a href="/wiki/Daniel_Day-Lewis" title="Daniel Day-Lewis">Daniel Day-Lewis</a>/<a href="/wiki/Jack_Nicholson" title="Jack Nicholson">Jack Nicholson</a> (2002)</li>
721
- <li><a href="/wiki/Sean_Penn" title="Sean Penn">Sean Penn</a> (2003)</li>
722
- <li><a href="/wiki/Jamie_Foxx" title="Jamie Foxx">Jamie Foxx</a> (2004)</li>
723
- <li><a href="/wiki/Philip_Seymour_Hoffman" title="Philip Seymour Hoffman">Philip Seymour Hoffman</a> (2005)</li>
724
- <li><a href="/wiki/Forest_Whitaker" title="Forest Whitaker">Forest Whitaker</a> (2006)</li>
725
- <li><a href="/wiki/Daniel_Day-Lewis" title="Daniel Day-Lewis">Daniel Day-Lewis</a> (2007)</li>
726
- <li><a href="/wiki/Sean_Penn" title="Sean Penn">Sean Penn</a> (2008)</li>
727
- <li><a href="/wiki/Jeff_Bridges" title="Jeff Bridges">Jeff Bridges</a> (2009)</li>
728
- </ul>
729
- </div>
730
- </td>
731
- </tr>
732
- <tr style="height:2px;">
733
- <td></td>
236
+ <th scope="col" colspan="2" style="background:#d1dbdf; font-size:120%;">Review scores</th>
734
237
  </tr>
735
238
  <tr>
736
- <td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0px;">
737
- <div style="padding:0em 0.25em;">
738
- <ul>
739
- <li><a href="/wiki/Colin_Firth" title="Colin Firth">Colin Firth</a> (2010)</li>
740
- <li><a href="/wiki/George_Clooney" title="George Clooney">George Clooney</a> (2011)</li>
741
- <li><a href="/wiki/Daniel_Day-Lewis" title="Daniel Day-Lewis">Daniel Day-Lewis</a> (2012)</li>
742
- </ul>
743
- </div>
744
- </td>
239
+ <th scope="col">Source</th>
240
+ <th scope="col">Rating</th>
745
241
  </tr>
746
- </table>
747
- </td>
242
+ <tr>
243
+ <td scope="row"><i><a href="/wiki/Allmusic" title="Allmusic" class="mw-redirect">Allmusic</a></i></td>
244
+ <td style="vertical-align:middle"><span style="white-space:nowrap" title="3.5/5 stars"><img alt="3.5/5 stars" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/11px-Star_full.svg.png" width="11" height="11" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/17px-Star_full.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/22px-Star_full.svg.png 2x" /><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/11px-Star_full.svg.png" width="11" height="11" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/17px-Star_full.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/22px-Star_full.svg.png 2x" /><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/11px-Star_full.svg.png" width="11" height="11" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/17px-Star_full.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/Star_full.svg/22px-Star_full.svg.png 2x" /><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/81/Star_half.svg/11px-Star_half.svg.png" width="11" height="11" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/81/Star_half.svg/17px-Star_half.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/81/Star_half.svg/22px-Star_half.svg.png 2x" /><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/Star_empty.svg/11px-Star_empty.svg.png" width="11" height="11" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/Star_empty.svg/17px-Star_empty.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/49/Star_empty.svg/22px-Star_empty.svg.png 2x" /></span><sup id="cite_ref-Allmusic_6-1" class="reference"><a href="#cite_note-Allmusic-6"><span>[</span>6<span>]</span></a></sup></td>
748
245
  </tr>
749
246
  </table>
750
- <table cellspacing="0" class="navbox" style="border-spacing:0;">
751
- <tr>
752
- <td style="padding:2px;">
753
- <table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
754
- <tr>
755
- <th scope="col" class="navbox-title" colspan="2" style="background: #CFB53B;">
756
- <div class="noprint plainlinks hlist navbar mini">
247
+ <h3><span class="mw-headline" id="Track_listing">Track listing</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=5" title="Edit section: Track listing">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
248
+ <p>All compositions by Mundell Lowe, except as indicated.</p>
249
+ <ol>
250
+ <li>"<a href="/wiki/One_Tin_Soldier" title="One Tin Soldier">One Tin Soldier</a>" (Dennis Lambert, <a href="/wiki/Brian_Potter_(musician)" title="Brian Potter (musician)">Brian Potter</a>)&#160;– 3:18</li>
251
+ <li>"Hello Billy Jack"&#160;– 0:45</li>
252
+ <li>"Old and the New"&#160;– 1:00</li>
253
+ <li>"Johnnie" (Teresa Kelly)&#160;– 2:35</li>
254
+ <li>"Look, Look to the Mountain" (Kelly)&#160;– 1:40</li>
255
+ <li>"When Will Billy Love Me" (Lynn Baker)&#160;– 3:24</li>
256
+ <li>"Freedom Over Me" (Gwen Smith)&#160;– 0:35</li>
257
+ <li>"All Forked Tongue Talk Alike"&#160;– 2:54</li>
258
+ <li>"Challenge"&#160;– 2:20</li>
259
+ <li>"Rainbow Made of Children" (Baker)&#160;– 3:50</li>
260
+ <li>"Most Beautiful Day"&#160;– 0:30</li>
261
+ <li>"An Indian Dance"&#160;– 1:15</li>
262
+ <li>"Ceremonial Dance"&#160;– 1:59</li>
263
+ <li>"Flick of the Wrist"&#160;– 2:15</li>
264
+ <li>"It's All She Left Me"&#160;– 1:56</li>
265
+ <li>"You Shouldn't Do That"&#160;– 3:21</li>
266
+ <li>"Ring Song" (Katy Moffatt)&#160;– 4:25</li>
267
+ <li>"Thy Loving Hand"&#160;– 1:35</li>
268
+ <li>"Say Goodbye 'Cause You're Leavin'"&#160;– 2:36</li>
269
+ <li>"The Theme from Billy Jack"&#160;– 2:21</li>
270
+ <li>"One Tin Soldier (End Title)" (Lambert, Potter)&#160;– 1:06</li>
271
+ </ol>
272
+ <h3><span class="mw-headline" id="Personnel">Personnel</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=6" title="Edit section: Personnel">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
757
273
  <ul>
758
- <li class="nv-view"><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019" title="Template:GoldenGlobeBestActorTVMiniseriesFilm 2000–2019"><span title="View this template" style="background: #CFB53B;;background:none transparent;border:none;;">v</span></a></li>
759
- <li class="nv-talk"><a href="/wiki/Template_talk:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019" title="Template talk:GoldenGlobeBestActorTVMiniseriesFilm 2000–2019"><span title="Discuss this template" style="background: #CFB53B;;background:none transparent;border:none;;">t</span></a></li>
760
- <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019&amp;action=edit"><span title="Edit this template" style="background: #CFB53B;;background:none transparent;border:none;;">e</span></a></li>
274
+ <li><a href="/wiki/Mundell_Lowe" title="Mundell Lowe">Mundell Lowe</a>: <a href="/wiki/Arrangement" title="Arrangement">arranger</a>, conductor</li>
275
+ <li><a href="/wiki/Coven_(band)" title="Coven (band)">Coven</a> featuring Jinx Dawson (tracks 1 &amp; 21), Teresa Kelly (tracks 4 &amp; 5), Lynn Baker (tracks 6 &amp; 10), Gwen Smith (track 7), <a href="/wiki/Katy_Moffatt" title="Katy Moffatt">Katy Moffatt</a> (track 17): vocals</li>
276
+ <li>Other unidentified musicians</li>
761
277
  </ul>
762
- </div>
763
- <div style="font-size:110%;"><a href="/wiki/Golden_Globe_Award_for_Best_Actor_%E2%80%93_Miniseries_or_Television_Film" title="Golden Globe Award for Best Actor Miniseries or Television Film">Golden Globe Award for Best Actor Miniseries or Television Film</a> (2000–2019)</div>
764
- </th>
765
- </tr>
766
- <tr style="height:2px;">
767
- <td></td>
768
- </tr>
769
- <tr>
770
- <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
771
- <div style="padding:0em 0.25em;">
278
+ <h2><span class="mw-headline" id="Influence">Influence</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=7" title="Edit section: Influence">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
279
+ <p>Marketed as an action film, the story focuses on the plight of Native Americans during the <a href="/wiki/Movements_for_civil_rights#Civil_rights_movement_in_the_United_States" title="Movements for civil rights">civil rights movement</a>. It attained a <a href="/wiki/Cult_following" title="Cult following">cult following</a> among younger audiences due to its youth-oriented, anti-authority message and the then-novel martial arts fight scenes which predate the <a href="/wiki/Bruce_Lee" title="Bruce Lee">Bruce Lee</a>/<a href="/wiki/Chinese_martial_arts" title="Chinese martial arts">kung fu</a> <a href="/wiki/Martial_arts_film" title="Martial arts film">movie</a> trend that followed.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span>[</span>7<span>]</span></a></sup> The centerpiece of the film features Billy Jack, enraged over the mistreatment of his Indian friends, fighting racist thugs using <a href="/wiki/Hapkido" title="Hapkido">hapkido</a> techniques.</p>
280
+ <p>Billy Jack's wardrobe (black T-shirt, blue denim jacket, <a href="/wiki/Jeans" title="Jeans">blue jeans</a>, and a black hat with a beadwork band) would become nearly as iconic as the character.</p>
281
+ <p>The second major movie to make use of the word "fuck" (<a href="/wiki/MASH_(film)" title="MASH (film)">MASH</a> being the first). A black student says the words "fucked up" during the scene where the Freedom school students are talking about the "Second Coming".</p>
282
+ <h2><span class="mw-headline" id="Billy_Jack_in_popular_culture"><i>Billy Jack</i> in popular culture</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=8" title="Edit section: Billy Jack in popular culture">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
772
283
  <ul>
773
- <li><a href="/wiki/Brian_Dennehy" title="Brian Dennehy">Brian Dennehy</a> (2000)</li>
774
- <li><a href="/wiki/James_Franco" title="James Franco">James Franco</a> (2001)</li>
775
- <li><a href="/wiki/Albert_Finney" title="Albert Finney">Albert Finney</a> (2002)</li>
776
- <li><a href="/wiki/Al_Pacino" title="Al Pacino">Al Pacino</a> (2003)</li>
777
- <li><a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a> (2004)</li>
778
- <li><a href="/wiki/Jonathan_Rhys_Meyers" title="Jonathan Rhys Meyers">Jonathan Rhys Meyers</a> (2005)</li>
779
- <li><a href="/wiki/Bill_Nighy" title="Bill Nighy">Bill Nighy</a> (2006)</li>
780
- <li><a href="/wiki/Jim_Broadbent" title="Jim Broadbent">Jim Broadbent</a> (2007)</li>
781
- <li><a href="/wiki/Paul_Giamatti" title="Paul Giamatti">Paul Giamatti</a> (2008)</li>
782
- <li><strong class="selflink">Kevin Bacon</strong> (2009)</li>
783
- <li><a href="/wiki/Al_Pacino" title="Al Pacino">Al Pacino</a> (2010)</li>
784
- <li><a href="/wiki/Idris_Elba" title="Idris Elba">Idris Elba</a> (2011)</li>
785
- <li><a href="/wiki/Kevin_Costner" title="Kevin Costner">Kevin Costner</a> (2012)</li>
284
+ <li>In 1975 (release date 12/30/1974), Firesign Theater, an American comedy group, made reference to Billy Jack on their album, "In The Next World, You're on Your Own," in the form of "Billy Jack Dog Food", and "I'm not Billy Jacking you," among other thematic references.</li>
285
+ <li>In 1975, musician <a href="/wiki/Curtis_Mayfield" title="Curtis Mayfield">Curtis Mayfield</a> recorded and released a song titled, "Billy Jack" on his album <i>There's No Place Like America Today</i>.</li>
286
+ <li>In 1976 musician <a href="/wiki/Paul_Simon" title="Paul Simon">Paul Simon</a> played "Billy Paul" (a parody of Billy Jack, unrelated<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span>[</span>8<span>]</span></a></sup> to musician <a href="/wiki/Billy_Paul" title="Billy Paul">Billy Paul</a>) in a sketch on the second season of the <a href="/wiki/NBC" title="NBC">NBC</a> comedy show <i><a href="/wiki/Saturday_Night_Live" title="Saturday Night Live">Saturday Night Live</a></i>, after the film <i>Billy Jack</i> aired earlier that evening on NBC.</li>
287
+ <li>In 1982, a professional wrestler, <a href="/wiki/Billy_Jack_Haynes" title="Billy Jack Haynes">Billy Jack Haynes</a>, debuted as "Billy Jack" wearing a hat like Billy Jack. He changed his wrestling name from "Billy Jack" to "Billy Jack Haynes" after Tom Laughlin threatened to sue.</li>
288
+ <li>In the series <i><a href="/wiki/Mystery_Science_Theater_3000" title="Mystery Science Theater 3000">Mystery Science Theater 3000</a>,</i> at least two episodes reference <i>Billy Jack</i>: on the episode <i><a href="/wiki/Werewolf_(1996_film)" title="Werewolf (1996 film)">Werewolf</a></i>, after a fight breaks out between a racist dig supervisor and his Indian help, Tom Servo says, "This is where Billy Jack should come riding up."; on the episode <i><a href="/wiki/Track_of_the_Moon_Beast" title="Track of the Moon Beast">Track of the Moon Beast</a>,</i> after the Native American professor finishes telling a story, Crow says, "Uh huh...do you know Billy Jack?"</li>
289
+ <li>In an episode of <i><a href="/wiki/The_Simpsons" title="The Simpsons">The Simpsons</a></i> ("<a href="/wiki/Bart_of_War" title="Bart of War" class="mw-redirect">Bart of War</a>"), Bart joins a <a href="/wiki/Boy_Scouts_of_America" title="Boy Scouts of America">Boy Scouts of America</a>-like group called the "Pre-Teen Braves", and they engage in a rivalry with "the Cavalry Kids". A montage of the two groups fighting each other is set to Coven's version of <i>One Tin Soldier</i>.</li>
290
+ <li>The song "Kooler than Jesus" by <a href="/wiki/My_Life_with_the_Thrill_Kill_Kult" title="My Life with the Thrill Kill Kult">My Life with the Thrill Kill Kult</a> features samples from the film.</li>
291
+ <li>Billy Jack is referenced in an episode of <i><a href="/wiki/Gilmore_Girls" title="Gilmore Girls">Gilmore Girls</a></i> ("<a href="/wiki/Red_Light_on_the_Wedding_Night" title="Red Light on the Wedding Night" class="mw-redirect">Red Light on the Wedding Night</a>") while Lorelai and Rory are watching the movie in their living room. At the line "Billy Jack, I'm gonna kill you if it's the last thing I do!", Lorelai responds, "Ugh, he so jinxed himself with that one." Rory replies, "Yeah, he should've said 'Billy Jack, I'm gonna kill you or buy myself a lovely chenille sweater.'"</li>
292
+ <li>Upon meeting <a href="/wiki/Serial_killer" title="Serial killer">serial killer</a> <a href="/wiki/Cary_Stayner" title="Cary Stayner">Cary Stayner</a>—then considered a possible material witness to a 1999 murder in <a href="/wiki/Yosemite" title="Yosemite" class="mw-redirect">Yosemite</a> National Park—FBI Agent Jeff Rinek asked if Stayner had ever seen the movie <i>Billy Jack,</i> noting Stayner's resemblance to the film's hero. Initially, Stayner denied seeing the movie.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span>[</span>9<span>]</span></a></sup> However, 90 minutes later, after building rapport during the drive to the FBI headquarters in Sacramento from the <a href="/wiki/Nudist" title="Nudist" class="mw-redirect">nudist</a> resort where he was picked up, Stayner surprised Rinek by reciting several of Billy Jack's lines.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span>[</span>10<span>]</span></a></sup></li>
293
+ <li>In the motion picture <i><a href="/wiki/Major_Payne" title="Major Payne">Major Payne</a>,</i> Damon Wayans as the title character references the iconic fight scene quote "Now, what I'm goin' do is take this right foot and I'm 'a put it 'cross the left side your face."</li>
294
+ <li>In season three of the television series <i><a href="/wiki/Sabrina_the_Teenage_Witch_(TV_series)" title="Sabrina the Teenage Witch (TV series)" class="mw-redirect">Sabrina The Teenage Witch</a></i>, principal Mr. Kraft reveals that Billy Jack is his favorite film.</li>
295
+ <li>Billy Jack was referenced by <a href="/wiki/Jim_Carrey" title="Jim Carrey">Jim Carrey</a> in <i><a href="/wiki/Yes_Man_(film)" title="Yes Man (film)">Yes Man</a>.</i></li>
296
+ <li>Metal band <a href="/wiki/Goblin_Cock" title="Goblin Cock">Goblin Cock</a> have a song entitled "Ode to Billy Jack" on their 2009 album <i>Come With Me if You Want to Live</i>, which is a tribute to him.</li>
297
+ <li>In the movie <i><a href="/wiki/Drillbit_Taylor" title="Drillbit Taylor">Drillbit Taylor</a></i>, actor <a href="/wiki/Owen_Wilson" title="Owen Wilson">Owen Wilson</a> references Billy Jack by saying to a cast mate "I am gonna Billy Jack your ass."</li>
298
+ <li>In the episode of the animated show <i><a href="/wiki/Pinky_and_the_Brain" title="Pinky and the Brain">Pinky and the Brain</a></i>, titled "Brainy Jack," Brain assumes the role of the titular Brainy Jack to trick a commune of hippies into helping him take over the world. Brain's wardrobe is a direct reference to Billy Jack, especially the hat with a beaded hat-band. Likewise, the song Pinky sings in the episode is a parody of "<a href="/wiki/One_Tin_Soldier" title="One Tin Soldier">One Tin Soldier</a>."</li>
299
+ <li>British electro band <a href="/wiki/Relaxed_Muscle" title="Relaxed Muscle">Relaxed Muscle</a> (fronted by <a href="/wiki/Jarvis_Cocker" title="Jarvis Cocker">Jarvis Cocker</a>, from <a href="/wiki/Pulp_(band)" title="Pulp (band)">Pulp</a>) released a song called "Billy Jack" on their only album <i><a href="/wiki/A_Heavy_Nite_With..." title="A Heavy Nite With...">A Heavy Nite With...</a></i> in 2003. It was released as a single with a music video that featured Cocker (as alter ego, Darren Spooner) in Western garb reminiscent of Billy Jack's trademark outfit.</li>
300
+ <li>In the&#160;<a href="/wiki/Warehouse_13" title="Warehouse 13">Warehouse 13</a>&#160;<a href="/wiki/Warehouse_13_(season_2)" title="Warehouse 13 (season 2)">Season 2</a> episode "<a href="/wiki/List_of_Warehouse_13_episodes" title="List of Warehouse 13 episodes">13.1</a>", the brain damaged&#160;<a href="/wiki/List_of_Warehouse_13_characters" title="List of Warehouse 13 characters">Hugo Miller</a>&#160;shouts "Billy Jack!" excitedly after&#160;<a href="/wiki/Myka_Bering" title="Myka Bering">Myka Bering</a>&#160;kicks a gas station attendant who had pulled a gun.</li>
301
+ <li>In the book "The Berlin Blues", a play by Drew Hayden Taylor, the character named Trailer references Billy Jack when he says on page 92, "No Cirque du Billy Jack?" when the plan for Ojibway World which was supposed to be opening on the reserve falls through.</li>
302
+ <li><a href="/wiki/Bill_Maher" title="Bill Maher">Bill Maher</a> referenced Billy Jack in a July 2012 blog post about <a href="/wiki/Mormon_fundamentalism" title="Mormon fundamentalism">fundamentalist Mormons</a>.</li>
786
303
  </ul>
304
+ <h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=9" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
305
+ <div class="reflist" style="list-style-type: decimal;">
306
+ <ol class="references">
307
+ <li id="cite_note-NYT-1"><span class="mw-cite-backlink">^ <a href="#cite_ref-NYT_1-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-NYT_1-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation news">Waxman, Sharon (June 20, 2005). <a rel="nofollow" class="external text" href="http://query.nytimes.com/gst/fullpage.html?res=9E0CE2D9133EF933A15755C0A9639C8B63&amp;pagewanted=2">"Billy Jack Is Ready to Fight the Good Fight Again"</a>. <i><a href="/wiki/The_New_York_Times" title="The New York Times">The New York Times</a></i><span class="reference-accessdate">. Retrieved 2011-01-02</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ABilly+Jack&amp;rft.atitle=Billy+Jack+Is+Ready+to+Fight+the+Good+Fight+Again&amp;rft.aufirst=Sharon&amp;rft.aulast=Waxman&amp;rft.au=Waxman%2C+Sharon&amp;rft.date=June+20%2C+2005&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fquery.nytimes.com%2Fgst%2Ffullpage.html%3Fres%3D9E0CE2D9133EF933A15755C0A9639C8B63%26pagewanted%3D2&amp;rft.jtitle=The+New+York+Times&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
308
+ <li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text">"Big Rental Films of 1973", <i>Variety</i>, 9 January 1974 p 19</span></li>
309
+ <li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.rottentomatoes.com/m/billy_jack/">Billy Jack - Rotten Tomatoes</a></span></li>
310
+ <li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://rogerebert.suntimes.com/apps/pbcs.dll/article?AID=/19710802/REVIEWS/101010302/1023">Billy Jack - Roger Ebert</a></span></li>
311
+ <li id="cite_note-Mundell_Lowe_discography-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-Mundell_Lowe_discography_5-0">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.mundelllowe.com/discography.htm">Mundell Lowe discography</a> accessed August 23, 2012</span></li>
312
+ <li id="cite_note-Allmusic-6"><span class="mw-cite-backlink">^ <a href="#cite_ref-Allmusic_6-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-Allmusic_6-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text">Viglione, J. <a rel="nofollow" class="external text" href="http://www.allmusic.com/album/billy-jack-mw0000893211">Allmusic Review</a> accessed August 23, 2012</span></li>
313
+ <li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><span class="citation news">Stewart, Jocelyn Y. (January 14, 2007). <a rel="nofollow" class="external text" href="http://articles.latimes.com/2007/jan/14/local/me-han14">"Bong Soo Han, 73; grand master of hapkido won film fans for martial arts"</a>. <i><a href="/wiki/Los_Angeles_Times" title="Los Angeles Times">Los Angeles Times</a></i><span class="reference-accessdate">. Retrieved 2010-11-25</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ABilly+Jack&amp;rft.atitle=Bong+Soo+Han%2C+73%3B+grand+master+of+hapkido+won+film+fans+for+martial+arts&amp;rft.aufirst=Jocelyn+Y.&amp;rft.aulast=Stewart&amp;rft.au=Stewart%2C+Jocelyn+Y.&amp;rft.date=January+14%2C+2007&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Farticles.latimes.com%2F2007%2Fjan%2F14%2Flocal%2Fme-han14&amp;rft.jtitle=Los+Angeles+Times&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
314
+ <li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://snltranscripts.jt.org/76/76hbillypaul.phtml">"The Story of Billy Paul"</a>. November 20, 1976<span class="reference-accessdate">. Retrieved 2012-07-15</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ABilly+Jack&amp;rft.btitle=The+Story+of+Billy+Paul&amp;rft.date=November+20%2C+1976&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fsnltranscripts.jt.org%2F76%2F76hbillypaul.phtml&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
315
+ <li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><span class="citation news">Finz, Stacy (December 15, 2002). <a rel="nofollow" class="external text" href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2002/12/15/MNSTAYNER15PART1.DTL">"The Case of a Lifetime, Part One (2002, December 15)"</a>. SFGate.com<span class="reference-accessdate">. Retrieved 2008-12-10</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ABilly+Jack&amp;rft.au=Finz%2C+Stacy&amp;rft.aufirst=Stacy&amp;rft.aulast=Finz&amp;rft.btitle=The+Case+of+a+Lifetime%2C+Part+One+%282002%2C+December+15%29&amp;rft.date=December+15%2C+2002&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.sfgate.com%2Fcgi-bin%2Farticle.cgi%3Ff%3D%2Fc%2Fa%2F2002%2F12%2F15%2FMNSTAYNER15PART1.DTL&amp;rft.pub=SFGate.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
316
+ <li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/s/p/2002/stayner/STAYNER15PART2.DTL">"The Case of a Lifetime, Part Two (2002, December 15)"</a>. SFGate.com. December 14, 2002<span class="reference-accessdate">. Retrieved 2008-12-10</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ABilly+Jack&amp;rft.btitle=The+Case+of+a+Lifetime%2C+Part+Two+%282002%2C+December+15%29&amp;rft.date=December+14%2C+2002&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.sfgate.com%2Fcgi-bin%2Farticle.cgi%3Ff%3D%2Fc%2Fs%2Fp%2F2002%2Fstayner%2FSTAYNER15PART2.DTL&amp;rft.pub=SFGate.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
317
+ </ol>
787
318
  </div>
788
- </td>
789
- </tr>
790
- <tr style="height:2px;">
791
- <td></td>
792
- </tr>
793
- <tr>
794
- <td class="navbox-abovebelow" colspan="2" style="background: #CFB53B;">
795
- <div>
796
- <div class="hlist" style="font-size:smaller">
319
+ <h2><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Billy_Jack&amp;action=edit&amp;section=10" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
797
320
  <ul>
798
- <li><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm" title="Template:GoldenGlobeBestActorTVMiniseriesFilm">Complete list</a></li>
799
- <li><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm_1981%E2%80%931999" title="Template:GoldenGlobeBestActorTVMiniseriesFilm 1981–1999">(1981–1999)</a></li>
800
- <li><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019" title="Template:GoldenGlobeBestActorTVMiniseriesFilm 2000–2019">(2000–2019)</a></li>
321
+ <li><a rel="nofollow" class="external text" href="http://www.billyjack.com/"><i>Billy Jack</i></a>, Laughlin's official Billy Jack web site</li>
322
+ <li><a rel="nofollow" class="external text" href="http://www.billyjackrights.com/"><i>Billy Jack Rights, LLC</i></a>, Worldwide Rights Owner</li>
323
+ <li><a rel="nofollow" class="external text" href="http://www.imdb.com/title/tt0066832/"><i>Billy Jack</i></a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a></li>
324
+ <li><a rel="nofollow" class="external text" href="http://www.popcultureaddict.com/close/davidroya.htm">The Man Who Made Billy Jack Go Berserk: A Conversation with David Roya</a> Interview with Billy Jack co-star David "Bernard Posner" Roya</li>
325
+ <li><a rel="nofollow" class="external text" href="http://www.dvdtalk.com/reviews/38319/complete-billy-jack-collection-the-born-losers-billy-jack-the-trial-of-billy-jack-billy-jack-goes-to-washington-the/">DVD review of the Billy Jack series and production history</a></li>
326
+ <li><a rel="nofollow" class="external text" href="http://blogs.villagevoice.com/runninscared/2010/12/billy_jack_is_t.php#more">A vision of American multiplicity</a> <a href="/wiki/Village_Voice" title="Village Voice" class="mw-redirect">Village Voice</a> review August 19, 1971</li>
801
327
  </ul>
802
- </div>
803
- </div>
804
- </td>
805
- </tr>
806
- </table>
807
- </td>
808
- </tr>
809
- </table>
810
328
  <table cellspacing="0" class="navbox" style="border-spacing:0;">
811
329
  <tr>
812
330
  <td style="padding:2px;">
813
- <table cellspacing="0" class="nowraplinks hlist collapsible collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
331
+ <table cellspacing="0" class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
814
332
  <tr>
815
333
  <th scope="col" class="navbox-title" colspan="2">
816
- <div class="noprint plainlinks hlist navbar mini">
334
+ <div class="plainlinks hlist navbar mini">
817
335
  <ul>
818
- <li class="nv-view"><a href="/wiki/Template:Saturn_Award_for_Best_Actor_on_Television" title="Template:Saturn Award for Best Actor on Television"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
819
- <li class="nv-talk"><a href="/wiki/Template_talk:Saturn_Award_for_Best_Actor_on_Television" title="Template talk:Saturn Award for Best Actor on Television"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
820
- <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Saturn_Award_for_Best_Actor_on_Television&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
336
+ <li class="nv-view"><a href="/wiki/Template:Tom_Laughlin" title="Template:Tom Laughlin"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
337
+ <li class="nv-talk"><a href="/wiki/Template_talk:Tom_Laughlin" title="Template talk:Tom Laughlin"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
338
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Tom_Laughlin&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
821
339
  </ul>
822
340
  </div>
823
- <div style="font-size:110%;"><a href="/wiki/Saturn_Award_for_Best_Actor_on_Television" title="Saturn Award for Best Actor on Television">Saturn Award for Best Actor on Television</a></div>
341
+ <div style="font-size:110%;">Films directed by <a href="/wiki/Tom_Laughlin" title="Tom Laughlin">Tom Laughlin</a></div>
824
342
  </th>
825
343
  </tr>
826
344
  <tr style="height:2px;">
827
- <td></td>
345
+ <td colspan="2"></td>
828
346
  </tr>
829
347
  <tr>
830
- <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
348
+ <th scope="row" class="navbox-group">1960s</th>
349
+ <td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
831
350
  <div style="padding:0em 0.25em;">
832
351
  <ul>
833
- <li><a href="/wiki/Kyle_Chandler" title="Kyle Chandler">Kyle Chandler</a> (1996)</li>
834
- <li><a href="/wiki/Steven_Weber_(actor)" title="Steven Weber (actor)">Steven Weber</a> (1997)</li>
835
- <li><a href="/wiki/Richard_Dean_Anderson" title="Richard Dean Anderson">Richard Dean Anderson</a> (1998)</li>
836
- <li><a href="/wiki/David_Boreanaz" title="David Boreanaz">David Boreanaz</a> (1999)</li>
837
- <li><a href="/wiki/Robert_Patrick" title="Robert Patrick">Robert Patrick</a> (2000)</li>
838
- <li><a href="/wiki/Ben_Browder" title="Ben Browder">Ben Browder</a> (2001)</li>
839
- <li><a href="/wiki/David_Boreanaz" title="David Boreanaz">David Boreanaz</a> (2002)</li>
840
- <li><a href="/wiki/David_Boreanaz" title="David Boreanaz">David Boreanaz</a> (2003)</li>
841
- <li><a href="/wiki/Ben_Browder" title="Ben Browder">Ben Browder</a> (2004)</li>
842
- <li><a href="/wiki/Matthew_Fox" title="Matthew Fox">Matthew Fox</a> (2005)</li>
843
- <li><a href="/wiki/Michael_C._Hall" title="Michael C. Hall">Michael C. Hall</a> (2006)</li>
844
- <li><a href="/wiki/Matthew_Fox" title="Matthew Fox">Matthew Fox</a> (2007)</li>
845
- <li><a href="/wiki/Edward_James_Olmos" title="Edward James Olmos">Edward James Olmos</a> (2008)</li>
846
- <li><a href="/wiki/Josh_Holloway" title="Josh Holloway">Josh Holloway</a> (2009)</li>
847
- <li><a href="/wiki/Stephen_Moyer" title="Stephen Moyer">Stephen Moyer</a> (2010)</li>
848
- <li><a href="/wiki/Bryan_Cranston" title="Bryan Cranston">Bryan Cranston</a> (2011)</li>
849
- <li><strong class="selflink">Kevin Bacon</strong> / <a href="/wiki/Bryan_Cranston" title="Bryan Cranston">Bryan Cranston</a> (2012)</li>
352
+ <li><i><a href="/wiki/The_Proper_Time" title="The Proper Time">The Proper Time</a></i> (1960)</li>
353
+ <li><i><a href="/w/index.php?title=The_Young_Sinner&amp;action=edit&amp;redlink=1" class="new" title="The Young Sinner (page does not exist)">The Young Sinner</a></i> (1965)</li>
354
+ <li><i><a href="/wiki/The_Born_Losers" title="The Born Losers">The Born Losers</a></i> (1967)</li>
850
355
  </ul>
851
356
  </div>
852
357
  </td>
853
358
  </tr>
854
- </table>
855
- </td>
856
- </tr>
857
- </table>
858
- <table cellspacing="0" class="navbox" style="border-spacing:0;">
859
- <tr>
860
- <td style="padding:2px;">
861
- <table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
862
- <tr>
863
- <th scope="col" class="navbox-title" colspan="2" style="background: #ABCDEF;">
864
- <div class="noprint plainlinks hlist navbar mini">
865
- <ul>
866
- <li class="nv-view"><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie 1994–2009"><span title="View this template" style="background: #ABCDEF;;background:none transparent;border:none;;">v</span></a></li>
867
- <li class="nv-talk"><a href="/wiki/Template_talk:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009" title="Template talk:ScreenActorsGuildAward MaleTVMiniseriesMovie 1994–2009"><span title="Discuss this template" style="background: #ABCDEF;;background:none transparent;border:none;;">t</span></a></li>
868
- <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009&amp;action=edit"><span title="Edit this template" style="background: #ABCDEF;;background:none transparent;border:none;;">e</span></a></li>
869
- </ul>
870
- </div>
871
- <div style="font-size:110%;"><a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Miniseries_or_Television_Movie" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie</a> (1994–2009)</div>
872
- </th>
873
- </tr>
874
359
  <tr style="height:2px;">
875
- <td></td>
360
+ <td colspan="2"></td>
876
361
  </tr>
877
362
  <tr>
878
- <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
363
+ <th scope="row" class="navbox-group">1970s</th>
364
+ <td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
879
365
  <div style="padding:0em 0.25em;">
880
366
  <ul>
881
- <li><a href="/wiki/Ra%C3%BAl_Juli%C3%A1" title="Raúl Juliá">Raúl Juliá</a> (1994)</li>
882
- <li><a href="/wiki/Gary_Sinise" title="Gary Sinise">Gary Sinise</a> (1995)</li>
883
- <li><a href="/wiki/Alan_Rickman" title="Alan Rickman">Alan Rickman</a> (1996)</li>
884
- <li><a href="/wiki/Gary_Sinise" title="Gary Sinise">Gary Sinise</a> (1997)</li>
885
- <li><a href="/wiki/Christopher_Reeve" title="Christopher Reeve">Christopher Reeve</a> (1998)</li>
886
- <li><a href="/wiki/Jack_Lemmon" title="Jack Lemmon">Jack Lemmon</a> (1999)</li>
887
- <li><a href="/wiki/Brian_Dennehy" title="Brian Dennehy">Brian Dennehy</a> (2000)</li>
888
- <li><a href="/wiki/Ben_Kingsley" title="Ben Kingsley">Ben Kingsley</a> (2001)</li>
889
- <li><a href="/wiki/William_H._Macy" title="William H. Macy">William H. Macy</a> (2002)</li>
890
- <li><a href="/wiki/Al_Pacino" title="Al Pacino">Al Pacino</a> (2003)</li>
891
- <li><a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a> (2004)</li>
892
- <li><a href="/wiki/Paul_Newman" title="Paul Newman">Paul Newman</a> (2005)</li>
893
- <li><a href="/wiki/Jeremy_Irons" title="Jeremy Irons">Jeremy Irons</a> (2006)</li>
894
- <li><a href="/wiki/Kevin_Kline" title="Kevin Kline">Kevin Kline</a> (2007)</li>
895
- <li><a href="/wiki/Paul_Giamatti" title="Paul Giamatti">Paul Giamatti</a> (2008)</li>
896
- <li><strong class="selflink">Kevin Bacon</strong> (2009)</li>
367
+ <li><i><strong class="selflink">Billy Jack</strong></i> (1971)</li>
368
+ <li><i><a href="/wiki/The_Trial_of_Billy_Jack" title="The Trial of Billy Jack">The Trial of Billy Jack</a></i> (1974)</li>
369
+ <li><i><a href="/wiki/The_Master_Gunfighter" title="The Master Gunfighter">The Master Gunfighter</a></i> (1975)</li>
370
+ <li><i><a href="/wiki/Billy_Jack_Goes_to_Washington" title="Billy Jack Goes to Washington">Billy Jack Goes to Washington</a></i> (1977)</li>
897
371
  </ul>
898
372
  </div>
899
373
  </td>
900
374
  </tr>
901
375
  <tr style="height:2px;">
902
- <td></td>
903
- </tr>
904
- <tr>
905
- <td class="navbox-abovebelow" colspan="2" style="background: #ABCDEF;">
906
- <div>
907
- <ul>
908
- <li><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie">Complete list</a></li>
909
- <li><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie 1994–2009">(1994–2009)</a></li>
910
- <li><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_2010%E2%80%932029" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie 2010–2029">(2010–2029)</a></li>
911
- </ul>
912
- </div>
913
- </td>
914
- </tr>
915
- </table>
916
- </td>
376
+ <td colspan="2"></td>
917
377
  </tr>
918
- </table>
919
- <table cellspacing="0" class="navbox" style="border-spacing:0;">
920
378
  <tr>
921
- <td style="padding:2px;">
922
- <table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
923
- <tr>
924
- <th scope="col" class="navbox-title" colspan="2" style="background: #ABCDEF;">
925
- <div class="noprint plainlinks hlist navbar mini">
926
- <ul>
927
- <li class="nv-view"><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000" title="Template:ScreenActorsGuildAward CastMotionPicture 1995–2000"><span title="View this template" style="background: #ABCDEF;;background:none transparent;border:none;;">v</span></a></li>
928
- <li class="nv-talk"><a href="/wiki/Template_talk:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000" title="Template talk:ScreenActorsGuildAward CastMotionPicture 1995–2000"><span title="Discuss this template" style="background: #ABCDEF;;background:none transparent;border:none;;">t</span></a></li>
929
- <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000&amp;action=edit"><span title="Edit this template" style="background: #ABCDEF;;background:none transparent;border:none;;">e</span></a></li>
930
- </ul>
931
- </div>
932
- <div style="font-size:110%;"><a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a> (1995–2000)</div>
933
- </th>
934
- </tr>
935
- <tr style="height:2px;">
936
- <td></td>
937
- </tr>
938
- <tr>
939
- <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
379
+ <th scope="row" class="navbox-group">1980s</th>
380
+ <td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
940
381
  <div style="padding:0em 0.25em;">
941
382
  <ul>
942
- <li><i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i> (1995)&#160;: <span class="wrap"><small><strong class="selflink">Kevin Bacon</strong>, <a href="/wiki/Tom_Hanks" title="Tom Hanks">Tom Hanks</a>, <a href="/wiki/Ed_Harris" title="Ed Harris">Ed Harris</a>, <a href="/wiki/Bill_Paxton" title="Bill Paxton">Bill Paxton</a>, <a href="/wiki/Kathleen_Quinlan" title="Kathleen Quinlan">Kathleen Quinlan</a>, <a href="/wiki/Gary_Sinise" title="Gary Sinise">Gary Sinise</a></small></span></li>
943
- </ul>
944
- <ul>
945
- <li><i><a href="/wiki/The_Birdcage" title="The Birdcage">The Birdcage</a></i> (1996)&#160;: <span class="wrap"><small><a href="/wiki/Hank_Azaria" title="Hank Azaria">Hank Azaria</a>, <a href="/wiki/Christine_Baranski" title="Christine Baranski">Christine Baranski</a>, <a href="/wiki/Dan_Futterman" title="Dan Futterman">Dan Futterman</a>, <a href="/wiki/Gene_Hackman" title="Gene Hackman">Gene Hackman</a>, <a href="/wiki/Nathan_Lane" title="Nathan Lane">Nathan Lane</a>, <a href="/wiki/Dianne_Wiest" title="Dianne Wiest">Dianne Wiest</a>, <a href="/wiki/Robin_Williams" title="Robin Williams">Robin Williams</a></small></span></li>
946
- </ul>
947
- <ul>
948
- <li><i><a href="/wiki/The_Full_Monty" title="The Full Monty">The Full Monty</a></i> (1997)&#160;: <span class="wrap"><small><a href="/wiki/Mark_Addy" title="Mark Addy">Mark Addy</a>, <a href="/wiki/Paul_Barber_(actor)" title="Paul Barber (actor)">Paul Barber</a>, <a href="/wiki/Robert_Carlyle" title="Robert Carlyle">Robert Carlyle</a>, <a href="/wiki/Deirdre_Costello" title="Deirdre Costello">Deirdre Costello</a>, <a href="/wiki/Steve_Huison" title="Steve Huison">Steve Huison</a>, <a href="/wiki/Bruce_Jones_(actor)" title="Bruce Jones (actor)">Bruce Jones</a>, <a href="/wiki/Lesley_Sharp" title="Lesley Sharp">Lesley Sharp</a>, <a href="/wiki/William_Snape" title="William Snape">William Snape</a>, <a href="/wiki/Hugo_Speer" title="Hugo Speer">Hugo Speer</a>, <a href="/wiki/Tom_Wilkinson" title="Tom Wilkinson">Tom Wilkinson</a>, <a href="/wiki/Emily_Woof" title="Emily Woof">Emily Woof</a></small></span></li>
949
- </ul>
950
- <ul>
951
- <li><i><a href="/wiki/Shakespeare_in_Love" title="Shakespeare in Love">Shakespeare in Love</a></i> (1998)&#160;: <span class="wrap"><small><a href="/wiki/Ben_Affleck" title="Ben Affleck">Ben Affleck</a>, <a href="/wiki/Simon_Callow" title="Simon Callow">Simon Callow</a>, <a href="/wiki/Jim_Carter_(actor)" title="Jim Carter (actor)">Jim Carter</a>, <a href="/wiki/Martin_Clunes" title="Martin Clunes">Martin Clunes</a>, <a href="/wiki/Judi_Dench" title="Judi Dench">Judi Dench</a>, <a href="/wiki/Joseph_Fiennes" title="Joseph Fiennes">Joseph Fiennes</a>, <a href="/wiki/Colin_Firth" title="Colin Firth">Colin Firth</a>, <a href="/wiki/Gwyneth_Paltrow" title="Gwyneth Paltrow">Gwyneth Paltrow</a>, <a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a>, <a href="/wiki/Antony_Sher" title="Antony Sher">Antony Sher</a>, <a href="/wiki/Imelda_Staunton" title="Imelda Staunton">Imelda Staunton</a></small></span></li>
952
- </ul>
953
- <ul>
954
- <li><i><a href="/wiki/American_Beauty_(film)" title="American Beauty (film)">American Beauty</a></i> (1999)&#160;: <span class="wrap"><small><a href="/wiki/Annette_Bening" title="Annette Bening">Annette Bening</a>, <a href="/wiki/Wes_Bentley" title="Wes Bentley">Wes Bentley</a>, <a href="/wiki/Thora_Birch" title="Thora Birch">Thora Birch</a>, <a href="/wiki/Chris_Cooper_(actor)" title="Chris Cooper (actor)">Chris Cooper</a>, <a href="/wiki/Peter_Gallagher" title="Peter Gallagher">Peter Gallagher</a>, <a href="/wiki/Allison_Janney" title="Allison Janney">Allison Janney</a>, <a href="/wiki/Kevin_Spacey" title="Kevin Spacey">Kevin Spacey</a>, <a href="/wiki/Mena_Suvari" title="Mena Suvari">Mena Suvari</a></small></span></li>
955
- </ul>
956
- <ul>
957
- <li><i><a href="/wiki/Traffic_(2000_film)" title="Traffic (2000 film)">Traffic</a></i> (2000)&#160;: <span class="wrap"><small><a href="/wiki/Steven_Bauer" title="Steven Bauer">Steven Bauer</a>, <a href="/wiki/Benjamin_Bratt" title="Benjamin Bratt">Benjamin Bratt</a>, <a href="/wiki/James_Brolin" title="James Brolin">James Brolin</a>, <a href="/wiki/Don_Cheadle" title="Don Cheadle">Don Cheadle</a>, <a href="/wiki/Erika_Christensen" title="Erika Christensen">Erika Christensen</a>, <a href="/wiki/Clifton_Collins,_Jr." title="Clifton Collins, Jr.">Clifton Collins, Jr.</a>, <a href="/wiki/Benicio_del_Toro" title="Benicio del Toro">Benicio del Toro</a>, <a href="/wiki/Michael_Douglas" title="Michael Douglas">Michael Douglas</a>, <a href="/wiki/Miguel_Ferrer" title="Miguel Ferrer">Miguel Ferrer</a>, <a href="/wiki/Albert_Finney" title="Albert Finney">Albert Finney</a>, <a href="/wiki/Topher_Grace" title="Topher Grace">Topher Grace</a>, <a href="/wiki/Luis_Guzm%C3%A1n" title="Luis Guzmán">Luis Guzmán</a>, <a href="/wiki/Amy_Irving" title="Amy Irving">Amy Irving</a>, <a href="/wiki/Tom%C3%A1s_Mili%C3%A1n" title="Tomás Milián">Tomás Milián</a>, <a href="/wiki/D._W._Moffett" title="D. W. Moffett">D. W. Moffett</a>, <a href="/wiki/Dennis_Quaid" title="Dennis Quaid">Dennis Quaid</a>, <a href="/wiki/Peter_Riegert" title="Peter Riegert">Peter Riegert</a>, <a href="/wiki/Jacob_Vargas" title="Jacob Vargas">Jacob Vargas</a>, <a href="/wiki/Catherine_Zeta-Jones" title="Catherine Zeta-Jones">Catherine Zeta-Jones</a></small></span></li>
958
- </ul>
959
- </div>
960
- </td>
961
- </tr>
962
- <tr style="height:2px;">
963
- <td></td>
964
- </tr>
965
- <tr>
966
- <td class="navbox-abovebelow" colspan="2" style="background: #ABCDEF;">
967
- <div>
968
- <ul>
969
- <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture" title="Template:ScreenActorsGuildAward CastMotionPicture">Complete list</a></li>
970
- <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000" title="Template:ScreenActorsGuildAward CastMotionPicture 1995–2000">(1995–2000)</a></li>
971
- <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_2001%E2%80%932010" title="Template:ScreenActorsGuildAward CastMotionPicture 2001–2010">(2001–2010)</a></li>
972
- <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_2011%E2%80%932020" title="Template:ScreenActorsGuildAward CastMotionPicture 2011–2020">(2011–2020)</a></li>
973
- </ul>
974
- </div>
975
- </td>
976
- </tr>
977
- </table>
978
- </td>
979
- </tr>
980
- </table>
981
- <table cellspacing="0" class="navbox" style="border-spacing:0;">
982
- <tr>
983
- <td style="padding:2px;">
984
- <table cellspacing="0" class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
985
- <tr>
986
- <th scope="row" class="navbox-group"><a href="/wiki/Authority_control" title="Authority control">Authority control</a></th>
987
- <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
988
- <div style="padding:0em 0.25em;">
989
- <ul>
990
- <li><a href="/wiki/Virtual_International_Authority_File" title="Virtual International Authority File">VIAF</a>: <span class="uid"><a rel="nofollow" class="external text" href="http://viaf.org/viaf/39570812">39570812</a></span></li>
383
+ <li><i><a href="/wiki/The_Return_of_Billy_Jack" title="The Return of Billy Jack">The Return of Billy Jack</a></i> (1986; unreleased)</li>
991
384
  </ul>
992
385
  </div>
993
386
  </td>
@@ -996,77 +389,50 @@ Episode: "Beastmaster and Commander"</td>
996
389
  </td>
997
390
  </tr>
998
391
  </table>
999
- <table id="persondata" class="persondata" style="border:1px solid #aaa; display:none; speak:none;">
1000
- <tr>
1001
- <th colspan="2"><a href="/wiki/Wikipedia:Persondata" title="Wikipedia:Persondata">Persondata</a></th>
1002
- </tr>
1003
- <tr>
1004
- <td class="persondata-label" style="color:#aaa;">Name</td>
1005
- <td>Bacon, Kevin Norwood</td>
1006
- </tr>
1007
- <tr>
1008
- <td class="persondata-label" style="color:#aaa;">Alternative names</td>
1009
- <td></td>
1010
- </tr>
1011
- <tr>
1012
- <td class="persondata-label" style="color:#aaa;">Short description</td>
1013
- <td>American film and theater actor, musician</td>
1014
- </tr>
1015
- <tr>
1016
- <td class="persondata-label" style="color:#aaa;">Date of birth</td>
1017
- <td>July 8, 1958</td>
1018
- </tr>
1019
- <tr>
1020
- <td class="persondata-label" style="color:#aaa;">Place of birth</td>
1021
- <td><a href="/wiki/Philadelphia,_Pennsylvania" title="Philadelphia, Pennsylvania" class="mw-redirect">Philadelphia, Pennsylvania</a></td>
1022
- </tr>
1023
- <tr>
1024
- <td class="persondata-label" style="color:#aaa;">Date of death</td>
1025
- <td></td>
1026
- </tr>
1027
- <tr>
1028
- <td class="persondata-label" style="color:#aaa;">Place of death</td>
1029
- <td></td>
1030
- </tr>
1031
- </table>
1032
- <p><span id="interwiki-fr-fa"></span></p>
392
+
393
+
1033
394
  <!--
1034
395
  NewPP limit report
1035
- Preprocessor visited node count: 5302/1000000
1036
- Preprocessor generated node count: 18521/1500000
1037
- Post‐expand include size: 98885/2048000 bytes
1038
- Template argument size: 11791/2048000 bytes
1039
- Highest expansion depth: 20/40
1040
- Expensive parser function count: 17/500
1041
- Lua time usage: 0.181s
1042
- Lua memory usage: 2.63 MB
396
+ Parsed by mw1054
397
+ CPU time usage: 0.980 seconds
398
+ Real time usage: 1.071 seconds
399
+ Preprocessor visited node count: 1710/1000000
400
+ Preprocessor generated node count: 9561/1500000
401
+ Post‐expand include size: 34979/2048000 bytes
402
+ Template argument size: 2390/2048000 bytes
403
+ Highest expansion depth: 12/40
404
+ Expensive parser function count: 5/500
405
+ Lua time usage: 0.157/10.000 seconds
406
+ Lua memory usage: 2.48 MB/50 MB
1043
407
  -->
1044
- <!-- Saved in parser cache with key enwiki:pcache:idhash:16827-0!*!0!!en!4!* and timestamp 20130731064303 -->
1045
- <noscript><img src="//en.wikipedia.org/w/index.php?title=Special:CentralAutoLogin/start&amp;type=1x1&amp;from=enwiki" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div> <div class="printfooter">
1046
- Retrieved from "<a href="http://en.wikipedia.org/w/index.php?title=Kevin_Bacon&amp;oldid=566422525">http://en.wikipedia.org/w/index.php?title=Kevin_Bacon&amp;oldid=566422525</a>" </div>
1047
- <div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Categories" title="Help:Categories">Categories</a>: <ul><li><a href="/wiki/Category:1958_births" title="Category:1958 births">1958 births</a></li><li><a href="/wiki/Category:Actors_from_Philadelphia,_Pennsylvania" title="Category:Actors from Philadelphia, Pennsylvania">Actors from Philadelphia, Pennsylvania</a></li><li><a href="/wiki/Category:American_film_actors" title="Category:American film actors">American film actors</a></li><li><a href="/wiki/Category:American_soap_opera_actors" title="Category:American soap opera actors">American soap opera actors</a></li><li><a href="/wiki/Category:American_television_actors" title="Category:American television actors">American television actors</a></li><li><a href="/wiki/Category:American_voice_actors" title="Category:American voice actors">American voice actors</a></li><li><a href="/wiki/Category:Best_Miniseries_or_Television_Movie_Actor_Golden_Globe_winners" title="Category:Best Miniseries or Television Movie Actor Golden Globe winners">Best Miniseries or Television Movie Actor Golden Globe winners</a></li><li><a href="/wiki/Category:Circle_in_the_Square_Theatre_School_alumni" title="Category:Circle in the Square Theatre School alumni">Circle in the Square Theatre School alumni</a></li><li><a href="/wiki/Category:Living_people" title="Category:Living people">Living people</a></li><li><a href="/wiki/Category:Obie_Award_recipients" title="Category:Obie Award recipients">Obie Award recipients</a></li><li><a href="/wiki/Category:Outstanding_Performance_by_a_Cast_in_a_Motion_Picture_Screen_Actors_Guild_Award_winners" title="Category:Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners">Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners</a></li><li><a href="/wiki/Category:Sedgwick_family" title="Category:Sedgwick family">Sedgwick family</a></li><li><a href="/wiki/Category:20th-century_American_actors" title="Category:20th-century American actors">20th-century American actors</a></li><li><a href="/wiki/Category:21st-century_American_actors" title="Category:21st-century American actors">21st-century American actors</a></li><li><a href="/wiki/Category:American_male_actors" title="Category:American male actors">American male actors</a></li><li><a href="/wiki/Category:American_atheists" title="Category:American atheists">American atheists</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:All_articles_with_dead_external_links" title="Category:All articles with dead external links">All articles with dead external links</a></li><li><a href="/wiki/Category:Articles_with_dead_external_links_from_October_2010" title="Category:Articles with dead external links from October 2010">Articles with dead external links from October 2010</a></li><li><a href="/wiki/Category:Wikipedia_indefinitely_semi-protected_biographies_of_living_people" title="Category:Wikipedia indefinitely semi-protected biographies of living people">Wikipedia indefinitely semi-protected biographies of living people</a></li><li><a href="/wiki/Category:Use_mdy_dates_from_June_2011" title="Category:Use mdy dates from June 2011">Use mdy dates from June 2011</a></li><li><a href="/wiki/Category:Articles_with_hCards" title="Category:Articles with hCards">Articles with hCards</a></li><li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_July_2011" title="Category:Articles with unsourced statements from July 2011">Articles with unsourced statements from July 2011</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_October_2009" title="Category:Articles with unsourced statements from October 2009">Articles with unsourced statements from October 2009</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_January_2008" title="Category:Articles with unsourced statements from January 2008">Articles with unsourced statements from January 2008</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_January_2010" title="Category:Articles with unsourced statements from January 2010">Articles with unsourced statements from January 2010</a></li><li><a href="/wiki/Category:Commons_category_template_with_no_category_set" title="Category:Commons category template with no category set">Commons category template with no category set</a></li><li><a href="/wiki/Category:Commons_category_with_page_title_same_as_on_Wikidata" title="Category:Commons category with page title same as on Wikidata">Commons category with page title same as on Wikidata</a></li><li><a href="/wiki/Category:Wikipedia_articles_with_VIAF_identifiers" title="Category:Wikipedia articles with VIAF identifiers">Wikipedia articles with VIAF identifiers</a></li></ul></div></div> <div class="visualClear"></div>
408
+
409
+ <!-- Saved in parser cache with key enwiki:pcache:idhash:966552-0!*!0!!en!4!* and timestamp 20140408084139
410
+ -->
411
+ <noscript><img src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div> <div class="printfooter">
412
+ Retrieved from "<a href="http://en.wikipedia.org/w/index.php?title=Billy_Jack&amp;oldid=603090957">http://en.wikipedia.org/w/index.php?title=Billy_Jack&amp;oldid=603090957</a>" </div>
413
+ <div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/wiki/Category:English-language_films" title="Category:English-language films">English-language films</a></li><li><a href="/wiki/Category:1971_films" title="Category:1971 films">1971 films</a></li><li><a href="/wiki/Category:Counterculture_of_the_1960s" title="Category:Counterculture of the 1960s">Counterculture of the 1960s</a></li><li><a href="/wiki/Category:Fictional_Navajo_people" title="Category:Fictional Navajo people">Fictional Navajo people</a></li><li><a href="/wiki/Category:Films_about_Native_Americans" title="Category:Films about Native Americans">Films about Native Americans</a></li><li><a href="/wiki/Category:Films_shot_in_Arizona" title="Category:Films shot in Arizona">Films shot in Arizona</a></li><li><a href="/wiki/Category:Films_shot_in_California" title="Category:Films shot in California">Films shot in California</a></li><li><a href="/wiki/Category:Films_shot_in_New_Mexico" title="Category:Films shot in New Mexico">Films shot in New Mexico</a></li><li><a href="/wiki/Category:Hapkido_films" title="Category:Hapkido films">Hapkido films</a></li><li><a href="/wiki/Category:Hippie_films" title="Category:Hippie films">Hippie films</a></li><li><a href="/wiki/Category:Prescott,_Arizona" title="Category:Prescott, Arizona">Prescott, Arizona</a></li><li><a href="/wiki/Category:Vigilante_films" title="Category:Vigilante films">Vigilante films</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:Articles_needing_additional_references_from_November_2010" title="Category:Articles needing additional references from November 2010">Articles needing additional references from November 2010</a></li><li><a href="/wiki/Category:All_articles_needing_additional_references" title="Category:All articles needing additional references">All articles needing additional references</a></li><li><a href="/wiki/Category:Film_articles_using_image_size_parameter" title="Category:Film articles using image size parameter">Film articles using image size parameter</a></li><li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_December_2012" title="Category:Articles with unsourced statements from December 2012">Articles with unsourced statements from December 2012</a></li><li><a href="/wiki/Category:Articles_with_hAudio_microformats" title="Category:Articles with hAudio microformats">Articles with hAudio microformats</a></li><li><a href="/wiki/Category:Album_infoboxes_lacking_a_cover" title="Category:Album infoboxes lacking a cover">Album infoboxes lacking a cover</a></li></ul></div></div> <div class="visualClear"></div>
1048
414
  </div>
1049
415
  </div>
1050
416
  <div id="mw-navigation">
1051
417
  <h2>Navigation menu</h2>
1052
418
  <div id="mw-head">
1053
- <div id="p-personal" role="navigation" class="">
1054
- <h3>Personal tools</h3>
419
+ <div id="p-personal" role="navigation" class="" aria-labelledby="p-personal-label">
420
+ <h3 id="p-personal-label">Personal tools</h3>
1055
421
  <ul>
1056
- <li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Kevin+Bacon&amp;type=signup">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Kevin+Bacon" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li> </ul>
422
+ <li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Billy+Jack&amp;type=signup">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Billy+Jack" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li> </ul>
1057
423
  </div>
1058
424
  <div id="left-navigation">
1059
- <div id="p-namespaces" role="navigation" class="vectorTabs">
1060
- <h3>Namespaces</h3>
425
+ <div id="p-namespaces" role="navigation" class="vectorTabs" aria-labelledby="p-namespaces-label">
426
+ <h3 id="p-namespaces-label">Namespaces</h3>
1061
427
  <ul>
1062
- <li id="ca-nstab-main" class="selected"><span><a href="/wiki/Kevin_Bacon" title="View the content page [c]" accesskey="c">Article</a></span></li>
1063
- <li id="ca-talk"><span><a href="/wiki/Talk:Kevin_Bacon" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
428
+ <li id="ca-nstab-main" class="selected"><span><a href="/wiki/Billy_Jack" title="View the content page [c]" accesskey="c">Article</a></span></li>
429
+ <li id="ca-talk"><span><a href="/wiki/Talk:Billy_Jack" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
1064
430
  </ul>
1065
431
  </div>
1066
- <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet">
432
+ <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-variants-label">
1067
433
  <h3 id="mw-vector-current-variant">
1068
434
  </h3>
1069
- <h3><span>Variants</span><a href="#"></a></h3>
435
+ <h3 id="p-variants-label"><span>Variants</span><a href="#"></a></h3>
1070
436
  <div class="menu">
1071
437
  <ul>
1072
438
  </ul>
@@ -1074,16 +440,16 @@ Lua memory usage: 2.63 MB
1074
440
  </div>
1075
441
  </div>
1076
442
  <div id="right-navigation">
1077
- <div id="p-views" role="navigation" class="vectorTabs">
1078
- <h3>Views</h3>
443
+ <div id="p-views" role="navigation" class="vectorTabs" aria-labelledby="p-views-label">
444
+ <h3 id="p-views-label">Views</h3>
1079
445
  <ul>
1080
- <li id="ca-view" class="selected"><span><a href="/wiki/Kevin_Bacon" >Read</a></span></li>
1081
- <li id="ca-viewsource"><span><a href="/w/index.php?title=Kevin_Bacon&amp;action=edit" title="This page is protected.&#10;You can view its source [e]" accesskey="e">View source</a></span></li>
1082
- <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Kevin_Bacon&amp;action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
446
+ <li id="ca-view" class="selected"><span><a href="/wiki/Billy_Jack" >Read</a></span></li>
447
+ <li id="ca-edit"><span><a href="/w/index.php?title=Billy_Jack&amp;action=edit" title="You can edit this page. &#10;Please review your changes before saving. [e]" accesskey="e">Edit</a></span></li>
448
+ <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Billy_Jack&amp;action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
1083
449
  </ul>
1084
450
  </div>
1085
- <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet">
1086
- <h3><span>Actions</span><a href="#"></a></h3>
451
+ <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-cactions-label">
452
+ <h3 id="p-cactions-label"><span>Actions</span><a href="#"></a></h3>
1087
453
  <div class="menu">
1088
454
  <ul>
1089
455
  </ul>
@@ -1092,17 +458,16 @@ Lua memory usage: 2.63 MB
1092
458
  <div id="p-search" role="search">
1093
459
  <h3><label for="searchInput">Search</label></h3>
1094
460
  <form action="/w/index.php" id="searchform">
1095
- <div id="simpleSearch">
1096
- <input name="search" placeholder="Search" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search Wikipedia for this text" id="searchButton"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/vector/images/search-ltr.png?303-4" alt="Search" width="12" height="13" /></button> <input type='hidden' name="title" value="Special:Search"/>
1097
- </div>
461
+ <div id="simpleSearch">
462
+ <input type="search" name="search" placeholder="Search" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /><input type="hidden" value="Special:Search" name="title" /><input type="submit" name="fulltext" value="Search" title="Search Wikipedia for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton" /><input type="submit" name="go" value="Go" title="Go to a page with this exact name if one exists" id="searchButton" class="searchButton" /> </div>
1098
463
  </form>
1099
464
  </div>
1100
465
  </div>
1101
466
  </div>
1102
467
  <div id="mw-panel">
1103
468
  <div id="p-logo" role="banner"><a style="background-image: url(//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);" href="/wiki/Main_Page" title="Visit the main page"></a></div>
1104
- <div class="portal" role="navigation" id='p-navigation'>
1105
- <h3>Navigation</h3>
469
+ <div class="portal" role="navigation" id='p-navigation' aria-labelledby='p-navigation-label'>
470
+ <h3 id='p-navigation-label'>Navigation</h3>
1106
471
  <div class="body">
1107
472
  <ul>
1108
473
  <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
@@ -1110,12 +475,13 @@ Lua memory usage: 2.63 MB
1110
475
  <li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
1111
476
  <li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
1112
477
  <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
1113
- <li id="n-sitesupport"><a href="//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li>
478
+ <li id="n-sitesupport"><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li>
479
+ <li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikimedia Shop">Wikimedia Shop</a></li>
1114
480
  </ul>
1115
481
  </div>
1116
482
  </div>
1117
- <div class="portal" role="navigation" id='p-interaction'>
1118
- <h3>Interaction</h3>
483
+ <div class="portal" role="navigation" id='p-interaction' aria-labelledby='p-interaction-label'>
484
+ <h3 id='p-interaction-label'>Interaction</h3>
1119
485
  <div class="body">
1120
486
  <ul>
1121
487
  <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
@@ -1126,75 +492,38 @@ Lua memory usage: 2.63 MB
1126
492
  </ul>
1127
493
  </div>
1128
494
  </div>
1129
- <div class="portal" role="navigation" id='p-tb'>
1130
- <h3>Toolbox</h3>
495
+ <div class="portal" role="navigation" id='p-tb' aria-labelledby='p-tb-label'>
496
+ <h3 id='p-tb-label'>Tools</h3>
1131
497
  <div class="body">
1132
498
  <ul>
1133
- <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Kevin_Bacon" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
1134
- <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Kevin_Bacon" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
499
+ <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Billy_Jack" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
500
+ <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Billy_Jack" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
1135
501
  <li id="t-upload"><a href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u">Upload file</a></li>
1136
502
  <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
1137
- <li id="t-permalink"><a href="/w/index.php?title=Kevin_Bacon&amp;oldid=566422525" title="Permanent link to this revision of the page">Permanent link</a></li>
1138
- <li id="t-info"><a href="/w/index.php?title=Kevin_Bacon&amp;action=info">Page information</a></li>
1139
- <li id="t-wikibase"><a href="//www.wikidata.org/wiki/Q3454165" title="Link to connected data repository item">Data item</a></li>
1140
- <li id="t-cite"><a href="/w/index.php?title=Special:Cite&amp;page=Kevin_Bacon&amp;id=566422525" title="Information on how to cite this page">Cite this page</a></li> </ul>
503
+ <li id="t-permalink"><a href="/w/index.php?title=Billy_Jack&amp;oldid=603090957" title="Permanent link to this revision of the page">Permanent link</a></li>
504
+ <li id="t-info"><a href="/w/index.php?title=Billy_Jack&amp;action=info">Page information</a></li>
505
+ <li id="t-wikibase"><a href="//www.wikidata.org/wiki/Q2027905" title="Link to connected data repository item [g]" accesskey="g">Data item</a></li>
506
+ <li id="t-cite"><a href="/w/index.php?title=Special:Cite&amp;page=Billy_Jack&amp;id=603090957" title="Information on how to cite this page">Cite this page</a></li> </ul>
1141
507
  </div>
1142
508
  </div>
1143
- <div class="portal" role="navigation" id='p-coll-print_export'>
1144
- <h3>Print/export</h3>
509
+ <div class="portal" role="navigation" id='p-coll-print_export' aria-labelledby='p-coll-print_export-label'>
510
+ <h3 id='p-coll-print_export-label'>Print/export</h3>
1145
511
  <div class="body">
1146
512
  <ul>
1147
- <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Kevin+Bacon">Create a book</a></li>
1148
- <li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Kevin+Bacon&amp;oldid=566422525&amp;writer=rl">Download as PDF</a></li>
1149
- <li id="t-print"><a href="/w/index.php?title=Kevin_Bacon&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>
513
+ <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Billy+Jack">Create a book</a></li>
514
+ <li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Billy+Jack&amp;oldid=603090957&amp;writer=rl">Download as PDF</a></li>
515
+ <li id="t-print"><a href="/w/index.php?title=Billy_Jack&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>
1150
516
  </ul>
1151
517
  </div>
1152
518
  </div>
1153
- <div class="portal" role="navigation" id='p-lang'>
1154
- <h3>Languages</h3>
519
+ <div class="portal" role="navigation" id='p-lang' aria-labelledby='p-lang-label'>
520
+ <h3 id='p-lang-label'>Languages</h3>
1155
521
  <div class="body">
1156
522
  <ul>
1157
- <li class="interwiki-ar"><a href="//ar.wikipedia.org/wiki/%D9%83%D9%8A%D9%81%D9%8A%D9%86_%D8%A8%D9%8A%D9%83%D9%86" title="كيفين بيكن" lang="ar" hreflang="ar">العربية</a></li>
1158
- <li class="interwiki-an"><a href="//an.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="an" hreflang="an">Aragonés</a></li>
1159
- <li class="interwiki-zh-min-nan"><a href="//zh-min-nan.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="zh-min-nan" hreflang="zh-min-nan">Bân-lâm-gú</a></li>
1160
- <li class="interwiki-bg"><a href="//bg.wikipedia.org/wiki/%D0%9A%D0%B5%D0%B2%D0%B8%D0%BD_%D0%91%D0%B5%D0%B9%D0%BA%D1%8A%D0%BD" title="Кевин Бейкън" lang="bg" hreflang="bg">Български</a></li>
1161
- <li class="interwiki-ca"><a href="//ca.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="ca" hreflang="ca">Català</a></li>
1162
- <li class="interwiki-da"><a href="//da.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="da" hreflang="da">Dansk</a></li>
1163
- <li class="interwiki-de"><a href="//de.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="de" hreflang="de">Deutsch</a></li>
1164
- <li class="interwiki-el"><a href="//el.wikipedia.org/wiki/%CE%9A%CE%AD%CE%B2%CE%B9%CE%BD_%CE%9C%CF%80%CE%AD%CE%B9%CE%BA%CE%BF%CE%BD" title="Κέβιν Μπέικον" lang="el" hreflang="el">Ελληνικά</a></li>
1165
- <li class="interwiki-es"><a href="//es.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="es" hreflang="es">Español</a></li>
1166
- <li class="interwiki-eu"><a href="//eu.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="eu" hreflang="eu">Euskara</a></li>
1167
- <li class="interwiki-fa"><a href="//fa.wikipedia.org/wiki/%DA%A9%D9%88%DB%8C%D9%86_%D8%A8%DB%8C%DA%A9%D9%86" title="کوین بیکن" lang="fa" hreflang="fa">فارسی</a></li>
1168
- <li class="interwiki-fr"><a href="//fr.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="fr" hreflang="fr">Français</a></li>
1169
- <li class="interwiki-gl"><a href="//gl.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="gl" hreflang="gl">Galego</a></li>
1170
- <li class="interwiki-ko"><a href="//ko.wikipedia.org/wiki/%EC%BC%80%EB%B9%88_%EB%B2%A0%EC%9D%B4%EC%BB%A8" title="케빈 베이컨" lang="ko" hreflang="ko">한국어</a></li>
1171
- <li class="interwiki-hr"><a href="//hr.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="hr" hreflang="hr">Hrvatski</a></li>
1172
- <li class="interwiki-io"><a href="//io.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="io" hreflang="io">Ido</a></li>
1173
- <li class="interwiki-id"><a href="//id.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="id" hreflang="id">Bahasa Indonesia</a></li>
1174
- <li class="interwiki-it"><a href="//it.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="it" hreflang="it">Italiano</a></li>
1175
- <li class="interwiki-he"><a href="//he.wikipedia.org/wiki/%D7%A7%D7%95%D7%95%D7%99%D7%9F_%D7%91%D7%99%D7%99%D7%A7%D7%95%D7%9F" title="קווין בייקון" lang="he" hreflang="he">עברית</a></li>
1176
- <li class="interwiki-ka"><a href="//ka.wikipedia.org/wiki/%E1%83%99%E1%83%94%E1%83%95%E1%83%98%E1%83%9C_%E1%83%91%E1%83%94%E1%83%98%E1%83%99%E1%83%9D%E1%83%9C%E1%83%98" title="კევინ ბეიკონი" lang="ka" hreflang="ka">ქართული</a></li>
1177
- <li class="interwiki-hu"><a href="//hu.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="hu" hreflang="hu">Magyar</a></li>
1178
- <li class="interwiki-nl"><a href="//nl.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="nl" hreflang="nl">Nederlands</a></li>
1179
- <li class="interwiki-ja"><a href="//ja.wikipedia.org/wiki/%E3%82%B1%E3%83%B4%E3%82%A3%E3%83%B3%E3%83%BB%E3%83%99%E3%83%BC%E3%82%B3%E3%83%B3" title="ケヴィン・ベーコン" lang="ja" hreflang="ja">日本語</a></li>
1180
- <li class="interwiki-no"><a href="//no.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="no" hreflang="no">Norsk bokmål</a></li>
1181
- <li class="interwiki-oc"><a href="//oc.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="oc" hreflang="oc">Occitan</a></li>
1182
- <li class="interwiki-pl"><a href="//pl.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="pl" hreflang="pl">Polski</a></li>
1183
- <li class="interwiki-pt"><a href="//pt.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="pt" hreflang="pt">Português</a></li>
1184
- <li class="interwiki-ru"><a href="//ru.wikipedia.org/wiki/%D0%91%D1%8D%D0%B9%D0%BA%D0%BE%D0%BD,_%D0%9A%D0%B5%D0%B2%D0%B8%D0%BD" title="Бэйкон, Кевин" lang="ru" hreflang="ru">Русский</a></li>
1185
- <li class="interwiki-simple"><a href="//simple.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="simple" hreflang="simple">Simple English</a></li>
1186
- <li class="interwiki-sk"><a href="//sk.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="sk" hreflang="sk">Slovenčina</a></li>
1187
- <li class="interwiki-sr"><a href="//sr.wikipedia.org/wiki/%D0%9A%D0%B5%D0%B2%D0%B8%D0%BD_%D0%91%D0%B5%D1%98%D0%BA%D0%BE%D0%BD" title="Кевин Бејкон" lang="sr" hreflang="sr">Српски / srpski</a></li>
1188
- <li class="interwiki-sh"><a href="//sh.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="sh" hreflang="sh">Srpskohrvatski / српскохрватски</a></li>
1189
- <li class="interwiki-fi"><a href="//fi.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="fi" hreflang="fi">Suomi</a></li>
1190
- <li class="interwiki-sv"><a href="//sv.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="sv" hreflang="sv">Svenska</a></li>
1191
- <li class="interwiki-th"><a href="//th.wikipedia.org/wiki/%E0%B9%80%E0%B8%84%E0%B8%A7%E0%B8%B4%E0%B8%99_%E0%B9%80%E0%B8%9A%E0%B8%84%E0%B8%AD%E0%B8%99" title="เควิน เบคอน" lang="th" hreflang="th">ไทย</a></li>
1192
- <li class="interwiki-tr"><a href="//tr.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="tr" hreflang="tr">Türkçe</a></li>
1193
- <li class="interwiki-uk"><a href="//uk.wikipedia.org/wiki/%D0%9A%D0%B5%D0%B2%D1%96%D0%BD_%D0%91%D0%B5%D0%B9%D0%BA%D0%BE%D0%BD" title="Кевін Бейкон" lang="uk" hreflang="uk">Українська</a></li>
1194
- <li class="interwiki-vi"><a href="//vi.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="vi" hreflang="vi">Tiếng Việt</a></li>
1195
- <li class="interwiki-zh"><a href="//zh.wikipedia.org/wiki/%E5%87%AF%E6%96%87%C2%B7%E8%B4%9D%E8%82%AF" title="凯文·贝肯" lang="zh" hreflang="zh">中文</a></li>
523
+ <li class="interlanguage-link interwiki-nl"><a href="//nl.wikipedia.org/wiki/Billy_Jack" title="Billy Jack – Dutch" lang="nl" hreflang="nl">Nederlands</a></li>
524
+ <li class="interlanguage-link interwiki-ja"><a href="//ja.wikipedia.org/wiki/%E6%98%8E%E6%97%A5%E3%81%AE%E5%A3%81%E3%82%92%E3%81%B6%E3%81%A1%E7%A0%B4%E3%82%8C" title="明日の壁をぶち破れ – Japanese" lang="ja" hreflang="ja">日本語</a></li>
1196
525
  <li class="uls-p-lang-dummy"><a href="#"></a></li>
1197
- <li class="wbc-editpage"><a href="//www.wikidata.org/wiki/Q3454165#sitelinks-wikipedia" title="Edit interlanguage links">Edit links</a></li>
526
+ <li class="wbc-editpage"><a href="//www.wikidata.org/wiki/Q2027905#sitelinks-wikipedia" title="Edit interlanguage links">Edit links</a></li>
1198
527
  </ul>
1199
528
  </div>
1200
529
  </div>
@@ -1202,7 +531,7 @@ Lua memory usage: 2.63 MB
1202
531
  </div>
1203
532
  <div id="footer" role="contentinfo">
1204
533
  <ul id="footer-info">
1205
- <li id="footer-info-lastmod"> This page was last modified on 30 July 2013 at 13:18.<br /></li>
534
+ <li id="footer-info-lastmod"> This page was last modified on 7 April 2014 at 02:11.<br /></li>
1206
535
  <li id="footer-info-copyright">Text is available under the <a rel="license" href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a><a rel="license" href="//creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></a>;
1207
536
  additional terms may apply. By using this site, you agree to the <a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy.</a> <br/>
1208
537
  Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
@@ -1212,14 +541,15 @@ Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.
1212
541
  <li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
1213
542
  <li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
1214
543
  <li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
1215
- <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/wiki/Kevin_Bacon" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
544
+ <li id="footer-places-developers"><a class="external" href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
545
+ <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/wiki/Billy_Jack" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
1216
546
  </ul>
1217
547
  <ul id="footer-icons" class="noprint">
1218
548
  <li id="footer-copyrightico">
1219
549
  <a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
1220
550
  </li>
1221
551
  <li id="footer-poweredbyico">
1222
- <a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
552
+ <a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/static-1.23wmf20/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
1223
553
  </li>
1224
554
  </ul>
1225
555
  <div style="clear:both"></div>
@@ -1228,9 +558,9 @@ Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.
1228
558
  mw.loader.state({"site":"loading","user":"ready","user.groups":"ready"});
1229
559
  }</script>
1230
560
  <script>if(window.mw){
1231
- mw.loader.load(["mediawiki.action.view.postEdit","mobile.desktop","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.DRN-wizard","ext.gadget.charinsert","mw.MwEmbedSupport.style","ext.vector.collapsibleNav","ext.articleFeedbackv5.startup","schema.Edit","ext.gettingstarted.logging","ext.gettingstarted.openTask","ext.navigationTiming","mw.PopUpMediaTransform"],null,true);
561
+ mw.loader.load(["ext.cite","mobile.desktop","mediawiki.action.view.postEdit","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.DRN-wizard","ext.gadget.charinsert","mw.MwEmbedSupport.style","mmv.bootstrap.autostart","ext.eventLogging.subscriber","ext.navigationTiming","schema.UniversalLanguageSelector","ext.uls.eventlogger","ext.uls.interlanguage","skins.vector.collapsibleNav"],null,true);
1232
562
  }</script>
1233
563
  <script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=scripts&amp;skin=vector&amp;*"></script>
1234
- <!-- Served by mw1018 in 0.228 secs. -->
564
+ <!-- Served by mw1054 in 1.334 secs. -->
1235
565
  </body>
1236
566
  </html>