opds 0.2.0 → 0.3.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/README.md +3 -1
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/lib/opds/acquisition_feed.rb +29 -0
- data/lib/opds/entry.rb +41 -9
- data/lib/opds/feed.rb +73 -8
- data/lib/opds/navigation_feed.rb +17 -0
- data/lib/opds/opds.rb +4 -0
- data/lib/opds/parser.rb +14 -0
- data/lib/opds/support/browser.rb +15 -1
- data/lib/opds/support/linkset.rb +104 -6
- data/lib/opds/support/logging.rb +3 -0
- data/opds.gemspec +30 -37
- data/samples/acquisition_opds1_1.txt +639 -0
- data/spec/linkset_spec.rb +12 -3
- data/spec/opdsparser_opds_1_1_spec.rb +75 -0
- metadata +10 -13
- data/.gitignore +0 -21
data/lib/opds/support/linkset.rb
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
require 'open-uri'
|
2
2
|
module OPDS
|
3
3
|
module Support
|
4
|
+
# A link is actually an array composed as :
|
5
|
+
# [rel, url , title, mimetype, opds:price, opds:currency]
|
4
6
|
class Link < Array
|
5
7
|
include Logging
|
8
|
+
# @return [OPDS::Support::Browser] Browser to use with this link
|
6
9
|
attr_accessor :browser
|
7
10
|
|
8
11
|
def initialize(array,browser=OPDS::Support::Browser.new)
|
@@ -13,6 +16,10 @@ module OPDS
|
|
13
16
|
super array
|
14
17
|
end
|
15
18
|
|
19
|
+
# Will go parsing the resource at this url.
|
20
|
+
# Proxy to Feed.parse_url
|
21
|
+
# @see Feed.parse_url
|
22
|
+
# @return (see Feed.parse_url)
|
16
23
|
def navigate
|
17
24
|
Feed.parse_url(self[1],browser)
|
18
25
|
end
|
@@ -21,35 +28,69 @@ module OPDS
|
|
21
28
|
"[#{self.map{|e| (e.is_a?(String) && e.size > 100 ? "#{e[0..98]}...".inspect: e.inspect ) }.join(', ')}]"
|
22
29
|
end
|
23
30
|
|
24
|
-
|
31
|
+
#@return [String] link url
|
32
|
+
def url
|
25
33
|
self[1]
|
26
34
|
end
|
27
35
|
|
36
|
+
#@return [String] link rel value
|
28
37
|
def rel
|
29
38
|
self[0]
|
30
39
|
end
|
31
40
|
|
41
|
+
#@return [String] link title
|
32
42
|
def title
|
33
43
|
self[2]
|
34
44
|
end
|
35
45
|
|
46
|
+
#@return [String] link mimetype
|
36
47
|
def type
|
37
48
|
self[3]
|
38
49
|
end
|
39
50
|
|
51
|
+
#@return [String] link opds price
|
40
52
|
def price
|
41
53
|
self[4]
|
42
54
|
end
|
43
55
|
|
56
|
+
#@return [String] link opds curreny
|
44
57
|
def currency
|
45
58
|
self[5]
|
46
59
|
end
|
47
60
|
|
48
61
|
end
|
49
|
-
|
50
62
|
|
63
|
+
class Facet < Link
|
64
|
+
def initialize(array,browser=OPDS::Support::Browser.new)
|
65
|
+
super(array,browser)
|
66
|
+
end
|
67
|
+
|
68
|
+
#@return [String] facet group
|
69
|
+
def facet_group
|
70
|
+
self[6]
|
71
|
+
end
|
72
|
+
|
73
|
+
#@return [Boolean] is that facet active
|
74
|
+
def active_facet
|
75
|
+
!self[7].nil?
|
76
|
+
end
|
77
|
+
|
78
|
+
alias :active_facet? :active_facet
|
79
|
+
|
80
|
+
#@return [Integer] approximate number of entries yield by this facet
|
81
|
+
def count
|
82
|
+
self[8].to_i
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
# Set of links.
|
88
|
+
#
|
89
|
+
# It provides ways to query and filter the set
|
90
|
+
# @todo use a true Set to provide storage
|
51
91
|
class LinkSet
|
52
92
|
include Enumerable
|
93
|
+
# @param browser (see Feed.parse_url)
|
53
94
|
def initialize(browser=OPDS::Support::Browser.new)
|
54
95
|
@browser=browser
|
55
96
|
@rel_store=Hash.new
|
@@ -59,8 +100,16 @@ module OPDS
|
|
59
100
|
@store=[]
|
60
101
|
end
|
61
102
|
|
103
|
+
# Add a link to the set
|
104
|
+
# @param k [String] rel value where to add the link
|
105
|
+
# @param v [Array] remainder of link structure
|
62
106
|
def []=(k,v)
|
107
|
+
link=nil
|
108
|
+
if v.size > 6
|
109
|
+
link=Facet.new([k]+v,@browser)
|
110
|
+
else
|
63
111
|
link=Link.new([k]+v,@browser)
|
112
|
+
end
|
64
113
|
@store.push link
|
65
114
|
i=@store.size-1
|
66
115
|
@rel_store[k]=[] unless @rel_store[k]
|
@@ -74,60 +123,97 @@ module OPDS
|
|
74
123
|
|
75
124
|
end
|
76
125
|
|
126
|
+
# Query the set by rel value
|
77
127
|
def [](k)
|
78
128
|
remap(@rel_store[k])
|
79
129
|
end
|
80
|
-
|
130
|
+
|
131
|
+
#iterate through the set
|
81
132
|
def each(&block)
|
82
133
|
@store.each(&block)
|
83
134
|
end
|
84
135
|
|
136
|
+
# Push a link to the set
|
137
|
+
# @param rel (see Link#rel)
|
138
|
+
# @param link (see Link#url)
|
139
|
+
# @param text (see Link#title)
|
140
|
+
# @param price (see Link#price)
|
141
|
+
# @param currency (see Link#currency)
|
85
142
|
def push(rel,link,text=nil,type=nil, price=nil, currency=nil)
|
86
143
|
tab=[link,text,type]
|
87
144
|
tab+=[price.to_f,currency] unless price.nil?
|
88
145
|
self[rel]=tab
|
89
146
|
end
|
90
147
|
|
148
|
+
def push_facet(link,text=nil,type=nil,facet_group=nil,active_facet=nil,count=nil)
|
149
|
+
self['http://opds-spec.org/facet']=[link,text,type,nil,nil,facet_group,active_facet,count]
|
150
|
+
end
|
151
|
+
|
152
|
+
# Push an existing link to the set
|
153
|
+
# @param [Link] kink to add
|
154
|
+
def push_link(link)
|
155
|
+
@store.push link if link.is_a?Link
|
156
|
+
end
|
157
|
+
|
158
|
+
# Find first link url corresponding to the query
|
159
|
+
# @example Query :
|
160
|
+
# {:rel => "related" }
|
91
161
|
def link_url(k)
|
92
162
|
ty,v=k.first
|
93
163
|
t=remap(collection(ty)[v])
|
94
164
|
t.first[1] unless t.nil?
|
95
165
|
end
|
96
166
|
|
167
|
+
# Find first link rel corresponding to the query
|
168
|
+
# @example Query :
|
169
|
+
# {:rel => "related" }
|
97
170
|
def link_rel(k)
|
98
171
|
ty,v=k.first
|
99
172
|
t=remap(collection(ty)[v])
|
100
173
|
t.first[0] unless t.nil?
|
101
174
|
end
|
102
175
|
|
176
|
+
# Find first link text corresponding to the query
|
177
|
+
# @example Query :
|
178
|
+
# {:rel => "related" }
|
103
179
|
def link_text(k)
|
104
180
|
ty,v=k.first
|
105
181
|
t=remap(collection(ty)[v])
|
106
182
|
t.first[2] unless t.nil?
|
107
183
|
end
|
108
184
|
|
185
|
+
# Find first link type corresponding to the query
|
186
|
+
# @example Query :
|
187
|
+
# {:rel => "related" }
|
109
188
|
def link_type(k)
|
110
189
|
ty,v=k.first
|
111
190
|
t=remap(collection(ty)[v])
|
112
191
|
t.first[3] unless t.nil?
|
113
192
|
end
|
114
193
|
|
194
|
+
# Size of the set
|
195
|
+
# @return [Integer]
|
115
196
|
def size
|
116
197
|
@store.size
|
117
198
|
end
|
118
199
|
|
200
|
+
# Collection indexed by given type
|
201
|
+
# @param [Symbol] in (:link,:rel,:txt,:type)
|
119
202
|
def by(type)
|
120
203
|
Hash[collection(type).map{|k,v| [k,remap(v)]}]
|
121
204
|
end
|
122
205
|
|
206
|
+
#@return [Array] all links
|
123
207
|
def links
|
124
208
|
@lnk_store.keys
|
125
209
|
end
|
126
210
|
|
211
|
+
#@return [Array] all rels
|
127
212
|
def rels
|
128
213
|
@rel_store.keys
|
129
214
|
end
|
130
|
-
|
215
|
+
|
216
|
+
#@return [Array] all titles
|
131
217
|
def texts
|
132
218
|
@txt_store.keys
|
133
219
|
end
|
@@ -136,15 +222,25 @@ module OPDS
|
|
136
222
|
@store.inspect
|
137
223
|
end
|
138
224
|
|
225
|
+
#@return [Link] First link in store
|
139
226
|
def first
|
140
227
|
@store.first
|
141
228
|
end
|
142
229
|
|
143
|
-
|
230
|
+
#@return [Link] Last link in store
|
231
|
+
def last
|
144
232
|
@store.last
|
145
233
|
end
|
146
234
|
|
235
|
+
def to_yaml
|
236
|
+
@store.to_yaml
|
237
|
+
end
|
238
|
+
|
147
239
|
protected
|
240
|
+
#Collection by type.
|
241
|
+
# Will only give the keymap
|
242
|
+
# @param type (see LinkSet#by)
|
243
|
+
# @see LinkSet#by
|
148
244
|
def collection(type)
|
149
245
|
case type.to_s
|
150
246
|
when 'link' then @lnk_store
|
@@ -153,7 +249,9 @@ module OPDS
|
|
153
249
|
when 'type' then @typ_store
|
154
250
|
end
|
155
251
|
end
|
156
|
-
|
252
|
+
# recover links for an index table
|
253
|
+
# @return [Array] Corresponding links
|
254
|
+
# @param [Array] Indexes
|
157
255
|
def remap(tab)
|
158
256
|
return nil if tab.nil? || tab.size==0
|
159
257
|
tab.map{|i| @store[i]}
|
data/lib/opds/support/logging.rb
CHANGED
data/opds.gemspec
CHANGED
@@ -1,61 +1,54 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{opds}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.3.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Benoit Larroque"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2011-06-13}
|
13
13
|
s.description = %q{ruby lib to access OPDS feeds}
|
14
14
|
s.email = %q{benoit dot larroque at feedbooks dot com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README.md"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
21
|
+
"LICENSE",
|
22
|
+
"README.md",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"lib/opds.rb",
|
26
|
+
"lib/opds/acquisition_feed.rb",
|
27
|
+
"lib/opds/entry.rb",
|
28
|
+
"lib/opds/feed.rb",
|
29
|
+
"lib/opds/navigation_feed.rb",
|
30
|
+
"lib/opds/opds.rb",
|
31
|
+
"lib/opds/parser.rb",
|
32
|
+
"lib/opds/support/browser.rb",
|
33
|
+
"lib/opds/support/linkset.rb",
|
34
|
+
"lib/opds/support/logging.rb",
|
35
|
+
"opds.gemspec",
|
36
|
+
"samples/acquisition.txt",
|
37
|
+
"samples/acquisition_opds1_1.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_opds_1_1_spec.rb",
|
44
|
+
"spec/opdsparser_spec.rb",
|
45
|
+
"spec/spec.opts",
|
46
|
+
"spec/spec_helper.rb"
|
46
47
|
]
|
47
48
|
s.homepage = %q{http://github.com/zetaben/opds}
|
48
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
49
49
|
s.require_paths = ["lib"]
|
50
50
|
s.rubygems_version = %q{1.3.7}
|
51
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
52
|
|
60
53
|
if s.respond_to? :specification_version then
|
61
54
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
@@ -0,0 +1,639 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<feed xmlns:app="http://www.w3.org/2007/app" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bluefirereader="http://bluefirereader.com/opds" xmlns:opds="http://opds-spec.org/2010/catalog" xml:lang="en" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
|
3
|
+
<id>http://www.feedbooks.com/store/top.atom</id>
|
4
|
+
<link type="text/html" rel="alternate" href="http://www.feedbooks.com/store/top"/>
|
5
|
+
<link type="application/atom+xml" rel="self" href="http://www.feedbooks.com/store/top.atom"/>
|
6
|
+
<title>Browsing eBooks Store / Best Selling</title>
|
7
|
+
<updated>2011-06-13T09:26:55Z</updated>
|
8
|
+
<icon>http://assets2.feedbooks.net/images/favicon.ico?t=1303221755</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" title="Home" rel="start" href="/catalog.atom"/>
|
15
|
+
<link type="application/opensearchdescription+xml" title="Search on Feedbooks" rel="search" href="http://assets0.feedbooks.net/opensearch.xml?t=1253087147"/>
|
16
|
+
<link type="application/atom+xml" title="Bookshelf" rel="http://opds-spec.org/shelf" href="https://www.feedbooks.com/user/bookshelf.atom"/>
|
17
|
+
<opensearch:totalResults>26515</opensearch:totalResults>
|
18
|
+
<opensearch:itemsPerPage>20</opensearch:itemsPerPage>
|
19
|
+
<link type="application/atom+xml" title="Next Page" rel="next" href="http://www.feedbooks.com/store/top.atom?page=2"/>
|
20
|
+
<link type="application/atom+xml" title="Best Selling" rel="http://opds-spec.org/facet" href="/store/top.atom" opds:activeFacet="true" opds:facetGroup="Sort"/>
|
21
|
+
<link type="application/atom+xml" title="New Releases" rel="http://opds-spec.org/facet" href="/store/recent.atom" opds:facetGroup="Sort"/>
|
22
|
+
<link type="application/atom+xml" title="Title: A-Z" rel="http://opds-spec.org/facet" href="/store/title/asc.atom" opds:facetGroup="Sort"/>
|
23
|
+
<link type="application/atom+xml" title="Title: Z-A" rel="http://opds-spec.org/facet" href="/store/title/desc.atom" opds:facetGroup="Sort"/>
|
24
|
+
<link type="application/atom+xml" title="Price: Lowest to Highest" rel="http://opds-spec.org/facet" href="/store/price/lowest.atom" opds:facetGroup="Sort" opds:active_facet="true"/>
|
25
|
+
<link type="application/atom+xml" title="All" rel="http://opds-spec.org/facet" href="/store/top.atom" opds:activeFacet="true" opds:facetGroup="Price"/>
|
26
|
+
<link type="application/atom+xml" title="Below $5" rel="http://opds-spec.org/facet" href="/store/top.atom?price=5" opds:facetGroup="Price"/>
|
27
|
+
<link type="application/atom+xml" title="Below $10" rel="http://opds-spec.org/facet" href="/store/top.atom?price=10" opds:facetGroup="Price"/>
|
28
|
+
<link type="application/atom+xml" title="Below $15" rel="http://opds-spec.org/facet" href="/store/top.atom?price=15" opds:facetGroup="Price"/>
|
29
|
+
<link type="application/atom+xml" title="Over $15" rel="http://opds-spec.org/facet" href="/store/top.atom?price=15%2B" opds:facetGroup="Price"/>
|
30
|
+
<link type="application/atom+xml" title="English" rel="http://opds-spec.org/facet" href="/store/top.atom?lang=en" opds:activeFacet="true" opds:facetGroup="Language"/>
|
31
|
+
<link type="application/atom+xml" title="French" rel="http://opds-spec.org/facet" href="/store/top.atom?lang=fr" opds:facetGroup="Language"/>
|
32
|
+
<link type="application/atom+xml" title="German" rel="http://opds-spec.org/facet" href="/store/top.atom?lang=de" opds:facetGroup="Language"/>
|
33
|
+
<link type="application/atom+xml" title="Spanish" rel="http://opds-spec.org/facet" href="/store/top.atom?lang=es" opds:facetGroup="Language"/>
|
34
|
+
<entry>
|
35
|
+
<title>Bone Thief</title>
|
36
|
+
<id>http://www.feedbooks.com/item/4141</id>
|
37
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786027460</dcterms:identifier>
|
38
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786018116</dcterms:identifier>
|
39
|
+
<author>
|
40
|
+
<name>Thomas O' Callaghan</name>
|
41
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Thomas+O%27+Callaghan%22</uri>
|
42
|
+
</author>
|
43
|
+
<published>2010-11-24T16:56:27Z</published>
|
44
|
+
<updated>2011-06-10T15:38:20Z</updated>
|
45
|
+
<dcterms:language>en</dcterms:language>
|
46
|
+
<dcterms:publisher>Pinnacle</dcterms:publisher>
|
47
|
+
<dcterms:issued>2005-12-31</dcterms:issued>
|
48
|
+
<summary>In his extraordinary debut novel of psychological suspense, Thomas O'Callaghan proves himself a worthy successor to Thomas Harris as he introduces one of the most compelling and terrifying serial killers since Hannibal Lecter in a book where every...</summary>
|
49
|
+
<dcterms:extent>416 KB</dcterms:extent>
|
50
|
+
<category label="Fiction" term="FBFIC000000"/>
|
51
|
+
<category label="Thrillers" term="FBFIC031000"/>
|
52
|
+
<category label="Mystery & Detective" term="FBFIC022000"/>
|
53
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/4141"/>
|
54
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/4141.jpg?t=1307720300"/>
|
55
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/4141.jpg?size=thumbnail&t=1307720300"/>
|
56
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/4141/buy">
|
57
|
+
<opds:price currencycode="USD">4.29</opds:price>
|
58
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
59
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
60
|
+
</opds:indirectAcquisition>
|
61
|
+
</link>
|
62
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/4141.atom"/>
|
63
|
+
</entry>
|
64
|
+
<entry>
|
65
|
+
<title>Other Than Murder</title>
|
66
|
+
<id>http://www.feedbooks.com/item/5604</id>
|
67
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786023578</dcterms:identifier>
|
68
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786016341</dcterms:identifier>
|
69
|
+
<author>
|
70
|
+
<name>John Lutz</name>
|
71
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22John+Lutz%22</uri>
|
72
|
+
</author>
|
73
|
+
<published>2010-11-24T17:47:28Z</published>
|
74
|
+
<updated>2011-06-10T15:38:20Z</updated>
|
75
|
+
<dcterms:language>en</dcterms:language>
|
76
|
+
<dcterms:publisher>Pinnacle</dcterms:publisher>
|
77
|
+
<dcterms:issued>2009-09-01</dcterms:issued>
|
78
|
+
<summary>A dark, compelling suspense story that reveals a surprising insight into the background of Homicide Detective Frank Quinn, the popular continuing character of John Lutz's serial-killer thrillers.</summary>
|
79
|
+
<dcterms:extent>51 KB</dcterms:extent>
|
80
|
+
<category label="Fiction" term="FBFIC000000"/>
|
81
|
+
<category label="Thrillers" term="FBFIC031000"/>
|
82
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/5604"/>
|
83
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/5604.jpg?t=1307720300"/>
|
84
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/5604.jpg?size=thumbnail&t=1307720300"/>
|
85
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/5604/buy">
|
86
|
+
<opds:price currencycode="USD">1.29</opds:price>
|
87
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
88
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
89
|
+
</opds:indirectAcquisition>
|
90
|
+
</link>
|
91
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/5604.atom"/>
|
92
|
+
</entry>
|
93
|
+
<entry>
|
94
|
+
<title>The Science Fiction Megapack: 25 Classic Science Fiction Stories</title>
|
95
|
+
<id>http://www.feedbooks.com/item/49471</id>
|
96
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781434439529</dcterms:identifier>
|
97
|
+
<published>2011-02-10T23:26:33Z</published>
|
98
|
+
<updated>2011-06-08T14:42:39Z</updated>
|
99
|
+
<dcterms:language>en</dcterms:language>
|
100
|
+
<dcterms:publisher>Wildside Press</dcterms:publisher>
|
101
|
+
<dcterms:issued>2011-02-08</dcterms:issued>
|
102
|
+
<summary>Hours of great reading await, with tales from some of the 20th century's most renowned science fiction authors, Here are 25 science fiction stories (plus a bonus short-short): ARENA, by Frederic Brown EXPEDITER, by Mack Reynolds ONE-SHOT, by Jame...</summary>
|
103
|
+
<dcterms:extent>438 KB</dcterms:extent>
|
104
|
+
<category term="FBFIC000000" label="Fiction"/>
|
105
|
+
<category term="FBFIC028000" label="Science Fiction"/>
|
106
|
+
<category term="FBFIC028010" label="Adventure"/>
|
107
|
+
<category term="FBFIC028040" label="Short Stories"/>
|
108
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/49471"/>
|
109
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/49471.jpg?t=1307544159"/>
|
110
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/49471.jpg?size=thumbnail&t=1307544159"/>
|
111
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/49471/buy">
|
112
|
+
<opds:price currencycode="USD">1.49</opds:price>
|
113
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
114
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
115
|
+
</opds:indirectAcquisition>
|
116
|
+
</link>
|
117
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/49471.atom"/>
|
118
|
+
</entry>
|
119
|
+
<entry>
|
120
|
+
<title>Hostile Intent</title>
|
121
|
+
<id>http://www.feedbooks.com/item/878</id>
|
122
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786022885</dcterms:identifier>
|
123
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786020423</dcterms:identifier>
|
124
|
+
<author>
|
125
|
+
<name>Michael Walsh</name>
|
126
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Michael+Walsh%22</uri>
|
127
|
+
</author>
|
128
|
+
<published>2010-11-24T15:20:00Z</published>
|
129
|
+
<updated>2011-05-24T04:36:07Z</updated>
|
130
|
+
<dcterms:language>en</dcterms:language>
|
131
|
+
<dcterms:publisher>Pinnacle</dcterms:publisher>
|
132
|
+
<dcterms:issued>2009-08-31</dcterms:issued>
|
133
|
+
<summary>The Vince Flynn for the 21st Century is here!--John Fasano, producer of Another 48 Hours and Darkness Falls"Hostile Intent kept me up most of the night. Hold on, is all I can tell you."--Jay Nordlinger, National ReviewIt starts with the unthinkabl...</summary>
|
134
|
+
<dcterms:extent>416 pages</dcterms:extent>
|
135
|
+
<dcterms:extent>1016 KB</dcterms:extent>
|
136
|
+
<category label="Fiction" term="FBFIC000000"/>
|
137
|
+
<category label="Thrillers" term="FBFIC031000"/>
|
138
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/878"/>
|
139
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/878.jpg?t=1306211767"/>
|
140
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/878.jpg?size=thumbnail&t=1306211767"/>
|
141
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/878/buy">
|
142
|
+
<opds:price currencycode="USD">4.29</opds:price>
|
143
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
144
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
145
|
+
</opds:indirectAcquisition>
|
146
|
+
</link>
|
147
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/878.atom"/>
|
148
|
+
</entry>
|
149
|
+
<entry>
|
150
|
+
<title>The Holy Bible</title>
|
151
|
+
<id>http://www.feedbooks.com/item/7759</id>
|
152
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781775411994</dcterms:identifier>
|
153
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781775411994</dcterms:identifier>
|
154
|
+
<author>
|
155
|
+
<name>Unknown</name>
|
156
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Unknown%22</uri>
|
157
|
+
</author>
|
158
|
+
<published>2010-11-24T19:01:56Z</published>
|
159
|
+
<updated>2011-05-24T04:40:18Z</updated>
|
160
|
+
<dcterms:language>en</dcterms:language>
|
161
|
+
<dcterms:publisher>The Floating Press</dcterms:publisher>
|
162
|
+
<dcterms:issued>2007-12-31</dcterms:issued>
|
163
|
+
<summary>A keyword searchable edition of The King James Bible available for handhelds, desktops and laptops. Including Old Testament and New Testament, this is a wonderful tool that keeps the scriptures at your fingertips. The translation that became the A...</summary>
|
164
|
+
<dcterms:extent>1.5 MB</dcterms:extent>
|
165
|
+
<category label="Non-Fiction" term="FBNFC000000"/>
|
166
|
+
<category label="Religion" term="FBREL000000"/>
|
167
|
+
<category label="Christianity" term="FBREL070000"/>
|
168
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/7759"/>
|
169
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/7759.jpg?t=1306212018"/>
|
170
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/7759.jpg?size=thumbnail&t=1306212018"/>
|
171
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/7759/buy">
|
172
|
+
<opds:price currencycode="USD">3.79</opds:price>
|
173
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
174
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
175
|
+
</opds:indirectAcquisition>
|
176
|
+
</link>
|
177
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/7759.atom"/>
|
178
|
+
</entry>
|
179
|
+
<entry>
|
180
|
+
<title>Fantasies Incorporated - The Babysitter</title>
|
181
|
+
<id>http://www.feedbooks.com/item/46918</id>
|
182
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781927134269</dcterms:identifier>
|
183
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781927134269</dcterms:identifier>
|
184
|
+
<author>
|
185
|
+
<name>Bridy McAvoy</name>
|
186
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Bridy+McAvoy%22</uri>
|
187
|
+
</author>
|
188
|
+
<published>2011-01-14T00:33:33Z</published>
|
189
|
+
<updated>2011-05-24T05:59:00Z</updated>
|
190
|
+
<dcterms:language>en</dcterms:language>
|
191
|
+
<dcterms:publisher>Bluewood Publishing Ltd</dcterms:publisher>
|
192
|
+
<dcterms:issued>2010-08-31</dcterms:issued>
|
193
|
+
<summary>Ellis and Isla are going out to help her brother and his wife celebrate their wedding anniversary. At the last minute their baby sitter has a problem and sends her older sister as a substitute. When they get back Ellis is out for the count so Isla...</summary>
|
194
|
+
<dcterms:extent>87 KB</dcterms:extent>
|
195
|
+
<category label="Fiction" term="FBFIC000000"/>
|
196
|
+
<category label="Erotica" term="FBFIC005000"/>
|
197
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/46918"/>
|
198
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/46918.jpg?t=1306216740"/>
|
199
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/46918.jpg?size=thumbnail&t=1306216740"/>
|
200
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/46918/buy">
|
201
|
+
<opds:price currencycode="USD">1.79</opds:price>
|
202
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
203
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
204
|
+
</opds:indirectAcquisition>
|
205
|
+
</link>
|
206
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/46918.atom"/>
|
207
|
+
</entry>
|
208
|
+
<entry>
|
209
|
+
<title>Closer Than Blood</title>
|
210
|
+
<id>http://www.feedbooks.com/item/78409</id>
|
211
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786027903</dcterms:identifier>
|
212
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786020454</dcterms:identifier>
|
213
|
+
<author>
|
214
|
+
<name>Gregg Olsen</name>
|
215
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Gregg+Olsen%22</uri>
|
216
|
+
</author>
|
217
|
+
<published>2011-03-24T17:23:21Z</published>
|
218
|
+
<updated>2011-05-24T07:23:25Z</updated>
|
219
|
+
<dcterms:language>en</dcterms:language>
|
220
|
+
<dcterms:publisher>Pinnacle</dcterms:publisher>
|
221
|
+
<dcterms:issued>2011-03-31</dcterms:issued>
|
222
|
+
<summary>"You'll sleep with the lights on after reading Gregg Olsen." --Allison Brennan"Olsen will have you on the edge of your seat." --Lee ChildThe first time was easy. No one ever suspected the victim had been murdered. The crime long buried, the dark p...</summary>
|
223
|
+
<dcterms:extent>320 pages</dcterms:extent>
|
224
|
+
<dcterms:extent>429 KB</dcterms:extent>
|
225
|
+
<category label="Fiction" term="FBFIC000000"/>
|
226
|
+
<category label="Thrillers" term="FBFIC031000"/>
|
227
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/78409"/>
|
228
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/78409.jpg?t=1306221805"/>
|
229
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/78409.jpg?size=thumbnail&t=1306221805"/>
|
230
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/78409/buy">
|
231
|
+
<opds:price currencycode="USD">5.29</opds:price>
|
232
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
233
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
234
|
+
</opds:indirectAcquisition>
|
235
|
+
</link>
|
236
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/78409.atom"/>
|
237
|
+
</entry>
|
238
|
+
<entry>
|
239
|
+
<title>Night of the Hunted</title>
|
240
|
+
<id>http://www.feedbooks.com/item/17735</id>
|
241
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781907016899</dcterms:identifier>
|
242
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781907016899</dcterms:identifier>
|
243
|
+
<author>
|
244
|
+
<name>Gerome Asanti</name>
|
245
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Gerome+Asanti%22</uri>
|
246
|
+
</author>
|
247
|
+
<published>2010-11-25T05:54:23Z</published>
|
248
|
+
<updated>2011-05-24T04:59:35Z</updated>
|
249
|
+
<dcterms:language>en</dcterms:language>
|
250
|
+
<dcterms:publisher>Xcite Books</dcterms:publisher>
|
251
|
+
<dcterms:issued>2010-04-26</dcterms:issued>
|
252
|
+
<summary>Justine is being hunted. As she runs through the city to the safe-house an unknown number of men she has never met watch for her, ready. If they catch her she must submit, wherever, whenever, to whatever they demand. Justine has signed with The Ag...</summary>
|
253
|
+
<dcterms:extent>447 KB</dcterms:extent>
|
254
|
+
<category label="Fiction" term="FBFIC000000"/>
|
255
|
+
<category label="Erotica" term="FBFIC005000"/>
|
256
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/17735"/>
|
257
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/17735.jpg?t=1306213175"/>
|
258
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/17735.jpg?size=thumbnail&t=1306213175"/>
|
259
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/17735/buy">
|
260
|
+
<opds:price currencycode="USD">2.79</opds:price>
|
261
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
262
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
263
|
+
</opds:indirectAcquisition>
|
264
|
+
</link>
|
265
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/17735.atom"/>
|
266
|
+
</entry>
|
267
|
+
<entry>
|
268
|
+
<title>Die With Me</title>
|
269
|
+
<id>http://www.feedbooks.com/item/17474</id>
|
270
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781596928510</dcterms:identifier>
|
271
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781596928510</dcterms:identifier>
|
272
|
+
<author>
|
273
|
+
<name>Elena Forbes</name>
|
274
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Elena+Forbes%22</uri>
|
275
|
+
</author>
|
276
|
+
<published>2010-11-25T05:44:09Z</published>
|
277
|
+
<updated>2011-06-10T15:38:20Z</updated>
|
278
|
+
<dcterms:language>en</dcterms:language>
|
279
|
+
<dcterms:publisher>M P Publishing Ltd.</dcterms:publisher>
|
280
|
+
<dcterms:issued>2009-10-07</dcterms:issued>
|
281
|
+
<summary>Somewhere in London, a lonely young woman is reaching out to the wrong man. It's up to Detective Inspector Mark Tartaglia and the rest of the Murder Squad to find her before a killer does. When fourteen-year-old Gemma Kramer's broken body is foun...</summary>
|
282
|
+
<dcterms:extent>362 KB</dcterms:extent>
|
283
|
+
<category label="Fiction" term="FBFIC000000"/>
|
284
|
+
<category label="Mystery & Detective" term="FBFIC022000"/>
|
285
|
+
<category label="Thrillers" term="FBFIC031000"/>
|
286
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/17474"/>
|
287
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/17474.jpg?t=1307720300"/>
|
288
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/17474.jpg?size=thumbnail&t=1307720300"/>
|
289
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/17474/buy">
|
290
|
+
<opds:price currencycode="USD">3.49</opds:price>
|
291
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
292
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
293
|
+
</opds:indirectAcquisition>
|
294
|
+
</link>
|
295
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/17474.atom"/>
|
296
|
+
</entry>
|
297
|
+
<entry>
|
298
|
+
<title>Big and Beautiful: A collection of five erotic Rubenesque stories</title>
|
299
|
+
<id>http://www.feedbooks.com/item/19134</id>
|
300
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781907726903</dcterms:identifier>
|
301
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781907726903</dcterms:identifier>
|
302
|
+
<author>
|
303
|
+
<name>Miranda Forbes</name>
|
304
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Miranda+Forbes%22</uri>
|
305
|
+
</author>
|
306
|
+
<published>2010-11-25T06:54:59Z</published>
|
307
|
+
<updated>2011-05-24T05:01:51Z</updated>
|
308
|
+
<dcterms:language>en</dcterms:language>
|
309
|
+
<dcterms:publisher>Xcite Books</dcterms:publisher>
|
310
|
+
<dcterms:issued>2010-06-29</dcterms:issued>
|
311
|
+
<summary>Tight by Elizabeth Coldwell: Eleanor really needs to make a good impression at her job interview, but a mishap at the dry cleaner has left her wearing a suit which is far too tight. It shows off every detail of her voluptuous body, much to the de...</summary>
|
312
|
+
<dcterms:extent>63 pages</dcterms:extent>
|
313
|
+
<dcterms:extent>1.2 MB</dcterms:extent>
|
314
|
+
<category label="Fiction" term="FBFIC000000"/>
|
315
|
+
<category label="Erotica" term="FBFIC005000"/>
|
316
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/19134"/>
|
317
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/19134.jpg?t=1306213311"/>
|
318
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/19134.jpg?size=thumbnail&t=1306213311"/>
|
319
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/19134/buy">
|
320
|
+
<opds:price currencycode="USD">4.49</opds:price>
|
321
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
322
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
323
|
+
</opds:indirectAcquisition>
|
324
|
+
</link>
|
325
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/19134.atom"/>
|
326
|
+
</entry>
|
327
|
+
<entry>
|
328
|
+
<title>The Last Victim</title>
|
329
|
+
<id>http://www.feedbooks.com/item/78403</id>
|
330
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786027750</dcterms:identifier>
|
331
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780786027255</dcterms:identifier>
|
332
|
+
<author>
|
333
|
+
<name>Kevin O'Brien</name>
|
334
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Kevin+O%27Brien%22</uri>
|
335
|
+
</author>
|
336
|
+
<published>2011-03-24T17:23:09Z</published>
|
337
|
+
<updated>2011-05-24T06:31:33Z</updated>
|
338
|
+
<dcterms:language>en</dcterms:language>
|
339
|
+
<dcterms:publisher>Pinnacle</dcterms:publisher>
|
340
|
+
<dcterms:issued>2011-03-31</dcterms:issued>
|
341
|
+
<summary>A Killer's MasterpieceAt first, Bridget Corrigan's work with her twin brother's senatorial campaign is an exciting distraction from the trauma of her messy divorce. But everything changes when Bridget is reminded of the secret she and Brad have be...</summary>
|
342
|
+
<dcterms:extent>448 pages</dcterms:extent>
|
343
|
+
<dcterms:extent>438 KB</dcterms:extent>
|
344
|
+
<category label="Fiction" term="FBFIC000000"/>
|
345
|
+
<category label="Thrillers" term="FBFIC031000"/>
|
346
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/78403"/>
|
347
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/78403.jpg?t=1306218693"/>
|
348
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/78403.jpg?size=thumbnail&t=1306218693"/>
|
349
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/78403/buy">
|
350
|
+
<opds:price currencycode="USD">3.99</opds:price>
|
351
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
352
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
353
|
+
</opds:indirectAcquisition>
|
354
|
+
</link>
|
355
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/78403.atom"/>
|
356
|
+
</entry>
|
357
|
+
<entry>
|
358
|
+
<title>Inseparable</title>
|
359
|
+
<id>http://www.feedbooks.com/item/85609</id>
|
360
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781459201705</dcterms:identifier>
|
361
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780373534432</dcterms:identifier>
|
362
|
+
<author>
|
363
|
+
<name>Brenda Jackson</name>
|
364
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Brenda+Jackson%22</uri>
|
365
|
+
</author>
|
366
|
+
<published>2011-04-21T06:00:41Z</published>
|
367
|
+
<updated>2011-05-24T06:43:51Z</updated>
|
368
|
+
<dcterms:language>en</dcterms:language>
|
369
|
+
<dcterms:publisher>Kimani Arabesque</dcterms:publisher>
|
370
|
+
<dcterms:issued>2011-04-25</dcterms:issued>
|
371
|
+
<summary>Living under Reese Madaris's roof makes LaKenna James the envy of every woman in town. But Reese's offer of a place to stay is strictly platonic&#151;just until Kenna's new condo is completed. He has no idea that his best friend has been attracted...</summary>
|
372
|
+
<dcterms:extent>304 pages</dcterms:extent>
|
373
|
+
<dcterms:extent>476 KB</dcterms:extent>
|
374
|
+
<category label="Fiction" term="FBFIC000000"/>
|
375
|
+
<category label="Romance" term="FBFIC027000"/>
|
376
|
+
<category label="Contemporary" term="FBFIC027020"/>
|
377
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/85609"/>
|
378
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/85609.jpg?t=1306219431"/>
|
379
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/85609.jpg?size=thumbnail&t=1306219431"/>
|
380
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/85609/buy">
|
381
|
+
<opds:price currencycode="USD">4.49</opds:price>
|
382
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
383
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
384
|
+
</opds:indirectAcquisition>
|
385
|
+
</link>
|
386
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/85609.atom"/>
|
387
|
+
</entry>
|
388
|
+
<entry>
|
389
|
+
<title>Dead By Midnight</title>
|
390
|
+
<id>http://www.feedbooks.com/item/6955</id>
|
391
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781420117561</dcterms:identifier>
|
392
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781420100518</dcterms:identifier>
|
393
|
+
<author>
|
394
|
+
<name>Beverly Barton</name>
|
395
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Beverly+Barton%22</uri>
|
396
|
+
</author>
|
397
|
+
<published>2010-11-24T18:30:05Z</published>
|
398
|
+
<updated>2011-05-24T04:39:07Z</updated>
|
399
|
+
<dcterms:language>en</dcterms:language>
|
400
|
+
<dcterms:publisher>Zebra</dcterms:publisher>
|
401
|
+
<dcterms:issued>2010-01-31</dcterms:issued>
|
402
|
+
<summary>In Murder. . .The last sounds Dean Wilson hears are a clock striking twelve and a killer's taunting words. And his death is just the first. One by one, victims are stalked and shot at close range. Only the killer knows their sins, and who will b...</summary>
|
403
|
+
<dcterms:extent>448 pages</dcterms:extent>
|
404
|
+
<dcterms:extent>1.1 MB</dcterms:extent>
|
405
|
+
<category label="Fiction" term="FBFIC000000"/>
|
406
|
+
<category label="Romance" term="FBFIC027000"/>
|
407
|
+
<category label="Suspense" term="FBFIC027110"/>
|
408
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/6955"/>
|
409
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/6955.jpg?t=1306211947"/>
|
410
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/6955.jpg?size=thumbnail&t=1306211947"/>
|
411
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/6955/buy">
|
412
|
+
<opds:price currencycode="USD">4.79</opds:price>
|
413
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
414
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
415
|
+
</opds:indirectAcquisition>
|
416
|
+
</link>
|
417
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/6955.atom"/>
|
418
|
+
</entry>
|
419
|
+
<entry>
|
420
|
+
<title>Erotique: Jillian</title>
|
421
|
+
<id>http://www.feedbooks.com/item/78475</id>
|
422
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781426848766</dcterms:identifier>
|
423
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781426848766</dcterms:identifier>
|
424
|
+
<author>
|
425
|
+
<name>Susan Lyons</name>
|
426
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Susan+Lyons%22</uri>
|
427
|
+
</author>
|
428
|
+
<published>2011-03-24T17:24:57Z</published>
|
429
|
+
<updated>2011-05-24T06:29:31Z</updated>
|
430
|
+
<dcterms:language>en</dcterms:language>
|
431
|
+
<dcterms:publisher>Spice Briefs</dcterms:publisher>
|
432
|
+
<dcterms:issued>2010-01-31</dcterms:issued>
|
433
|
+
<summary>Jillian had been careful not to combine her personal and professional lives...even if that meant turning down a date with her sexy colleague Sandro Rodriguez. Still, she was in the mood for some fun and couldn't resist a guest-pass to the private ...</summary>
|
434
|
+
<dcterms:extent>389 KB</dcterms:extent>
|
435
|
+
<category label="Fiction" term="FBFIC000000"/>
|
436
|
+
<category label="Erotica" term="FBFIC005000"/>
|
437
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/78475"/>
|
438
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/78475.jpg?t=1306218571"/>
|
439
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/78475.jpg?size=thumbnail&t=1306218571"/>
|
440
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/78475/buy">
|
441
|
+
<opds:price currencycode="USD">1.99</opds:price>
|
442
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
443
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
444
|
+
</opds:indirectAcquisition>
|
445
|
+
</link>
|
446
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/78475.atom"/>
|
447
|
+
</entry>
|
448
|
+
<entry>
|
449
|
+
<title>Believe You Can--The Power of a Positive Attitude</title>
|
450
|
+
<id>http://www.feedbooks.com/item/86949</id>
|
451
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781441213358</dcterms:identifier>
|
452
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780800787714</dcterms:identifier>
|
453
|
+
<author>
|
454
|
+
<name>John Mason</name>
|
455
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22John+Mason%22</uri>
|
456
|
+
</author>
|
457
|
+
<published>2011-04-26T07:25:53Z</published>
|
458
|
+
<updated>2011-05-24T06:47:43Z</updated>
|
459
|
+
<dcterms:language>en</dcterms:language>
|
460
|
+
<dcterms:publisher>Revell</dcterms:publisher>
|
461
|
+
<dcterms:issued>2010-01-02</dcterms:issued>
|
462
|
+
<summary>Bestselling author John Mason shows readers that believing in yourself is the first step to success. This accessible book is both inspirational and practical, encouraging readers to approach life with optimism and the assurance that they are meant...</summary>
|
463
|
+
<dcterms:extent>208 pages</dcterms:extent>
|
464
|
+
<dcterms:extent>250 KB</dcterms:extent>
|
465
|
+
<category label="Non-Fiction" term="FBNFC000000"/>
|
466
|
+
<category label="Religion" term="FBREL000000"/>
|
467
|
+
<category label="Inspirational" term="FBREL036000"/>
|
468
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/86949"/>
|
469
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/86949.jpg?t=1306219663"/>
|
470
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/86949.jpg?size=thumbnail&t=1306219663"/>
|
471
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/86949/buy">
|
472
|
+
<opds:price currencycode="USD">4.49</opds:price>
|
473
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
474
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
475
|
+
</opds:indirectAcquisition>
|
476
|
+
</link>
|
477
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/86949.atom"/>
|
478
|
+
</entry>
|
479
|
+
<entry>
|
480
|
+
<title>A Slice of Murder</title>
|
481
|
+
<id>http://www.feedbooks.com/item/18520</id>
|
482
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780758260703</dcterms:identifier>
|
483
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780758229496</dcterms:identifier>
|
484
|
+
<author>
|
485
|
+
<name>Chris Cavender</name>
|
486
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Chris+Cavender%22</uri>
|
487
|
+
</author>
|
488
|
+
<published>2010-11-25T06:33:27Z</published>
|
489
|
+
<updated>2011-05-24T05:00:36Z</updated>
|
490
|
+
<dcterms:language>en</dcterms:language>
|
491
|
+
<dcterms:publisher>Kensington</dcterms:publisher>
|
492
|
+
<dcterms:issued>2010-06-30</dcterms:issued>
|
493
|
+
<summary>Not too much happens in the sleepy little town of Timber Ridge, North Carolina--which is fine with pizza-purveyor extraordinaire Eleanor Swift. The spunky owner of A Slice of Delight is trying to mend her broken heart and could use a little quiet ...</summary>
|
494
|
+
<dcterms:extent>485 KB</dcterms:extent>
|
495
|
+
<category label="Fiction" term="FBFIC000000"/>
|
496
|
+
<category label="Mystery & Detective" term="FBFIC022000"/>
|
497
|
+
<category label="Women Sleuths" term="FBFIC022040"/>
|
498
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/18520"/>
|
499
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/18520.jpg?t=1306213236"/>
|
500
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/18520.jpg?size=thumbnail&t=1306213236"/>
|
501
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/18520/buy">
|
502
|
+
<opds:price currencycode="USD">4.29</opds:price>
|
503
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
504
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
505
|
+
</opds:indirectAcquisition>
|
506
|
+
</link>
|
507
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/18520.atom"/>
|
508
|
+
</entry>
|
509
|
+
<entry>
|
510
|
+
<title>Ultimate Spanking: 20 Erotic Stories</title>
|
511
|
+
<id>http://www.feedbooks.com/item/19262</id>
|
512
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781907726422</dcterms:identifier>
|
513
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781907016127</dcterms:identifier>
|
514
|
+
<author>
|
515
|
+
<name>Miranda Forbes</name>
|
516
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Miranda+Forbes%22</uri>
|
517
|
+
</author>
|
518
|
+
<published>2010-11-25T07:12:54Z</published>
|
519
|
+
<updated>2011-05-24T05:01:39Z</updated>
|
520
|
+
<dcterms:language>en</dcterms:language>
|
521
|
+
<dcterms:publisher>Xcite Books</dcterms:publisher>
|
522
|
+
<dcterms:issued>2010-07-01</dcterms:issued>
|
523
|
+
<summary>Twenty tales of over-the-knee fun...Explore the sensual pleasures of spanking in tantalising detail in this brand new collection. Featuring a diverse range of cheek-warming, eye-watering, and always arousing, scenarios, disciplinarians and brats r...</summary>
|
524
|
+
<dcterms:extent>189 pages</dcterms:extent>
|
525
|
+
<dcterms:extent>1.3 MB</dcterms:extent>
|
526
|
+
<category label="Fiction" term="FBFIC000000"/>
|
527
|
+
<category label="Erotica" term="FBFIC005000"/>
|
528
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/19262"/>
|
529
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/19262.jpg?t=1306213299"/>
|
530
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/19262.jpg?size=thumbnail&t=1306213299"/>
|
531
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/19262/buy">
|
532
|
+
<opds:price currencycode="USD">6.29</opds:price>
|
533
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
534
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
535
|
+
</opds:indirectAcquisition>
|
536
|
+
</link>
|
537
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/19262.atom"/>
|
538
|
+
</entry>
|
539
|
+
<entry>
|
540
|
+
<title>Never Use a Chicken and Other Stories</title>
|
541
|
+
<id>http://www.feedbooks.com/item/35702</id>
|
542
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781611870343</dcterms:identifier>
|
543
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781611870343</dcterms:identifier>
|
544
|
+
<author>
|
545
|
+
<name>Jim Newell</name>
|
546
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Jim+Newell%22</uri>
|
547
|
+
</author>
|
548
|
+
<published>2010-11-25T15:38:26Z</published>
|
549
|
+
<updated>2011-05-24T05:34:28Z</updated>
|
550
|
+
<dcterms:language>en</dcterms:language>
|
551
|
+
<dcterms:publisher>Untreed Reads Publishing</dcterms:publisher>
|
552
|
+
<dcterms:issued>2010-11-15</dcterms:issued>
|
553
|
+
<summary>They say crime doesn't pay...but it can sure be funny! Join Jim Newell as he takes you through an anthology of criminal caper short stories where the perfect crime goes horribly awry. In this book you'll find everything from pampered cats to fat ...</summary>
|
554
|
+
<dcterms:extent>310 KB</dcterms:extent>
|
555
|
+
<category label="Fiction" term="FBFIC000000"/>
|
556
|
+
<category label="Mystery & Detective" term="FBFIC022000"/>
|
557
|
+
<category label="Humorous" term="FBFIC016000"/>
|
558
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/35702"/>
|
559
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/35702.jpg?t=1306215268"/>
|
560
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/35702.jpg?size=thumbnail&t=1306215268"/>
|
561
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/35702/buy">
|
562
|
+
<opds:price currencycode="USD">4.49</opds:price>
|
563
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
564
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
565
|
+
</opds:indirectAcquisition>
|
566
|
+
</link>
|
567
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/35702.atom"/>
|
568
|
+
</entry>
|
569
|
+
<entry>
|
570
|
+
<title>Silent Killer</title>
|
571
|
+
<id>http://www.feedbooks.com/item/36185</id>
|
572
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781420112801</dcterms:identifier>
|
573
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781420100501</dcterms:identifier>
|
574
|
+
<author>
|
575
|
+
<name>Beverly Barton</name>
|
576
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Beverly+Barton%22</uri>
|
577
|
+
</author>
|
578
|
+
<published>2010-11-25T16:08:34Z</published>
|
579
|
+
<updated>2011-05-25T16:40:47Z</updated>
|
580
|
+
<dcterms:language>en</dcterms:language>
|
581
|
+
<dcterms:publisher>Zebra</dcterms:publisher>
|
582
|
+
<dcterms:issued>2009-08-31</dcterms:issued>
|
583
|
+
<summary>In A Town Full Of SecretsTo most people, men like Mark Cantrell are fine, upstanding pillars of the community, completely beyond reproach. But their killer knows better. They are sinners of the worst kind, and they must burn on earth before they b...</summary>
|
584
|
+
<dcterms:extent>432 pages</dcterms:extent>
|
585
|
+
<dcterms:extent>952 KB</dcterms:extent>
|
586
|
+
<category label="Fiction" term="FBFIC000000"/>
|
587
|
+
<category label="Romance" term="FBFIC027000"/>
|
588
|
+
<category label="Suspense" term="FBFIC027110"/>
|
589
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/36185"/>
|
590
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/36185.jpg?t=1306341647"/>
|
591
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/36185.jpg?size=thumbnail&t=1306341647"/>
|
592
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/36185/buy">
|
593
|
+
<opds:price currencycode="USD">4.29</opds:price>
|
594
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
595
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
596
|
+
</opds:indirectAcquisition>
|
597
|
+
</link>
|
598
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/36185.atom"/>
|
599
|
+
</entry>
|
600
|
+
<entry>
|
601
|
+
<title>The Knitting Diaries</title>
|
602
|
+
<id>http://www.feedbooks.com/item/78071</id>
|
603
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9781426887352</dcterms:identifier>
|
604
|
+
<dcterms:identifier xsi:type="dcterms:URI">urn:ISBN:9780778329374</dcterms:identifier>
|
605
|
+
<author>
|
606
|
+
<name>Debbie Macomber</name>
|
607
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Debbie+Macomber%22</uri>
|
608
|
+
</author>
|
609
|
+
<author>
|
610
|
+
<name>Susan Mallery</name>
|
611
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Susan+Mallery%22</uri>
|
612
|
+
</author>
|
613
|
+
<author>
|
614
|
+
<name>Christina Skye</name>
|
615
|
+
<uri>http://www.feedbooks.com/search?query=contributor%3A%22Christina+Skye%22</uri>
|
616
|
+
</author>
|
617
|
+
<published>2011-03-18T23:33:15Z</published>
|
618
|
+
<updated>2011-05-24T06:17:46Z</updated>
|
619
|
+
<dcterms:language>en</dcterms:language>
|
620
|
+
<dcterms:publisher>MIRA</dcterms:publisher>
|
621
|
+
<dcterms:issued>2011-03-28</dcterms:issued>
|
622
|
+
<summary>The Twenty-First Wish by Debbie MacomberAnne Marie Roche and her adopted daughter, Ellen, have each written a list of twenty wishes&#151; which included learning to knit. But Ellen has added a twenty-first wish: that her mom will fall in love with...</summary>
|
623
|
+
<dcterms:extent>352 pages</dcterms:extent>
|
624
|
+
<dcterms:extent>410 KB</dcterms:extent>
|
625
|
+
<category label="Fiction" term="FBFIC000000"/>
|
626
|
+
<category label="Romance" term="FBFIC027000"/>
|
627
|
+
<category label="Contemporary" term="FBFIC027020"/>
|
628
|
+
<link type="text/html" title="View on Feedbooks" rel="alternate" href="http://www.feedbooks.com/item/78071"/>
|
629
|
+
<link type="image/png" rel="http://opds-spec.org/image" href="http://covers.feedbooks.net/item/78071.jpg?t=1306217866"/>
|
630
|
+
<link type="image/png" rel="http://opds-spec.org/image/thumbnail" href="http://covers.feedbooks.net/item/78071.jpg?size=thumbnail&t=1306217866"/>
|
631
|
+
<link type="text/html" rel="http://opds-spec.org/acquisition/buy" href="https://www.feedbooks.com/item/78071/buy">
|
632
|
+
<opds:price currencycode="USD">5.29</opds:price>
|
633
|
+
<opds:indirectAcquisition type="application/vnd.adobe.adept+xml">
|
634
|
+
<opds:indirectAcquisition type="application/epub+zip"/>
|
635
|
+
</opds:indirectAcquisition>
|
636
|
+
</link>
|
637
|
+
<link type="application/atom+xml;type=entry" title="Full entry" rel="alternate" href="http://www.feedbooks.com/item/78071.atom"/>
|
638
|
+
</entry>
|
639
|
+
</feed>
|