mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Merge branch 'master' of https://github.com/cbhaley/calibre
This commit is contained in:
commit
10a3482c0d
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
||||||
store_version = 9 # Needed for dynamic plugin loading
|
store_version = 10 # Needed for dynamic plugin loading
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||||
@ -27,8 +27,11 @@ class AmazonDEKindleStore(StorePlugin):
|
|||||||
|
|
||||||
def search(self, query, max_results=10, timeout=60):
|
def search(self, query, max_results=10, timeout=60):
|
||||||
s = SearchResult()
|
s = SearchResult()
|
||||||
s.title = 'Amazon demanded that this<br>store be permanently closed.'
|
s.title = 'Amazon required that this<br>store be permanently closed.'
|
||||||
s.author = None
|
s.author = ''
|
||||||
|
s.price = ''
|
||||||
|
s.detail_item = ''
|
||||||
|
s.drm = SearchResult.DRM_UNKNOWN
|
||||||
yield s
|
yield s
|
||||||
|
|
||||||
def get_details(self, search_result, timeout):
|
def get_details(self, search_result, timeout):
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
||||||
store_version = 9 # Needed for dynamic plugin loading
|
store_version = 10 # Needed for dynamic plugin loading
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||||
@ -27,8 +27,11 @@ class AmazonESKindleStore(StorePlugin):
|
|||||||
|
|
||||||
def search(self, query, max_results=10, timeout=60):
|
def search(self, query, max_results=10, timeout=60):
|
||||||
s = SearchResult()
|
s = SearchResult()
|
||||||
s.title = 'Amazon demanded that this<br>store be permanently closed.'
|
s.title = 'Amazon required that this<br>store be permanently closed.'
|
||||||
s.author = None
|
s.author = ''
|
||||||
|
s.price = ''
|
||||||
|
s.detail_item = ''
|
||||||
|
s.drm = SearchResult.DRM_UNKNOWN
|
||||||
yield s
|
yield s
|
||||||
|
|
||||||
def get_details(self, search_result, timeout):
|
def get_details(self, search_result, timeout):
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
||||||
store_version = 9 # Needed for dynamic plugin loading
|
store_version = 10 # Needed for dynamic plugin loading
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||||
@ -27,8 +27,11 @@ class AmazonFRKindleStore(StorePlugin):
|
|||||||
|
|
||||||
def search(self, query, max_results=10, timeout=60):
|
def search(self, query, max_results=10, timeout=60):
|
||||||
s = SearchResult()
|
s = SearchResult()
|
||||||
s.title = 'Amazon demanded that this<br>store be permanently closed.'
|
s.title = 'Amazon required that this<br>store be permanently closed.'
|
||||||
s.author = None
|
s.author = ''
|
||||||
|
s.price = ''
|
||||||
|
s.detail_item = ''
|
||||||
|
s.drm = SearchResult.DRM_UNKNOWN
|
||||||
yield s
|
yield s
|
||||||
|
|
||||||
def get_details(self, search_result, timeout):
|
def get_details(self, search_result, timeout):
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
||||||
store_version = 9 # Needed for dynamic plugin loading
|
store_version = 10 # Needed for dynamic plugin loading
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||||
@ -27,8 +27,11 @@ class AmazonITKindleStore(StorePlugin):
|
|||||||
|
|
||||||
def search(self, query, max_results=10, timeout=60):
|
def search(self, query, max_results=10, timeout=60):
|
||||||
s = SearchResult()
|
s = SearchResult()
|
||||||
s.title = 'Amazon demanded that this<br>store be permanently closed.'
|
s.title = 'Amazon required that this<br>store be permanently closed.'
|
||||||
s.author = None
|
s.author = ''
|
||||||
|
s.price = ''
|
||||||
|
s.detail_item = ''
|
||||||
|
s.drm = SearchResult.DRM_UNKNOWN
|
||||||
yield s
|
yield s
|
||||||
|
|
||||||
def get_details(self, search_result, timeout):
|
def get_details(self, search_result, timeout):
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
||||||
store_version = 9 # Needed for dynamic plugin loading
|
store_version = 10 # Needed for dynamic plugin loading
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||||
@ -29,8 +29,11 @@ class AmazonUKKindleStore(StorePlugin):
|
|||||||
|
|
||||||
def search(self, query, max_results=10, timeout=60):
|
def search(self, query, max_results=10, timeout=60):
|
||||||
s = SearchResult()
|
s = SearchResult()
|
||||||
s.title = 'Amazon demanded that this<br>store be permanently closed.'
|
s.title = 'Amazon required that this<br>store be permanently closed.'
|
||||||
s.author = None
|
s.author = ''
|
||||||
|
s.price = ''
|
||||||
|
s.detail_item = ''
|
||||||
|
s.drm = SearchResult.DRM_UNKNOWN
|
||||||
yield s
|
yield s
|
||||||
|
|
||||||
def get_details(self, search_result, timeout):
|
def get_details(self, search_result, timeout):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user