pubgen 0.1.3 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -1
- data/README.md +41 -24
- data/Rakefile +76 -1
- data/bin/pubgen +73 -53
- data/lib/pubgen.rb +1 -0
- data/lib/pubgen/container.rb +2 -0
- data/lib/pubgen/cover_page.rb +1 -0
- data/lib/pubgen/ncx.rb +6 -6
- data/lib/pubgen/opf.rb +25 -24
- data/lib/pubgen/version.rb +2 -1
- data/lib/pubgen/yaml.rb +130 -0
- data/pubgen.gemspec +3 -2
- data/test/output/will_oldham.yml +42 -0
- data/test/test_ncx.rb +0 -1
- data/test/test_opf.rb +0 -1
- data/test/toc_1/will_oldham.html +646 -0
- data/test/toc_1/will_oldham.yml +85 -0
- data/test/toc_2/couchdb.html +55 -0
- data/test/toc_2/couchdb.yml +64 -0
- metadata +23 -7
data/lib/pubgen/container.rb
CHANGED
data/lib/pubgen/cover_page.rb
CHANGED
data/lib/pubgen/ncx.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
module Pubgen
|
2
2
|
module NCX
|
3
|
+
# Generates the NCX XML.
|
3
4
|
def self.generate(title, toc, uuid)
|
4
5
|
# header
|
5
6
|
toc_xml = <<EOF
|
@@ -21,14 +22,13 @@ EOF
|
|
21
22
|
# NavPoint traces indentation, so we need class and instantiation of it
|
22
23
|
nav_point = NavPointImpl.new
|
23
24
|
toc.each do |name_and_path|
|
24
|
-
toc_xml
|
25
|
+
toc_xml << nav_point.generate(name_and_path)
|
25
26
|
end
|
26
27
|
# footer
|
27
|
-
toc_xml
|
28
|
+
toc_xml << " </navMap>\n</ncx>"
|
28
29
|
end
|
29
30
|
|
30
|
-
#
|
31
|
-
# it's private. only Pubgen.NCX.generate use it
|
31
|
+
# Defines private class. Only Pubgen::NCX.generate use it.
|
32
32
|
class NavPointImpl
|
33
33
|
private
|
34
34
|
def generate_impl(name_and_path, depth)
|
@@ -65,12 +65,12 @@ EOF
|
|
65
65
|
navpoint_xml = header % [@play_order, @play_order,
|
66
66
|
CGI.escapeHTML(key.split(" -- ")[0]), key.split(" -- ")[1]]
|
67
67
|
value.each do |v|
|
68
|
-
navpoint_xml
|
68
|
+
navpoint_xml << generate_impl(v, depth + 1)
|
69
69
|
end
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
73
|
-
navpoint_xml
|
73
|
+
navpoint_xml << footer
|
74
74
|
end
|
75
75
|
|
76
76
|
public
|
data/lib/pubgen/opf.rb
CHANGED
@@ -2,51 +2,52 @@ require 'cgi'
|
|
2
2
|
|
3
3
|
module Pubgen
|
4
4
|
module OPF
|
5
|
+
# Returns opf file path.
|
5
6
|
def self.ncx_path
|
6
7
|
'toc.ncx'
|
7
8
|
end
|
8
9
|
|
10
|
+
# Generates the OPF XML.
|
9
11
|
def self.generate(yaml, uuid)
|
10
12
|
cover_id, manifest_xml, file2id =
|
11
13
|
OPFImpl.get_cover_id_and_manifest_xml(yaml['guide']['cover-image'],
|
12
14
|
yaml['manifest'])
|
13
|
-
|
14
|
-
spine_xml = OPFImpl.get_spine_xml(yaml['spine'], file2id)
|
15
|
-
guide_xml = OPFImpl.get_guide_xml(yaml['guide'], file2id)
|
16
|
-
|
17
|
-
<<EOF
|
15
|
+
header = <<EOF
|
18
16
|
<?xml version='1.0' encoding='utf-8'?>
|
19
17
|
<package xmlns="http://www.idpf.org/2007/opf" version="2.0" \
|
20
18
|
unique-identifier="uuid_id">
|
21
|
-
#{metadata_xml}#{manifest_xml}#{spine_xml}#{guide_xml}</package>
|
22
19
|
EOF
|
20
|
+
header << OPFImpl.get_metadata_xml(yaml['metadata'], uuid, cover_id) <<
|
21
|
+
manifest_xml <<
|
22
|
+
OPFImpl.get_spine_xml(yaml['spine'], file2id) <<
|
23
|
+
OPFImpl.get_guide_xml(yaml['guide'], file2id) <<
|
24
|
+
'</package>'
|
23
25
|
end
|
24
26
|
|
25
|
-
# sub directories and relative paths
|
27
|
+
# Checks if element is sub directories and relative paths form
|
26
28
|
def self.valid_manifest_element?(e)
|
27
29
|
e[0..2] != "../" && e[0] != "/"
|
28
30
|
end
|
29
31
|
|
30
|
-
#
|
31
|
-
# it's private. only Pubgen.OPF.generate use it
|
32
|
+
# Defines private class. Only Pubgen::OPF.generate use it.
|
32
33
|
module OPFImpl
|
33
34
|
def self.guess_media_type(filename)
|
34
35
|
case filename.downcase
|
35
|
-
when /.*\.x?html?$/
|
36
|
+
when /.*\.x?html?$/
|
36
37
|
'application/xhtml+xml'
|
37
|
-
when /.*\.css$/
|
38
|
+
when /.*\.css$/
|
38
39
|
'text/css'
|
39
40
|
when /.*\.(jpeg|jpg)$/
|
40
41
|
'image/jpeg'
|
41
|
-
when /.*\.png$/
|
42
|
+
when /.*\.png$/
|
42
43
|
'image/png'
|
43
|
-
when /.*\.gif$/
|
44
|
+
when /.*\.gif$/
|
44
45
|
'image/gif'
|
45
|
-
when /.*\.svg$/
|
46
|
+
when /.*\.svg$/
|
46
47
|
'image/svg+xml'
|
47
|
-
when /.*\.ncx$/
|
48
|
+
when /.*\.ncx$/
|
48
49
|
'application/x-dtbncx+xml'
|
49
|
-
when /.*\.opf$/
|
50
|
+
when /.*\.opf$/
|
50
51
|
'application/oebps-package+xml'
|
51
52
|
else
|
52
53
|
'application/octet-stream'
|
@@ -65,7 +66,7 @@ EOF
|
|
65
66
|
"yaml file"
|
66
67
|
end
|
67
68
|
id = "i%03d" % no
|
68
|
-
manifest_xml
|
69
|
+
manifest_xml << " <item id=\"#{id}\" href=\"#{path}\" " +
|
69
70
|
"media-type=\"#{guess_media_type(path)}\"/>\n"
|
70
71
|
if path == cover_path
|
71
72
|
cover_id = id
|
@@ -79,7 +80,7 @@ EOF
|
|
79
80
|
raise "Failed to find cover-image from manifest"
|
80
81
|
end
|
81
82
|
|
82
|
-
manifest_xml
|
83
|
+
manifest_xml << " <item id=\"ncx\" href=\"#{OPF.ncx_path}\" " +
|
83
84
|
"media-type=\"application/x-dtbncx+xml\"/>\n </manifest>\n"
|
84
85
|
|
85
86
|
return cover_id, manifest_xml, file2id
|
@@ -124,7 +125,7 @@ EOF
|
|
124
125
|
if file2id[cover_page] == nil
|
125
126
|
raise "Failed to find cover-page from manifest"
|
126
127
|
else
|
127
|
-
guide_xml
|
128
|
+
guide_xml << " <reference href=\"#{cover_page}\" " +
|
128
129
|
"type=\"cover\" title=\"Cover\"/>\n"
|
129
130
|
end
|
130
131
|
end
|
@@ -133,7 +134,7 @@ EOF
|
|
133
134
|
if file2id[toc_page] == nil
|
134
135
|
raise "Failed to find toc-page from manifest"
|
135
136
|
else
|
136
|
-
guide_xml
|
137
|
+
guide_xml << " <reference href=\"#{toc_page}\" type=\"toc\" " +
|
137
138
|
"title=\"Table of Contents\"/>\n"
|
138
139
|
end
|
139
140
|
end
|
@@ -142,23 +143,23 @@ EOF
|
|
142
143
|
if file2id[title_page] == nil
|
143
144
|
raise "Failed to find title-page from manifest"
|
144
145
|
else
|
145
|
-
guide_xml
|
146
|
+
guide_xml << " <reference href=\"#{title_page}\" " +
|
146
147
|
"type=\"title-page\" title=\"Title Page\"/>\n"
|
147
148
|
end
|
148
149
|
end
|
149
|
-
guide_xml
|
150
|
+
guide_xml << " </guide>\n"
|
150
151
|
end
|
151
152
|
|
152
153
|
def self.get_spine_xml(spine, file2id)
|
153
154
|
spine_xml = " <spine toc=\"ncx\">\n"
|
154
155
|
spine.each do |path|
|
155
156
|
if file2id[path] != nil
|
156
|
-
spine_xml
|
157
|
+
spine_xml << " <itemref idref=\"#{file2id[path]}\"/>\n"
|
157
158
|
else
|
158
159
|
raise "Failed to find spine element `#{path}' from manifest"
|
159
160
|
end
|
160
161
|
end
|
161
|
-
spine_xml
|
162
|
+
spine_xml << " </spine>\n"
|
162
163
|
end
|
163
164
|
end
|
164
165
|
end
|
data/lib/pubgen/version.rb
CHANGED
data/lib/pubgen/yaml.rb
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'hpricot'
|
3
|
+
require 'cgi'
|
4
|
+
|
5
|
+
module Pubgen
|
6
|
+
module YAML
|
7
|
+
# Generates the YAML using input toc file.
|
8
|
+
def self.generate(epub_root, toc_html)
|
9
|
+
rpathmap = {}
|
10
|
+
manifest = <<EOF
|
11
|
+
# METADATA: Publication metadata (title, author, publisher, etc.).
|
12
|
+
#
|
13
|
+
# See http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.2
|
14
|
+
metadata:
|
15
|
+
title:
|
16
|
+
creator:
|
17
|
+
date:
|
18
|
+
language:
|
19
|
+
subject:
|
20
|
+
publisher:
|
21
|
+
contributor:
|
22
|
+
description:
|
23
|
+
source:
|
24
|
+
rights:
|
25
|
+
relation:
|
26
|
+
|
27
|
+
# GUIDE: A set of references to fundamental structural features of the
|
28
|
+
# publication, such as table of contents, foreword, bibliography, etc.
|
29
|
+
#
|
30
|
+
# See http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.6
|
31
|
+
#
|
32
|
+
# If you provide cover-image without cover-page, pubgen automatically
|
33
|
+
# generate cover-page xhtml, and add it to manifest and spine.
|
34
|
+
guide:
|
35
|
+
toc-page: #{subpath2basepath(toc_html, epub_root)}
|
36
|
+
title-page:
|
37
|
+
cover-page:
|
38
|
+
cover-image:
|
39
|
+
|
40
|
+
# MANIFEST: A list of files (documents, images, style sheets, etc.) that make
|
41
|
+
# up the publication.
|
42
|
+
#
|
43
|
+
# See http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.3
|
44
|
+
manifest:
|
45
|
+
EOF
|
46
|
+
Dir.glob(File.join(epub_root, '**/*')).each do |path|
|
47
|
+
if File.directory?(path) == false
|
48
|
+
next if /\.epub$/ =~ path.downcase
|
49
|
+
rpath = subpath2basepath(path, epub_root)
|
50
|
+
rpathmap[rpath] = true
|
51
|
+
manifest << " - #{rpath}\n"
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
spine = <<EOF
|
56
|
+
# SPINE: An arrangement of documents providing a linear reading order.
|
57
|
+
#
|
58
|
+
# See http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.4
|
59
|
+
spine:
|
60
|
+
EOF
|
61
|
+
toc = <<EOF
|
62
|
+
# TOC: Table of contents
|
63
|
+
#
|
64
|
+
# See http://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.4.1
|
65
|
+
toc:
|
66
|
+
EOF
|
67
|
+
doc = Hpricot(open(toc_html))
|
68
|
+
spinemap = {}
|
69
|
+
linkmap = {}
|
70
|
+
doc.search("a[@href]").each do |a|
|
71
|
+
href = a['href']
|
72
|
+
if href[0] == '#' # index.html's anchor
|
73
|
+
href = File.basename(toc_html) + href
|
74
|
+
end
|
75
|
+
path, anchor = href.split("#")
|
76
|
+
|
77
|
+
# href is relative to index.html, so we need to change it relative to
|
78
|
+
# epub_root
|
79
|
+
abspath = File.absolute_path(File.join(File.dirname(toc_html), path))
|
80
|
+
rpath = subpath2basepath(abspath, epub_root)
|
81
|
+
next if rpath == nil
|
82
|
+
# toc paths should be sub-set of manifest
|
83
|
+
next if rpathmap[rpath] == nil
|
84
|
+
|
85
|
+
text = CGI.unescape(a.inner_text).gsub(/[\n\r]/, ' ').gsub(/ /, ' ')
|
86
|
+
next if text == ''
|
87
|
+
|
88
|
+
# proper toc element
|
89
|
+
link = rpath + (anchor ? '#' + anchor : '')
|
90
|
+
next if linkmap[link] == true
|
91
|
+
linkmap[link] = true
|
92
|
+
if text.include?(':')
|
93
|
+
toc << " - \"#{text} -- #{link}\"\n"
|
94
|
+
else
|
95
|
+
toc << " - #{text} -- #{link}\n"
|
96
|
+
end
|
97
|
+
# add it to spine map
|
98
|
+
spinemap[rpath] = true
|
99
|
+
end
|
100
|
+
spinemap.each do |k, v|
|
101
|
+
rpathmap.delete(k)
|
102
|
+
spine << " - #{k}\n"
|
103
|
+
end
|
104
|
+
# check spine
|
105
|
+
spine_comment = false
|
106
|
+
rpathmap.each do |k, v|
|
107
|
+
if /.*\.x?html?$/ =~ k
|
108
|
+
if spine_comment == false
|
109
|
+
spine_comment = true
|
110
|
+
spine << "# You need to reorder below elements. They are not " <<
|
111
|
+
"in TOC but in manifest.\n"
|
112
|
+
end
|
113
|
+
spine << " - #{k}\n"
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
return "#{manifest}\n#{spine}\n#{toc}"
|
118
|
+
end
|
119
|
+
|
120
|
+
# Returns relative path of input path to base_pase. It's a private method.
|
121
|
+
def self.subpath2basepath(path, base_path)
|
122
|
+
if File.absolute_path(path).include?(File.absolute_path(base_path))
|
123
|
+
return File.absolute_path(path)[
|
124
|
+
File.absolute_path(base_path).size + 1..-1]
|
125
|
+
else
|
126
|
+
return nil
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
data/pubgen.gemspec
CHANGED
@@ -9,12 +9,13 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.platform = Gem::Platform::RUBY
|
10
10
|
s.author = "9beach"
|
11
11
|
s.email = ["9beach@gmail.com"]
|
12
|
-
s.homepage = "
|
12
|
+
s.homepage = "http://github.com/9beach/pubgen"
|
13
13
|
s.files = `git ls-files`.split("\n")
|
14
14
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
15
15
|
s.bindir = 'bin'
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
s.summary = "command-line based epub generator"
|
18
|
-
s.description = "Pubgen is a
|
18
|
+
s.description = "Pubgen is a command-line based epub generator. Make an epub with YAML."
|
19
19
|
s.add_dependency "zipruby"
|
20
|
+
s.add_dependency "hpricot"
|
20
21
|
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
metadata:
|
2
|
+
title: "Will Oldham: Wikipedia, the free encyclopedia"
|
3
|
+
creator: Wikipedia
|
4
|
+
date: 2012
|
5
|
+
language: en
|
6
|
+
subject: American alternative country singers
|
7
|
+
publisher:
|
8
|
+
contributor:
|
9
|
+
description:
|
10
|
+
source: "http://en.wikipedia.org/wiki/Will_Oldham"
|
11
|
+
rights:
|
12
|
+
relation:
|
13
|
+
|
14
|
+
guide:
|
15
|
+
toc-page:
|
16
|
+
title-page:
|
17
|
+
cover-page:
|
18
|
+
cover-image: images/cover.jpg
|
19
|
+
|
20
|
+
manifest:
|
21
|
+
- contents/a.html
|
22
|
+
- contents/b.html
|
23
|
+
- images/cover.jpg
|
24
|
+
- images/1.jpg
|
25
|
+
- images/2.jpg
|
26
|
+
- images/3.jpg
|
27
|
+
- style.css
|
28
|
+
|
29
|
+
spine:
|
30
|
+
- contents/a.html
|
31
|
+
- contents/b.html
|
32
|
+
|
33
|
+
toc:
|
34
|
+
- 1 Music -- contents/a.html:
|
35
|
+
- 1.1 Discography -- contents/a.html#discography:
|
36
|
+
- 1.1.1 Studio albums -- contents/a.html#studio_albums
|
37
|
+
- 1.2 Response -- contents/a.html#response
|
38
|
+
- 2 Film -- contents/b.html:
|
39
|
+
- 2.1 Filmography -- contents/b.html#filmography
|
40
|
+
- 3 Photography -- contents/b.html#photography
|
41
|
+
- 4 References -- contents/b.html#references
|
42
|
+
- 5 External links -- contents/b.html#external_links
|
data/test/test_ncx.rb
CHANGED
@@ -57,7 +57,6 @@ class TestNCX < Test::Unit::TestCase
|
|
57
57
|
|
58
58
|
def test_generate
|
59
59
|
xml = Pubgen::NCX.generate('English Patient', $yaml['toc'], '1111')
|
60
|
-
|
61
60
|
assert_match(/<meta content="1111" name="dtb:uid"\/>/, xml)
|
62
61
|
assert_match(/^ <navPoint id="d001" playOrder="1">/, xml)
|
63
62
|
assert_match(/^ <content src="contents\/a.html"/, xml)
|
data/test/test_opf.rb
CHANGED
@@ -73,7 +73,6 @@ class TestOPF < Test::Unit::TestCase
|
|
73
73
|
|
74
74
|
def test_guide
|
75
75
|
xml = Pubgen::OPF.generate($yaml, 'aaaaaaaa')
|
76
|
-
|
77
76
|
assert_match(/reference href="contents\/a.html" type="toc"/, xml)
|
78
77
|
assert_match(/reference href="contents\/b.html" type="title-page"/, xml)
|
79
78
|
assert_match(/reference href="contents\/c.html" type="cover"/, xml)
|
@@ -0,0 +1,646 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html lang="en" dir="ltr" class="client-nojs" xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<title>Will Oldham - Wikipedia, the free encyclopedia</title>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
6
|
+
<meta http-equiv="Content-Style-Type" content="text/css" />
|
7
|
+
<meta name="generator" content="MediaWiki 1.18wmf1" />
|
8
|
+
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Will_Oldham&action=edit" />
|
9
|
+
<link rel="edit" title="Edit this page" href="/w/index.php?title=Will_Oldham&action=edit" />
|
10
|
+
<link rel="apple-touch-icon" href="//en.wikipedia.org/apple-touch-icon.png" />
|
11
|
+
<link rel="shortcut icon" href="/favicon.ico" />
|
12
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
|
13
|
+
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
|
14
|
+
<link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
|
15
|
+
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" />
|
16
|
+
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cskins.vector&only=styles&skin=vector&*" type="text/css" media="all" />
|
17
|
+
<meta name="ResourceLoaderDynamicStyles" content="" />
|
18
|
+
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*" type="text/css" media="all" />
|
19
|
+
<style type="text/css" media="all">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}a.new,#quickbar a.new{color:#ba0000}
|
20
|
+
|
21
|
+
/* cache key: enwiki:resourceloader:filter:minify-css:4:c88e2bcd56513749bec09a7e29cb3ffa */</style>
|
22
|
+
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*" type="text/javascript"></script>
|
23
|
+
<script type="text/javascript">if ( window.mediaWiki ) {
|
24
|
+
mw.config.set({"wgCanonicalNamespace": "", "wgCanonicalSpecialPageName": false, "wgNamespaceNumber": 0, "wgPageName": "Will_Oldham", "wgTitle": "Will Oldham", "wgCurRevisionId": 476384625, "wgArticleId": 528023, "wgIsArticle": true, "wgAction": "view", "wgUserName": null, "wgUserGroups": ["*"], "wgCategories": ["Articles using Infobox musical artist with deprecated parameters", "Articles with hCards", "Persondata templates without short description parameter", "1970 births", "American alternative country singers", "American country guitarists", "American country singer-songwriters", "American folk guitarists", "American folk singers", "Brown University alumni", "Drag City artists", "Living people", "Musicians from Kentucky", "People from Louisville, Kentucky"], "wgBreakFrames": false, "wgRestrictionEdit": [], "wgRestrictionMove": [], "wgSearchNamespaces": [0], "wgFlaggedRevsParams": {"tags": {"status": {"levels": 1, "quality": 2, "pristine": 3}}}, "wgStableRevisionId": null, "wgVectorEnabledModules": {"collapsiblenav": true, "collapsibletabs": true, "editwarning": true, "expandablesearch": false, "footercleanup": false, "sectioneditlinks": false, "simplesearch": true, "experiments": true}, "wgWikiEditorEnabledModules": {"toolbar": true, "dialogs": true, "hidesig": true, "templateEditor": false, "templates": false, "preview": false, "previewDialog": false, "publish": false, "toc": false}, "wgTrackingToken": "0b47ecbb4718239836e21462d6074fa2", "wikilove-recipient": "", "wikilove-edittoken": "+\\", "wikilove-anon": 0, "mbEmailEnabled": true, "mbUserEmail": false, "mbIsEmailConfirmationPending": false, "Geo": {"city": "", "country": ""}, "wgNoticeProject": "wikipedia"});
|
25
|
+
}
|
26
|
+
</script><script type="text/javascript">if ( window.mediaWiki ) {
|
27
|
+
mw.loader.load(["mediawiki.page.startup"]);
|
28
|
+
}
|
29
|
+
</script>
|
30
|
+
<!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/skins-1.18/vector/csshover.min.htc")}</style><![endif]--></head>
|
31
|
+
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Will_Oldham action-view skin-vector">
|
32
|
+
<div id="mw-page-base" class="noprint"></div>
|
33
|
+
<div id="mw-head-base" class="noprint"></div>
|
34
|
+
<!-- content -->
|
35
|
+
<div id="content">
|
36
|
+
<a id="top"></a>
|
37
|
+
<div id="mw-js-message" style="display:none;"></div>
|
38
|
+
<!-- sitenotice -->
|
39
|
+
<div id="siteNotice"><!-- centralNotice loads here --></div>
|
40
|
+
<!-- /sitenotice -->
|
41
|
+
<!-- firstHeading -->
|
42
|
+
<h1 id="firstHeading" class="firstHeading">Will Oldham</h1>
|
43
|
+
<!-- /firstHeading -->
|
44
|
+
<!-- bodyContent -->
|
45
|
+
<div id="bodyContent">
|
46
|
+
<!-- tagline -->
|
47
|
+
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
|
48
|
+
<!-- /tagline -->
|
49
|
+
<!-- subtitle -->
|
50
|
+
<div id="contentSub"></div>
|
51
|
+
<!-- /subtitle -->
|
52
|
+
<!-- jumpto -->
|
53
|
+
<div id="jump-to-nav">
|
54
|
+
Jump to: <a href="#mw-head">navigation</a>,
|
55
|
+
<a href="#p-search">search</a>
|
56
|
+
</div>
|
57
|
+
<!-- /jumpto -->
|
58
|
+
<!-- bodycontent -->
|
59
|
+
<div lang="en" dir="ltr" class="mw-content-ltr"><dl>
|
60
|
+
<dd><i>Palace Music redirects here. For the racehorse, see <a href="/wiki/Palace_Music_(horse)" title="Palace Music (horse)">Palace Music (horse)</a></i></dd>
|
61
|
+
</dl>
|
62
|
+
<table class="infobox vcard" cellspacing="5" style="width:22em;">
|
63
|
+
<tr>
|
64
|
+
<th colspan="2" class="fn" style="text-align:center; font-size:125%; font-weight:bold; background-color: #f0e68c">Bonnie 'Prince' Billy</th>
|
65
|
+
</tr>
|
66
|
+
<tr class="">
|
67
|
+
<td colspan="2" class="" style="text-align:center;"><a href="/wiki/File:Bonnie_prince_billy.jpg" class="image" title="Will Oldham, June 6, 2009"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Bonnie_prince_billy.jpg/220px-Bonnie_prince_billy.jpg" width="220" height="165" /></a><br />
|
68
|
+
<span style="">Will Oldham, June 6, 2009</span></td>
|
69
|
+
</tr>
|
70
|
+
<tr>
|
71
|
+
<th colspan="2" class="" style="text-align:center; background-color: #f0e68c">Background information</th>
|
72
|
+
</tr>
|
73
|
+
<tr class="">
|
74
|
+
<th scope="row" style="text-align:left;">Birth name</th>
|
75
|
+
<td class="nickname" style="">William Oldham</td>
|
76
|
+
</tr>
|
77
|
+
<tr class="">
|
78
|
+
<th scope="row" style="text-align:left;">Also known as</th>
|
79
|
+
<td class="nickname" style="">Bonnie 'Prince' Billy</td>
|
80
|
+
</tr>
|
81
|
+
<tr class="">
|
82
|
+
<th scope="row" style="text-align:left;">Born</th>
|
83
|
+
<td class="" style="">December 24, 1970 (age 41)</td>
|
84
|
+
</tr>
|
85
|
+
<tr class="">
|
86
|
+
<th scope="row" style="text-align:left;">Origin</th>
|
87
|
+
<td class="" style=""><a href="/wiki/Louisville,_Kentucky" title="Louisville, Kentucky">Louisville</a>, <a href="/wiki/Kentucky" title="Kentucky">Kentucky</a>, <a href="/wiki/United_States" title="United States">U.S.</a></td>
|
88
|
+
</tr>
|
89
|
+
<tr class="">
|
90
|
+
<th scope="row" style="text-align:left;"><a href="/wiki/Music_genre" title="Music genre">Genres</a></th>
|
91
|
+
<td class="" style=""><a href="/wiki/American_folk_music" title="American folk music">Folk</a>, <a href="/wiki/Alternative_country" title="Alternative country">alternative country</a>, <a href="/wiki/Country_music" title="Country music">country</a></td>
|
92
|
+
</tr>
|
93
|
+
<tr class="">
|
94
|
+
<th scope="row" style="text-align:left;">Years active</th>
|
95
|
+
<td class="" style="">1993–present</td>
|
96
|
+
</tr>
|
97
|
+
<tr class="">
|
98
|
+
<th scope="row" style="text-align:left;"><a href="/wiki/Record_label" title="Record label">Labels</a></th>
|
99
|
+
<td class="" style=""><a href="/wiki/Drag_City_(record_label)" title="Drag City (record label)">Drag City</a>, <a href="/wiki/Domino_Records" title="Domino Records" class="mw-redirect">Domino</a>, <a href="/w/index.php?title=Spunk_(record_label)&action=edit&redlink=1" class="new" title="Spunk (record label) (page does not exist)">Spunk</a></td>
|
100
|
+
</tr>
|
101
|
+
<tr class="">
|
102
|
+
<th scope="row" style="text-align:left;">Website</th>
|
103
|
+
<td class="" style=""><a rel="nofollow" class="external text" href="http://www.bonnieprincebilly.com">www.bonnieprincebilly.com</a></td>
|
104
|
+
</tr>
|
105
|
+
</table>
|
106
|
+
<p><b>Will Oldham</b> (born December 24, 1970), better known by the <a href="/wiki/Stage_name" title="Stage name">stage name</a> <b>Bonnie 'Prince' Billy</b>, is an <a href="/wiki/United_States" title="United States">American</a> <a href="/wiki/Singer-songwriter" title="Singer-songwriter">singer-songwriter</a> and <a href="/wiki/Actor" title="Actor">actor</a>. From 1993 to 1997, he performed and recorded under variations of the <b>Palace</b> name, including the Palace Brothers, Palace Songs, and Palace Music. After releasing material under his own name, he adopted the "Bonnie 'Prince' Billy" moniker for the majority of his output since 1998.</p>
|
107
|
+
<table id="toc" class="toc">
|
108
|
+
<tr>
|
109
|
+
<td>
|
110
|
+
<div id="toctitle">
|
111
|
+
<h2>Contents</h2>
|
112
|
+
</div>
|
113
|
+
<ul>
|
114
|
+
<li class="toclevel-1 tocsection-1"><a href="#Music"><span class="tocnumber">1</span> <span class="toctext">Music</span></a>
|
115
|
+
<ul>
|
116
|
+
<li class="toclevel-2 tocsection-2"><a href="#Discography"><span class="tocnumber">1.1</span> <span class="toctext">Discography</span></a>
|
117
|
+
<ul>
|
118
|
+
<li class="toclevel-3 tocsection-3"><a href="#Studio_albums"><span class="tocnumber">1.1.1</span> <span class="toctext">Studio albums</span></a></li>
|
119
|
+
</ul>
|
120
|
+
</li>
|
121
|
+
<li class="toclevel-2 tocsection-4"><a href="#Response"><span class="tocnumber">1.2</span> <span class="toctext">Response</span></a></li>
|
122
|
+
</ul>
|
123
|
+
</li>
|
124
|
+
<li class="toclevel-1 tocsection-5"><a href="#Film"><span class="tocnumber">2</span> <span class="toctext">Film</span></a>
|
125
|
+
<ul>
|
126
|
+
<li class="toclevel-2 tocsection-6"><a href="#Filmography"><span class="tocnumber">2.1</span> <span class="toctext">Filmography</span></a></li>
|
127
|
+
</ul>
|
128
|
+
</li>
|
129
|
+
<li class="toclevel-1 tocsection-7"><a href="#Photography"><span class="tocnumber">3</span> <span class="toctext">Photography</span></a></li>
|
130
|
+
<li class="toclevel-1 tocsection-8"><a href="#References"><span class="tocnumber">4</span> <span class="toctext">References</span></a></li>
|
131
|
+
<li class="toclevel-1 tocsection-9"><a href="#External_links"><span class="tocnumber">5</span> <span class="toctext">External links</span></a></li>
|
132
|
+
</ul>
|
133
|
+
</td>
|
134
|
+
</tr>
|
135
|
+
</table>
|
136
|
+
<h2><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=1" title="Edit section: Music">edit</a>]</span> <span class="mw-headline" id="Music">Music</span></h2>
|
137
|
+
<p>Oldham is known for his "do-it-yourself punk aesthetic and blunt honesty,"<sup id="cite_ref-chico_0-0" class="reference"><a href="#cite_note-chico-0"><span>[</span>1<span>]</span></a></sup> and his music has been likened to <a href="/wiki/Americana_(music)" title="Americana (music)">Americana</a>, <a href="/wiki/American_folk_music" title="American folk music">folk</a>, <a href="/wiki/Traditional_music" title="Traditional music">roots</a>, <a href="/wiki/Country_music" title="Country music">country</a>, <a href="/wiki/Punk_music" title="Punk music" class="mw-redirect">punk</a>, and <a href="/wiki/Indie_rock" title="Indie rock">indie rock</a>. He has been called an "<a href="/wiki/Appalachia" title="Appalachia">Appalachian</a> <a href="/wiki/Post-punk" title="Post-punk">post-punk</a> <a href="/wiki/Solipsist" title="Solipsist" class="mw-redirect">solipsist</a>",<sup id="cite_ref-chico_0-1" class="reference"><a href="#cite_note-chico-0"><span>[</span>1<span>]</span></a></sup> with a voice that has been described as "a fragile sort-of warble frittering around haunted melodies in the American folk or country tradition."<sup id="cite_ref-chico_0-2" class="reference"><a href="#cite_note-chico-0"><span>[</span>1<span>]</span></a></sup></p>
|
138
|
+
<p>Will Oldham first performed and recorded under various permutations of the Palace name, including Palace Brothers, Palace Songs, Palace Music, and simply Palace. Regarding the name changes during this period (1993–1997), Oldham said:</p>
|
139
|
+
<table class="cquote" style="margin:auto; border-collapse: collapse; border: none; background-color: transparent; width: auto;">
|
140
|
+
<tr>
|
141
|
+
<td width="20" valign="top" style="border:none; color:#B2B7F2;font-size:35px;font-family: 'Times New Roman', serif; font-weight: bold; text-align: left; padding: 10px 10px;">“</td>
|
142
|
+
<td valign="top" style="border: none; padding: 4px 10px;">Well, I guess the idea is that when you have a name of a group or an artist, then you expect that the next record, if it has the same name, should be the same group of people playing on it. And I just thought we were making a different kind of record each time, with different people, and different themes, and different sounds. So I thought it was important to call it something different so that people would be aware of the differences.<sup id="cite_ref-phoenix_1-0" class="reference"><a href="#cite_note-phoenix-1"><span>[</span>2<span>]</span></a></sup></td>
|
143
|
+
<td width="20" valign="bottom" style="border: none; color: #B2B7F2; font-size: 35px; font-family: 'Times New Roman', serif; font-weight: bold; text-align: right; padding: 10px 10px;">”</td>
|
144
|
+
</tr>
|
145
|
+
</table>
|
146
|
+
<p><br />
|
147
|
+
Beginning in 1998, Oldham has primarily used the moniker Bonnie 'Prince' Billy, which draws inspiration from several sources:</p>
|
148
|
+
<table class="cquote" style="margin:auto; border-collapse: collapse; border: none; background-color: transparent; width: auto;">
|
149
|
+
<tr>
|
150
|
+
<td width="20" valign="top" style="border:none; color:#B2B7F2;font-size:35px;font-family: 'Times New Roman', serif; font-weight: bold; text-align: left; padding: 10px 10px;">“</td>
|
151
|
+
<td valign="top" style="border: none; padding: 4px 10px;">Yeah, the name has so many different references that it could almost have a life of its own. <a href="/wiki/Bonnie_Prince_Charlie" title="Bonnie Prince Charlie" class="mw-redirect">Bonnie Prince Charlie</a> has such a beautiful ring to it, and I was very conscious of appropriating that mellifluous sound. And I was also thinking about the name <a href="/wiki/Nat_King_Cole" title="Nat King Cole">Nat King Cole</a>. But it wasn't until later, and this may have been subconscious, that I remembered that <a href="/wiki/Billy_the_Kid" title="Billy the Kid">Billy the Kid</a> was William Bonney or Billy Bonney.<sup id="cite_ref-phoenix_1-1" class="reference"><a href="#cite_note-phoenix-1"><span>[</span>2<span>]</span></a></sup></td>
|
152
|
+
<td width="20" valign="bottom" style="border: none; color: #B2B7F2; font-size: 35px; font-family: 'Times New Roman', serif; font-weight: bold; text-align: right; padding: 10px 10px;">”</td>
|
153
|
+
</tr>
|
154
|
+
</table>
|
155
|
+
<p><br />
|
156
|
+
Oldham has explained that "the primary purpose of the pseudonym is to allow both the audience and the performer to have a relationship with the performer that is valid and unbreakable."<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>3<span>]</span></a></sup></p>
|
157
|
+
<h3><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=2" title="Edit section: Discography">edit</a>]</span> <span class="mw-headline" id="Discography">Discography</span></h3>
|
158
|
+
<div class="rellink relarticle mainarticle">Main article: <a href="/wiki/Will_Oldham_discography" title="Will Oldham discography">Will Oldham discography</a></div>
|
159
|
+
<h4><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=3" title="Edit section: Studio albums">edit</a>]</span> <span class="mw-headline" id="Studio_albums">Studio albums</span></h4>
|
160
|
+
<ul>
|
161
|
+
<li><i><a href="/wiki/There_Is_No-One_What_Will_Take_Care_of_You" title="There Is No-One What Will Take Care of You">There Is No-One What Will Take Care of You</a></i> – Palace Brothers (1993)</li>
|
162
|
+
<li><i><a href="/wiki/Days_in_the_Wake" title="Days in the Wake">Days in the Wake</a></i> – Palace Brothers (1994)</li>
|
163
|
+
<li><i><a href="/wiki/Viva_Last_Blues" title="Viva Last Blues">Viva Last Blues</a></i> – Palace Music (1995)</li>
|
164
|
+
<li><i><a href="/wiki/Arise_Therefore" title="Arise Therefore">Arise Therefore</a></i> – Palace Music (1996)</li>
|
165
|
+
<li><i><a href="/wiki/Joya_(album)" title="Joya (album)">Joya</a></i> – Will Oldham (1997)</li>
|
166
|
+
<li><i><a href="/wiki/I_See_a_Darkness" title="I See a Darkness">I See a Darkness</a></i> – Bonnie 'Prince' Billy (1999)</li>
|
167
|
+
<li><i><a href="/wiki/Ease_Down_the_Road" title="Ease Down the Road">Ease Down the Road</a></i> – Bonnie 'Prince' Billy (2001)</li>
|
168
|
+
<li><i><a href="/wiki/Master_and_Everyone" title="Master and Everyone">Master and Everyone</a></i> – Bonnie 'Prince' Billy (2003)</li>
|
169
|
+
<li><i><a href="/wiki/Sings_Greatest_Palace_Music" title="Sings Greatest Palace Music">Sings Greatest Palace Music</a></i> – Bonnie 'Prince' Billy (2004)</li>
|
170
|
+
<li><i><a href="/wiki/Superwolf" title="Superwolf">Superwolf</a></i> – <a href="/wiki/Matt_Sweeney" title="Matt Sweeney">Matt Sweeney</a> & Bonnie 'Prince' Billy (2005)</li>
|
171
|
+
<li><i><a href="/wiki/The_Brave_and_the_Bold_(album)" title="The Brave and the Bold (album)">The Brave and the Bold</a></i> – <a href="/wiki/Tortoise_(band)" title="Tortoise (band)">Tortoise</a> & Bonnie 'Prince' Billy (2006)</li>
|
172
|
+
<li><i><a href="/wiki/The_Letting_Go" title="The Letting Go">The Letting Go</a></i> – Bonnie 'Prince' Billy (2006)</li>
|
173
|
+
<li><i><a href="/wiki/Lie_Down_in_the_Light" title="Lie Down in the Light">Lie Down in the Light</a></i> – Bonnie 'Prince' Billy (2008)</li>
|
174
|
+
<li><i><a href="/wiki/Beware_(Bonnie_Prince_Billy_album)" title="Beware (Bonnie Prince Billy album)" class="mw-redirect">Beware</a></i> - Bonnie 'Prince' Billy (2009)</li>
|
175
|
+
<li><i><a href="/wiki/The_Wonder_Show_of_the_World" title="The Wonder Show of the World">The Wonder Show of the World</a></i> - Bonnie 'Prince' Billy and the Cairo Gang (2010)</li>
|
176
|
+
<li><i><a href="/wiki/Wolfroy_Goes_to_Town" title="Wolfroy Goes to Town">Wolfroy Goes to Town</a></i> - Bonnie 'Prince' Billy (2011)</li>
|
177
|
+
</ul>
|
178
|
+
<h3><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=4" title="Edit section: Response">edit</a>]</span> <span class="mw-headline" id="Response">Response</span></h3>
|
179
|
+
<p>Some of his albums, such as <i><a href="/wiki/There_Is_No-One_What_Will_Take_Care_of_You" title="There Is No-One What Will Take Care of You">There Is No-One What Will Take Care of You</a></i> (1993),<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span>[</span>4<span>]</span></a></sup> <i><a href="/wiki/Viva_Last_Blues" title="Viva Last Blues">Viva Last Blues</a></i> (1995),<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>5<span>]</span></a></sup> and <i><a href="/wiki/I_See_a_Darkness" title="I See a Darkness">I See a Darkness</a></i> (1999),<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>6<span>]</span></a></sup><sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span>[</span>7<span>]</span></a></sup><sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span>[</span>8<span>]</span></a></sup> have appeared on greatest albums lists.</p>
|
180
|
+
<p>He is mentioned in the lyrics of the <a href="/wiki/Biffy_Clyro" title="Biffy Clyro">Biffy Clyro</a> song "<a href="/wiki/Saturday_Superhouse" title="Saturday Superhouse">Saturday Superhouse</a>" and is the main character in the song "Williamsburg Will Oldham Horror" by New York <a href="/wiki/Anti-folk" title="Anti-folk">anti-folk</a> artist <a href="/wiki/Jeffrey_Lewis" title="Jeffrey Lewis">Jeffrey Lewis</a>.</p>
|
181
|
+
<p><a href="/wiki/Johnny_Cash" title="Johnny Cash">Johnny Cash</a> recorded a version of "I See a Darkness" on his <a href="/wiki/American_Recordings_(US)" title="American Recordings (US)" class="mw-redirect">American Recordings</a> disc, <i><a href="/wiki/American_III:_Solitary_Man" title="American III: Solitary Man">American III: Solitary Man</a></i> (2000). Oldham provided backing vocals.</p>
|
182
|
+
<p><a href="/wiki/Steve_Adey" title="Steve Adey">Steve Adey</a> also covered "I See a Darkness" on his 2006 LP <i><a href="/wiki/All_Things_Real" title="All Things Real">All Things Real</a></i>.</p>
|
183
|
+
<p><a href="/wiki/Mark_Kozelek" title="Mark Kozelek">Mark Kozelek</a> recorded a version of Oldham's "New Partner" on his 2008 disc, <i><a href="/wiki/The_Finally_LP" title="The Finally LP">The Finally LP</a></i>.</p>
|
184
|
+
<p><a href="/wiki/Katatonia" title="Katatonia">Katatonia</a> covered "Oh How I Enjoy the Light" on their 2001 EP <i><a href="/wiki/Tonight%27s_Music" title="Tonight's Music">Tonight's Music</a></i>.</p>
|
185
|
+
<p>In 2009 <a href="/wiki/Mark_Lanegan" title="Mark Lanegan">Mark Lanegan</a> and <a href="/wiki/Soulsavers" title="Soulsavers">Soulsavers</a> recorded a cover version of "You Will Miss Me When I Burn". The release is a split single, backed with the Lanegan penned "Sunrise" featuring vocals by Oldham.</p>
|
186
|
+
<p>In 2011, <a href="/wiki/Deer_Tick_(band)" title="Deer Tick (band)">Deer Tick</a>'s cover of Oldham's song "Death to Everyone" appeared in an episode of <a href="/wiki/Hell_on_Wheels_(TV_series)" title="Hell on Wheels (TV series)">Hell On Wheels</a>.</p>
|
187
|
+
<h2><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=5" title="Edit section: Film">edit</a>]</span> <span class="mw-headline" id="Film">Film</span></h2>
|
188
|
+
<p>Will Oldham began his acting career at the age of 17, when he portrayed a teen preacher in <a href="/wiki/John_Sayles" title="John Sayles">John Sayles</a>'s film about an Appalachian mining community, <i><a href="/wiki/Matewan" title="Matewan">Matewan</a></i> (1987). Oldham moved to Hollywood to pursue acting in the late 1980s,<sup id="cite_ref-dallasobs_8-0" class="reference"><a href="#cite_note-dallasobs-8"><span>[</span>9<span>]</span></a></sup> and landed roles in a couple of films. However, he quickly became disillusioned with the film industry and quit in 1989.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span>[</span>10<span>]</span></a></sup> He has since had several minor roles in independent films, such as <i><a href="/wiki/Julien_Donkey-Boy" title="Julien Donkey-Boy">Julien Donkey-Boy</a></i> (1999), <i><a href="/wiki/Junebug_(film)" title="Junebug (film)">Junebug</a></i> (2005), and <i><a href="/wiki/The_Guatemalan_Handshake" title="The Guatemalan Handshake">The Guatemalan Handshake</a></i> (2006). Oldham took a lead role in <i><a href="/wiki/Old_Joy_(film)" title="Old Joy (film)" class="mw-redirect">Old Joy</a></i>, which was featured at <a href="/wiki/SXSW" title="SXSW" class="mw-redirect">SXSW XX</a> and opened at <a href="/wiki/Film_Forum" title="Film Forum">New York's Film Forum</a> on September 20, 2006. Will Oldham also played the role of a preacher in the "Horse Apples" special of <a href="/wiki/WonderShowzen" title="WonderShowzen" class="mw-redirect">WonderShowzen</a> in series 2 of the show. In 2009, he has been the narrator of "Madam and Little Boy", a documentary film about atomic weapons directed by Swedish artist <a href="/w/index.php?title=Magnus_B%C3%A4rt%C3%A5s&action=edit&redlink=1" class="new" title="Magnus Bärtås (page does not exist)">Magnus Bärtås</a>. In 2010, Oldham had a small part in <i><a href="/wiki/Jackass_3D" title="Jackass 3D">Jackass 3D</a></i> as a gorilla trainer. Oldham revealed that he had to write a theme song in the style of a Saturday morning cartoon show for filmmaker <a href="/wiki/Lance_Bangs" title="Lance Bangs">Lance Bangs</a>' life to get the role.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span>[</span>11<span>]</span></a></sup></p>
|
189
|
+
<h3><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=6" title="Edit section: Filmography">edit</a>]</span> <span class="mw-headline" id="Filmography">Filmography</span></h3>
|
190
|
+
<ul>
|
191
|
+
<li><i><a href="/wiki/Matewan" title="Matewan">Matewan</a></i> (1987), directed by <a href="/wiki/John_Sayles" title="John Sayles">John Sayles</a></li>
|
192
|
+
<li><i>Everybody's Baby: The Rescue of <a href="/wiki/Jessica_McClure" title="Jessica McClure">Jessica McClure</a></i> (1989) (TV movie)</li>
|
193
|
+
<li><i>Thousand Pieces of Gold</i> (1991)</li>
|
194
|
+
<li><i>Elysian Fields</i> (1993)</li>
|
195
|
+
<li><i>Radiation</i> (1998)</li>
|
196
|
+
<li><i><a href="/wiki/Julien_Donkey-Boy" title="Julien Donkey-Boy">Julien Donkey-Boy</a></i> (1999) (uncredited role), directed by <a href="/wiki/Harmony_Korine" title="Harmony Korine">Harmony Korine</a></li>
|
197
|
+
<li><i>Slitch</i> (2003), directed by Dianne Bellino</li>
|
198
|
+
<li><i><a href="/wiki/Tripping_with_Caveh" title="Tripping with Caveh">Tripping with Caveh</a></i> (2004), directed by <a href="/wiki/Caveh_Zahedi" title="Caveh Zahedi">Caveh Zahedi</a></li>
|
199
|
+
<li><i><a href="/wiki/Junebug_(film)" title="Junebug (film)">Junebug</a></i> (2005)</li>
|
200
|
+
<li><i><a href="/wiki/The_Guatemalan_Handshake" title="The Guatemalan Handshake">The Guatemalan Handshake</a></i> (2006)</li>
|
201
|
+
<li><i><a href="/wiki/Old_Joy_(film)" title="Old Joy (film)" class="mw-redirect">Old Joy</a></i> (2006)</li>
|
202
|
+
<li><i><a href="/wiki/Trapped_in_the_Closet" title="Trapped in the Closet">Trapped in the Closet</a>- Chapter 15 (2007)</i></li>
|
203
|
+
<li><i><a href="/wiki/Wendy_and_Lucy" title="Wendy and Lucy">Wendy and Lucy</a> (2008)</i></li>
|
204
|
+
<li><i>Madam and Little Boy</i> (2009)</li>
|
205
|
+
<li><i><a href="/wiki/Jackass_3D" title="Jackass 3D">Jackass 3D</a></i> (2010)</li>
|
206
|
+
<li><i>Pioneer</i> (2011)</li>
|
207
|
+
</ul>
|
208
|
+
<h2><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=7" title="Edit section: Photography">edit</a>]</span> <span class="mw-headline" id="Photography">Photography</span></h2>
|
209
|
+
<p>Will Oldham shot the black-and-white cover photograph of <a href="/wiki/Slint" title="Slint">Slint</a>'s 1991 album <i><a href="/wiki/Spiderland" title="Spiderland">Spiderland</a></i>. The photo depicts members of the band treading water in the lake of an abandoned quarry.<sup id="cite_ref-musicianguide_11-0" class="reference"><a href="#cite_note-musicianguide-11"><span>[</span>12<span>]</span></a></sup></p>
|
210
|
+
<p>Oldham also featured as guest aesthetic designer for the North American literary magazine <a href="/wiki/Zoetrope_All_Story" title="Zoetrope All Story" class="mw-redirect">Zoetrope All Story</a> (vol 11, no 1) in 2007. In a note contained in the issue, he jokes that it would be "really magnificent to imagine this issue as a cocktail party at which all of the contributors, word and image, are present. add a bowl of keys and some mushroom cookies and i am there. [sic]"</p>
|
211
|
+
<h2><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=8" title="Edit section: References">edit</a>]</span> <span class="mw-headline" id="References">References</span></h2>
|
212
|
+
<div class="reflist" style="list-style-type: decimal;">
|
213
|
+
<ol class="references">
|
214
|
+
<li id="cite_note-chico-0">^ <a href="#cite_ref-chico_0-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-chico_0-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-chico_0-2"><sup><i><b>c</b></i></sup></a> <span class="citation web">Baldwin, C. (March 28, 2002). <a rel="nofollow" class="external text" href="http://www.newsreview.com/chico/Content?oid=8724">"The Wanderer"</a>. Chico News & Review<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.newsreview.com/chico/Content?oid=8724">http://www.newsreview.com/chico/Content?oid=8724</a></span><span class="reference-accessdate">. Retrieved 2007-05-08</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=The+Wanderer&rft.atitle=&rft.aulast=Baldwin%2C+C.&rft.au=Baldwin%2C+C.&rft.date=March+28%2C+2002&rft.pub=Chico+News+%26+Review&rft_id=http%3A%2F%2Fwww.newsreview.com%2Fchico%2FContent%3Foid%3D8724&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
215
|
+
<li id="cite_note-phoenix-1">^ <a href="#cite_ref-phoenix_1-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-phoenix_1-1"><sup><i><b>b</b></i></sup></a> <span class="citation web">Ashare, Matt (January 20, 2003). <a rel="nofollow" class="external text" href="http://www.bostonphoenix.com/boston/music/top/documents/02671921.htm">"Mystery Man: Palace Brother Will Oldham becomes Bonnie 'Prince' Billy"</a>. <i><a href="/wiki/The_Phoenix_(newspaper)" title="The Phoenix (newspaper)">The Phoenix</a></i><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.bostonphoenix.com/boston/music/top/documents/02671921.htm">http://www.bostonphoenix.com/boston/music/top/documents/02671921.htm</a></span><span class="reference-accessdate">. Retrieved 2007-05-09</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Mystery+Man%3A+Palace+Brother+Will+Oldham+becomes+Bonnie+%27Prince%27+Billy&rft.atitle=%5B%5BThe+Phoenix+%28newspaper%29%7CThe+Phoenix%5D%5D&rft.aulast=Ashare%2C+Matt&rft.au=Ashare%2C+Matt&rft.date=January+20%2C+2003&rft_id=http%3A%2F%2Fwww.bostonphoenix.com%2Fboston%2Fmusic%2Ftop%2Fdocuments%2F02671921.htm&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
216
|
+
<li id="cite_note-2"><b><a href="#cite_ref-2">^</a></b> <span class="citation web"><a rel="nofollow" class="external text" href="http://web.archive.org/web/20070710021351/http://www.dragcity.com/press/pimages/pressclips/dc233fn_art.pdf">"Bonnie 'Prince' Billy"</a> (PDF). Foggy Notion. April 2003. Archived from <a rel="nofollow" class="external text" href="http://www.dragcity.com/press/pimages/pressclips/dc233fn_art.pdf">the original</a> on 2007-07-10<span class="printonly">. <a rel="nofollow" class="external free" href="http://web.archive.org/web/20070710021351/http://www.dragcity.com/press/pimages/pressclips/dc233fn_art.pdf">http://web.archive.org/web/20070710021351/http://www.dragcity.com/press/pimages/pressclips/dc233fn_art.pdf</a></span><span class="reference-accessdate">. Retrieved 2007-05-08</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Bonnie+%27Prince%27+Billy&rft.atitle=&rft.date=April+2003&rft.pub=Foggy+Notion&rft_id=http%3A%2F%2Fweb.archive.org%2Fweb%2F20070710021351%2Fhttp%3A%2F%2Fwww.dragcity.com%2Fpress%2Fpimages%2Fpressclips%2Fdc233fn_art.pdf&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
217
|
+
<li id="cite_note-3"><b><a href="#cite_ref-3">^</a></b> <span class="citation book">Irvin, Jim; Colin McLear (2003, 3rd ed.). <i>The Mojo Collection: The Ultimate Music Companion</i>. Canongate. pp. 585. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/1841954381" title="Special:BookSources/1841954381">1841954381</a>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=The+Mojo+Collection%3A+The+Ultimate+Music+Companion&rft.aulast=Irvin&rft.aufirst=Jim&rft.au=Irvin%2C%26%2332%3BJim&rft.date=2003%2C+3rd+ed.&rft.pages=pp.%26nbsp%3B585&rft.pub=Canongate&rft.isbn=1841954381&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
218
|
+
<li id="cite_note-4"><b><a href="#cite_ref-4">^</a></b> <span class="citation web">LeMay, Matt (November 17, 2003). <a rel="nofollow" class="external text" href="http://www.pitchforkmedia.com/article/feature/36737-staff-list-top-100-albums-of-the-1990s/page_5">"The Top 100 Albums of the 1990s"</a>. Pitchfork Media<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.pitchforkmedia.com/article/feature/36737-staff-list-top-100-albums-of-the-1990s/page_5">http://www.pitchforkmedia.com/article/feature/36737-staff-list-top-100-albums-of-the-1990s/page_5</a></span><span class="reference-accessdate">. Retrieved 2007-05-08</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=The+Top+100+Albums+of+the+1990s&rft.atitle=&rft.aulast=LeMay%2C+Matt&rft.au=LeMay%2C+Matt&rft.date=November+17%2C+2003&rft.pub=Pitchfork+Media&rft_id=http%3A%2F%2Fwww.pitchforkmedia.com%2Farticle%2Ffeature%2F36737-staff-list-top-100-albums-of-the-1990s%2Fpage_5&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
219
|
+
<li id="cite_note-5"><b><a href="#cite_ref-5">^</a></b> <span class="citation book">Irvin, Jim; Colin McLear (2003, 3rd ed.). <i>The Mojo Collection: The Ultimate Music Companion</i>. Canongate. pp. 651. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/1841954381" title="Special:BookSources/1841954381">1841954381</a>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=The+Mojo+Collection%3A+The+Ultimate+Music+Companion&rft.aulast=Irvin&rft.aufirst=Jim&rft.au=Irvin%2C%26%2332%3BJim&rft.date=2003%2C+3rd+ed.&rft.pages=pp.%26nbsp%3B651&rft.pub=Canongate&rft.isbn=1841954381&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
220
|
+
<li id="cite_note-6"><b><a href="#cite_ref-6">^</a></b> <span class="citation web">Bowers, William (November 17, 2003). <a rel="nofollow" class="external text" href="http://www.pitchforkmedia.com/article/feature/36737-staff-list-top-100-albums-of-the-1990s/page_10">"The Top 100 Albums of the 1990s"</a>. Pitchfork Media<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.pitchforkmedia.com/article/feature/36737-staff-list-top-100-albums-of-the-1990s/page_10">http://www.pitchforkmedia.com/article/feature/36737-staff-list-top-100-albums-of-the-1990s/page_10</a></span><span class="reference-accessdate">. Retrieved 2007-05-08</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=The+Top+100+Albums+of+the+1990s&rft.atitle=&rft.aulast=Bowers%2C+William&rft.au=Bowers%2C+William&rft.date=November+17%2C+2003&rft.pub=Pitchfork+Media&rft_id=http%3A%2F%2Fwww.pitchforkmedia.com%2Farticle%2Ffeature%2F36737-staff-list-top-100-albums-of-the-1990s%2Fpage_10&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
221
|
+
<li id="cite_note-7"><b><a href="#cite_ref-7">^</a></b> <span class="citation book">Dimery, Robert (2006). <i><a href="/wiki/1001_Albums_You_Must_Hear_Before_You_Die" title="1001 Albums You Must Hear Before You Die">1001 Albums You Must Hear Before You Die</a></i>. Universe. pp. 854. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/0789313715" title="Special:BookSources/0789313715">0789313715</a>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=%5B%5B1001+Albums+You+Must+Hear+Before+You+Die%5D%5D&rft.aulast=Dimery&rft.aufirst=Robert&rft.au=Dimery%2C%26%2332%3BRobert&rft.date=2006&rft.pages=pp.%26nbsp%3B854&rft.pub=Universe&rft.isbn=0789313715&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
222
|
+
<li id="cite_note-dallasobs-8"><b><a href="#cite_ref-dallasobs_8-0">^</a></b> <span class="citation news">Roberts, Randall (June 3, 2009). <a rel="nofollow" class="external text" href="http://www.dallasobserver.com/2009-06-04/music/will-oldham-s-trouble-with-hollywood/">"Will Oldham's Trouble with Hollywood"</a>. Dallas Observer<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.dallasobserver.com/2009-06-04/music/will-oldham-s-trouble-with-hollywood/">http://www.dallasobserver.com/2009-06-04/music/will-oldham-s-trouble-with-hollywood/</a></span><span class="reference-accessdate">. Retrieved 16 January 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Will+Oldham%27s+Trouble+with+Hollywood&rft.atitle=&rft.aulast=Roberts&rft.aufirst=Randall&rft.au=Roberts%2C%26%2332%3BRandall&rft.date=June+3%2C+2009&rft.pub=Dallas+Observer&rft_id=http%3A%2F%2Fwww.dallasobserver.com%2F2009-06-04%2Fmusic%2Fwill-oldham-s-trouble-with-hollywood%2F&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
223
|
+
<li id="cite_note-9"><b><a href="#cite_ref-9">^</a></b> <span class="citation news">Byck, Peter (2006-02-04). <a rel="nofollow" class="external text" href="http://web.archive.org/web/20070710021356/http://www.dragcity.com/press/pimages/pressclips/sn11coujou.jpg">"Oldham journeys back into acting"</a>. Scene. pp. 5. Archived from <a rel="nofollow" class="external text" href="http://www.dragcity.com/press/pimages/pressclips/sn11coujou.jpg">the original</a> on 2007-07-10<span class="printonly">. <a rel="nofollow" class="external free" href="http://web.archive.org/web/20070710021356/http://www.dragcity.com/press/pimages/pressclips/sn11coujou.jpg">http://web.archive.org/web/20070710021356/http://www.dragcity.com/press/pimages/pressclips/sn11coujou.jpg</a></span><span class="reference-accessdate">. Retrieved 2007-05-08</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Oldham+journeys+back+into+acting&rft.atitle=&rft.aulast=Byck&rft.aufirst=Peter&rft.au=Byck%2C%26%2332%3BPeter&rft.date=2006-02-04&rft.pages=pp.%26nbsp%3B5&rft.pub=Scene&rft_id=http%3A%2F%2Fweb.archive.org%2Fweb%2F20070710021356%2Fhttp%3A%2F%2Fwww.dragcity.com%2Fpress%2Fpimages%2Fpressclips%2Fsn11coujou.jpg&rfr_id=info:sid/en.wikipedia.org:Will_Oldham"><span style="display: none;"> </span></span></li>
|
224
|
+
<li id="cite_note-10"><b><a href="#cite_ref-10">^</a></b> <a rel="nofollow" class="external free" href="http://www.buzzgrinder.com/2011/will-oldham-new-album-jackass-3d/">http://www.buzzgrinder.com/2011/will-oldham-new-album-jackass-3d/</a></li>
|
225
|
+
<li id="cite_note-musicianguide-11"><b><a href="#cite_ref-musicianguide_11-0">^</a></b> McCarthy, Shannon. "<a rel="nofollow" class="external text" href="http://www.musicianguide.com/biographies/1608004609/Slint.html">Slint Lyrics and Biography</a>" Musicianguide.com. Retrieved on 25 November 2007.</li>
|
226
|
+
</ol>
|
227
|
+
</div>
|
228
|
+
<h2><span class="editsection">[<a href="/w/index.php?title=Will_Oldham&action=edit&section=9" title="Edit section: External links">edit</a>]</span> <span class="mw-headline" id="External_links">External links</span></h2>
|
229
|
+
<table class="metadata mbox-small plainlinks" style="border:1px solid #aaa; background-color:#f9f9f9;">
|
230
|
+
<tr>
|
231
|
+
<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" /></td>
|
232
|
+
<td class="mbox-text" style="">Wikimedia Commons has media related to: <i><b><a class="external text" href="//commons.wikimedia.org/wiki/Category:Will_Oldham">Will Oldham</a></b></i></td>
|
233
|
+
</tr>
|
234
|
+
</table>
|
235
|
+
<ul>
|
236
|
+
<li><a rel="nofollow" class="external text" href="http://www.bonnieprincebilly.com/">Bonnie 'Prince' Billy</a> official website</li>
|
237
|
+
<li><a rel="nofollow" class="external text" href="http://www.dragcity.com/artists/will-oldham">Will Oldham</a> at Drag City (record label)</li>
|
238
|
+
<li><a rel="nofollow" class="external text" href="http://www.dominorecordco.com/artists/bonnie-prince-billy/">Bonnie 'Prince' Billy</a> at Domino Records (record label)</li>
|
239
|
+
<li><a rel="nofollow" class="external text" href="http://www.allmusic.com/artist/p260120">Will Oldham</a> at <a href="/wiki/Allmusic" title="Allmusic">Allmusic</a></li>
|
240
|
+
<li><a rel="nofollow" class="external text" href="http://www.imdb.com/name/nm646165/">Will Oldham</a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a></li>
|
241
|
+
<li><a rel="nofollow" class="external text" href="http://users.bart.nl/%7eljmeijer/oldham/">The Royal Stable</a> - Fan site with news, photos, tour dates, etc.</li>
|
242
|
+
<li><a rel="nofollow" class="external text" href="http://pry.com/pulpit/">The Pulpit</a> - Fan site with some lyrics and tablature</li>
|
243
|
+
<li><a rel="nofollow" class="external text" href="http://www.daytrotter.com/article/237/bonnie-prince-billy-so-unquestionably-human-that-hes-inhuman-thereby-making-him-mystical-and-perfect-for-every-one-of-our-funeral-services">Daytrotter</a> session</li>
|
244
|
+
<li><a rel="nofollow" class="external text" href="http://www.freewilliamsburg.com/march_2004/oldham.html">Freewilliamsburg.com</a> interview</li>
|
245
|
+
<li><a rel="nofollow" class="external text" href="http://www.npr.org/templates/story/story.php?storyId=102242295">Bonnie 'Prince' Billy as Guest DJ at NPR Music</a></li>
|
246
|
+
<li><a rel="nofollow" class="external text" href="http://www.newyorker.com/reporting/2009/01/05/090105fa_fact_sanneh">The Pretender</a> - Profile of Will Oldham in <a href="/wiki/The_New_Yorker" title="The New Yorker">The New Yorker</a></li>
|
247
|
+
<li><a rel="nofollow" class="external text" href="http://music-illuminati.com/interview-will-oldham/">www.music-illuminati.com</a> - Interview</li>
|
248
|
+
</ul>
|
249
|
+
<table cellspacing="0" class="navbox" style="border-spacing:0;;">
|
250
|
+
<tr>
|
251
|
+
<td style="padding:2px;">
|
252
|
+
<table cellspacing="0" class="nowraplinks vcard collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;;">
|
253
|
+
<tr>
|
254
|
+
<th scope="col" style=";background: #f0e68c;" class="navbox-title" colspan="2">
|
255
|
+
<div class="noprint plainlinks hlist navbar mini" style="">
|
256
|
+
<ul>
|
257
|
+
<li class="nv-view"><a href="/wiki/Template:Will_Oldham" title="Template:Will Oldham"><span title="View this template" style=";background: #f0e68c;;background:none transparent;border:none;">v</span></a></li>
|
258
|
+
<li class="nv-talk"><a href="/wiki/Template_talk:Will_Oldham" title="Template talk:Will Oldham"><span title="Discuss this template" style=";background: #f0e68c;;background:none transparent;border:none;">t</span></a></li>
|
259
|
+
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Will_Oldham&action=edit"><span title="Edit this template" style=";background: #f0e68c;;background:none transparent;border:none;">e</span></a></li>
|
260
|
+
</ul>
|
261
|
+
</div>
|
262
|
+
<div class="fn" style="font-size:110%;"><strong class="selflink">Will Oldham (Palace / Palace Songs / Palace Music / Palace Brothers / Bonnie 'Prince' Billy)</strong></div>
|
263
|
+
</th>
|
264
|
+
</tr>
|
265
|
+
<tr style="height:2px;">
|
266
|
+
<td></td>
|
267
|
+
</tr>
|
268
|
+
<tr>
|
269
|
+
<th scope="row" class="navbox-group" style=";background: #EEEEEE;;">Studio albums</th>
|
270
|
+
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox- hlist">
|
271
|
+
<div style="padding:0em 0.25em">
|
272
|
+
<ul>
|
273
|
+
<li><i><a href="/wiki/There_Is_No-One_What_Will_Take_Care_of_You" title="There Is No-One What Will Take Care of You">There Is No-One What Will Take Care of You</a></i> (1993)</li>
|
274
|
+
<li><i><a href="/wiki/Days_in_the_Wake" title="Days in the Wake">Days in the Wake</a></i> (1994)</li>
|
275
|
+
<li><i><a href="/wiki/Viva_Last_Blues" title="Viva Last Blues">Viva Last Blues</a></i> (1995)</li>
|
276
|
+
<li><i><a href="/wiki/Arise_Therefore" title="Arise Therefore">Arise Therefore</a></i> (1996)</li>
|
277
|
+
<li><i><a href="/wiki/Joya_(album)" title="Joya (album)">Joya</a></i> (1997)</li>
|
278
|
+
<li><i><a href="/wiki/I_See_a_Darkness" title="I See a Darkness">I See a Darkness</a></i> (1999)</li>
|
279
|
+
<li><i><a href="/wiki/Ode_Music" title="Ode Music">Ode Music</a></i> (2000)</li>
|
280
|
+
<li><i><a href="/wiki/Ease_Down_the_Road" title="Ease Down the Road">Ease Down the Road</a></i> (2001)</li>
|
281
|
+
<li><i><a href="/wiki/Master_and_Everyone" title="Master and Everyone">Master and Everyone</a></i> (2003)</li>
|
282
|
+
<li><i><a href="/wiki/Sings_Greatest_Palace_Music" title="Sings Greatest Palace Music">Sings Greatest Palace Music</a></i> (2004)</li>
|
283
|
+
<li><i><a href="/wiki/Superwolf" title="Superwolf">Superwolf</a></i> (2005)</li>
|
284
|
+
<li><i><a href="/wiki/The_Brave_and_the_Bold_(album)" title="The Brave and the Bold (album)">The Brave and the Bold</a></i> (2006)</li>
|
285
|
+
<li><i><a href="/wiki/The_Letting_Go" title="The Letting Go">The Letting Go</a></i> (2006)</li>
|
286
|
+
<li><i><a href="/wiki/Wai_Notes" title="Wai Notes">Wai Notes</a></i> (2007)</li>
|
287
|
+
<li><i><a href="/wiki/Lie_Down_in_the_Light" title="Lie Down in the Light">Lie Down in the Light</a></i> (2008)</li>
|
288
|
+
<li><i><a href="/wiki/Beware_(Will_Oldham_album)" title="Beware (Will Oldham album)" class="mw-redirect">Beware</a></i> (2009)</li>
|
289
|
+
<li><i><a href="/wiki/The_Wonder_Show_of_the_World" title="The Wonder Show of the World">The Wonder Show of the World</a></i> (2010)</li>
|
290
|
+
<li><i><a href="/wiki/Wolfroy_Goes_to_Town" title="Wolfroy Goes to Town">Wolfroy Goes to Town</a></i> (2011)</li>
|
291
|
+
</ul>
|
292
|
+
</div>
|
293
|
+
</td>
|
294
|
+
</tr>
|
295
|
+
<tr style="height:2px">
|
296
|
+
<td></td>
|
297
|
+
</tr>
|
298
|
+
<tr>
|
299
|
+
<th scope="row" class="navbox-group" style=";background: #EEEEEE;;">Live albums</th>
|
300
|
+
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox- hlist">
|
301
|
+
<div style="padding:0em 0.25em">
|
302
|
+
<ul>
|
303
|
+
<li><i><a href="/w/index.php?title=Get_the_Fuck_on_Jolly_Live&action=edit&redlink=1" class="new" title="Get the Fuck on Jolly Live (page does not exist)">Get the Fuck on Jolly Live</a></i> (2001)</li>
|
304
|
+
<li><i><a href="/wiki/Summer_in_the_Southeast" title="Summer in the Southeast">Summer in the Southeast</a></i> (2005)</li>
|
305
|
+
<li><i><a href="/w/index.php?title=Wilding_in_the_West&action=edit&redlink=1" class="new" title="Wilding in the West (page does not exist)">Wilding in the West</a></i> (2008)</li>
|
306
|
+
<li><i><a href="/wiki/Is_It_The_Sea%3F" title="Is It The Sea?" class="mw-redirect">Is It The Sea?</a></i> (2008)</li>
|
307
|
+
</ul>
|
308
|
+
</div>
|
309
|
+
</td>
|
310
|
+
</tr>
|
311
|
+
<tr style="height:2px">
|
312
|
+
<td></td>
|
313
|
+
</tr>
|
314
|
+
<tr>
|
315
|
+
<th scope="row" class="navbox-group" style=";background: #EEEEEE;;">EPs</th>
|
316
|
+
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox- hlist">
|
317
|
+
<div style="padding:0em 0.25em">
|
318
|
+
<ul>
|
319
|
+
<li><i><a href="/wiki/Goat_Songs" title="Goat Songs">Goat Songs</a></i> (1993)</li>
|
320
|
+
<li><i><a href="/wiki/An_Arrow_Through_the_Bitch" title="An Arrow Through the Bitch">An Arrow Through the Bitch</a></i> (1994)</li>
|
321
|
+
<li><i><a href="/wiki/Hope_(EP)" title="Hope (EP)">Hope</a></i> (1994)</li>
|
322
|
+
<li><i><a href="/wiki/The_Mountain_(EP)" title="The Mountain (EP)">The Mountain</a></i> (1995)</li>
|
323
|
+
<li><i><a href="/wiki/Songs_Put_Together_For_(The_Broken_Giant)" title="Songs Put Together For (The Broken Giant)">Songs Put Together For (The Broken Giant)</a></i> (1996)</li>
|
324
|
+
<li><i><a href="/wiki/Western_Music_(EP)" title="Western Music (EP)">Western Music</a></i> (1997)</li>
|
325
|
+
<li><i><a href="/wiki/Black/Rich_Music" title="Black/Rich Music" class="mw-redirect">Black/Rich Music</a></i> (1998)</li>
|
326
|
+
<li><i><a href="/wiki/Blue_Lotus_Feet" title="Blue Lotus Feet">Blue Lotus Feet</a></i> (1998)</li>
|
327
|
+
<li><i><a href="/wiki/Dream_of_a_Drunk_Black_Southern_Eagle" title="Dream of a Drunk Black Southern Eagle">Dream of a Drunk Black Southern Eagle</a></i> (1999)</li>
|
328
|
+
<li><i><a href="/wiki/More_Revery" title="More Revery">More Revery</a> (live version)</i> (2000)</li>
|
329
|
+
<li><i><a href="/w/index.php?title=All_Most_Heaven&action=edit&redlink=1" class="new" title="All Most Heaven (page does not exist)">All Most Heaven</a></i> (2000)</li>
|
330
|
+
<li><i><a href="/w/index.php?title=Get_on_Jolly&action=edit&redlink=1" class="new" title="Get on Jolly (page does not exist)">Get on Jolly</a></i> (2000)</li>
|
331
|
+
<li><i><a href="/wiki/More_Revery" title="More Revery">More Revery</a> (studio version)</i> (2001)</li>
|
332
|
+
<li><i><a href="/wiki/Amalgamated_Sons_of_Rest" title="Amalgamated Sons of Rest">Amalgamated Sons of Rest</a></i> (2002)</li>
|
333
|
+
<li><i><a href="/w/index.php?title=Slitch_Music&action=edit&redlink=1" class="new" title="Slitch Music (page does not exist)">Slitch Music</a></i> (2002)</li>
|
334
|
+
<li><i><a href="/wiki/Seafarers_Music" title="Seafarers Music">Seafarers Music</a></i> (2004)</li>
|
335
|
+
<li><i><a href="/w/index.php?title=Pebbles_and_Ripples&action=edit&redlink=1" class="new" title="Pebbles and Ripples (page does not exist)">Pebbles and Ripples</a></i> (2004)</li>
|
336
|
+
<li><i><a href="/wiki/I_Gave_You" title="I Gave You">I Gave You</a></i> (2005)</li>
|
337
|
+
<li><i><a href="/wiki/Strange_Form_of_Life" title="Strange Form of Life">Strange Form of Life</a></i> (2007)</li>
|
338
|
+
<li><i><a href="/wiki/Ask_Forgiveness" title="Ask Forgiveness">Ask Forgiveness</a></i> (2007)</li>
|
339
|
+
<li><i><a href="/wiki/Among_the_Gold" title="Among the Gold">Among The Gold</a></i> (2009)</li>
|
340
|
+
</ul>
|
341
|
+
</div>
|
342
|
+
</td>
|
343
|
+
</tr>
|
344
|
+
<tr style="height:2px">
|
345
|
+
<td></td>
|
346
|
+
</tr>
|
347
|
+
<tr>
|
348
|
+
<th scope="row" class="navbox-group" style=";background: #EEEEEE;;">Compilations</th>
|
349
|
+
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox- hlist">
|
350
|
+
<div style="padding:0em 0.25em">
|
351
|
+
<ul>
|
352
|
+
<li><i><a href="/wiki/Lost_Blues_and_Other_Songs" title="Lost Blues and Other Songs">Lost Blues and Other Songs</a></i> (1997)</li>
|
353
|
+
<li><i><a href="/wiki/Guarapero/Lost_Blues_2" title="Guarapero/Lost Blues 2">Guarapero/Lost Blues 2</a></i> (2000)</li>
|
354
|
+
<li><i><a href="/wiki/Little_Lost_Blues" title="Little Lost Blues">Little Lost Blues</a></i> (2006)</li>
|
355
|
+
</ul>
|
356
|
+
</div>
|
357
|
+
</td>
|
358
|
+
</tr>
|
359
|
+
<tr style="height:2px">
|
360
|
+
<td></td>
|
361
|
+
</tr>
|
362
|
+
<tr>
|
363
|
+
<th scope="row" class="navbox-group" style=";background: #EEEEEE;;">Related articles</th>
|
364
|
+
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox- hlist">
|
365
|
+
<div style="padding:0em 0.25em">
|
366
|
+
<ul>
|
367
|
+
<li><a href="/wiki/Will_Oldham_discography" title="Will Oldham discography">Discography</a></li>
|
368
|
+
<li><a href="/wiki/Drag_City_(record_label)" title="Drag City (record label)">Drag City</a></li>
|
369
|
+
<li><a href="/wiki/Amalgamated_Sons_of_Rest" title="Amalgamated Sons of Rest">Amalgamated Sons of Rest</a></li>
|
370
|
+
</ul>
|
371
|
+
</div>
|
372
|
+
</td>
|
373
|
+
</tr>
|
374
|
+
</table>
|
375
|
+
</td>
|
376
|
+
</tr>
|
377
|
+
</table>
|
378
|
+
<table id="persondata" class="persondata" style="border:1px solid #aaa; display:none; speak:none;">
|
379
|
+
<tr>
|
380
|
+
<th colspan="2"><a href="/wiki/Wikipedia:Persondata" title="Wikipedia:Persondata">Persondata</a></th>
|
381
|
+
</tr>
|
382
|
+
<tr>
|
383
|
+
<td class="persondata-label" style="color:#aaa;">Name</td>
|
384
|
+
<td>Oldham, Will</td>
|
385
|
+
</tr>
|
386
|
+
<tr>
|
387
|
+
<td class="persondata-label" style="color:#aaa;">Alternative names</td>
|
388
|
+
<td></td>
|
389
|
+
</tr>
|
390
|
+
<tr>
|
391
|
+
<td class="persondata-label" style="color:#aaa;">Short description</td>
|
392
|
+
<td></td>
|
393
|
+
</tr>
|
394
|
+
<tr>
|
395
|
+
<td class="persondata-label" style="color:#aaa;">Date of birth</td>
|
396
|
+
<td>December 24, 1970</td>
|
397
|
+
</tr>
|
398
|
+
<tr>
|
399
|
+
<td class="persondata-label" style="color:#aaa;">Place of birth</td>
|
400
|
+
<td></td>
|
401
|
+
</tr>
|
402
|
+
<tr>
|
403
|
+
<td class="persondata-label" style="color:#aaa;">Date of death</td>
|
404
|
+
<td></td>
|
405
|
+
</tr>
|
406
|
+
<tr>
|
407
|
+
<td class="persondata-label" style="color:#aaa;">Place of death</td>
|
408
|
+
<td></td>
|
409
|
+
</tr>
|
410
|
+
</table>
|
411
|
+
|
412
|
+
|
413
|
+
<!--
|
414
|
+
NewPP limit report
|
415
|
+
Preprocessor node count: 9938/1000000
|
416
|
+
Post-expand include size: 76598/2048000 bytes
|
417
|
+
Template argument size: 28816/2048000 bytes
|
418
|
+
Expensive parser function count: 0/500
|
419
|
+
-->
|
420
|
+
|
421
|
+
<!-- Saved in parser cache with key enwiki:pcache:idhash:528023-0!*!0!!en!4!* and timestamp 20120226234321 generated by srv280 -->
|
422
|
+
</div> <!-- /bodycontent -->
|
423
|
+
<!-- printfooter -->
|
424
|
+
<div class="printfooter">
|
425
|
+
Retrieved from "<a href="http://en.wikipedia.org/w/index.php?title=Will_Oldham&oldid=476384625">http://en.wikipedia.org/w/index.php?title=Will_Oldham&oldid=476384625</a>" </div>
|
426
|
+
<!-- /printfooter -->
|
427
|
+
<!-- catlinks -->
|
428
|
+
<div id='catlinks' class='catlinks'><div id="mw-normal-catlinks"><a href="/wiki/Special:Categories" title="Special:Categories">Categories</a>: <ul><li><a href="/wiki/Category:1970_births" title="Category:1970 births">1970 births</a></li><li><a href="/wiki/Category:American_alternative_country_singers" title="Category:American alternative country singers">American alternative country singers</a></li><li><a href="/wiki/Category:American_country_guitarists" title="Category:American country guitarists">American country guitarists</a></li><li><a href="/wiki/Category:American_country_singer-songwriters" title="Category:American country singer-songwriters">American country singer-songwriters</a></li><li><a href="/wiki/Category:American_folk_guitarists" title="Category:American folk guitarists">American folk guitarists</a></li><li><a href="/wiki/Category:American_folk_singers" title="Category:American folk singers">American folk singers</a></li><li><a href="/wiki/Category:Brown_University_alumni" title="Category:Brown University alumni">Brown University alumni</a></li><li><a href="/wiki/Category:Drag_City_artists" title="Category:Drag City artists">Drag City artists</a></li><li><a href="/wiki/Category:Living_people" title="Category:Living people">Living people</a></li><li><a href="/wiki/Category:Musicians_from_Kentucky" title="Category:Musicians from Kentucky">Musicians from Kentucky</a></li><li><a href="/wiki/Category:People_from_Louisville,_Kentucky" title="Category:People from Louisville, Kentucky">People from Louisville, Kentucky</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:Articles_using_Infobox_musical_artist_with_deprecated_parameters" title="Category:Articles using Infobox musical artist with deprecated parameters">Articles using Infobox musical artist with deprecated parameters</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:Persondata_templates_without_short_description_parameter" title="Category:Persondata templates without short description parameter">Persondata templates without short description parameter</a></li></ul></div></div> <!-- /catlinks -->
|
429
|
+
<div class="visualClear"></div>
|
430
|
+
<!-- debughtml -->
|
431
|
+
<!-- /debughtml -->
|
432
|
+
</div>
|
433
|
+
<!-- /bodyContent -->
|
434
|
+
</div>
|
435
|
+
<!-- /content -->
|
436
|
+
<!-- header -->
|
437
|
+
<div id="mw-head" class="noprint">
|
438
|
+
|
439
|
+
<!-- 0 -->
|
440
|
+
<div id="p-personal" class="">
|
441
|
+
<h5>Personal tools</h5>
|
442
|
+
<ul>
|
443
|
+
<li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&returnto=Will+Oldham" title="You are encouraged to log in; however, it is not mandatory. [o]" accesskey="o">Log in / create account</a></li>
|
444
|
+
</ul>
|
445
|
+
</div>
|
446
|
+
|
447
|
+
<!-- /0 -->
|
448
|
+
<div id="left-navigation">
|
449
|
+
|
450
|
+
<!-- 0 -->
|
451
|
+
<div id="p-namespaces" class="vectorTabs">
|
452
|
+
<h5>Namespaces</h5>
|
453
|
+
<ul>
|
454
|
+
<li id="ca-nstab-main" class="selected"><span><a href="/wiki/Will_Oldham" title="View the content page [c]" accesskey="c">Article</a></span></li>
|
455
|
+
<li id="ca-talk"><span><a href="/wiki/Talk:Will_Oldham" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
|
456
|
+
</ul>
|
457
|
+
</div>
|
458
|
+
|
459
|
+
<!-- /0 -->
|
460
|
+
|
461
|
+
<!-- 1 -->
|
462
|
+
<div id="p-variants" class="vectorMenu emptyPortlet">
|
463
|
+
<h5><span>Variants</span><a href="#"></a></h5>
|
464
|
+
<div class="menu">
|
465
|
+
<ul>
|
466
|
+
</ul>
|
467
|
+
</div>
|
468
|
+
</div>
|
469
|
+
|
470
|
+
<!-- /1 -->
|
471
|
+
</div>
|
472
|
+
<div id="right-navigation">
|
473
|
+
|
474
|
+
<!-- 0 -->
|
475
|
+
<div id="p-views" class="vectorTabs">
|
476
|
+
<h5>Views</h5>
|
477
|
+
<ul>
|
478
|
+
<li id="ca-view" class="selected"><span><a href="/wiki/Will_Oldham" >Read</a></span></li>
|
479
|
+
<li id="ca-edit"><span><a href="/w/index.php?title=Will_Oldham&action=edit" title="You can edit this page. Please use the preview button before saving. [e]" accesskey="e">Edit</a></span></li>
|
480
|
+
<li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Will_Oldham&action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
|
481
|
+
</ul>
|
482
|
+
</div>
|
483
|
+
|
484
|
+
<!-- /0 -->
|
485
|
+
|
486
|
+
<!-- 1 -->
|
487
|
+
<div id="p-cactions" class="vectorMenu emptyPortlet">
|
488
|
+
<h5><span>Actions</span><a href="#"></a></h5>
|
489
|
+
<div class="menu">
|
490
|
+
<ul>
|
491
|
+
</ul>
|
492
|
+
</div>
|
493
|
+
</div>
|
494
|
+
|
495
|
+
<!-- /1 -->
|
496
|
+
|
497
|
+
<!-- 2 -->
|
498
|
+
<div id="p-search">
|
499
|
+
<h5><label for="searchInput">Search</label></h5>
|
500
|
+
<form action="/w/index.php" id="searchform">
|
501
|
+
<input type='hidden' name="title" value="Special:Search"/>
|
502
|
+
<div id="simpleSearch">
|
503
|
+
<input type="text" name="search" value="" 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/skins-1.18/vector/images/search-ltr.png?303-4" alt="Search" /></button> </div>
|
504
|
+
</form>
|
505
|
+
</div>
|
506
|
+
|
507
|
+
<!-- /2 -->
|
508
|
+
</div>
|
509
|
+
</div>
|
510
|
+
<!-- /header -->
|
511
|
+
<!-- panel -->
|
512
|
+
<div id="mw-panel" class="noprint">
|
513
|
+
<!-- logo -->
|
514
|
+
<div id="p-logo"><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>
|
515
|
+
<!-- /logo -->
|
516
|
+
|
517
|
+
<!-- navigation -->
|
518
|
+
<div class="portal" id='p-navigation'>
|
519
|
+
<h5>Navigation</h5>
|
520
|
+
<div class="body">
|
521
|
+
<ul>
|
522
|
+
<li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
|
523
|
+
<li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
|
524
|
+
<li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
|
525
|
+
<li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
|
526
|
+
<li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
|
527
|
+
<li id="n-sitesupport"><a href="//wikimediafoundation.org/wiki/Special:Landingcheck?landing_page=WMFJA085&language=en&utm_source=donate&utm_medium=sidebar&utm_campaign=20101204SB002" title="Support us">Donate to Wikipedia</a></li>
|
528
|
+
</ul>
|
529
|
+
</div>
|
530
|
+
</div>
|
531
|
+
|
532
|
+
<!-- /navigation -->
|
533
|
+
|
534
|
+
<!-- SEARCH -->
|
535
|
+
|
536
|
+
<!-- /SEARCH -->
|
537
|
+
|
538
|
+
<!-- interaction -->
|
539
|
+
<div class="portal" id='p-interaction'>
|
540
|
+
<h5>Interaction</h5>
|
541
|
+
<div class="body">
|
542
|
+
<ul>
|
543
|
+
<li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
|
544
|
+
<li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
|
545
|
+
<li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
|
546
|
+
<li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
|
547
|
+
<li id="n-contact"><a href="/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact Wikipedia</a></li>
|
548
|
+
</ul>
|
549
|
+
</div>
|
550
|
+
</div>
|
551
|
+
|
552
|
+
<!-- /interaction -->
|
553
|
+
|
554
|
+
<!-- TOOLBOX -->
|
555
|
+
<div class="portal" id='p-tb'>
|
556
|
+
<h5>Toolbox</h5>
|
557
|
+
<div class="body">
|
558
|
+
<ul>
|
559
|
+
<li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Will_Oldham" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
|
560
|
+
<li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Will_Oldham" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
|
561
|
+
<li id="t-upload"><a href="/wiki/Wikipedia:Upload" title="Upload files [u]" accesskey="u">Upload file</a></li>
|
562
|
+
<li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
|
563
|
+
<li id="t-permalink"><a href="/w/index.php?title=Will_Oldham&oldid=476384625" title="Permanent link to this revision of the page">Permanent link</a></li>
|
564
|
+
<li id="t-cite"><a href="/w/index.php?title=Special:Cite&page=Will_Oldham&id=476384625" title="Information on how to cite this page">Cite this page</a></li> </ul>
|
565
|
+
</div>
|
566
|
+
</div>
|
567
|
+
|
568
|
+
<!-- /TOOLBOX -->
|
569
|
+
|
570
|
+
<!-- coll-print_export -->
|
571
|
+
<div class="portal" id='p-coll-print_export'>
|
572
|
+
<h5>Print/export</h5>
|
573
|
+
<div class="body">
|
574
|
+
<ul id="collectionPortletList"><li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&bookcmd=book_creator&referer=Will+Oldham" title="Create a book or page collection" rel="nofollow">Create a book</a></li><li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&bookcmd=render_article&arttitle=Will+Oldham&oldid=476384625&writer=rl" title="Download a PDF version of this wiki page" rel="nofollow">Download as PDF</a></li><li id="t-print"><a href="/w/index.php?title=Will_Oldham&printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li></ul> </div>
|
575
|
+
</div>
|
576
|
+
|
577
|
+
<!-- /coll-print_export -->
|
578
|
+
|
579
|
+
<!-- LANGUAGES -->
|
580
|
+
<div class="portal" id='p-lang'>
|
581
|
+
<h5>Languages</h5>
|
582
|
+
<div class="body">
|
583
|
+
<ul>
|
584
|
+
<li class="interwiki-de"><a href="//de.wikipedia.org/wiki/Will_Oldham">Deutsch</a></li>
|
585
|
+
<li class="interwiki-es"><a href="//es.wikipedia.org/wiki/Will_Oldham">Español</a></li>
|
586
|
+
<li class="interwiki-fr"><a href="//fr.wikipedia.org/wiki/Will_Oldham">Français</a></li>
|
587
|
+
<li class="interwiki-it"><a href="//it.wikipedia.org/wiki/Will_Oldham">Italiano</a></li>
|
588
|
+
<li class="interwiki-he"><a href="//he.wikipedia.org/wiki/%D7%95%D7%99%D7%9C_%D7%90%D7%95%D7%9C%D7%93%D7%94%D7%9D">עברית</a></li>
|
589
|
+
<li class="interwiki-nl"><a href="//nl.wikipedia.org/wiki/Will_Oldham">Nederlands</a></li>
|
590
|
+
<li class="interwiki-no"><a href="//no.wikipedia.org/wiki/Will_Oldham">Norsk (bokmål)</a></li>
|
591
|
+
<li class="interwiki-pt"><a href="//pt.wikipedia.org/wiki/Will_Oldham">Português</a></li>
|
592
|
+
<li class="interwiki-ru"><a href="//ru.wikipedia.org/wiki/%D0%9E%D0%BB%D0%B4%D1%85%D1%8D%D0%BC,_%D0%A3%D0%B8%D0%BB%D0%BB">Русский</a></li>
|
593
|
+
<li class="interwiki-fi"><a href="//fi.wikipedia.org/wiki/Will_Oldham">Suomi</a></li>
|
594
|
+
<li class="interwiki-sv"><a href="//sv.wikipedia.org/wiki/Will_Oldham">Svenska</a></li>
|
595
|
+
</ul>
|
596
|
+
</div>
|
597
|
+
</div>
|
598
|
+
|
599
|
+
<!-- /LANGUAGES -->
|
600
|
+
</div>
|
601
|
+
<!-- /panel -->
|
602
|
+
<!-- footer -->
|
603
|
+
<div id="footer">
|
604
|
+
<ul id="footer-info">
|
605
|
+
<li id="footer-info-lastmod"> This page was last modified on 12 February 2012 at 02:36.<br /></li>
|
606
|
+
<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>;
|
607
|
+
additional terms may apply.
|
608
|
+
See <a href="//wikimediafoundation.org/wiki/Terms_of_use">Terms of use</a> for details.<br/>
|
609
|
+
Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.<br /></li><li class="noprint"><a class='internal' href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact us</a></li>
|
610
|
+
</ul>
|
611
|
+
<ul id="footer-places">
|
612
|
+
<li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
|
613
|
+
<li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
|
614
|
+
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
|
615
|
+
<li id="footer-places-mobileview"><a href='/w/index.php?title=Will_Oldham&useformat=mobile' class='noprint'>Mobile view</a></li>
|
616
|
+
</ul>
|
617
|
+
<ul id="footer-icons" class="noprint">
|
618
|
+
<li id="footer-copyrightico">
|
619
|
+
<a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
|
620
|
+
</li>
|
621
|
+
<li id="footer-poweredbyico">
|
622
|
+
<a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/skins-1.18/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
|
623
|
+
</li>
|
624
|
+
</ul>
|
625
|
+
<div style="clear:both"></div>
|
626
|
+
</div>
|
627
|
+
<!-- /footer -->
|
628
|
+
<!-- fixalpha -->
|
629
|
+
<script type="text/javascript"> if ( window.isMSIE55 ) fixalpha(); </script>
|
630
|
+
<!-- /fixalpha -->
|
631
|
+
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=skins.vector&only=scripts&skin=vector&*" type="text/javascript"></script>
|
632
|
+
<script type="text/javascript">if ( window.mediaWiki ) {
|
633
|
+
mw.loader.load(["mediawiki.user", "mediawiki.util", "mediawiki.page.ready", "mediawiki.legacy.wikibits", "mediawiki.legacy.ajax", "mediawiki.legacy.mwsuggest", "ext.gadget.teahouse", "ext.gadget.wmfFR2011Style", "ext.vector.collapsibleNav", "ext.vector.collapsibleTabs", "ext.vector.editWarning", "ext.vector.simpleSearch", "ext.UserBuckets", "ext.articleFeedback.startup", "ext.articleFeedbackv5.startup", "ext.markAsHelpful"]);
|
634
|
+
}
|
635
|
+
</script>
|
636
|
+
<script src="/w/index.php?title=Special:BannerController&cache=/cn.js&303-4" type="text/javascript"></script>
|
637
|
+
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=scripts&skin=vector&*" type="text/javascript"></script>
|
638
|
+
<script type="text/javascript">if ( window.mediaWiki ) {
|
639
|
+
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,"externaldiff":0,"externaleditor":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"highlightbroken":1,"imagesize":2,"justify":0,"math":1,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"quickbar":5,"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,
|
640
|
+
"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"vector-simplesearch":1,"useeditwarning":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"wikilove-enabled":1,"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,"gadget-teahouse":1,"gadget-mySandbox":1,"gadget-wmfFR2011Style":1});;mw.user.tokens.set({"editToken":"+\\","watchToken":false});;mw.loader.state({"user.options":"ready","user.tokens":"ready"});
|
641
|
+
|
642
|
+
/* cache key: enwiki:resourceloader:filter:minify-js:4:592424c258259744d97ac0a8c844c34b */
|
643
|
+
}
|
644
|
+
</script><script src="//geoiplookup.wikimedia.org/" type="text/javascript"></script><!-- Served by mw45 in 0.052 secs. -->
|
645
|
+
</body>
|
646
|
+
</html>
|