comparison backend/couchdb/Preferences.py @ 146:8ec20377bcb0

move getting the entries for a feed to the backend so that the couchdb backend can use a custom view for feed entries
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 25 Aug 2011 07:01:45 +0200
parents 9e1e6b96d8b0
children 2d159eb2a91b
comparison
equal deleted inserted replaced
145:71c5dc02ff87 146:8ec20377bcb0
18 def proxyHost(self): 18 def proxyHost(self):
19 return self._valueForKey("proxyHost") 19 return self._valueForKey("proxyHost")
20 20
21 def proxyPort(self): 21 def proxyPort(self):
22 return self._valueForKey("proxyPort") 22 return self._valueForKey("proxyPort")
23
24 def showOnlyUnreadFeeds(self):
25 return self._valueForKey("showOnlyUnreadFeeds")
26
27 def startMaximized(self):
28 return self._valueForKey("startMaximized")
29
30 def hideReadFeedEntries(self):
31 return self._valueForKey("hideReadFeedEntries")