opds 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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.md +32 -0
- data/Rakefile +46 -0
- data/VERSION +1 -0
- data/lib/opds.rb +10 -0
- data/lib/opds/acquisition_feed.rb +4 -0
- data/lib/opds/entry.rb +138 -0
- data/lib/opds/feed.rb +149 -0
- data/lib/opds/navigation_feed.rb +4 -0
- data/lib/opds/opds.rb +5 -0
- data/lib/opds/parser.rb +45 -0
- data/lib/opds/support/browser.rb +85 -0
- data/lib/opds/support/linkset.rb +164 -0
- data/lib/opds/support/logging.rb +11 -0
- data/opds.gemspec +76 -0
- data/samples/acquisition.txt +538 -0
- data/samples/entry.txt +32 -0
- data/samples/navigation.txt +46 -0
- data/spec/browser_spec.rb +21 -0
- data/spec/entry_spec.rb +51 -0
- data/spec/linkset_spec.rb +34 -0
- data/spec/opdsparser_spec.rb +73 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- metadata +126 -0
data/lib/opds/opds.rb
ADDED
data/lib/opds/parser.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require "nokogiri"
|
2
|
+
module OPDS
|
3
|
+
class OPDSParser
|
4
|
+
include Logging
|
5
|
+
attr_accessor :options
|
6
|
+
attr_reader :sniffed_type
|
7
|
+
def initialize(opts={})
|
8
|
+
@sniffed_type=nil
|
9
|
+
self.options=opts.merge({})
|
10
|
+
end
|
11
|
+
|
12
|
+
def parse(content,browser=nil)
|
13
|
+
@ret=Nokogiri::XML(content)
|
14
|
+
@sniffed_type=sniff(@ret)
|
15
|
+
case @sniffed_type
|
16
|
+
when :acquisition then return OPDS::AcquisitionFeed.from_nokogiri(@ret,browser)
|
17
|
+
when :navigation then return OPDS::NavigationFeed.from_nokogiri(@ret,browser)
|
18
|
+
when :entry then return OPDS::Entry.from_nokogiri(@ret,browser)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
protected
|
23
|
+
def sniff(doc)
|
24
|
+
return :entry if doc.root.name=='entry'
|
25
|
+
entries = doc.xpath('/xmlns:feed/xmlns:entry',doc.root.namespaces)
|
26
|
+
if entries.size > 0
|
27
|
+
return :acquisition if entries.all? do |entry|
|
28
|
+
entry.xpath('xmlns:link').any? do |link|
|
29
|
+
l=link.attributes['rel']
|
30
|
+
unless l.nil?
|
31
|
+
l.value.include?('http://opds-spec.org/acquisition')
|
32
|
+
else
|
33
|
+
false
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
return :navigation
|
38
|
+
end
|
39
|
+
return nil
|
40
|
+
rescue
|
41
|
+
nil
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require "open-uri"
|
2
|
+
module OPDS
|
3
|
+
module Support
|
4
|
+
class Browser
|
5
|
+
include Logging
|
6
|
+
def go_to(uri)
|
7
|
+
log("Accessing #{uri}")
|
8
|
+
url=URI.parse(uri)
|
9
|
+
@last_response=nil
|
10
|
+
Net::HTTP.start(url.host,url.port) {|http|
|
11
|
+
path="/"
|
12
|
+
path=url.path unless url.path==''
|
13
|
+
req = Net::HTTP::Get.new(path)
|
14
|
+
# req.basic_auth user,pass unless user.nil?
|
15
|
+
@last_response = http.request(req)
|
16
|
+
}
|
17
|
+
@current_location=url.to_s
|
18
|
+
if status/10==30 && headers['location']
|
19
|
+
log("Following redirection (code: #{status}) to #{headers['location']}")
|
20
|
+
go_to(headers['location'].first)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def ok?
|
25
|
+
status==200
|
26
|
+
end
|
27
|
+
|
28
|
+
|
29
|
+
def status
|
30
|
+
@last_response.code.to_i if @last_response
|
31
|
+
end
|
32
|
+
|
33
|
+
def headers
|
34
|
+
@last_response.to_hash if @last_response
|
35
|
+
end
|
36
|
+
|
37
|
+
def body
|
38
|
+
@last_response.body if @last_response
|
39
|
+
end
|
40
|
+
|
41
|
+
def current_location
|
42
|
+
@current_location
|
43
|
+
end
|
44
|
+
|
45
|
+
def discover(url)
|
46
|
+
go_to(url)
|
47
|
+
if ok?
|
48
|
+
doc=Nokogiri::HTML(body)
|
49
|
+
tab=OPDS::Support::LinkSet.new(self)
|
50
|
+
extract_links(tab,doc,'//*[@type="application/atom+xml;type=entry;profile=opds-catalog"]')
|
51
|
+
extract_links(tab,doc,'//*[@type="application/atom+xml;profile=opds-catalog"]')
|
52
|
+
|
53
|
+
return false if tab.size == 0
|
54
|
+
tab
|
55
|
+
else
|
56
|
+
return false
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
private
|
62
|
+
def extract_links(tab,doc, expr)
|
63
|
+
doc.xpath(expr).each do |n|
|
64
|
+
text=nil
|
65
|
+
text=n.attributes['title'].value unless n.attributes['title'].nil?
|
66
|
+
if n.name=='a' && text.nil?
|
67
|
+
text=n.text
|
68
|
+
end
|
69
|
+
|
70
|
+
link=n.attributes['href'].value
|
71
|
+
type=n.attributes['type'].value unless n.attributes['type'].nil?
|
72
|
+
unless n.attributes['rel'].nil?
|
73
|
+
n.attributes['rel'].value.split.each do |rel|
|
74
|
+
tab.push(rel,link,text,type)
|
75
|
+
end
|
76
|
+
else
|
77
|
+
tab.push(nil,link,text,type)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
tab
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
@@ -0,0 +1,164 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
module OPDS
|
3
|
+
module Support
|
4
|
+
class Link < Array
|
5
|
+
include Logging
|
6
|
+
attr_accessor :browser
|
7
|
+
|
8
|
+
def initialize(array,browser=OPDS::Support::Browser.new)
|
9
|
+
@browser=browser
|
10
|
+
unless browser.current_location.nil?
|
11
|
+
array[1]=URI.join(browser.current_location,array[1]).to_s
|
12
|
+
end
|
13
|
+
super array
|
14
|
+
end
|
15
|
+
|
16
|
+
def navigate
|
17
|
+
Feed.parse_url(self[1],browser)
|
18
|
+
end
|
19
|
+
|
20
|
+
def inspect
|
21
|
+
"[#{self.map{|e| (e.is_a?(String) && e.size > 100 ? "#{e[0..98]}...".inspect: e.inspect ) }.join(', ')}]"
|
22
|
+
end
|
23
|
+
|
24
|
+
def url
|
25
|
+
self[1]
|
26
|
+
end
|
27
|
+
|
28
|
+
def rel
|
29
|
+
self[0]
|
30
|
+
end
|
31
|
+
|
32
|
+
def title
|
33
|
+
self[2]
|
34
|
+
end
|
35
|
+
|
36
|
+
def type
|
37
|
+
self[3]
|
38
|
+
end
|
39
|
+
|
40
|
+
def price
|
41
|
+
self[4]
|
42
|
+
end
|
43
|
+
|
44
|
+
def currency
|
45
|
+
self[5]
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
|
51
|
+
class LinkSet
|
52
|
+
include Enumerable
|
53
|
+
def initialize(browser=OPDS::Support::Browser.new)
|
54
|
+
@browser=browser
|
55
|
+
@rel_store=Hash.new
|
56
|
+
@txt_store=Hash.new
|
57
|
+
@lnk_store=Hash.new
|
58
|
+
@typ_store=Hash.new
|
59
|
+
@store=[]
|
60
|
+
end
|
61
|
+
|
62
|
+
def []=(k,v)
|
63
|
+
link=Link.new([k]+v,@browser)
|
64
|
+
@store.push link
|
65
|
+
i=@store.size-1
|
66
|
+
@rel_store[k]=[] unless @rel_store[k]
|
67
|
+
@rel_store[k].push i
|
68
|
+
@txt_store[v[1]]=[] unless @txt_store[v[1]]
|
69
|
+
@txt_store[v[1]].push i
|
70
|
+
@lnk_store[v.first]=[] unless @lnk_store[v.first]
|
71
|
+
@lnk_store[v.first].push i
|
72
|
+
@typ_store[v.last]=[] unless @typ_store[v.last]
|
73
|
+
@typ_store[v.last].push i
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
def [](k)
|
78
|
+
remap(@rel_store[k])
|
79
|
+
end
|
80
|
+
|
81
|
+
def each(&block)
|
82
|
+
@store.each(&block)
|
83
|
+
end
|
84
|
+
|
85
|
+
def push(rel,link,text=nil,type=nil, price=nil, currency=nil)
|
86
|
+
tab=[link,text,type]
|
87
|
+
tab+=[price.to_f,currency] unless price.nil?
|
88
|
+
self[rel]=tab
|
89
|
+
end
|
90
|
+
|
91
|
+
def link_url(k)
|
92
|
+
ty,v=k.first
|
93
|
+
t=remap(collection(ty)[v])
|
94
|
+
t.first[1] unless t.nil?
|
95
|
+
end
|
96
|
+
|
97
|
+
def link_rel(k)
|
98
|
+
ty,v=k.first
|
99
|
+
t=remap(collection(ty)[v])
|
100
|
+
t.first[0] unless t.nil?
|
101
|
+
end
|
102
|
+
|
103
|
+
def link_text(k)
|
104
|
+
ty,v=k.first
|
105
|
+
t=remap(collection(ty)[v])
|
106
|
+
t.first[2] unless t.nil?
|
107
|
+
end
|
108
|
+
|
109
|
+
def link_type(k)
|
110
|
+
ty,v=k.first
|
111
|
+
t=remap(collection(ty)[v])
|
112
|
+
t.first[3] unless t.nil?
|
113
|
+
end
|
114
|
+
|
115
|
+
def size
|
116
|
+
@store.size
|
117
|
+
end
|
118
|
+
|
119
|
+
def by(type)
|
120
|
+
Hash[collection(type).map{|k,v| [k,remap(v)]}]
|
121
|
+
end
|
122
|
+
|
123
|
+
def links
|
124
|
+
@lnk_store.keys
|
125
|
+
end
|
126
|
+
|
127
|
+
def rels
|
128
|
+
@rel_store.keys
|
129
|
+
end
|
130
|
+
|
131
|
+
def texts
|
132
|
+
@txt_store.keys
|
133
|
+
end
|
134
|
+
|
135
|
+
def inspect
|
136
|
+
@store.inspect
|
137
|
+
end
|
138
|
+
|
139
|
+
def first
|
140
|
+
@store.first
|
141
|
+
end
|
142
|
+
|
143
|
+
def first
|
144
|
+
@store.last
|
145
|
+
end
|
146
|
+
|
147
|
+
protected
|
148
|
+
def collection(type)
|
149
|
+
case type.to_s
|
150
|
+
when 'link' then @lnk_store
|
151
|
+
when 'rel' then @rel_store
|
152
|
+
when 'txt' then @txt_store
|
153
|
+
when 'type' then @typ_store
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
def remap(tab)
|
158
|
+
return nil if tab.nil? || tab.size==0
|
159
|
+
tab.map{|i| @store[i]}
|
160
|
+
end
|
161
|
+
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
data/opds.gemspec
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{opds}
|
8
|
+
s.version = "0.2.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Benoit Larroque"]
|
12
|
+
s.date = %q{2010-08-31}
|
13
|
+
s.description = %q{ruby lib to access OPDS feeds}
|
14
|
+
s.email = %q{benoit dot larroque at feedbooks dot com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.md"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.md",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/opds.rb",
|
27
|
+
"lib/opds/acquisition_feed.rb",
|
28
|
+
"lib/opds/entry.rb",
|
29
|
+
"lib/opds/feed.rb",
|
30
|
+
"lib/opds/navigation_feed.rb",
|
31
|
+
"lib/opds/opds.rb",
|
32
|
+
"lib/opds/parser.rb",
|
33
|
+
"lib/opds/support/browser.rb",
|
34
|
+
"lib/opds/support/linkset.rb",
|
35
|
+
"lib/opds/support/logging.rb",
|
36
|
+
"opds.gemspec",
|
37
|
+
"samples/acquisition.txt",
|
38
|
+
"samples/entry.txt",
|
39
|
+
"samples/navigation.txt",
|
40
|
+
"spec/browser_spec.rb",
|
41
|
+
"spec/entry_spec.rb",
|
42
|
+
"spec/linkset_spec.rb",
|
43
|
+
"spec/opdsparser_spec.rb",
|
44
|
+
"spec/spec.opts",
|
45
|
+
"spec/spec_helper.rb"
|
46
|
+
]
|
47
|
+
s.homepage = %q{http://github.com/zetaben/opds}
|
48
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
49
|
+
s.require_paths = ["lib"]
|
50
|
+
s.rubygems_version = %q{1.3.7}
|
51
|
+
s.summary = %q{ruby lib to read OPDS feeds}
|
52
|
+
s.test_files = [
|
53
|
+
"spec/spec_helper.rb",
|
54
|
+
"spec/entry_spec.rb",
|
55
|
+
"spec/browser_spec.rb",
|
56
|
+
"spec/linkset_spec.rb",
|
57
|
+
"spec/opdsparser_spec.rb"
|
58
|
+
]
|
59
|
+
|
60
|
+
if s.respond_to? :specification_version then
|
61
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
62
|
+
s.specification_version = 3
|
63
|
+
|
64
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
65
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
66
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
67
|
+
else
|
68
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
69
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
70
|
+
end
|
71
|
+
else
|
72
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
73
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
@@ -0,0 +1,538 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<feed xmlns:dcterms="http://purl.org/dc/terms/" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:opds="http://opds-spec.org/2010/catalog" xml:lang="en" xmlns:app="http://www.w3.org/2007/app" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.w3.org/2005/Atom">
|
3
|
+
<id>http://www.feedbooks.com/books/recent.atom?category=FBFIC028000&lang=en</id>
|
4
|
+
<link type="text/html" href="http://www.feedbooks.com/books/recent?category=FBFIC028000&amp;lang=en" rel="alternate"/>
|
5
|
+
<link type="application/atom+xml" href="http://www.feedbooks.com/books/recent.atom?category=FBFIC028000&lang=en" rel="self"/>
|
6
|
+
<title>Browsing Public Domain Books / New Releases / Science Fiction | Feedbooks</title>
|
7
|
+
<updated>2010-08-08T13:58:19Z</updated>
|
8
|
+
<icon>http://www.feedbooks.com/favicon.ico</icon>
|
9
|
+
<author>
|
10
|
+
<name>Feedbooks</name>
|
11
|
+
<uri>http://www.feedbooks.com</uri>
|
12
|
+
<email>support@feedbooks.com</email>
|
13
|
+
</author>
|
14
|
+
<link type="application/atom+xml" href="/catalog.atom" rel="start" title="OPDS Catalog"/>
|
15
|
+
<link type="application/opensearchdescription+xml" href="/opensearch.xml" rel="search" title="Search on Feedbooks"/>
|
16
|
+
<link type="application/atom+xml" href="https://www.feedbooks.com/user/bookshelf.atom" rel="http://opds-spec.org/shelf" title="Bookshelf"/>
|
17
|
+
<link type="application/atom+xml" href="https://www.feedbooks.com/user/subscriptions.atom" rel="http://opds-spec.org/subscriptions" title="Subscriptions"/>
|
18
|
+
<link type="application/atom+xml" href="http://www.feedbooks.com/books/recent.atom" rel="http://opds-spec.org/sort/new" title="New Public Domain Books"/>
|
19
|
+
<link type="application/atom+xml" href="http://www.feedbooks.com/books/top.atom?range=month" rel="http://opds-spec.org/sort/popular" title="Top Public Domain Books"/>
|
20
|
+
<link type="application/atom+xml" href="http://www.feedbooks.com/userbooks/recent.atom" rel="http://opds-spec.org/sort/new" title="New Original Books"/>
|
21
|
+
<link type="application/atom+xml" href="http://www.feedbooks.com/userbooks/top.atom?range=month" rel="http://opds-spec.org/sort/popular" title="Top Original Books"/>
|
22
|
+
<opensearch:totalResults>1132</opensearch:totalResults>
|
23
|
+
<opensearch:itemsPerPage>20</opensearch:itemsPerPage>
|
24
|
+
<link type="application/atom+xml" href="http://www.feedbooks.com/books/recent.atom?category=FBFIC028000&lang=en&page=2" rel="next" title="Next Page"/>
|
25
|
+
<entry>
|
26
|
+
<title>Quest of the Golden Ape</title>
|
27
|
+
<id>http://www.feedbooks.com/book/4957</id>
|
28
|
+
<author>
|
29
|
+
<name>Randall Garrett</name>
|
30
|
+
<uri>http://www.feedbooks.com/author/267</uri>
|
31
|
+
</author>
|
32
|
+
<author>
|
33
|
+
<name>Stephen Marlowe</name>
|
34
|
+
<uri>http://www.feedbooks.com/author/744</uri>
|
35
|
+
</author>
|
36
|
+
<updated>2010-06-25T10:36:44Z</updated>
|
37
|
+
<dcterms:language>en</dcterms:language>
|
38
|
+
<dcterms:issued>1957</dcterms:issued>
|
39
|
+
<category term="FBFIC000000" label="Fiction"/>
|
40
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
41
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
42
|
+
<summary>How could this man awaken with no past—no childhood—no recollection except of a vague world of terror from which his mother cried out for vengeance and the slaughter of his own people stood as a monument of infamy?</summary>
|
43
|
+
<dcterms:extent>33,525 words</dcterms:extent>
|
44
|
+
<dcterms:source>http://www.gutenberg.org/etext/32953</dcterms:source>
|
45
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
46
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4957" rel="alternate" title="View on Feedbooks"/>
|
47
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4957.epub" rel="http://opds-spec.org/acquisition"/>
|
48
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4957.mobi" rel="http://opds-spec.org/acquisition"/>
|
49
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4957.pdf" rel="http://opds-spec.org/acquisition"/>
|
50
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4957.jpg?t=1277462204" rel="http://opds-spec.org/cover"/>
|
51
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4957.jpg?size=thumbnail&t=1277462204" rel="http://opds-spec.org/thumbnail"/>
|
52
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4957.atom" rel="alternate" title="Full entry"/>
|
53
|
+
</entry>
|
54
|
+
<entry>
|
55
|
+
<title>The Ware Tetralogy</title>
|
56
|
+
<id>http://www.feedbooks.com/book/4949</id>
|
57
|
+
<author>
|
58
|
+
<name>Rudy Rucker</name>
|
59
|
+
<uri>http://www.feedbooks.com/author/256</uri>
|
60
|
+
</author>
|
61
|
+
<updated>2010-07-02T10:49:51Z</updated>
|
62
|
+
<dcterms:language>en</dcterms:language>
|
63
|
+
<dcterms:issued>2010</dcterms:issued>
|
64
|
+
<category term="FBFIC000000" label="Fiction"/>
|
65
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
66
|
+
<summary>Your Guide to the 21st Century!
|
67
|
+
|
68
|
+
It starts with Software, where rebel robots bring immortality to their human creator by eating his brain. Software won the first Philip K. Dick Award.
|
69
|
+
|
70
|
+
In Wetware, the robots decide to start building people —and people get strung out on an insane new drug called merge. This cyberpunk classic garnered a second Philip K. Dick award.
|
71
|
+
|
72
|
+
By Freeware, the robots have evolved into soft plastic slugs called moldies —and some human “cheeseballs” want to have sex with them. The action redoubles when aliens begin arriving in the form of cosmic rays.
|
73
|
+
|
74
|
+
And with Realware, the humans and robots reach a higher plateau.</summary>
|
75
|
+
<dcterms:extent>321,752 words</dcterms:extent>
|
76
|
+
<dcterms:source>http://www.rudyrucker.com/wares/</dcterms:source>
|
77
|
+
<rights>Attribution Non-Commercial No Derivatives (cc by-nc-nd)</rights>
|
78
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4949" rel="alternate" title="View on Feedbooks"/>
|
79
|
+
<link type="text/html" href="http://creativecommons.org/licenses/by-nc-nd/3.0/" rel="license" title="Creative Commons"/>
|
80
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4949.epub" rel="http://opds-spec.org/acquisition"/>
|
81
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4949.mobi" rel="http://opds-spec.org/acquisition"/>
|
82
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4949.pdf" rel="http://opds-spec.org/acquisition"/>
|
83
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4949.jpg?t=1278067791" rel="http://opds-spec.org/cover"/>
|
84
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4949.jpg?size=thumbnail&t=1278067791" rel="http://opds-spec.org/thumbnail"/>
|
85
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4949.atom" rel="alternate" title="Full entry"/>
|
86
|
+
</entry>
|
87
|
+
<entry>
|
88
|
+
<title>Cue for Quiet</title>
|
89
|
+
<id>http://www.feedbooks.com/book/4946</id>
|
90
|
+
<author>
|
91
|
+
<name>Thomas L. Sherred</name>
|
92
|
+
<uri>http://www.feedbooks.com/author/1453</uri>
|
93
|
+
</author>
|
94
|
+
<updated>2010-06-22T09:35:56Z</updated>
|
95
|
+
<dcterms:language>en</dcterms:language>
|
96
|
+
<dcterms:issued>1953</dcterms:issued>
|
97
|
+
<category term="FBFIC000000" label="Fiction"/>
|
98
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
99
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
100
|
+
<summary>After too many years, T. L. Sherred returns with a story that gets our SPACE SPECIAL rating. It's the story of a man with a headache—who found a cure for it! And the cure gave him more power than any man could dream of.</summary>
|
101
|
+
<dcterms:extent>29,902 words</dcterms:extent>
|
102
|
+
<dcterms:source>http://www.gutenberg.org/etext/32889</dcterms:source>
|
103
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
104
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4946" rel="alternate" title="View on Feedbooks"/>
|
105
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4946.epub" rel="http://opds-spec.org/acquisition"/>
|
106
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4946.mobi" rel="http://opds-spec.org/acquisition"/>
|
107
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4946.pdf" rel="http://opds-spec.org/acquisition"/>
|
108
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4946.jpg?t=1277199356" rel="http://opds-spec.org/cover"/>
|
109
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4946.jpg?size=thumbnail&t=1277199356" rel="http://opds-spec.org/thumbnail"/>
|
110
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4946.atom" rel="alternate" title="Full entry"/>
|
111
|
+
</entry>
|
112
|
+
<entry>
|
113
|
+
<title>Home is Where You Left It</title>
|
114
|
+
<id>http://www.feedbooks.com/book/4945</id>
|
115
|
+
<author>
|
116
|
+
<name>Stephen Marlowe</name>
|
117
|
+
<uri>http://www.feedbooks.com/author/744</uri>
|
118
|
+
</author>
|
119
|
+
<updated>2010-06-22T09:29:58Z</updated>
|
120
|
+
<dcterms:language>en</dcterms:language>
|
121
|
+
<dcterms:issued>1957</dcterms:issued>
|
122
|
+
<category label="Fiction" term="FBFIC000000"/>
|
123
|
+
<category label="Science Fiction" term="FBFIC028000"/>
|
124
|
+
<category label="Short Stories" term="FBFIC029000"/>
|
125
|
+
<summary>How black is the blackest treachery? Is the most callous traitor entitled to mercy? Steve pondered these questions. His decision? That at times the villain should possibly be spoken of as a hero.</summary>
|
126
|
+
<dcterms:extent>4,297 words</dcterms:extent>
|
127
|
+
<dcterms:source>http://www.gutenberg.org/etext/32890</dcterms:source>
|
128
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
129
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4945" rel="alternate" title="View on Feedbooks"/>
|
130
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4945.epub" rel="http://opds-spec.org/acquisition"/>
|
131
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4945.mobi" rel="http://opds-spec.org/acquisition"/>
|
132
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4945.pdf" rel="http://opds-spec.org/acquisition"/>
|
133
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4945.jpg?t=1277198998" rel="http://opds-spec.org/cover"/>
|
134
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4945.jpg?size=thumbnail&t=1277198998" rel="http://opds-spec.org/thumbnail"/>
|
135
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4945.atom" rel="alternate" title="Full entry"/>
|
136
|
+
</entry>
|
137
|
+
<entry>
|
138
|
+
<title>The Tree of Life</title>
|
139
|
+
<id>http://www.feedbooks.com/book/4944</id>
|
140
|
+
<author>
|
141
|
+
<name>Catherine Lucille Moore</name>
|
142
|
+
<uri>http://www.feedbooks.com/author/1452</uri>
|
143
|
+
</author>
|
144
|
+
<updated>2010-06-22T09:23:03Z</updated>
|
145
|
+
<dcterms:language>en</dcterms:language>
|
146
|
+
<dcterms:issued>1936</dcterms:issued>
|
147
|
+
<category term="FBFIC000000" label="Fiction"/>
|
148
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
149
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
150
|
+
<summary>A gripping tale of the planet Mars and the terrible monstrosity that called its victims to it from afar—a tale of Northwest Smith.</summary>
|
151
|
+
<dcterms:extent>10,944 words</dcterms:extent>
|
152
|
+
<dcterms:source>http://www.gutenberg.org/etext/32850</dcterms:source>
|
153
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
154
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4944" rel="alternate" title="View on Feedbooks"/>
|
155
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4944.epub" rel="http://opds-spec.org/acquisition"/>
|
156
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4944.mobi" rel="http://opds-spec.org/acquisition"/>
|
157
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4944.pdf" rel="http://opds-spec.org/acquisition"/>
|
158
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4944.jpg?t=1277198583" rel="http://opds-spec.org/cover"/>
|
159
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4944.jpg?size=thumbnail&t=1277198583" rel="http://opds-spec.org/thumbnail"/>
|
160
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4944.atom" rel="alternate" title="Full entry"/>
|
161
|
+
</entry>
|
162
|
+
<entry>
|
163
|
+
<title>Perchance to Dream</title>
|
164
|
+
<id>http://www.feedbooks.com/book/4943</id>
|
165
|
+
<author>
|
166
|
+
<name>Richard Stockham</name>
|
167
|
+
<uri>http://www.feedbooks.com/author/1386</uri>
|
168
|
+
</author>
|
169
|
+
<updated>2010-06-21T19:33:03Z</updated>
|
170
|
+
<dcterms:language>en</dcterms:language>
|
171
|
+
<dcterms:issued>1954</dcterms:issued>
|
172
|
+
<category term="FBFIC000000" label="Fiction"/>
|
173
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
174
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
175
|
+
<summary>If you wish to escape, if you would go to faraway places, then go to sleep and dream. For sometimes that is the only way....</summary>
|
176
|
+
<dcterms:extent>5,792 words</dcterms:extent>
|
177
|
+
<dcterms:source>http://www.gutenberg.org/etext/32859</dcterms:source>
|
178
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
179
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4943" rel="alternate" title="View on Feedbooks"/>
|
180
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4943.epub" rel="http://opds-spec.org/acquisition"/>
|
181
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4943.mobi" rel="http://opds-spec.org/acquisition"/>
|
182
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4943.pdf" rel="http://opds-spec.org/acquisition"/>
|
183
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4943.jpg?t=1277148783" rel="http://opds-spec.org/cover"/>
|
184
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4943.jpg?size=thumbnail&t=1277148783" rel="http://opds-spec.org/thumbnail"/>
|
185
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4943.atom" rel="alternate" title="Full entry"/>
|
186
|
+
</entry>
|
187
|
+
<entry>
|
188
|
+
<title>In the Cards</title>
|
189
|
+
<id>http://www.feedbooks.com/book/4942</id>
|
190
|
+
<author>
|
191
|
+
<name>Alan Cogan</name>
|
192
|
+
<uri>http://www.feedbooks.com/author/1451</uri>
|
193
|
+
</author>
|
194
|
+
<updated>2010-06-21T19:31:05Z</updated>
|
195
|
+
<dcterms:language>en</dcterms:language>
|
196
|
+
<dcterms:issued>1956</dcterms:issued>
|
197
|
+
<category term="FBFIC000000" label="Fiction"/>
|
198
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
199
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
200
|
+
<summary>It is one thing to safeguard the future ... and something else entirely to see someone you love cry in terror two years from now!</summary>
|
201
|
+
<dcterms:extent>6,972 words</dcterms:extent>
|
202
|
+
<dcterms:source>http://www.gutenberg.org/etext/32853</dcterms:source>
|
203
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
204
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4942" rel="alternate" title="View on Feedbooks"/>
|
205
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4942.epub" rel="http://opds-spec.org/acquisition"/>
|
206
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4942.mobi" rel="http://opds-spec.org/acquisition"/>
|
207
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4942.pdf" rel="http://opds-spec.org/acquisition"/>
|
208
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4942.jpg?t=1277148665" rel="http://opds-spec.org/cover"/>
|
209
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4942.jpg?size=thumbnail&t=1277148665" rel="http://opds-spec.org/thumbnail"/>
|
210
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4942.atom" rel="alternate" title="Full entry"/>
|
211
|
+
</entry>
|
212
|
+
<entry>
|
213
|
+
<title>Circle of Flight</title>
|
214
|
+
<id>http://www.feedbooks.com/book/4941</id>
|
215
|
+
<author>
|
216
|
+
<name>Richard Stockham</name>
|
217
|
+
<uri>http://www.feedbooks.com/author/1386</uri>
|
218
|
+
</author>
|
219
|
+
<updated>2010-06-20T16:38:07Z</updated>
|
220
|
+
<dcterms:language>en</dcterms:language>
|
221
|
+
<dcterms:issued>1953</dcterms:issued>
|
222
|
+
<category term="FBFIC000000" label="Fiction"/>
|
223
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
224
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
225
|
+
<summary>Thorus, the vengeful, had determined his way. Aria, the healer, had determined her way. Which determined this classic meeting of the twain.</summary>
|
226
|
+
<dcterms:extent>4,240 words</dcterms:extent>
|
227
|
+
<dcterms:source>http://www.gutenberg.org/etext/32885</dcterms:source>
|
228
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
229
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4941" rel="alternate" title="View on Feedbooks"/>
|
230
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4941.epub" rel="http://opds-spec.org/acquisition"/>
|
231
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4941.mobi" rel="http://opds-spec.org/acquisition"/>
|
232
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4941.pdf" rel="http://opds-spec.org/acquisition"/>
|
233
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4941.jpg?t=1277051887" rel="http://opds-spec.org/cover"/>
|
234
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4941.jpg?size=thumbnail&t=1277051887" rel="http://opds-spec.org/thumbnail"/>
|
235
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4941.atom" rel="alternate" title="Full entry"/>
|
236
|
+
</entry>
|
237
|
+
<entry>
|
238
|
+
<title>Thy Rocks and Rills</title>
|
239
|
+
<id>http://www.feedbooks.com/book/4940</id>
|
240
|
+
<author>
|
241
|
+
<name>Robert E. Gilbert</name>
|
242
|
+
<uri>http://www.feedbooks.com/author/1198</uri>
|
243
|
+
</author>
|
244
|
+
<updated>2010-06-20T16:33:27Z</updated>
|
245
|
+
<dcterms:language>en</dcterms:language>
|
246
|
+
<dcterms:issued>1953</dcterms:issued>
|
247
|
+
<category term="FBFIC000000" label="Fiction"/>
|
248
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
249
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
250
|
+
<summary>They were out of place in the Manly Age—Stonecypher, a man who loved animals; Moe, a bull who hated men. Together, they marched to inevitably similar destinies...</summary>
|
251
|
+
<dcterms:extent>10,019 words</dcterms:extent>
|
252
|
+
<dcterms:source>http://www.gutenberg.org/etext/32878</dcterms:source>
|
253
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
254
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4940" rel="alternate" title="View on Feedbooks"/>
|
255
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4940.epub" rel="http://opds-spec.org/acquisition"/>
|
256
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4940.mobi" rel="http://opds-spec.org/acquisition"/>
|
257
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4940.pdf" rel="http://opds-spec.org/acquisition"/>
|
258
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4940.jpg?t=1277051607" rel="http://opds-spec.org/cover"/>
|
259
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4940.jpg?size=thumbnail&t=1277051607" rel="http://opds-spec.org/thumbnail"/>
|
260
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4940.atom" rel="alternate" title="Full entry"/>
|
261
|
+
</entry>
|
262
|
+
<entry>
|
263
|
+
<title>The Huddlers</title>
|
264
|
+
<id>http://www.feedbooks.com/book/4939</id>
|
265
|
+
<author>
|
266
|
+
<name>William Campbell Gault</name>
|
267
|
+
<uri>http://www.feedbooks.com/author/1362</uri>
|
268
|
+
</author>
|
269
|
+
<updated>2010-06-20T16:27:59Z</updated>
|
270
|
+
<dcterms:language>en</dcterms:language>
|
271
|
+
<dcterms:issued>1953</dcterms:issued>
|
272
|
+
<category term="FBFIC000000" label="Fiction"/>
|
273
|
+
<category term="FBFIC027000" label="Romance"/>
|
274
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
275
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
276
|
+
<summary>He was a reporter from Venus with an assignment on Earth. He got his story but, against orders, he fell in love—and therein lies this story.</summary>
|
277
|
+
<dcterms:extent>6,996 words</dcterms:extent>
|
278
|
+
<dcterms:source>http://www.gutenberg.org/etext/32904</dcterms:source>
|
279
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
280
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4939" rel="alternate" title="View on Feedbooks"/>
|
281
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4939.epub" rel="http://opds-spec.org/acquisition"/>
|
282
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4939.mobi" rel="http://opds-spec.org/acquisition"/>
|
283
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4939.pdf" rel="http://opds-spec.org/acquisition"/>
|
284
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4939.jpg?t=1277051279" rel="http://opds-spec.org/cover"/>
|
285
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4939.jpg?size=thumbnail&t=1277051279" rel="http://opds-spec.org/thumbnail"/>
|
286
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4939.atom" rel="alternate" title="Full entry"/>
|
287
|
+
</entry>
|
288
|
+
<entry>
|
289
|
+
<title>The Victor</title>
|
290
|
+
<id>http://www.feedbooks.com/book/4938</id>
|
291
|
+
<author>
|
292
|
+
<name>Bryce Walton</name>
|
293
|
+
<uri>http://www.feedbooks.com/author/946</uri>
|
294
|
+
</author>
|
295
|
+
<updated>2010-06-20T16:24:32Z</updated>
|
296
|
+
<dcterms:language>en</dcterms:language>
|
297
|
+
<dcterms:issued>1953</dcterms:issued>
|
298
|
+
<category term="FBFIC000000" label="Fiction"/>
|
299
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
300
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
301
|
+
<summary>Under the new system of the Managerials, the fight was not for life but for death! And great was the ingenuity of—The Victor.</summary>
|
302
|
+
<dcterms:extent>6,004 words</dcterms:extent>
|
303
|
+
<dcterms:source>http://www.gutenberg.org/etext/32903</dcterms:source>
|
304
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
305
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4938" rel="alternate" title="View on Feedbooks"/>
|
306
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4938.epub" rel="http://opds-spec.org/acquisition"/>
|
307
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4938.mobi" rel="http://opds-spec.org/acquisition"/>
|
308
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4938.pdf" rel="http://opds-spec.org/acquisition"/>
|
309
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4938.jpg?t=1277051072" rel="http://opds-spec.org/cover"/>
|
310
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4938.jpg?size=thumbnail&t=1277051072" rel="http://opds-spec.org/thumbnail"/>
|
311
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4938.atom" rel="alternate" title="Full entry"/>
|
312
|
+
</entry>
|
313
|
+
<entry>
|
314
|
+
<title>The Merchants of Venus</title>
|
315
|
+
<id>http://www.feedbooks.com/book/4937</id>
|
316
|
+
<author>
|
317
|
+
<name>A.H. Phelps</name>
|
318
|
+
<uri>http://www.feedbooks.com/author/1450</uri>
|
319
|
+
</author>
|
320
|
+
<updated>2010-06-20T16:21:41Z</updated>
|
321
|
+
<dcterms:language>en</dcterms:language>
|
322
|
+
<dcterms:issued>1954</dcterms:issued>
|
323
|
+
<category term="FBFIC000000" label="Fiction"/>
|
324
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
325
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
326
|
+
<summary>A pioneer movement is like a building—the foundation is never built for beauty!</summary>
|
327
|
+
<dcterms:extent>5,207 words</dcterms:extent>
|
328
|
+
<dcterms:source>http://www.gutenberg.org/etext/32901</dcterms:source>
|
329
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
330
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4937" rel="alternate" title="View on Feedbooks"/>
|
331
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4937.epub" rel="http://opds-spec.org/acquisition"/>
|
332
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4937.mobi" rel="http://opds-spec.org/acquisition"/>
|
333
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4937.pdf" rel="http://opds-spec.org/acquisition"/>
|
334
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4937.jpg?t=1277050901" rel="http://opds-spec.org/cover"/>
|
335
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4937.jpg?size=thumbnail&t=1277050901" rel="http://opds-spec.org/thumbnail"/>
|
336
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4937.atom" rel="alternate" title="Full entry"/>
|
337
|
+
</entry>
|
338
|
+
<entry>
|
339
|
+
<title>The Cosmic Deflector</title>
|
340
|
+
<id>http://www.feedbooks.com/book/4936</id>
|
341
|
+
<author>
|
342
|
+
<name>Stanton A. Coblentz</name>
|
343
|
+
<uri>http://www.feedbooks.com/author/1006</uri>
|
344
|
+
</author>
|
345
|
+
<updated>2010-06-20T16:18:25Z</updated>
|
346
|
+
<dcterms:language>en</dcterms:language>
|
347
|
+
<dcterms:issued>1943</dcterms:issued>
|
348
|
+
<category term="FBFIC000000" label="Fiction"/>
|
349
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
350
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
351
|
+
<summary>It's one thing to force the Earth out of its orbit, and another to force it back in again!</summary>
|
352
|
+
<dcterms:extent>6,995 words</dcterms:extent>
|
353
|
+
<dcterms:source>http://www.gutenberg.org/etext/32899</dcterms:source>
|
354
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
355
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4936" rel="alternate" title="View on Feedbooks"/>
|
356
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4936.epub" rel="http://opds-spec.org/acquisition"/>
|
357
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4936.mobi" rel="http://opds-spec.org/acquisition"/>
|
358
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4936.pdf" rel="http://opds-spec.org/acquisition"/>
|
359
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4936.jpg?t=1277050705" rel="http://opds-spec.org/cover"/>
|
360
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4936.jpg?size=thumbnail&t=1277050705" rel="http://opds-spec.org/thumbnail"/>
|
361
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4936.atom" rel="alternate" title="Full entry"/>
|
362
|
+
</entry>
|
363
|
+
<entry>
|
364
|
+
<title>Beyond The Thunder</title>
|
365
|
+
<id>http://www.feedbooks.com/book/4935</id>
|
366
|
+
<author>
|
367
|
+
<name>H.B. Hickey</name>
|
368
|
+
<uri>http://www.feedbooks.com/author/1449</uri>
|
369
|
+
</author>
|
370
|
+
<updated>2010-06-18T15:09:45Z</updated>
|
371
|
+
<dcterms:language>en</dcterms:language>
|
372
|
+
<dcterms:issued>1948</dcterms:issued>
|
373
|
+
<category label="Fiction" term="FBFIC000000"/>
|
374
|
+
<category label="Science Fiction" term="FBFIC028000"/>
|
375
|
+
<category label="Short Stories" term="FBFIC029000"/>
|
376
|
+
<summary>What was this blinding force that came out of a hole in the sky, and was powerful enough to destroy an entire city? Case thought he knew....</summary>
|
377
|
+
<dcterms:extent>10,198 words</dcterms:extent>
|
378
|
+
<dcterms:source>http://www.gutenberg.org/etext/32866</dcterms:source>
|
379
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
380
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4935" rel="alternate" title="View on Feedbooks"/>
|
381
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4935.epub" rel="http://opds-spec.org/acquisition"/>
|
382
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4935.mobi" rel="http://opds-spec.org/acquisition"/>
|
383
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4935.pdf" rel="http://opds-spec.org/acquisition"/>
|
384
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4935.jpg?t=1276873785" rel="http://opds-spec.org/cover"/>
|
385
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4935.jpg?size=thumbnail&t=1276873785" rel="http://opds-spec.org/thumbnail"/>
|
386
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4935.atom" rel="alternate" title="Full entry"/>
|
387
|
+
</entry>
|
388
|
+
<entry>
|
389
|
+
<title>Check and Checkmate</title>
|
390
|
+
<id>http://www.feedbooks.com/book/4932</id>
|
391
|
+
<author>
|
392
|
+
<name>Walter M. Miller</name>
|
393
|
+
<uri>http://www.feedbooks.com/author/1150</uri>
|
394
|
+
</author>
|
395
|
+
<updated>2010-06-18T11:35:21Z</updated>
|
396
|
+
<dcterms:language>en</dcterms:language>
|
397
|
+
<dcterms:issued>1953</dcterms:issued>
|
398
|
+
<category term="FBFIC000000" label="Fiction"/>
|
399
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
400
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
401
|
+
<summary>Victory hinges not always on the mightiest sword, but often on lowly subterfuge. Here is a classic example, with the Western World as stooge!</summary>
|
402
|
+
<dcterms:extent>9,127 words</dcterms:extent>
|
403
|
+
<dcterms:source>http://www.gutenberg.org/etext/32837</dcterms:source>
|
404
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
405
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4932" rel="alternate" title="View on Feedbooks"/>
|
406
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4932.epub" rel="http://opds-spec.org/acquisition"/>
|
407
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4932.mobi" rel="http://opds-spec.org/acquisition"/>
|
408
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4932.pdf" rel="http://opds-spec.org/acquisition"/>
|
409
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4932.jpg?t=1276860921" rel="http://opds-spec.org/cover"/>
|
410
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4932.jpg?size=thumbnail&t=1276860921" rel="http://opds-spec.org/thumbnail"/>
|
411
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4932.atom" rel="alternate" title="Full entry"/>
|
412
|
+
</entry>
|
413
|
+
<entry>
|
414
|
+
<title>When the Mountain Shook</title>
|
415
|
+
<id>http://www.feedbooks.com/book/4922</id>
|
416
|
+
<author>
|
417
|
+
<name>Robert Abernathy</name>
|
418
|
+
<uri>http://www.feedbooks.com/author/1382</uri>
|
419
|
+
</author>
|
420
|
+
<updated>2010-06-17T14:37:33Z</updated>
|
421
|
+
<dcterms:language>en</dcterms:language>
|
422
|
+
<dcterms:issued>1954</dcterms:issued>
|
423
|
+
<category term="FBFIC000000" label="Fiction"/>
|
424
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
425
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
426
|
+
<summary>Dark was the Ryzga mountain and forbidding; steep were its cliffs and sheer its crevasses. But its outward perils could not compare with the Ryzgas themselves, who slept within, ready to wake and conquer....</summary>
|
427
|
+
<dcterms:extent>5,305 words</dcterms:extent>
|
428
|
+
<dcterms:source>http://www.gutenberg.org/etext/32836</dcterms:source>
|
429
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
430
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4922" rel="alternate" title="View on Feedbooks"/>
|
431
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4922.epub" rel="http://opds-spec.org/acquisition"/>
|
432
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4922.mobi" rel="http://opds-spec.org/acquisition"/>
|
433
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4922.pdf" rel="http://opds-spec.org/acquisition"/>
|
434
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4922.jpg?t=1276785453" rel="http://opds-spec.org/cover"/>
|
435
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4922.jpg?size=thumbnail&t=1276785453" rel="http://opds-spec.org/thumbnail"/>
|
436
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4922.atom" rel="alternate" title="Full entry"/>
|
437
|
+
</entry>
|
438
|
+
<entry>
|
439
|
+
<title>Think Yourself to Death</title>
|
440
|
+
<id>http://www.feedbooks.com/book/4919</id>
|
441
|
+
<author>
|
442
|
+
<name>Stephen Marlowe</name>
|
443
|
+
<uri>http://www.feedbooks.com/author/744</uri>
|
444
|
+
</author>
|
445
|
+
<updated>2010-06-17T10:45:54Z</updated>
|
446
|
+
<dcterms:language>en</dcterms:language>
|
447
|
+
<dcterms:issued>1957</dcterms:issued>
|
448
|
+
<category label="Fiction" term="FBFIC000000"/>
|
449
|
+
<category label="Science Fiction" term="FBFIC028000"/>
|
450
|
+
<category label="Short Stories" term="FBFIC029000"/>
|
451
|
+
<summary>If you've never read a Johnny Mayhem story before, you are in for a treat. Johnny, who wears different bodies the way ordinary people wear clothes, is one of the most fascinating series characters in science fiction.</summary>
|
452
|
+
<dcterms:extent>6,886 words</dcterms:extent>
|
453
|
+
<dcterms:source>http://www.gutenberg.org/etext/32827</dcterms:source>
|
454
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
455
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4919" rel="alternate" title="View on Feedbooks"/>
|
456
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4919.epub" rel="http://opds-spec.org/acquisition"/>
|
457
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4919.mobi" rel="http://opds-spec.org/acquisition"/>
|
458
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4919.pdf" rel="http://opds-spec.org/acquisition"/>
|
459
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4919.jpg?t=1276771554" rel="http://opds-spec.org/cover"/>
|
460
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4919.jpg?size=thumbnail&t=1276771554" rel="http://opds-spec.org/thumbnail"/>
|
461
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4919.atom" rel="alternate" title="Full entry"/>
|
462
|
+
</entry>
|
463
|
+
<entry>
|
464
|
+
<title>Backlash</title>
|
465
|
+
<id>http://www.feedbooks.com/book/4918</id>
|
466
|
+
<author>
|
467
|
+
<name>Winston K. Marks</name>
|
468
|
+
<uri>http://www.feedbooks.com/author/437</uri>
|
469
|
+
</author>
|
470
|
+
<updated>2010-06-17T10:39:05Z</updated>
|
471
|
+
<dcterms:language>en</dcterms:language>
|
472
|
+
<dcterms:issued>1964</dcterms:issued>
|
473
|
+
<category term="FBFIC000000" label="Fiction"/>
|
474
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
475
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
476
|
+
<summary>They were the perfect servants—they were willing to do everything for nothing. The obvious question is: How much is nothing?</summary>
|
477
|
+
<dcterms:extent>9,091 words</dcterms:extent>
|
478
|
+
<dcterms:source>http://www.gutenberg.org/etext/32828</dcterms:source>
|
479
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
480
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4918" rel="alternate" title="View on Feedbooks"/>
|
481
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4918.epub" rel="http://opds-spec.org/acquisition"/>
|
482
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4918.mobi" rel="http://opds-spec.org/acquisition"/>
|
483
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4918.pdf" rel="http://opds-spec.org/acquisition"/>
|
484
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4918.jpg?t=1276771145" rel="http://opds-spec.org/cover"/>
|
485
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4918.jpg?size=thumbnail&t=1276771145" rel="http://opds-spec.org/thumbnail"/>
|
486
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4918.atom" rel="alternate" title="Full entry"/>
|
487
|
+
</entry>
|
488
|
+
<entry>
|
489
|
+
<title>A Woman's Place</title>
|
490
|
+
<id>http://www.feedbooks.com/book/4917</id>
|
491
|
+
<author>
|
492
|
+
<name>Mark Irvin Clifton</name>
|
493
|
+
<uri>http://www.feedbooks.com/author/354</uri>
|
494
|
+
</author>
|
495
|
+
<updated>2010-06-17T10:34:16Z</updated>
|
496
|
+
<dcterms:language>en</dcterms:language>
|
497
|
+
<dcterms:issued>1955</dcterms:issued>
|
498
|
+
<category term="FBFIC000000" label="Fiction"/>
|
499
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
500
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
501
|
+
<summary>Home is where you hang up your spaceship—that is, if you have any Miss Kitty along!</summary>
|
502
|
+
<dcterms:extent>9,404 words</dcterms:extent>
|
503
|
+
<dcterms:source>http://www.gutenberg.org/etext/32833</dcterms:source>
|
504
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
505
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4917" rel="alternate" title="View on Feedbooks"/>
|
506
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4917.epub" rel="http://opds-spec.org/acquisition"/>
|
507
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4917.mobi" rel="http://opds-spec.org/acquisition"/>
|
508
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4917.pdf" rel="http://opds-spec.org/acquisition"/>
|
509
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4917.jpg?t=1276770856" rel="http://opds-spec.org/cover"/>
|
510
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4917.jpg?size=thumbnail&t=1276770856" rel="http://opds-spec.org/thumbnail"/>
|
511
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4917.atom" rel="alternate" title="Full entry"/>
|
512
|
+
</entry>
|
513
|
+
<entry>
|
514
|
+
<title>Piper in the Woods</title>
|
515
|
+
<id>http://www.feedbooks.com/book/4916</id>
|
516
|
+
<author>
|
517
|
+
<name>Philip K. Dick</name>
|
518
|
+
<uri>http://www.feedbooks.com/author/1023</uri>
|
519
|
+
</author>
|
520
|
+
<updated>2010-06-17T10:28:52Z</updated>
|
521
|
+
<dcterms:language>en</dcterms:language>
|
522
|
+
<dcterms:issued>1953</dcterms:issued>
|
523
|
+
<category term="FBFIC000000" label="Fiction"/>
|
524
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
525
|
+
<category term="FBFIC029000" label="Short Stories"/>
|
526
|
+
<summary>Earth maintained an important garrison on Asteroid Y-3. Now suddenly it was imperiled with a biological impossibility—men becoming plants!</summary>
|
527
|
+
<dcterms:extent>7,210 words</dcterms:extent>
|
528
|
+
<dcterms:source>http://www.gutenberg.org/etext/32832</dcterms:source>
|
529
|
+
<rights>Please read the legal notice included in this e-book and/or check the copyright status in your country.</rights>
|
530
|
+
<link type="text/html" href="http://www.feedbooks.com/book/4916" rel="alternate" title="View on Feedbooks"/>
|
531
|
+
<link type="application/epub+zip" href="http://www.feedbooks.com/book/4916.epub" rel="http://opds-spec.org/acquisition"/>
|
532
|
+
<link type="application/x-mobipocket-ebook" href="http://www.feedbooks.com/book/4916.mobi" rel="http://opds-spec.org/acquisition"/>
|
533
|
+
<link type="application/pdf" href="http://www.feedbooks.com/book/4916.pdf" rel="http://opds-spec.org/acquisition"/>
|
534
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4916.jpg?t=1276770532" rel="http://opds-spec.org/cover"/>
|
535
|
+
<link type="image/jpeg" href="http://covers.feedbooks.net/book/4916.jpg?size=thumbnail&t=1276770532" rel="http://opds-spec.org/thumbnail"/>
|
536
|
+
<link type="application/atom+xml;type=entry" href="http://www.feedbooks.com/book/4916.atom" rel="alternate" title="Full entry"/>
|
537
|
+
</entry>
|
538
|
+
</feed>
|