fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
App workarounds.
[wolnelektury.git]
/
src
/
opds
/
views.py
diff --git
a/src/opds/views.py
b/src/opds/views.py
index
001b69d
..
f14696b
100644
(file)
--- a/
src/opds/views.py
+++ b/
src/opds/views.py
@@
-1,9
+1,9
@@
-# -*- coding: utf-8 -*-
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
+from functools import reduce
import os.path
import os.path
-from urlparse import urljoin
+from url
lib.
parse import urljoin
from django.contrib.syndication.views import Feed
from django.core.urlresolvers import reverse
from django.contrib.syndication.views import Feed
from django.core.urlresolvers import reverse
@@
-78,14
+78,14
@@
class OPDSFeed(Atom1Feed):
_book_parent_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book-parent.png")), str)()
try:
_book_parent_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book-parent.png")), str)()
try:
- _book_parent_img_size =
unicode
(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book-parent.png")))
- except
IO
Error:
+ _book_parent_img_size =
str
(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book-parent.png")))
+ except
OS
Error:
_book_parent_img_size = ''
_book_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book.png")), str)()
try:
_book_parent_img_size = ''
_book_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book.png")), str)()
try:
- _book_img_size =
unicode
(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book.png")))
- except
IO
Error:
+ _book_img_size =
str
(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book.png")))
+ except
OS
Error:
_book_img_size = ''
def add_root_elements(self, handler):
_book_img_size = ''
def add_root_elements(self, handler):
@@
-104,7
+104,7
@@
class OPDSFeed(Atom1Feed):
handler.addQuickElement(u"title", item['title'])
# add a OPDS Navigation link if there's no enclosure
handler.addQuickElement(u"title", item['title'])
# add a OPDS Navigation link if there's no enclosure
- if
item['enclosure']
is None:
+ if
not item.get('enclosures')
is None:
handler.addQuickElement(
u"link", u"", {u"href": item['link'], u"rel": u"subsection", u"type": u"application/atom+xml"})
# add a "green book" icon
handler.addQuickElement(
u"link", u"", {u"href": item['link'], u"rel": u"subsection", u"type": u"application/atom+xml"})
# add a "green book" icon
@@
-144,14
+144,14
@@
class OPDSFeed(Atom1Feed):
handler.addQuickElement(u"summary", item['description'], {u"type": u"text"})
# Enclosure as OPDS Acquisition Link
handler.addQuickElement(u"summary", item['description'], {u"type": u"text"})
# Enclosure as OPDS Acquisition Link
-
if item['enclosure'] is not None
:
+
for enc in item.get('enclosures', [])
:
handler.addQuickElement(
u"link", '',
{
u"rel": u"http://opds-spec.org/acquisition",
handler.addQuickElement(
u"link", '',
{
u"rel": u"http://opds-spec.org/acquisition",
- u"href":
item['enclosure']
.url,
- u"length":
item['enclosure']
.length,
- u"type":
item['enclosure']
.mime_type,
+ u"href":
enc
.url,
+ u"length":
enc
.length,
+ u"type":
enc
.mime_type,
})
# add a "red book" icon
handler.addQuickElement(
})
# add a "red book" icon
handler.addQuickElement(
@@
-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