From 109fcbc72371b1345c2b9fdd49dde74e3514cee8 Mon Sep 17 00:00:00 2001 From: John Schember Date: Mon, 20 Jun 2011 19:24:07 -0400 Subject: [PATCH] Store: Open Books (calibre's DRM Free listing) plugin. --- src/calibre/customize/builtins.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py index 9973174bdc..1c57ff48d1 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -1373,6 +1373,14 @@ class StoreNextoStore(StoreBase): formats = ['EPUB', 'PDF'] affiliate = True +class StoreOpenBooksStore(StoreBase): + name = 'Open Books' + description = u'' + actual_plugin = 'calibre.gui2.store.open_books_plugin:OpenBooksStore' + + drm_free_only = True + headquarters = 'US' + class StoreOpenLibraryStore(StoreBase): name = 'Open Library' description = u'One web page for every book ever published. The goal is to be a true online library. Over 20 million records from a variety of large catalogs as well as single contributions, with more on the way.' @@ -1499,6 +1507,7 @@ plugins += [ StoreManyBooksStore, StoreMobileReadStore, StoreNextoStore, + StoreOpenBooksStore, StoreOpenLibraryStore, StoreOReillyStore, StorePragmaticBookshelfStore,