fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed migration for many files to many books - forwards.
[wolnelektury.git]
/
apps
/
opds
/
views.py
diff --git
a/apps/opds/views.py
b/apps/opds/views.py
index
a51b5b1
..
7ee09be
100644
(file)
--- a/
apps/opds/views.py
+++ b/
apps/opds/views.py
@@
-262,7
+262,7
@@
class ByTagFeed(AcquisitionFeed):
return books
return books
-@factory_decorator(logged_in_or_basicauth())
+
#
@factory_decorator(logged_in_or_basicauth())
class UserFeed(Feed):
feed_type = OPDSFeed
link = u'http://www.wolnelektury.pl/'
class UserFeed(Feed):
feed_type = OPDSFeed
link = u'http://www.wolnelektury.pl/'
@@
-288,8
+288,11
@@
class UserFeed(Feed):
def item_description(self):
return u''
def item_description(self):
return u''
+# no class decorators in python 2.5
+UserFeed = factory_decorator(logged_in_or_basicauth())(UserFeed)
-@factory_decorator(logged_in_or_basicauth())
+
+#@factory_decorator(logged_in_or_basicauth())
class UserSetFeed(AcquisitionFeed):
def link(self, tag):
return tag.get_absolute_url()
class UserSetFeed(AcquisitionFeed):
def link(self, tag):
return tag.get_absolute_url()
@@
-306,6
+309,9
@@
class UserSetFeed(AcquisitionFeed):
def items(self, tag):
return Book.tagged.with_any([tag])
def items(self, tag):
return Book.tagged.with_any([tag])
+# no class decorators in python 2.5
+UserSetFeed = factory_decorator(logged_in_or_basicauth())(UserSetFeed)
+
class SearchFeed(AcquisitionFeed):
description = u"Wyniki wyszukiwania na stronie WolneLektury.pl"
class SearchFeed(AcquisitionFeed):
description = u"Wyniki wyszukiwania na stronie WolneLektury.pl"