epub_reader 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.rspec +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +60 -0
- data/Rakefile +6 -0
- data/epub_reader.gemspec +26 -0
- data/lib/epub_reader.rb +10 -0
- data/lib/epub_reader/entry.rb +23 -0
- data/lib/epub_reader/epub.rb +17 -0
- data/lib/epub_reader/errors.rb +5 -0
- data/lib/epub_reader/image.rb +7 -0
- data/lib/epub_reader/toc_item.rb +32 -0
- data/lib/epub_reader/version.rb +3 -0
- data/spec/entry_spec.rb +60 -0
- data/spec/epub_spec.rb +51 -0
- data/spec/fixtures/epub20.epub +0 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland-content.xhtml +1071 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland-cover.jpg +0 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland-nav.xhtml +32 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland-night.css +19 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland.css +57 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland.ncx +49 -0
- data/spec/fixtures/epub20_unzipped/EPUB/wasteland.opf +32 -0
- data/spec/fixtures/epub20_unzipped/META-INF/container.xml +7 -0
- data/spec/fixtures/epub20_unzipped/epub20.epub +0 -0
- data/spec/fixtures/epub20_unzipped/mimetype +1 -0
- data/spec/fixtures/epub30.epub +0 -0
- data/spec/image_spec.rb +30 -0
- data/spec/spec_helper.rb +3 -0
- data/spec/toc_item_spec.rb +81 -0
- metadata +148 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b38bd7f90886bb7425c2b5d2849c7996f8f9e8d2
|
4
|
+
data.tar.gz: 0db53ab4a3b93440b10dd9a16343f19b3fcbe40d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7e23ae1b06e2bad2f6c12ea31c33797c4e9c1324ac81b04804f654d827e3a545cd2f73206d7767eeafcd8df5ea978ca72be048a8cbf5986579c58112cf0039ad
|
7
|
+
data.tar.gz: 372bfe6b72f8115448a5083c2f6fd72b49c972ffcf5762fff4c0c802178d9546ced881df60edab7026c439628c8dc95b68bdbdb5b4092182fbf265396addfa45
|
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Yang-Hsing Lin
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# EpubReader
|
2
|
+
|
3
|
+
EpubReader is a gem to parse epub file, including it's htmls and images
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'epub_reader'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install epub_reader
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
epub = EpubReader::Epub.new('/the/epub/path.epub')
|
22
|
+
epub.entries.each do |entry|
|
23
|
+
entry.html_text #=> html text
|
24
|
+
entry.title #=> entry title
|
25
|
+
entry.images.each do |image|
|
26
|
+
image.path #=> image file path
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
## API Documentation:
|
32
|
+
|
33
|
+
### `EpubReader::Epub`
|
34
|
+
|
35
|
+
- `::new(epub_file_path)`: returns an epub instance
|
36
|
+
- `#entries`: returns an array of `EpubReader::Entry`
|
37
|
+
|
38
|
+
### `EpubReader::Entry`
|
39
|
+
|
40
|
+
- `#title`: returns entry title
|
41
|
+
- `#html_text`: returns html text of the entry
|
42
|
+
- `#imags`: returns array of `EpubReader::Image`
|
43
|
+
|
44
|
+
|
45
|
+
### `EpubReader::Image`
|
46
|
+
|
47
|
+
- `#path`: returns the file path of the image
|
48
|
+
|
49
|
+
|
50
|
+
## Tests:
|
51
|
+
|
52
|
+
$ rake test
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
1. Fork it
|
57
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
58
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
59
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
60
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/epub_reader.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'epub_reader/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "epub_reader"
|
8
|
+
spec.version = EpubReader::VERSION
|
9
|
+
spec.authors = ["Yang-Hsing Lin"]
|
10
|
+
spec.email = ["yanghsing.lin@gmail.com"]
|
11
|
+
spec.description = %q{epub_reader is a gem to parse epub file, including it's htmls and images}
|
12
|
+
spec.summary = %q{epub_reader is a gem to parse epub file, including it's htmls and images}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "nokogiri"
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
end
|
data/lib/epub_reader.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
class EpubReader::Entry
|
3
|
+
attr_reader :title
|
4
|
+
def initialize toc_item
|
5
|
+
unless File.exists?(toc_item.html_path)
|
6
|
+
raise EpubReader::FileNotExistsException, "file #{toc_item.html_path} not exists"
|
7
|
+
end
|
8
|
+
|
9
|
+
@title = toc_item.title
|
10
|
+
@html_path = toc_item.html_path
|
11
|
+
end
|
12
|
+
|
13
|
+
def html_text
|
14
|
+
@html_text ||= File.read(@html_path)
|
15
|
+
end
|
16
|
+
|
17
|
+
def images
|
18
|
+
doc = Nokogiri.XML(html_text)
|
19
|
+
doc.root.xpath('//xmlns:img').map do |image_element|
|
20
|
+
EpubReader::Image.new(@html_path.join('..', image_element['src']))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
|
3
|
+
class EpubReader::Epub
|
4
|
+
attr_reader :entries
|
5
|
+
def initialize epub_path
|
6
|
+
raise EpubReader::FileNotExistsException, "epub file #{epub_path} not exists" unless File.exists?(epub_path)
|
7
|
+
@working_dir = "/tmp/#{SecureRandom.hex(5)}"
|
8
|
+
|
9
|
+
Kernel.system("mkdir #{@working_dir}")
|
10
|
+
Kernel.system("cp #{epub_path} #{@working_dir}")
|
11
|
+
Kernel.system("cd #{@working_dir} && unzip *.epub")
|
12
|
+
|
13
|
+
@entries = EpubReader::TOCItem.create_from(@working_dir).map do |toc_item|
|
14
|
+
EpubReader::Entry.new(toc_item)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
class EpubReader::TOCItem
|
3
|
+
class << self
|
4
|
+
def create_from unzipped_path
|
5
|
+
unless Dir.exists?(unzipped_path)
|
6
|
+
raise EpubReader::DirectoryNotExistsException, "unzipped directory #{unzipped_path} not exists"
|
7
|
+
end
|
8
|
+
|
9
|
+
ncx_path = Dir["#{unzipped_path}/**/*.ncx"].first
|
10
|
+
ncx_dir = Pathname.new(File.expand_path(File.dirname(ncx_path)))
|
11
|
+
|
12
|
+
root = Nokogiri.XML(File.open(ncx_path)).root
|
13
|
+
|
14
|
+
nav_points = root.xpath('//xmlns:navPoint').map do |n|
|
15
|
+
relative_path = n.xpath('.//xmlns:content').first['src'].gsub(/#.*$/, '')
|
16
|
+
|
17
|
+
new({
|
18
|
+
:title => n.xpath('.//xmlns:text').text,
|
19
|
+
:html_path => ncx_dir.join(relative_path)
|
20
|
+
})
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
|
27
|
+
attr_reader :title, :html_path
|
28
|
+
def initialize options
|
29
|
+
@title = options[:title]
|
30
|
+
@html_path = options[:html_path]
|
31
|
+
end
|
32
|
+
end
|
data/spec/entry_spec.rb
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe EpubReader::Entry do
|
4
|
+
subject { EpubReader::Entry }
|
5
|
+
let(:title) { 'the-entry-title' }
|
6
|
+
let(:fixture_path) do
|
7
|
+
Pathname.new(File.expand_path(__FILE__)).join('..', 'fixtures')
|
8
|
+
end
|
9
|
+
let(:html_path) do
|
10
|
+
fixture_path.join('epub20_unzipped',
|
11
|
+
'EPUB',
|
12
|
+
'wasteland-content.xhtml')
|
13
|
+
end
|
14
|
+
|
15
|
+
let(:toc_item) { double(:title => title, :html_path => html_path) }
|
16
|
+
|
17
|
+
describe '::new(toc_item)' do
|
18
|
+
it 'takes a toc item to init' do
|
19
|
+
entry = subject.new(toc_item)
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'raises if `toc_item` path not exists' do
|
23
|
+
toc_item.stub(:html_path => Pathname.new('non-exists'))
|
24
|
+
expect {
|
25
|
+
entry = subject.new(toc_item)
|
26
|
+
}.to raise_error(EpubReader::FileNotExistsException)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '#title' do
|
31
|
+
it 'forwards the title of toc_item' do
|
32
|
+
entry = subject.new(toc_item)
|
33
|
+
|
34
|
+
entry.title.should == toc_item.title
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe '#html_text' do
|
39
|
+
it 'returns the contents of html file' do
|
40
|
+
entry = subject.new(toc_item)
|
41
|
+
|
42
|
+
entry.html_text.should == File.read(html_path)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe '#images' do
|
47
|
+
let(:image) { double(:image) }
|
48
|
+
before :each do
|
49
|
+
EpubReader::Image.stub(:new => image)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'returns the images within the html' do
|
53
|
+
entry = subject.new(toc_item)
|
54
|
+
EpubReader::Image.should_receive(:new)
|
55
|
+
.with(html_path.join('..', 'wasteland-cover.jpg'))
|
56
|
+
|
57
|
+
entry.images.should == [ image ]
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
data/spec/epub_spec.rb
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe EpubReader::Epub do
|
4
|
+
let(:spec_path) { Pathname.new(File.expand_path(File.dirname(__FILE__))) }
|
5
|
+
let(:epub_path) { spec_path.join('fixtures/epub20.epub') }
|
6
|
+
let(:random_hex) { 'random-hex' }
|
7
|
+
let(:toc_item) { double(:toc_item) }
|
8
|
+
let(:entry) { double(:entry) }
|
9
|
+
|
10
|
+
before :each do
|
11
|
+
SecureRandom.stub(:hex => random_hex)
|
12
|
+
Kernel.stub(:system => true)
|
13
|
+
EpubReader::TOCItem.stub(:create_from => [ toc_item ])
|
14
|
+
EpubReader::Entry.stub(:new => entry)
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '::new(epub_file_path)' do
|
18
|
+
|
19
|
+
it 'takes a file path to create' do
|
20
|
+
EpubReader::Epub.new(epub_path)
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'raises if file not exists' do
|
24
|
+
expect {
|
25
|
+
EpubReader::Epub.new('non-exists')
|
26
|
+
}.to raise_error(EpubReader::FileNotExistsException)
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'unzip the epub at random folder in /tmp' do
|
30
|
+
Kernel.should_receive(:system).with("mkdir /tmp/#{random_hex}")
|
31
|
+
Kernel.should_receive(:system).with("cp #{epub_path} /tmp/#{random_hex}")
|
32
|
+
Kernel.should_receive(:system).with("cd /tmp/#{random_hex} && unzip *.epub")
|
33
|
+
|
34
|
+
EpubReader::Epub.new(epub_path)
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'creates Entries according to the result of TOCItem::create_from' do
|
38
|
+
EpubReader::TOCItem.should_receive(:create_from).with("/tmp/#{random_hex}")
|
39
|
+
EpubReader::Entry.should_receive(:new).with(toc_item)
|
40
|
+
|
41
|
+
EpubReader::Epub.new(epub_path)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe '#entries' do
|
46
|
+
it 'returns entries created' do
|
47
|
+
epub = EpubReader::Epub.new(epub_path)
|
48
|
+
epub.entries.should == [ entry ]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
Binary file
|
@@ -0,0 +1,1071 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
|
3
|
+
xmlns:epub="http://www.idpf.org/2007/ops">
|
4
|
+
<head>
|
5
|
+
<meta charset="utf-8"></meta>
|
6
|
+
<title>The Waste Land</title>
|
7
|
+
<link rel="stylesheet" type="text/css" href="wasteland.css" class="day" title="day"/>
|
8
|
+
<link rel="alternate stylesheet" type="text/css" href="wasteland-night.css" class="night" title="night"/>
|
9
|
+
<!-- <link rel="stylesheet" type="text/css" href="wasteland-night.css" class="night" title="night"/> -->
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<section epub:type="frontmatter" id="frontmatter">
|
13
|
+
<section epub:type="titlepage" id="titlepage">
|
14
|
+
<h1>The Waste Land</h1>
|
15
|
+
<div class="aut">T.S. Eliot</div>
|
16
|
+
<div epub:type="epigraph">
|
17
|
+
<p>
|
18
|
+
<span xml:lang="la">"Nam Sibyllam quidem Cumis ego ipse oculis
|
19
|
+
meis<br />vidi in ampulla pendere, et cum illi pueri dicerent</span>: <br />
|
20
|
+
<span xml:lang="grc"
|
21
|
+
>Σίβυλλα
|
22
|
+
τί
|
23
|
+
ϴέλεις<!--Sibylla ti theleis-->
|
24
|
+
</span>; <span xml:lang="la">respondebat illa</span>: <span xml:lang="grc"
|
25
|
+
>άποϴαγεῖγ
|
26
|
+
ϴέλϣ<!--apothanein thelo-->
|
27
|
+
</span>."</p>
|
28
|
+
</div>
|
29
|
+
<p epub:type="dedication">For Ezra Pound: <span xml:lang="it">il miglior
|
30
|
+
fabbro</span></p>
|
31
|
+
</section>
|
32
|
+
</section>
|
33
|
+
<section epub:type="bodymatter" id="bodymatter">
|
34
|
+
|
35
|
+
<section id="ch1">
|
36
|
+
<h2>I. THE BURIAL OF THE DEAD</h2>
|
37
|
+
<div class="linegroup">
|
38
|
+
<div>April is the cruellest month, breeding</div>
|
39
|
+
<div>Lilacs out of the dead land, mixing</div>
|
40
|
+
<div>Memory and desire, stirring</div>
|
41
|
+
<div>Dull roots with spring rain.</div>
|
42
|
+
<div>Winter kept us warm, covering</div>
|
43
|
+
<div>Earth in forgetful snow, feeding</div>
|
44
|
+
<div>A little life with dried tubers.</div>
|
45
|
+
<div>Summer surprised us, coming over the Starnbergersee</div>
|
46
|
+
<div>With a shower of rain; we stopped in the colonnade,</div>
|
47
|
+
<div>And went on in sunlight, into the Hofgarten,<span class="lnum"
|
48
|
+
>10</span>
|
49
|
+
</div>
|
50
|
+
<div>And drank coffee, and talked for an hour.</div>
|
51
|
+
<div xml:lang="de">Bin gar keine Russin, stamm' aus Litauen, echt
|
52
|
+
deutsch.</div>
|
53
|
+
<div>And when we were children, staying at the archduke's,</div>
|
54
|
+
<div>My cousin's, he took me out on a sled,</div>
|
55
|
+
<div>And I was frightened. He said, Marie,</div>
|
56
|
+
<div>Marie, hold on tight. And down we went.</div>
|
57
|
+
<div>In the mountains, there you feel free.</div>
|
58
|
+
<div>I read, much of the night, and go south in the winter.</div>
|
59
|
+
</div>
|
60
|
+
<div class="linegroup">
|
61
|
+
<div>What are the roots that clutch, what branches grow</div>
|
62
|
+
<div id="ln20">Out of this stony rubbish? Son of man,<a epub:type="noteref" class="noteref"
|
63
|
+
href="#note-1">*</a><span class="lnum">20</span>
|
64
|
+
</div>
|
65
|
+
<div>You cannot say, or guess, for you know only</div>
|
66
|
+
<div>A heap of broken images, where the sun beats,</div>
|
67
|
+
<div id="ln23">And the dead tree gives no shelter, the cricket no relief,<a
|
68
|
+
epub:type="noteref" class="noteref" href="#note-2">*</a></div>
|
69
|
+
<div>And the dry stone no sound of water. Only</div>
|
70
|
+
<div>There is shadow under this red rock,</div>
|
71
|
+
<div>(Come in under the shadow of this red rock),</div>
|
72
|
+
<div>And I will show you something different from either</div>
|
73
|
+
<div>Your shadow at morning striding behind you</div>
|
74
|
+
<div>Or your shadow at evening rising to meet you;</div>
|
75
|
+
<div>I will show you fear in a handful of dust.<span class="lnum"
|
76
|
+
>30</span>
|
77
|
+
</div>
|
78
|
+
<blockquote xml:lang="de">
|
79
|
+
<div>
|
80
|
+
<div id="ln31">Frisch weht der Wind<a epub:type="noteref" class="noteref"
|
81
|
+
href="#note-3">*</a>
|
82
|
+
</div>
|
83
|
+
<div>Der Heimat zu</div>
|
84
|
+
<div>Mein Irisch Kind,</div>
|
85
|
+
<div>Wo weilest du?</div>
|
86
|
+
</div>
|
87
|
+
</blockquote>
|
88
|
+
<div>"You gave me hyacinths first a year ago;</div>
|
89
|
+
<div>"They called me the hyacinth girl."</div>
|
90
|
+
<div>―Yet when we came back, late, from the Hyacinth
|
91
|
+
garden,</div>
|
92
|
+
<div>Your arms full, and your hair wet, I could not</div>
|
93
|
+
<div>Speak, and my eyes failed, I was neither</div>
|
94
|
+
<div>Living nor dead, and I knew nothing,<span class="lnum"
|
95
|
+
>40</span>
|
96
|
+
</div>
|
97
|
+
<div>Looking into the heart of light, the silence.</div>
|
98
|
+
<div xml:lang="de" id="ln42">
|
99
|
+
<em>Od' und leer das Meer</em>.<a epub:type="noteref" class="noteref" href="#note-4">*</a>
|
100
|
+
</div>
|
101
|
+
</div>
|
102
|
+
<div class="linegroup">
|
103
|
+
<div>Madame Sosostris, famous clairvoyante,</div>
|
104
|
+
<div>Had a bad cold, nevertheless</div>
|
105
|
+
<div>Is known to be the wisest woman in Europe,</div>
|
106
|
+
<div id="ln46">With a wicked pack of cards. Here, said she,<a
|
107
|
+
epub:type="noteref" class="noteref" href="#note-5">*</a></div>
|
108
|
+
<div>Is your card, the drowned Phoenician Sailor,</div>
|
109
|
+
<div>(Those are pearls that were his eyes. Look!)</div>
|
110
|
+
<div>Here is Belladonna, the Lady of the Rocks,</div>
|
111
|
+
<div>The lady of situations.<span class="lnum">50</span>
|
112
|
+
</div>
|
113
|
+
<div>Here is the man with three staves, and here the Wheel,</div>
|
114
|
+
<div>And here is the one-eyed merchant, and this card,</div>
|
115
|
+
<div>Which is blank, is something he carries on his back,</div>
|
116
|
+
<div>Which I am forbidden to see. I do not find</div>
|
117
|
+
<div>The Hanged Man. Fear death by water.</div>
|
118
|
+
<div>I see crowds of people, walking round in a ring.</div>
|
119
|
+
<div>Thank you. If you see dear Mrs. Equitone,</div>
|
120
|
+
<div>Tell her I bring the horoscope myself:</div>
|
121
|
+
<div>One must be so careful these days.</div>
|
122
|
+
</div>
|
123
|
+
<div class="linegroup">
|
124
|
+
<div id="ln60">Unreal City,<a epub:type="noteref" class="noteref" href="#note-6">*</a><span
|
125
|
+
class="lnum">60</span>
|
126
|
+
</div>
|
127
|
+
<div>Under the brown fog of a winter dawn,</div>
|
128
|
+
<div>A crowd flowed over London Bridge, so many,</div>
|
129
|
+
<div id="ln63">I had not thought death had undone so many.<a
|
130
|
+
epub:type="noteref" class="noteref" href="#note-7">*</a>
|
131
|
+
</div>
|
132
|
+
<div id="ln64">Sighs, short and infrequent, were exhaled,<a epub:type="noteref" class="noteref"
|
133
|
+
href="#note-8">*</a></div>
|
134
|
+
<div>And each man fixed his eyes before his feet.</div>
|
135
|
+
<div>Flowed up the hill and down King William Street,</div>
|
136
|
+
<div>To where Saint Mary Woolnoth kept the hours</div>
|
137
|
+
<div id="ln68">With a dead sound on the final stroke of nine.<a
|
138
|
+
epub:type="noteref" class="noteref" href="#note-9">*</a>
|
139
|
+
</div>
|
140
|
+
<div>There I saw one I knew, and stopped him, crying
|
141
|
+
"Stetson!</div>
|
142
|
+
<div>"You who were with me in the ships at Mylae!<span class="lnum"
|
143
|
+
>70</span>
|
144
|
+
</div>
|
145
|
+
<div>"That corpse you planted last year in your garden,</div>
|
146
|
+
<div>"Has it begun to sprout? Will it bloom this year?</div>
|
147
|
+
<div>"Or has the sudden frost disturbed its bed?</div>
|
148
|
+
</div>
|
149
|
+
<div class="linegroup">
|
150
|
+
<div id="ln74">"Oh keep the Dog far hence, that's friend to men,<a
|
151
|
+
epub:type="noteref" class="noteref" href="#note-10">*</a>
|
152
|
+
</div>
|
153
|
+
<div>"Or with his nails he'll dig it up again!</div>
|
154
|
+
<div id="ln76">"You! <span xml:lang="fr">hypocrite lecteur! - mon semblable, -
|
155
|
+
mon frere</span> !"<a epub:type="noteref" class="noteref" href="#note-11">*</a>
|
156
|
+
</div>
|
157
|
+
</div>
|
158
|
+
</section>
|
159
|
+
<section id="ch2">
|
160
|
+
<h2>II. A GAME OF CHESS</h2>
|
161
|
+
<div class="linegroup">
|
162
|
+
<div id="ln77">The Chair she sat in, like a burnished throne,<a
|
163
|
+
epub:type="noteref" class="noteref" href="#note-12">*</a></div>
|
164
|
+
<div>Glowed on the marble, where the glass</div>
|
165
|
+
<div>Held up by standards wrought with fruited vines</div>
|
166
|
+
<div>From which a golden Cupidon peeped out<span class="lnum"
|
167
|
+
>80</span>
|
168
|
+
</div>
|
169
|
+
<div>(Another hid his eyes behind his wing)</div>
|
170
|
+
<div>Doubled the flames of sevenbranched candelabra</div>
|
171
|
+
<div>Reflecting light upon the table as</div>
|
172
|
+
<div>The glitter of her jewels rose to meet it,</div>
|
173
|
+
<div>From satin cases poured in rich profusion;</div>
|
174
|
+
<div>In vials of ivory and coloured glass</div>
|
175
|
+
<div>Unstoppered, lurked her strange synthetic perfumes,</div>
|
176
|
+
<div>Unguent, powdered, or liquid - troubled, confused</div>
|
177
|
+
<div>And drowned the sense in odours; stirred by the air</div>
|
178
|
+
<div>That freshened from the window, these ascended<span
|
179
|
+
class="lnum">90</span>
|
180
|
+
</div>
|
181
|
+
<div>In fattening the prolonged candle-flames,</div>
|
182
|
+
<div id="ln92">Flung their smoke into the laquearia,<a epub:type="noteref" class="noteref"
|
183
|
+
href="#note-13">*</a></div>
|
184
|
+
<div>Stirring the pattern on the coffered ceiling.</div>
|
185
|
+
<div>Huge sea-wood fed with copper</div>
|
186
|
+
<div>Burned green and orange, framed by the coloured stone,</div>
|
187
|
+
<div>In which sad light a carved dolphin swam.</div>
|
188
|
+
<div>Above the antique mantel was displayed</div>
|
189
|
+
<div id="ln98">As though a window gave upon the sylvan scene<a
|
190
|
+
epub:type="noteref" class="noteref" href="#note-14">*</a>
|
191
|
+
</div>
|
192
|
+
<div id="ln99">The change of Philomel, by the barbarous king<a
|
193
|
+
epub:type="noteref" class="noteref" href="#note-15">*</a>
|
194
|
+
</div>
|
195
|
+
<div id="ln100">So rudely forced; yet there the nightingale<a
|
196
|
+
epub:type="noteref" class="noteref" href="#note-16">*</a>
|
197
|
+
<span class="lnum">100</span>
|
198
|
+
</div>
|
199
|
+
<div>Filled all the desert with inviolable voice</div>
|
200
|
+
<div>And still she cried, and still the world pursues,</div>
|
201
|
+
<div>"Jug Jug" to dirty ears.</div>
|
202
|
+
<div>And other withered stumps of time</div>
|
203
|
+
<div>Were told upon the walls; staring forms</div>
|
204
|
+
<div>Leaned out, leaning, hushing the room enclosed.</div>
|
205
|
+
<div>Footsteps shuffled on the stair.</div>
|
206
|
+
<div>Under the firelight, under the brush, her hair</div>
|
207
|
+
<div>Spread out in fiery points</div>
|
208
|
+
<div>Glowed into words, then would be savagely still.<span
|
209
|
+
class="lnum">110</span>
|
210
|
+
</div>
|
211
|
+
</div>
|
212
|
+
<div class="linegroup">
|
213
|
+
<div class="linegroup">
|
214
|
+
<div>"My nerves are bad to-night. Yes, bad. Stay with me.</div>
|
215
|
+
<div>"Speak to me. Why do you never speak. Speak.</div>
|
216
|
+
<div>"What are you thinking of? What thinking? What?</div>
|
217
|
+
<div>"I never know what you are thinking. Think."</div>
|
218
|
+
</div>
|
219
|
+
<div class="linegroup">
|
220
|
+
<div id="ln115">I think we are in rats' alley<a epub:type="noteref" class="noteref"
|
221
|
+
href="#note-17">*</a>
|
222
|
+
</div>
|
223
|
+
<div>Where the dead men lost their bones.</div>
|
224
|
+
</div>
|
225
|
+
</div>
|
226
|
+
<div class="linegroup">
|
227
|
+
<div>"What is that noise?"</div>
|
228
|
+
<div class="indent" id="ln118">The wind under the door.<a epub:type="noteref" class="noteref" href="#note-18"
|
229
|
+
>*</a>
|
230
|
+
</div>
|
231
|
+
<div>"What is that noise now? What is the wind doing?"</div>
|
232
|
+
<div class="indent">Nothing again nothing.<span class="lnum">120</span>
|
233
|
+
</div>
|
234
|
+
</div>
|
235
|
+
<div class="linegroup">
|
236
|
+
<div>"Do</div>
|
237
|
+
<div>"You know nothing? Do you see nothing? Do you remember</div>
|
238
|
+
<div>"Nothing?"</div>
|
239
|
+
</div>
|
240
|
+
<div class="linegroup">
|
241
|
+
<div>I remember</div>
|
242
|
+
<div>Those are pearls that were his eyes.</div>
|
243
|
+
<div id="ln126">"Are you alive, or not? Is there nothing in your head?"<a
|
244
|
+
epub:type="noteref" class="noteref" href="#note-19">*</a>
|
245
|
+
</div>
|
246
|
+
<div>But</div>
|
247
|
+
<div>O O O O that Shakespeherian Rag―</div>
|
248
|
+
<div>It's so elegant</div>
|
249
|
+
<div>So intelligent<span class="lnum">130</span>
|
250
|
+
</div>
|
251
|
+
<div>"What shall I do now? What shall I do?"</div>
|
252
|
+
<div>I shall rush out as I am, and walk the street</div>
|
253
|
+
<div>"With my hair down, so. What shall we do to-morrow?</div>
|
254
|
+
<div>"What shall we ever do?"</div>
|
255
|
+
<div>The hot water at ten.</div>
|
256
|
+
<div>And if it rains, a closed car at four.</div>
|
257
|
+
<div>And we shall play a game of chess,</div>
|
258
|
+
<div id="ln138">Pressing lidless eyes and waiting for a knock upon the door.<a
|
259
|
+
epub:type="noteref" class="noteref" href="#note-20">*</a>
|
260
|
+
</div>
|
261
|
+
</div>
|
262
|
+
<div class="linegroup">
|
263
|
+
<div>When Lil's husband got demobbed, I said -</div>
|
264
|
+
<div>I didn't mince my words, I said to her myself,<span
|
265
|
+
class="lnum">140</span>
|
266
|
+
</div>
|
267
|
+
<div>HURRY UP PLEASE ITS TIME</div>
|
268
|
+
<div>Now Albert's coming back, make yourself a bit smart.</div>
|
269
|
+
<div>He'll want to know what you done with that money he gave
|
270
|
+
you</div>
|
271
|
+
<div>To get yourself some teeth. He did, I was there.</div>
|
272
|
+
<div>You have them all out, Lil, and get a nice set,</div>
|
273
|
+
<div>He said, I swear, I can't bear to look at you.</div>
|
274
|
+
<div>And no more can't I, I said, and think of poor Albert,</div>
|
275
|
+
<div>He's been in the army four years, he wants a good time,</div>
|
276
|
+
<div>And if you don't give it him, there's others will, I
|
277
|
+
said.</div>
|
278
|
+
<div>Oh is there, she said. Something o' that, I said.<span
|
279
|
+
class="lnum">150</span>
|
280
|
+
</div>
|
281
|
+
<div>Then I'll know who to thank, she said, and give me a straight
|
282
|
+
look.</div>
|
283
|
+
<div>HURRY UP PLEASE ITS TIME</div>
|
284
|
+
<div>If you don't like it you can get on with it, I said.</div>
|
285
|
+
<div>Others can pick and choose if you can't.</div>
|
286
|
+
<div>But if Albert makes off, it won't be for lack of
|
287
|
+
telling.</div>
|
288
|
+
<div>You ought to be ashamed, I said, to look so antique.</div>
|
289
|
+
<div>(And her only thirty-one.)</div>
|
290
|
+
<div>I can't help it, she said, pulling a long face,</div>
|
291
|
+
<div>It's them pills I took, to bring it off, she said.</div>
|
292
|
+
<div>(She's had five already, and nearly died of young George.)<span
|
293
|
+
class="lnum">160</span>
|
294
|
+
</div>
|
295
|
+
<div>The chemist said it would be all right, but I've never been the
|
296
|
+
same.</div>
|
297
|
+
<div>You <em>are</em> a proper fool, I said.</div>
|
298
|
+
<div>Well, if Albert won't leave you alone, there it is, I
|
299
|
+
said,</div>
|
300
|
+
<div>What you get married for if you don't want children?</div>
|
301
|
+
<div>HURRY UP PLEASE ITS TIME</div>
|
302
|
+
<div>Well, that Sunday Albert was home, they had a hot
|
303
|
+
gammon,</div>
|
304
|
+
<div>And they asked me in to dinner, to get the beauty of it
|
305
|
+
hot―</div>
|
306
|
+
<div>HURRY UP PLEASE ITS TIME</div>
|
307
|
+
<div>HURRY UP PLEASE ITS TIME</div>
|
308
|
+
<div>Goonight Bill. Goonight Lou. Goonight May. Goonight.<span
|
309
|
+
class="lnum">170</span>
|
310
|
+
</div>
|
311
|
+
<div>Ta ta. Goonight. Goonight.</div>
|
312
|
+
<div>Good night, ladies, good night, sweet ladies, good night, good
|
313
|
+
night.</div>
|
314
|
+
</div>
|
315
|
+
</section>
|
316
|
+
<section id="ch3">
|
317
|
+
<h2>III. THE FIRE SERMON</h2>
|
318
|
+
<div class="linegroup">
|
319
|
+
<div>The river's tent is broken: the last fingers of leaf</div>
|
320
|
+
<div>Clutch and sink into the wet bank. The wind</div>
|
321
|
+
<div>Crosses the brown land, unheard. The nymphs are
|
322
|
+
departed.</div>
|
323
|
+
<div id="ln176">Sweet Thames, run softly, till I end my song.<a
|
324
|
+
epub:type="noteref" class="noteref" href="#note-21">*</a>
|
325
|
+
</div>
|
326
|
+
<div>The river bears no empty bottles, sandwich papers,</div>
|
327
|
+
<div>Silk handkerchiefs, cardboard boxes, cigarette ends</div>
|
328
|
+
<div>Or other testimony of summer nights. The nymphs are
|
329
|
+
departed.</div>
|
330
|
+
<div>And their friends, the loitering heirs of city directors;<span
|
331
|
+
class="lnum">180</span>
|
332
|
+
</div>
|
333
|
+
<div>Departed, have left no addresses.</div>
|
334
|
+
<div>By the waters of Leman I sat down and wept . . .</div>
|
335
|
+
<div>Sweet Thames, run softly till I end my song,</div>
|
336
|
+
<div>Sweet Thames, run softly, for I speak not loud or long.</div>
|
337
|
+
<div>But at my back in a cold blast I hear</div>
|
338
|
+
<div>The rattle of the bones, and chuckle spread from ear to
|
339
|
+
ear.</div>
|
340
|
+
</div>
|
341
|
+
<div class="linegroup">
|
342
|
+
<div>A rat crept softly through the vegetation</div>
|
343
|
+
<div>Dragging its slimy belly on the bank</div>
|
344
|
+
<div>While I was fishing in the dull canal</div>
|
345
|
+
<div>On a winter evening round behind the gashouse<span class="lnum"
|
346
|
+
>190</span>
|
347
|
+
</div>
|
348
|
+
<div>Musing upon the king my brother's wreck</div>
|
349
|
+
<div id="ln192">And on the king my father's death before him.<a
|
350
|
+
epub:type="noteref" class="noteref" href="#note-22">*</a>
|
351
|
+
</div>
|
352
|
+
<div>White bodies naked on the low damp ground</div>
|
353
|
+
<div>And bones cast in a little low dry garret,</div>
|
354
|
+
<div>Rattled by the rat's foot only, year to year.</div>
|
355
|
+
<div id="ln196">But at my back from time to time I hear<a epub:type="noteref" class="noteref"
|
356
|
+
href="#note-23">*</a>
|
357
|
+
</div>
|
358
|
+
<div id="ln197">The sound of horns and motors, which shall bring<a
|
359
|
+
epub:type="noteref" class="noteref" href="#note-24">*</a>
|
360
|
+
</div>
|
361
|
+
<div>Sweeney to Mrs. Porter in the spring.</div>
|
362
|
+
<div id="ln199">O the moon shone bright on Mrs. Porter<a epub:type="noteref" class="noteref"
|
363
|
+
href="#note-25">*</a>
|
364
|
+
</div>
|
365
|
+
<div>And on her daughter<span class="lnum">200</span>
|
366
|
+
</div>
|
367
|
+
<div>They wash their feet in soda water</div>
|
368
|
+
<div id="ln202" xml:lang="fr">
|
369
|
+
<em>Et O ces voix d'enfants, chantant dans la coupole</em>!<a epub:type="noteref" class="noteref"
|
370
|
+
href="#note-26">*</a></div>
|
371
|
+
</div>
|
372
|
+
<div class="linegroup">
|
373
|
+
<div>Twit twit twit</div>
|
374
|
+
<div>Jug jug jug jug jug jug</div>
|
375
|
+
<div>So rudely forc'd.</div>
|
376
|
+
<div>Tereu</div>
|
377
|
+
</div>
|
378
|
+
<div class="linegroup">
|
379
|
+
<div>Unreal City</div>
|
380
|
+
<div>Under the brown fog of a winter noon</div>
|
381
|
+
<div>Mr. Eugenides, the Smyrna merchant</div>
|
382
|
+
<div id="ln210">Unshaven, with a pocket full of currants<a epub:type="noteref" class="noteref"
|
383
|
+
href="#note-27">*</a>
|
384
|
+
<span class="lnum">210</span>
|
385
|
+
</div>
|
386
|
+
<div>C.i.f. London: documents at sight,</div>
|
387
|
+
<div>Asked me in demotic French</div>
|
388
|
+
<div>To luncheon at the Cannon Street Hotel</div>
|
389
|
+
<div>Followed by a weekend at the Metropole.</div>
|
390
|
+
</div>
|
391
|
+
<div class="linegroup">
|
392
|
+
<div>At the violet hour, when the eyes and back</div>
|
393
|
+
<div>Turn upward from the desk, when the human engine waits</div>
|
394
|
+
<div>Like a taxi throbbing waiting,</div>
|
395
|
+
<div id="ln218">I Tiresias, though blind, throbbing between two lives,<a
|
396
|
+
epub:type="noteref" class="noteref" href="#note-28">*</a></div>
|
397
|
+
<div>Old man with wrinkled female breasts, can see</div>
|
398
|
+
<div>At the violet hour, the evening hour that strives<span
|
399
|
+
class="lnum">220</span>
|
400
|
+
</div>
|
401
|
+
<div id="ln221">Homeward, and brings the sailor home from sea,<a
|
402
|
+
epub:type="noteref" class="noteref" href="#note-29">*</a></div>
|
403
|
+
<div>The typist home at teatime, clears her breakfast, lights</div>
|
404
|
+
<div>Her stove, and lays out food in tins.</div>
|
405
|
+
<div>Out of the window perilously spread</div>
|
406
|
+
<div>Her drying combinations touched by the sun's last rays,</div>
|
407
|
+
<div>On the divan are piled (at night her bed)</div>
|
408
|
+
<div>Stockings, slippers, camisoles, and stays.</div>
|
409
|
+
<div>I Tiresias, old man with wrinkled dugs</div>
|
410
|
+
<div>Perceived the scene, and foretold the rest -</div>
|
411
|
+
<div>I too awaited the expected guest.<span class="lnum">230</span>
|
412
|
+
</div>
|
413
|
+
<div>He, the young man carbuncular, arrives,</div>
|
414
|
+
<div>A small house agent's clerk, with one bold stare,</div>
|
415
|
+
<div>One of the low on whom assurance sits</div>
|
416
|
+
<div>As a silk hat on a Bradford millionaire.</div>
|
417
|
+
<div>The time is now propitious, as he guesses,</div>
|
418
|
+
<div>The meal is ended, she is bored and tired,</div>
|
419
|
+
<div>Endeavours to engage her in caresses</div>
|
420
|
+
<div>Which still are unreproved, if undesired.</div>
|
421
|
+
<div>Flushed and decided, he assaults at once;</div>
|
422
|
+
<div>Exploring hands encounter no defence;<span class="lnum"
|
423
|
+
>240</span>
|
424
|
+
</div>
|
425
|
+
<div>His vanity requires no response,</div>
|
426
|
+
<div>And makes a welcome of indifference.</div>
|
427
|
+
<div>(And I Tiresias have foresuffered all</div>
|
428
|
+
<div>Enacted on this same divan or bed;</div>
|
429
|
+
<div>I who have sat by Thebes below the wall</div>
|
430
|
+
<div>And walked among the lowest of the dead.)</div>
|
431
|
+
<div>Bestows one final patronising kiss,</div>
|
432
|
+
<div>And gropes his way, finding the stairs unlit . . .</div>
|
433
|
+
</div>
|
434
|
+
<div class="linegroup">
|
435
|
+
<div>She turns and looks a moment in the glass,</div>
|
436
|
+
<div>Hardly aware of her departed lover;<span class="lnum"
|
437
|
+
>250</span>
|
438
|
+
</div>
|
439
|
+
<div>Her brain allows one half-formed thought to pass:</div>
|
440
|
+
<div>"Well now that's done: and I'm glad it's over."</div>
|
441
|
+
<div id="ln253">When lovely woman stoops to folly and<a epub:type="noteref" class="noteref"
|
442
|
+
href="#note-30">*</a>
|
443
|
+
</div>
|
444
|
+
<div>Paces about her room again, alone,</div>
|
445
|
+
<div>She smoothes her hair with automatic hand,</div>
|
446
|
+
<div>And puts a record on the gramophone.</div>
|
447
|
+
</div>
|
448
|
+
<div class="linegroup">
|
449
|
+
<div id="ln257">"This music crept by me upon the waters"<a epub:type="noteref" class="noteref"
|
450
|
+
href="#note-31">*</a>
|
451
|
+
</div>
|
452
|
+
<div>And along the Strand, up Queen Victoria Street.</div>
|
453
|
+
<div>O City city, I can sometimes hear</div>
|
454
|
+
<div>Beside a public bar in Lower Thames Street,<span class="lnum"
|
455
|
+
>260</span>
|
456
|
+
</div>
|
457
|
+
<div>The pleasant whining of a mandoline</div>
|
458
|
+
<div>And a clatter and a chatter from within</div>
|
459
|
+
<div>Where fishmen lounge at noon: where the walls</div>
|
460
|
+
<div id="ln264">Of Magnus Martyr hold<a epub:type="noteref" class="noteref" href="#note-32"
|
461
|
+
>*</a>
|
462
|
+
</div>
|
463
|
+
<div>Inexplicable splendour of Ionian white and gold.</div>
|
464
|
+
</div>
|
465
|
+
<div class="linegroup indent">
|
466
|
+
<div id="ln266">The river sweats<a epub:type="noteref" class="noteref" href="#note-33">*</a>
|
467
|
+
</div>
|
468
|
+
<div>Oil and tar</div>
|
469
|
+
<div>The barges drift</div>
|
470
|
+
<div>With the turning tide</div>
|
471
|
+
<div>Red sails<span class="lnum">270</span>
|
472
|
+
</div>
|
473
|
+
<div>Wide</div>
|
474
|
+
<div>To leeward, swing on the heavy spar.</div>
|
475
|
+
<div>The barges wash</div>
|
476
|
+
<div>Drifting logs</div>
|
477
|
+
<div>Down Greenwich reach</div>
|
478
|
+
<div>Past the Isle of Dogs.</div>
|
479
|
+
<div class="indent">Weialala leia</div>
|
480
|
+
<div class="indent">Wallala leialala</div>
|
481
|
+
</div>
|
482
|
+
<div class="linegroup indent">
|
483
|
+
<div id="ln279">Elizabeth and Leicester<a epub:type="noteref" class="noteref" href="#note-34"
|
484
|
+
>*</a>
|
485
|
+
</div>
|
486
|
+
<div>Beating oars<span class="lnum">280</span>
|
487
|
+
</div>
|
488
|
+
<div>The stern was formed</div>
|
489
|
+
<div>A gilded shell</div>
|
490
|
+
<div>Red and gold</div>
|
491
|
+
<div>The brisk swell</div>
|
492
|
+
<div>Rippled both shores</div>
|
493
|
+
<div>Southwest wind</div>
|
494
|
+
<div>Carried down stream</div>
|
495
|
+
<div>The peal of bells</div>
|
496
|
+
<div>White towers</div>
|
497
|
+
<div class="indent">Weialala leia<span class="lnum">290</span>
|
498
|
+
</div>
|
499
|
+
<div class="indent">Wallala leialala</div>
|
500
|
+
</div>
|
501
|
+
<div class="linegroup">
|
502
|
+
<div>"Trams and dusty trees.</div>
|
503
|
+
<div id="ln293">Highbury bore me. Richmond and Kew<a epub:type="noteref" class="noteref"
|
504
|
+
href="#note-35">*</a>
|
505
|
+
</div>
|
506
|
+
<div>Undid me. By Richmond I raised my knees</div>
|
507
|
+
<div>Supine on the floor of a narrow canoe."</div>
|
508
|
+
</div>
|
509
|
+
<div class="linegroup">
|
510
|
+
<div>"My feet are at Moorgate, and my heart</div>
|
511
|
+
<div>Under my feet. After the event</div>
|
512
|
+
<div>He wept. He promised 'a new start'.</div>
|
513
|
+
<div>I made no comment. What should I resent?"</div>
|
514
|
+
<div>"On Margate Sands.<span class="lnum">300</span>
|
515
|
+
</div>
|
516
|
+
<div>I can connect</div>
|
517
|
+
<div>Nothing with nothing.</div>
|
518
|
+
<div>The broken fingernails of dirty hands.</div>
|
519
|
+
<div>My people humble people who expect</div>
|
520
|
+
<div>Nothing."</div>
|
521
|
+
<div class="indent">la la</div>
|
522
|
+
</div>
|
523
|
+
<div class="linegroup">
|
524
|
+
<div id="ln307">To Carthage then I came<a epub:type="noteref" class="noteref" href="#note-36"
|
525
|
+
>*</a>
|
526
|
+
</div>
|
527
|
+
</div>
|
528
|
+
<div class="linegroup">
|
529
|
+
<div id="ln308">Burning burning burning burning<a epub:type="noteref" class="noteref"
|
530
|
+
href="#note-37">*</a>
|
531
|
+
</div>
|
532
|
+
<div id="ln309">O Lord Thou pluckest me out<a epub:type="noteref" class="noteref"
|
533
|
+
href="#note-38">*</a>
|
534
|
+
</div>
|
535
|
+
<div>O Lord Thou pluckest<span class="lnum">310</span>
|
536
|
+
</div>
|
537
|
+
</div>
|
538
|
+
<div class="linegroup">
|
539
|
+
<div>burning</div>
|
540
|
+
</div>
|
541
|
+
</section>
|
542
|
+
<section id="ch4">
|
543
|
+
<h2>IV. DEATH BY WATER</h2>
|
544
|
+
<div class="linegroup">
|
545
|
+
<div>Phlebas the Phoenician, a fortnight dead,</div>
|
546
|
+
<div>Forgot the cry of gulls, and the deep sea swell</div>
|
547
|
+
<div>And the profit and loss.</div>
|
548
|
+
</div>
|
549
|
+
<div class="linegroup">
|
550
|
+
<div class="indent2">A current under sea</div>
|
551
|
+
<div>Picked his bones in whispers. As he rose and fell</div>
|
552
|
+
<div>He passed the stages of his age and youth</div>
|
553
|
+
<div>Entering the whirlpool.</div>
|
554
|
+
</div>
|
555
|
+
<div class="linegroup">
|
556
|
+
<div class="indent2">Gentile or Jew</div>
|
557
|
+
<div>O you who turn the wheel and look to windward,<span
|
558
|
+
class="lnum">320</span>
|
559
|
+
</div>
|
560
|
+
<div>Consider Phlebas, who was once handsome and tall as you.</div>
|
561
|
+
</div>
|
562
|
+
</section>
|
563
|
+
<section id="ch5">
|
564
|
+
<h2>V. WHAT THE THUNDER SAID</h2>
|
565
|
+
<div class="linegroup">
|
566
|
+
<div>After the torchlight red on sweaty faces</div>
|
567
|
+
<div>After the frosty silence in the gardens</div>
|
568
|
+
<div>After the agony in stony places</div>
|
569
|
+
<div>The shouting and the crying</div>
|
570
|
+
<div>Prison and palace and reverberation</div>
|
571
|
+
<div>Of thunder of spring over distant mountains</div>
|
572
|
+
<div>He who was living is now dead</div>
|
573
|
+
<div>We who were living are now dying</div>
|
574
|
+
<div>With a little patience<span class="lnum">330</span>
|
575
|
+
</div>
|
576
|
+
</div>
|
577
|
+
<div class="linegroup">
|
578
|
+
<div>Here is no water but only rock</div>
|
579
|
+
<div>Rock and no water and the sandy road</div>
|
580
|
+
<div>The road winding above among the mountains</div>
|
581
|
+
<div>Which are mountains of rock without water</div>
|
582
|
+
<div>If there were water we should stop and drink</div>
|
583
|
+
<div>Amongst the rock one cannot stop or think</div>
|
584
|
+
<div>Sweat is dry and feet are in the sand</div>
|
585
|
+
<div>If there were only water amongst the rock</div>
|
586
|
+
<div>Dead mountain mouth of carious teeth that cannot spit</div>
|
587
|
+
<div>Here one can neither stand nor lie nor sit<span class="lnum"
|
588
|
+
>340</span>
|
589
|
+
</div>
|
590
|
+
<div>There is not even silence in the mountains</div>
|
591
|
+
<div>But dry sterile thunder without rain</div>
|
592
|
+
<div>There is not even solitude in the mountains</div>
|
593
|
+
<div>But red sullen faces sneer and snarl</div>
|
594
|
+
<div>From doors of mudcracked houses</div>
|
595
|
+
<div class="linegroup">
|
596
|
+
<div class="indent2">If there were water</div>
|
597
|
+
<div>And no rock</div>
|
598
|
+
<div>If there were rock</div>
|
599
|
+
<div>And also water</div>
|
600
|
+
<div>And water<span class="lnum">350</span>
|
601
|
+
</div>
|
602
|
+
<div>A spring</div>
|
603
|
+
<div>A pool among the rock</div>
|
604
|
+
<div>If there were the sound of water only</div>
|
605
|
+
<div>Not the cicada</div>
|
606
|
+
<div>And dry grass singing</div>
|
607
|
+
<div>But sound of water over a rock</div>
|
608
|
+
<div id="ln357">Where the hermit-thrush sings in the pine trees<a
|
609
|
+
epub:type="noteref" class="noteref" href="#note-39">*</a>
|
610
|
+
</div>
|
611
|
+
<div>Drip drop drip drop drop drop drop</div>
|
612
|
+
<div>But there is no water</div>
|
613
|
+
</div>
|
614
|
+
</div>
|
615
|
+
<div class="linegroup">
|
616
|
+
<div id="ln360">Who is the third who walks always beside you?<a
|
617
|
+
epub:type="noteref" class="noteref" href="#note-40">*</a>
|
618
|
+
<span class="lnum">360</span>
|
619
|
+
</div>
|
620
|
+
<div>When I count, there are only you and I together</div>
|
621
|
+
<div>But when I look ahead up the white road</div>
|
622
|
+
<div>There is always another one walking beside you</div>
|
623
|
+
<div>Gliding wrapt in a brown mantle, hooded</div>
|
624
|
+
<div>I do not know whether a man or a woman</div>
|
625
|
+
<div id="ln367">―But who is that on the other side of you?<a
|
626
|
+
epub:type="noteref" class="noteref" href="#note-41">*</a>
|
627
|
+
</div>
|
628
|
+
</div>
|
629
|
+
<div class="linegroup">
|
630
|
+
<div>What is that sound high in the air</div>
|
631
|
+
<div>Murmur of maternal lamentation</div>
|
632
|
+
<div>Who are those hooded hordes swarming</div>
|
633
|
+
<div>Over endless plains, stumbling in cracked earth<span
|
634
|
+
class="lnum">370</span>
|
635
|
+
</div>
|
636
|
+
<div>Ringed by the flat horizon only</div>
|
637
|
+
<div>What is the city over the mountains</div>
|
638
|
+
<div>Cracks and reforms and bursts in the violet air</div>
|
639
|
+
<div>Falling towers</div>
|
640
|
+
<div>Jerusalem Athens Alexandria</div>
|
641
|
+
<div>Vienna London</div>
|
642
|
+
<div>Unreal</div>
|
643
|
+
</div>
|
644
|
+
<div class="linegroup">
|
645
|
+
<div>A woman drew her long black hair out tight</div>
|
646
|
+
<div>And fiddled whisper music on those strings</div>
|
647
|
+
<div>And bats with baby faces in the violet light<span class="lnum"
|
648
|
+
>380</span>
|
649
|
+
</div>
|
650
|
+
<div>Whistled, and beat their wings</div>
|
651
|
+
<div>And crawled head downward down a blackened wall</div>
|
652
|
+
<div>And upside down in air were towers</div>
|
653
|
+
<div>Tolling reminiscent bells, that kept the hours</div>
|
654
|
+
<div>And voices singing out of empty cisterns and exhausted
|
655
|
+
wells.</div>
|
656
|
+
</div>
|
657
|
+
<div class="linegroup">
|
658
|
+
<div>In this decayed hole among the mountains</div>
|
659
|
+
<div>In the faint moonlight, the grass is singing</div>
|
660
|
+
<div>Over the tumbled graves, about the chapel</div>
|
661
|
+
<div>There is the empty chapel, only the wind's home.</div>
|
662
|
+
<div>It has no windows, and the door swings,<span class="lnum"
|
663
|
+
>390</span>
|
664
|
+
</div>
|
665
|
+
<div>Dry bones can harm no one.</div>
|
666
|
+
<div>Only a cock stood on the rooftree</div>
|
667
|
+
<div>Co co rico co co rico</div>
|
668
|
+
<div>In a flash of lightning. Then a damp gust</div>
|
669
|
+
<div>Bringing rain</div>
|
670
|
+
</div>
|
671
|
+
<div class="linegroup">
|
672
|
+
<div>Ganga was sunken, and the limp leaves</div>
|
673
|
+
<div>Waited for rain, while the black clouds</div>
|
674
|
+
<div>Gathered far distant, over Himavant.</div>
|
675
|
+
<div>The jungle crouched, humped in silence.</div>
|
676
|
+
<div>Then spoke the thunder<span class="lnum">400</span>
|
677
|
+
</div>
|
678
|
+
<div>DA</div>
|
679
|
+
<div id="ln402">
|
680
|
+
<span xml:lang="sa">Datta</span>: what have we given?<a epub:type="noteref" class="noteref"
|
681
|
+
href="#note-42">*</a>
|
682
|
+
</div>
|
683
|
+
<div>My friend, blood shaking my heart</div>
|
684
|
+
<div>The awful daring of a moment's surrender</div>
|
685
|
+
<div>Which an age of prudence can never retract</div>
|
686
|
+
<div>By this, and this only, we have existed</div>
|
687
|
+
<div>Which is not to be found in our obituaries </div>
|
688
|
+
<div id="ln408">Or in memories draped by the beneficent spider<a
|
689
|
+
epub:type="noteref" class="noteref" href="#note-43">*</a>
|
690
|
+
</div>
|
691
|
+
<div>Or under seals broken by the lean solicitor</div>
|
692
|
+
<div>In our empty rooms<span class="lnum">410</span>
|
693
|
+
</div>
|
694
|
+
<div>DA</div>
|
695
|
+
<div id="ln412">
|
696
|
+
<span xml:lang="sa">Dayadhvam</span>: I have heard the key<a
|
697
|
+
epub:type="noteref" class="noteref" href="#note-44">*</a>
|
698
|
+
</div>
|
699
|
+
<div>Turn in the door once and turn once only</div>
|
700
|
+
<div>We think of the key, each in his prison</div>
|
701
|
+
<div>Thinking of the key, each confirms a prison</div>
|
702
|
+
<div>Only at nightfall, aetherial rumours</div>
|
703
|
+
<div>Revive for a moment a broken Coriolanus</div>
|
704
|
+
<div>DA</div>
|
705
|
+
<div>
|
706
|
+
<span xml:lang="sa">Damyata</span>: The boat responded</div>
|
707
|
+
<div>Gaily, to the hand expert with sail and oar<span class="lnum"
|
708
|
+
>420</span>
|
709
|
+
</div>
|
710
|
+
<div>The sea was calm, your heart would have responded</div>
|
711
|
+
<div>Gaily, when invited, beating obedient</div>
|
712
|
+
<div>To controlling hands</div>
|
713
|
+
</div>
|
714
|
+
<div class="linegroup">
|
715
|
+
<div class="indent">I sat upon the shore</div>
|
716
|
+
<div id="ln425">Fishing, with the arid plain behind me<a epub:type="noteref" class="noteref"
|
717
|
+
href="#note-45">*</a>
|
718
|
+
</div>
|
719
|
+
<div>Shall I at least set my lands in order?</div>
|
720
|
+
<div>London Bridge is falling down falling down falling down</div>
|
721
|
+
<div id="ln428" xml:lang="it">
|
722
|
+
<em>Poi s'ascose nel foco che gli affina</em>
|
723
|
+
<a epub:type="noteref" class="noteref" href="#note-46">*</a>
|
724
|
+
</div>
|
725
|
+
<div id="ln429">
|
726
|
+
<span xml:lang="it">
|
727
|
+
<em>Quando fiam ceu chelidon</em>
|
728
|
+
</span> - O swallow swallow<a epub:type="noteref" class="noteref" href="#note-47">*</a>
|
729
|
+
</div>
|
730
|
+
<div id="ln430" xml:lang="fr">
|
731
|
+
<em>Le Prince d'Aquitaine a la tour abolie</em>
|
732
|
+
<a epub:type="noteref" class="noteref" href="#note-48">*</a>
|
733
|
+
<span class="lnum">430</span>
|
734
|
+
</div>
|
735
|
+
<div>These fragments I have shored against my ruins</div>
|
736
|
+
<div id="ln432">Why then Ile fit you. Hieronymo's mad againe.<a
|
737
|
+
epub:type="noteref" class="noteref" href="#note-49">*</a>
|
738
|
+
</div>
|
739
|
+
<div xml:lang="sa">Datta. Dayadhvam. Damyata.</div>
|
740
|
+
<div id="ln434" class="linegroup indent">
|
741
|
+
<span xml:lang="sa">Shantih shantih shantih<a epub:type="noteref" class="noteref"
|
742
|
+
href="#note-50">*</a>
|
743
|
+
</span>
|
744
|
+
</div>
|
745
|
+
</div>
|
746
|
+
</section>
|
747
|
+
</section>
|
748
|
+
<section epub:type="backmatter" id="backmatter">
|
749
|
+
<section epub:type="rearnotes" id="rearnotes">
|
750
|
+
<h2>NOTES ON "THE WASTE LAND"</h2>
|
751
|
+
<p>Not only the title, but the plan and a good deal of the incidental symbolism of
|
752
|
+
the poem were suggested by Miss Jessie L. Weston's book on the Grail legend:
|
753
|
+
From Ritual to Romance</p>
|
754
|
+
<p>Indeed, so deeply am I indebted, Miss Weston's book will elucidate the
|
755
|
+
difficulties of the poem much better than my notes can do; and I recommend it
|
756
|
+
(apart from the great interest of the book itself) to any who think such
|
757
|
+
elucidation of the poem worth the trouble. To another work of anthropology I am
|
758
|
+
indebted in general, one which has influenced our generation profoundly; I mean
|
759
|
+
The Golden Bough; I have used especially the two volumes Adonis, Attis, Osiris.
|
760
|
+
Anyone who is acquainted with these works will immediately recognise in the poem
|
761
|
+
certain references to vegetation ceremonies.</p>
|
762
|
+
<section>
|
763
|
+
<h3>I. THE BURIAL OF THE DEAD</h3>
|
764
|
+
<div epub:type="rearnote" id="note-1">
|
765
|
+
<p><a href="#ln20">Line 20.</a> Cf. Ezekiel 2:1.</p>
|
766
|
+
</div>
|
767
|
+
<div epub:type="rearnote" id="note-2">
|
768
|
+
<p><a href="#ln23">23.</a> Cf. Ecclesiastes 12:5.</p>
|
769
|
+
</div>
|
770
|
+
<div epub:type="rearnote" id="note-3">
|
771
|
+
<p><a href="#ln31">31.</a> V. Tristan und Isolde, i, verses 5-8.</p>
|
772
|
+
</div>
|
773
|
+
<div epub:type="rearnote" id="note-4">
|
774
|
+
<p><a href="#ln42">42.</a> Id. iii, verse 24.</p>
|
775
|
+
</div>
|
776
|
+
<div epub:type="rearnote" id="note-5">
|
777
|
+
<p><a href="#ln46">46.</a> I am not familiar with the exact constitution of the Tarot pack of
|
778
|
+
cards, from which I have obviously departed to suit my own convenience.
|
779
|
+
The Hanged Man, a member of the traditional pack, fits my purpose in two
|
780
|
+
ways: because he is associated in my mind with the Hanged God of Frazer,
|
781
|
+
and because I associate him with the hooded figure in the passage of the
|
782
|
+
disciples to Emmaus in Part V. The Phoenician Sailor and the Merchant
|
783
|
+
appear later; also the "crowds of people," and Death by Water is
|
784
|
+
executed in Part IV. The Man with Three Staves (an authentic member of
|
785
|
+
the Tarot pack) I associate, quite arbitrarily, with the Fisher King
|
786
|
+
himself.</p>
|
787
|
+
</div>
|
788
|
+
<div epub:type="rearnote" id="note-6">
|
789
|
+
<p><a href="#ln60">60.</a> Cf. Baudelaire:</p>
|
790
|
+
<blockquote xml:lang="fr">
|
791
|
+
<p>"Fourmillante cite;, cite; pleine de reves,<br />Ou le spectre en
|
792
|
+
plein jour raccroche le passant."</p>
|
793
|
+
</blockquote>
|
794
|
+
</div>
|
795
|
+
<div epub:type="rearnote" id="note-7">
|
796
|
+
<p><a href="#ln63">63.</a> Cf. Inferno, iii. 55-7.</p>
|
797
|
+
<blockquote xml:lang="it">
|
798
|
+
<p>"si lunga tratta<br />di gente, ch'io non avrei mai creduto<br />che
|
799
|
+
morte tanta n'avesse disfatta."</p>
|
800
|
+
</blockquote>
|
801
|
+
</div>
|
802
|
+
<div epub:type="rearnote" id="note-8">
|
803
|
+
<p><a href="#ln64">64.</a> Cf. Inferno, iv. 25-7:</p>
|
804
|
+
<blockquote xml:lang="it">
|
805
|
+
<p>"Quivi, secondo che per ascoltahre,<br />"non avea pianto, ma' che di
|
806
|
+
sospiri,<br />"che l'aura eterna facevan tremare."</p>
|
807
|
+
</blockquote>
|
808
|
+
</div>
|
809
|
+
<div epub:type="rearnote" id="note-9">
|
810
|
+
<p><a href="#ln68">68.</a> A phenomenon which I have often noticed.</p>
|
811
|
+
</div>
|
812
|
+
<div epub:type="rearnote" id="note-10">
|
813
|
+
<p><a href="#ln74">74.</a> Cf. the Dirge in Webster's White Devil .</p>
|
814
|
+
</div>
|
815
|
+
<div epub:type="rearnote" id="note-11">
|
816
|
+
<p><a href="#ln76">76.</a> V. Baudelaire, Preface to Fleurs du Mal.</p>
|
817
|
+
</div>
|
818
|
+
</section>
|
819
|
+
<section>
|
820
|
+
<h3>II. A GAME OF CHESS</h3>
|
821
|
+
<div epub:type="rearnote" id="note-12">
|
822
|
+
<p><a href="#ln77">77.</a> Cf. Antony and Cleopatra, II. ii., l. 190.</p>
|
823
|
+
</div>
|
824
|
+
<div epub:type="rearnote" id="note-13">
|
825
|
+
<p><a href="#ln92">92.</a> Laquearia. V. Aeneid, I. 726:</p>
|
826
|
+
<blockquote xml:lang="la">
|
827
|
+
<p>dependent lychni laquearibus aureis incensi, et noctem
|
828
|
+
flammis<br />funalia vincunt.</p>
|
829
|
+
</blockquote>
|
830
|
+
</div>
|
831
|
+
<div epub:type="rearnote" id="note-14">
|
832
|
+
<p><a href="#ln98">98.</a> Sylvan scene. V. Milton, Paradise Lost, iv. 140.</p>
|
833
|
+
</div>
|
834
|
+
<div epub:type="rearnote" id="note-15">
|
835
|
+
<p><a href="#ln99">99.</a> V. Ovid, Metamorphoses, vi, Philomela.</p>
|
836
|
+
</div>
|
837
|
+
<div epub:type="rearnote" id="note-16">
|
838
|
+
<p><a href="#ln100">100.</a> Cf. Part III, l. 204.</p>
|
839
|
+
</div>
|
840
|
+
<div epub:type="rearnote" id="note-17">
|
841
|
+
<p><a href="#ln115">115.</a> Cf. Part III, l. 195.</p>
|
842
|
+
</div>
|
843
|
+
<div epub:type="rearnote" id="note-18">
|
844
|
+
<p><a href="#ln118">118.</a> Cf. Webster:</p>
|
845
|
+
<blockquote>
|
846
|
+
<p>"Is the wind in that door still?"</p>
|
847
|
+
</blockquote>
|
848
|
+
</div>
|
849
|
+
<div epub:type="rearnote" id="note-19">
|
850
|
+
<p><a href="#ln126">126.</a> Cf. Part I, l. 37, 48.</p>
|
851
|
+
</div>
|
852
|
+
<div epub:type="rearnote" id="note-20">
|
853
|
+
<p><a href="#ln138">138.</a> Cf. the game of chess in Middleton's Women beware Women.</p>
|
854
|
+
</div>
|
855
|
+
</section>
|
856
|
+
<section>
|
857
|
+
<h3>III. THE FIRE SERMON</h3>
|
858
|
+
<div epub:type="rearnote" id="note-21">
|
859
|
+
<p><a href="#ln176">176.</a> V. Spenser, Prothalamion.</p>
|
860
|
+
</div>
|
861
|
+
<div epub:type="rearnote" id="note-22">
|
862
|
+
<p><a href="#ln192">192.</a> Cf. The Tempest, I. ii.</p>
|
863
|
+
</div>
|
864
|
+
<div epub:type="rearnote" id="note-23">
|
865
|
+
<p><a href="#ln196">196.</a> Cf. Marvell, To His Coy Mistress.</p>
|
866
|
+
</div>
|
867
|
+
<div epub:type="rearnote" id="note-24">
|
868
|
+
<p><a href="#ln197">197.</a> Cf. Day, Parliament of Bees:</p>
|
869
|
+
<blockquote>
|
870
|
+
<div>
|
871
|
+
<div>"When of the sudden, listening, you shall
|
872
|
+
hear,</div>
|
873
|
+
<div>"A noise of horns and hunting, which shall
|
874
|
+
bring</div>
|
875
|
+
<div>"Actaeon to Diana in the spring,</div>
|
876
|
+
<div>"Where all shall see her naked skin . . ."</div>
|
877
|
+
</div>
|
878
|
+
</blockquote>
|
879
|
+
</div>
|
880
|
+
<div epub:type="rearnote" id="note-25">
|
881
|
+
<p><a href="#ln199">199.</a> I do not know the origin of the ballad from which these lines are
|
882
|
+
taken: it was reported to me from Sydney, Australia.</p>
|
883
|
+
</div>
|
884
|
+
<div epub:type="rearnote" id="note-26">
|
885
|
+
<p><a href="#ln202">202.</a> V. Verlaine, Parsifal.</p>
|
886
|
+
</div>
|
887
|
+
<div epub:type="rearnote" id="note-27">
|
888
|
+
<p><a href="#ln210">210.</a> The currants were quoted at a price "cost insurance and freight to
|
889
|
+
London"; and the Bill of Lading etc. were to be handed to the buyer upon
|
890
|
+
payment of the sight draft.</p>
|
891
|
+
</div>
|
892
|
+
<div epub:type="rearnote" id="note-28">
|
893
|
+
<p><a href="#ln218">218.</a> Tiresias, although a mere spectator and not indeed a "character," is
|
894
|
+
yet the most important personage in the poem, uniting all the rest. Just
|
895
|
+
as the one-eyed merchant, seller of currants, melts into the Phoenician
|
896
|
+
Sailor, and the latter is not wholly distinct from Ferdinand Prince of
|
897
|
+
Naples, so all the women are one woman, and the two sexes meet in
|
898
|
+
Tiresias. What Tiresias sees, in fact, is the substance of the poem. The
|
899
|
+
whole passage from Ovid is of great anthropological interest:</p>
|
900
|
+
<blockquote xml:lang="la">
|
901
|
+
<p>'. . . Cum Iunone iocos et maior vestra profecto est<br /> Quam, quae
|
902
|
+
contingit maribus,' dixisse, 'voluptas.'<br /> Illa negat; placuit
|
903
|
+
quae sit sententia docti<br /> Quaerere Tiresiae: venus huic erat
|
904
|
+
utraque nota.<br /> Nam duo magnorum viridi coeuntia silva<br />
|
905
|
+
Corpora serpentum baculi violaverat ictu<br /> Deque viro factus,
|
906
|
+
mirabile, femina septem<br /> Egerat autumnos; octavo rursus
|
907
|
+
eosdem<br /> Vidit et 'est vestrae si tanta potentia plagae,'<br />
|
908
|
+
Dixit 'ut auctoris sortem in contraria mutet,<br /> Nunc quoque vos
|
909
|
+
feriam!' percussis anguibus isdem<br /> Forma prior rediit
|
910
|
+
genetivaque venit imago.<br /> Arbiter hic igitur sumptus de lite
|
911
|
+
iocosa<br /> Dicta Iovis firmat; gravius Saturnia iusto<br /> Nec
|
912
|
+
pro materia fertur doluisse suique<br /> Iudicis aeterna damnavit
|
913
|
+
lumina nocte,<br /> At pater omnipotens (neque enim licet inrita
|
914
|
+
cuiquam<br /> Facta dei fecisse deo) pro lumine adempto<br /> Scire
|
915
|
+
futura dedit poenamque levavit honore.<br />
|
916
|
+
</p>
|
917
|
+
</blockquote>
|
918
|
+
</div>
|
919
|
+
<div epub:type="rearnote" id="note-29">
|
920
|
+
<p><a href="#ln221">221.</a> This may not appear as exact as Sappho's lines, but I had in mind
|
921
|
+
the "longshore" or "dory" fisherman, who returns at nightfall.</p>
|
922
|
+
</div>
|
923
|
+
<div epub:type="rearnote" id="note-30">
|
924
|
+
<p><a href="#ln253">253.</a> V. Goldsmith, the song in The Vicar of Wakefield.</p>
|
925
|
+
</div>
|
926
|
+
<div epub:type="rearnote" id="note-31">
|
927
|
+
<p><a href="#ln257">257.</a> V. The Tempest, as above.</p>
|
928
|
+
</div>
|
929
|
+
<div epub:type="rearnote" id="note-32">
|
930
|
+
<p><a href="#ln264">264.</a> The interior of St. Magnus Martyr is to my mind one of the finest
|
931
|
+
among Wren's interiors. See The Proposed Demolition of Nineteen City
|
932
|
+
Churches (P. S. King & Son, Ltd.).</p>
|
933
|
+
</div>
|
934
|
+
<div epub:type="rearnote" id="note-33">
|
935
|
+
<p><a href="#ln266">266.</a> The Song of the (three) Thames-daughters begins here. From line 292
|
936
|
+
to 306 inclusive they speak in turn. V. Gutterdsammerung, III. i: the
|
937
|
+
Rhine-daughters.</p>
|
938
|
+
</div>
|
939
|
+
<div epub:type="rearnote" id="note-34">
|
940
|
+
<p><a href="#ln279">279.</a> V. Froude, Elizabeth, Vol. I, ch. iv, letter of De Quadra to Philip
|
941
|
+
of Spain:</p>
|
942
|
+
<blockquote>
|
943
|
+
<div>
|
944
|
+
<div>"In the afternoon we were in a barge, watching the
|
945
|
+
games on the river.</div>
|
946
|
+
<div>(The queen) was alone with Lord Robert and myself
|
947
|
+
on the poop,</div>
|
948
|
+
<div>when they began to talk nonsense, and went so far
|
949
|
+
that Lord Robert</div>
|
950
|
+
<div>at last said, as I was on the spot there was no
|
951
|
+
reason why they</div>
|
952
|
+
<div>should not be married if the queen pleased."</div>
|
953
|
+
</div>
|
954
|
+
</blockquote>
|
955
|
+
</div>
|
956
|
+
<div epub:type="rearnote" id="note-35">
|
957
|
+
<p><a href="#ln293">293.</a> Cf. Purgatorio, v. 133:</p>
|
958
|
+
<blockquote>
|
959
|
+
<p>"Ricorditi di me, che son la Pia;<br />Siena mi fe', disfecemi
|
960
|
+
Maremma."</p>
|
961
|
+
</blockquote>
|
962
|
+
</div>
|
963
|
+
<div epub:type="rearnote" id="note-36">
|
964
|
+
<p><a href="#ln307">307.</a> V. St. Augustine's Confessions: "to Carthage then I came, where a
|
965
|
+
cauldron of unholy loves sang all about mine ears."</p>
|
966
|
+
</div>
|
967
|
+
<div epub:type="rearnote" id="note-37">
|
968
|
+
<p><a href="#ln308">308.</a> The complete text of the Buddha's Fire Sermon (which corresponds in
|
969
|
+
importance to the Sermon on the Mount) from which these words are taken,
|
970
|
+
will be found translated in the late Henry Clarke Warren's Buddhism in
|
971
|
+
Translation (Harvard Oriental Series). Mr. Warren was one of the great
|
972
|
+
pioneers of Buddhist studies in the Occident.</p>
|
973
|
+
</div>
|
974
|
+
<div epub:type="rearnote" id="note-38">
|
975
|
+
<p><a href="#ln309">309.</a> From St. Augustine's Confessions again. The collocation of these two
|
976
|
+
representatives of eastern and western asceticism, as the culmination of
|
977
|
+
this part of the poem, is not an accident.</p>
|
978
|
+
</div>
|
979
|
+
</section>
|
980
|
+
<section>
|
981
|
+
<h3>V. WHAT THE THUNDER SAID</h3>
|
982
|
+
<p>In the first part of Part V three themes are employed: the journey to Emmaus,
|
983
|
+
the approach to the Chapel Perilous (see Miss Weston's book) and the present
|
984
|
+
decay of eastern Europe.</p>
|
985
|
+
<div epub:type="rearnote" id="note-39">
|
986
|
+
<p><a href="#ln357">357.</a> This is Turdus aonalaschkae pallasii, the hermit-thrush which I have
|
987
|
+
heard in Quebec County. Chapman says (Handbook of Birds of Eastern North
|
988
|
+
America) "it is most at home in secluded woodland and thickety retreats.
|
989
|
+
. . . Its notes are not remarkable for variety or volume, but in purity
|
990
|
+
and sweetness of tone and exquisite modulation they are unequalled." Its
|
991
|
+
"water-dripping song" is justly celebrated.</p>
|
992
|
+
</div>
|
993
|
+
<div epub:type="rearnote" id="note-40">
|
994
|
+
<p><a href="#ln360">360.</a> The following lines were stimulated by the account of one of the
|
995
|
+
Antarctic expeditions (I forget which, but I think one of Shackleton's):
|
996
|
+
it was related that the party of explorers, at the extremity of their
|
997
|
+
strength, had the constant delusion that there was one more member than
|
998
|
+
could actually be counted.</p>
|
999
|
+
</div>
|
1000
|
+
<div epub:type="rearnote" id="note-41">
|
1001
|
+
<p><a href="#ln367">367-77.</a> Cf. Hermann Hesse, Blick ins Chaos:</p>
|
1002
|
+
<blockquote xml:lang="de">
|
1003
|
+
<p>"Schon ist halb Europa, schon ist zumindest der halbe Osten Europas
|
1004
|
+
auf dem<br /> Wege zum Chaos, fhrt betrunken im heiligem Wahn am
|
1005
|
+
Abgrund entlang<br /> und singt dazu, singt betrunken und hymnisch
|
1006
|
+
wie Dmitri Karamasoff sang.<br /> Ueber diese Lieder lacht der
|
1007
|
+
Bsrger beleidigt, der Heilige<br /> und Seher hrt sie mit
|
1008
|
+
Trvnen."</p>
|
1009
|
+
</blockquote>
|
1010
|
+
</div>
|
1011
|
+
<div epub:type="rearnote" id="note-42">
|
1012
|
+
<p><a href="#ln402">402.</a> <q xml:lang="sa">"Datta, dayadhvam, damyata"</q> (Give, sympathize,
|
1013
|
+
control). The fable of the meaning of the Thunder is found in the
|
1014
|
+
Brihadaranyaka-Upanishad, 5, 1. A translation is found in Deussen's
|
1015
|
+
Sechzig Upanishads des Veda, p. 489.</p>
|
1016
|
+
</div>
|
1017
|
+
<div epub:type="rearnote" id="note-43">
|
1018
|
+
<p><a href="#ln408">408.</a> Cf. Webster, The White Devil, v. vi:</p>
|
1019
|
+
<blockquote>
|
1020
|
+
<p>". . . they'll remarry<br /> Ere the worm pierce your winding-sheet,
|
1021
|
+
ere the spider<br /> Make a thin curtain for your epitaphs."</p>
|
1022
|
+
</blockquote>
|
1023
|
+
</div>
|
1024
|
+
<div epub:type="rearnote" id="note-44">
|
1025
|
+
<p><a href="#ln412">412.</a> Cf. Inferno, xxxiii. 46:</p>
|
1026
|
+
<blockquote xml:lang="it">
|
1027
|
+
<p>"ed io sentii chiavar l'uscio di sotto<br /> all'orribile torre."</p>
|
1028
|
+
</blockquote>
|
1029
|
+
<p>Also F. H. Bradley, Appearance and Reality, p. 346:</p>
|
1030
|
+
<blockquote>
|
1031
|
+
<p>"My external sensations are no less private to myself than are my
|
1032
|
+
thoughts or my feelings. In either case my experience falls within
|
1033
|
+
my own circle, a circle closed on the outside; and, with all its
|
1034
|
+
elements alike, every sphere is opaque to the others which surround
|
1035
|
+
it. . . . In brief, regarded as an existence which appears in a
|
1036
|
+
soul, the whole world for each is peculiar and private to that
|
1037
|
+
soul."</p>
|
1038
|
+
</blockquote>
|
1039
|
+
</div>
|
1040
|
+
<div epub:type="rearnote" id="note-45">
|
1041
|
+
<p><a href="#ln425">425.</a> V. Weston, From Ritual to Romance; chapter on the Fisher King.</p>
|
1042
|
+
</div>
|
1043
|
+
<div epub:type="rearnote" id="note-46">
|
1044
|
+
<p><a href="#ln428">428.</a> V. Purgatorio, xxvi. 148.</p>
|
1045
|
+
<blockquote xml:lang="it">
|
1046
|
+
<p>"'Ara vos prec per aquella valor<br /> 'que vos guida al som de
|
1047
|
+
l'escalina,<br /> 'sovegna vos a temps de ma dolor.'<br /> Poi
|
1048
|
+
s'ascose nel foco che gli affina."</p>
|
1049
|
+
</blockquote>
|
1050
|
+
</div>
|
1051
|
+
<div epub:type="rearnote" id="note-47">
|
1052
|
+
<p><a href="#ln429">429.</a> V. Pervigilium Veneris. Cf. Philomela in Parts II and III.</p>
|
1053
|
+
</div>
|
1054
|
+
<div epub:type="rearnote" id="note-48">
|
1055
|
+
<p><a href="#ln430">430.</a> V. Gerard de Nerval, Sonnet El Desdichado.</p>
|
1056
|
+
</div>
|
1057
|
+
<div epub:type="rearnote" id="note-49">
|
1058
|
+
<p><a href="#ln432">432.</a> V. Kyd's Spanish Tragedy.</p>
|
1059
|
+
</div>
|
1060
|
+
<div epub:type="rearnote" id="note-50">
|
1061
|
+
<p><a href="#ln434">434.</a> Shantih. Repeated as here, a formal ending to an Upanishad. 'The
|
1062
|
+
Peace which passeth understanding' is a feeble translation of the
|
1063
|
+
content of this word.</p>
|
1064
|
+
|
1065
|
+
<img src="wasteland-cover.jpg" alt="" />
|
1066
|
+
</div>
|
1067
|
+
</section>
|
1068
|
+
</section>
|
1069
|
+
</section>
|
1070
|
+
</body>
|
1071
|
+
</html>
|