fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
thumbnails in blog api
[wolnelektury.git]
/
src
/
opds
/
views.py
diff --git
a/src/opds/views.py
b/src/opds/views.py
index
001b69d
..
0c31cd2
100644
(file)
--- a/
src/opds/views.py
+++ b/
src/opds/views.py
@@
-190,18
+190,18
@@
class AcquisitionFeed(Feed):
def item_author_name(self, book):
try:
def item_author_name(self, book):
try:
- return book.
tags.filter(category='author')[0]
.name
- except
Key
Error:
+ return book.
authors().first()
.name
+ except
Attribute
Error:
return u''
def item_author_link(self, book):
try:
return u''
def item_author_link(self, book):
try:
- return book.
tags.filter(category='author')[0]
.get_absolute_url()
- except
Key
Error:
+ return book.
authors().first()
.get_absolute_url()
+ except
Attribute
Error:
return u''
def item_enclosure_url(self, book):
return u''
def item_enclosure_url(self, book):
- return full_url(book.epub_
file.url
) if book.epub_file else None
+ return full_url(book.epub_
url()
) if book.epub_file else None
def item_enclosure_length(self, book):
return book.epub_file.size if book.epub_file else None
def item_enclosure_length(self, book):
return book.epub_file.size if book.epub_file else None