merge with John's branch

This commit is contained in:
Tomasz Długosz 2011-05-23 21:19:47 +02:00
commit 91e57ed680
2 changed files with 3 additions and 3 deletions

View File

@ -1269,7 +1269,7 @@ class StoreKoboStore(StoreBase):
actual_plugin = 'calibre.gui2.store.kobo_plugin:KoboStore' actual_plugin = 'calibre.gui2.store.kobo_plugin:KoboStore'
drm_free_only = False drm_free_only = False
headquarters = 'US' headquarters = 'CA'
formats = ['EPUB'] formats = ['EPUB']
class StoreManyBooksStore(StoreBase): class StoreManyBooksStore(StoreBase):
@ -1367,7 +1367,7 @@ class StoreWizardsTowerBooksStore(StoreBase):
class StoreWoblinkStore(StoreBase): class StoreWoblinkStore(StoreBase):
name = 'Woblink' name = 'Woblink'
author = 'Tomasz Długosz' author = 'Tomasz Długosz'
description = _('Czytanie zdarza się wszędzie!') description = u'Czytanie zdarza się wszędzie!'
actual_plugin = 'calibre.gui2.store.woblink_plugin:WoblinkStore' actual_plugin = 'calibre.gui2.store.woblink_plugin:WoblinkStore'
drm_free_only = False drm_free_only = False

View File

@ -40,7 +40,7 @@ class WoblinkStore(BasicStoreConfig, StorePlugin):
d.exec_() d.exec_()
def search(self, query, max_results=10, timeout=60): def search(self, query, max_results=10, timeout=60):
url = 'http://woblink.com/publication?query' + urllib.quote_plus(query.encode('utf-8')) url = 'http://woblink.com/publication?query=' + urllib.quote_plus(query.encode('utf-8'))
br = browser() br = browser()